> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Packs

> Purpose-built, multi-step agent pipelines you can call as a single action or run step-by-step.

## What is an Agent Pack?

An **Agent Pack** is a curated collection of actions that work together to solve a complete, end-to-end use case — things like researching a company, preparing for a meeting, or drafting a multi-touch outreach sequence.

Each pack exposes two kinds of endpoints in the [API Reference](/api-reference):

* **Orchestrated actions** (e.g. `run_full_*`, `run_optimized_pipeline`) that execute the whole workflow in one call.
* **Granular step actions** you can mix, match, and customize in the Agent Builder.

Most packs also ship a **Render HTML** action that turns the structured JSON output into a polished, email-ready report.

## Available packs

<CardGroup cols={2}>
  <Card title="Company Research v2" icon="building" href="/agent-packs/company-research">
    Deep, cached company intelligence with per-section async research, tracking, and Q\&A.
  </Card>

  <Card title="Competitive Brief" icon="chess-knight" href="/agent-packs/competitive-brief">
    Generate a full competitive intelligence brief with one call.
  </Card>

  <Card title="Meeting Prep" icon="calendar-check" href="/agent-packs/meeting-prep">
    Multi-phase meeting preparation with contact research and personalized sections.
  </Card>

  <Card title="Meeting Follow-Up" icon="calendar-days" href="/agent-packs/meeting-followup">
    Analyze meeting transcripts and auto-generate coaching, follow-ups, and CRM notes.
  </Card>

  <Card title="Prospect Research" icon="user-magnifying-glass" href="/agent-packs/prospect-research">
    Triangulate prospect intelligence from LinkedIn, web, and company data.
  </Card>

  <Card title="Prospect Finder" icon="users-viewfinder" href="/agent-packs/prospect-finder">
    Natural-language prospect discovery with ICP scoring.
  </Card>

  <Card title="Lead Qualifier" icon="filter" href="/agent-packs/lead-qualifier">
    ICP-grounded lead scoring with Pursue / Nurture / Pass recommendations.
  </Card>

  <Card title="Outreach Drafter" icon="envelope-open-text" href="/agent-packs/outreach-drafter">
    Personalized email + LinkedIn message variants with personalization audit.
  </Card>

  <Card title="Sales Outreach Team" icon="handshake" href="/agent-packs/sales-outreach-team">
    Outreach Strategist, multi-touch Sequence, and Cold Call Prep in one pack.
  </Card>

  <Card title="Content Marketing Team" icon="pen-nib" href="/agent-packs/content-marketing-team">
    AEO/SEO Research, Content Planner, Creator, and Audit.
  </Card>

  <Card title="Social Content Team" icon="share-nodes" href="/agent-packs/social-content-team">
    Plan, create, and analyze LinkedIn social content end-to-end.
  </Card>

  <Card title="YouTube Creator Team" icon="youtube" href="/agent-packs/youtube-creator-team">
    Idea research, scripts, packaging, and cross-platform repurposing.
  </Card>

  <Card title="Industry Research" icon="chart-line" href="/agent-packs/industry-research">
    8-section market landscape brief with personalized implications.
  </Card>

  <Card title="Trends Research" icon="wave-square" href="/agent-packs/trends-research">
    6-section industry trends digest with email delivery.
  </Card>

  <Card title="HeyGen Avatar" icon="clapperboard" href="/agent-packs/heygen-avatar">
    Generate talking-avatar videos from a blog URL, topic, or script.
  </Card>

  <Card title="HeyGen Photo Avatar" icon="image-portrait" href="/agent-packs/heygen-photo-avatar">
    Create custom photo avatars from uploaded or AI-generated images.
  </Card>

  <Card title="Instant Headshot" icon="camera-retro" href="/agent-packs/instant-headshot">
    Studio-quality AI headshots from reference photos.
  </Card>

  <Card title="File Converter" icon="file-import" href="/agent-packs/file-converter">
    Convert, merge, split, OCR, watermark, and encrypt files with CloudConvert.
  </Card>

  <Card title="OpenClaw" icon="terminal" href="/agent-packs/openclaw">
    Talk to your personal OpenClaw instance over the OpenAI-compatible API.
  </Card>
</CardGroup>

## When to use orchestrated vs granular actions

| Choose the...                                                      | When you want to...                                                                                        |
| ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------- |
| **Orchestrated pipeline** (`run_full_*`, `run_optimized_pipeline`) | Ship fast with default behavior, keep your agent small, or call the pack from another agent.               |
| **Granular steps**                                                 | Customize intermediate outputs, branch on results, inject your own prompts/LLM, or cache expensive stages. |
| **Render HTML action**                                             | Send the output as an email or display it in a human-readable report.                                      |

## Authentication

All pack endpoints use the same [bearer token](/api-reference) as the rest of the Agent.ai API. You can also invoke them from inside an agent via the Agent Builder — no token needed.
