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

# suprsend-docs-support

> Use the docs-support skill to give your AI agent live SuprSend documentation access and the right support channels for accurate answers and escalation.

**Use this skill when** you want your AI agent to answer SuprSend questions accurately - pulling from live docs instead of guessing from training data - and to know exactly where to point you for human help when needed.

The skill teaches your agent two things:

<CardGroup cols={2}>
  <Card title="Map of SuprSend docs" icon="map">
    A structured map of SuprSend documentation, including LLM-optimized `.md` endpoints it can fetch on demand.
  </Card>

  <Card title="Right support channel" icon="life-ring">
    Which support channel to point you at for each kind of question - Agent, in-app chat, Slack, or email.
  </Card>
</CardGroup>

<Card title="Install" icon="download">
  ```bash theme={"system"}
  npx skills add https://github.com/suprsend/skills --skill suprsend-docs-support
  ```
</Card>

***

## Try it

<Steps>
  <Step title="Ask a question it wouldn't know offhand">
    ```text theme={"system"}
    What's the difference between batch and digest nodes in
    SuprSend workflows? When should I use each?
    ```
  </Step>

  <Step title="Your agent fetches live docs">
    The skill activates and your agent fetches [`docs.suprsend.com/docs/batch.md`](https://docs.suprsend.com/docs/batch.md) and [`docs.suprsend.com/docs/digest.md`](https://docs.suprsend.com/docs/digest.md), then answers from the live docs - not from possibly-stale training data.
  </Step>
</Steps>

***

## Documentation endpoints

Every SuprSend docs page is available as plain Markdown - just append `.md` to any URL.

<AccordionGroup>
  <Accordion title="llms.txt - page index" icon="list">
    [`docs.suprsend.com/llms.txt`](https://docs.suprsend.com/llms.txt)

    A page index. Fetch this first to find the right page.
  </Accordion>

  <Accordion title="llms-full.txt - everything in one file" icon="book">
    [`docs.suprsend.com/llms-full.txt`](https://docs.suprsend.com/llms-full.txt)

    Every doc page in one file. Use for broad lookups.
  </Accordion>

  <Accordion title="Any specific page" icon="file-lines">
    [`docs.suprsend.com/<path>.md`](https://docs.suprsend.com)

    Any specific page in plain Markdown.
  </Accordion>
</AccordionGroup>

<Tip>
  The skill teaches your agent to fetch `llms.txt` first to locate the right page, then fetch only that page with `.md`. Keeps context lean and answers accurate.
</Tip>

***

## Support channels

When your agent hits its limits, it'll point you here.

<CardGroup cols={2}>
  <Card title="Agent" icon="wand-magic-sparkles" href="https://app.suprsend.com">
    [app.suprsend.com](https://app.suprsend.com) - orb bottom-right (`Cmd+/` / `Ctrl+/`).

    **Best for:** instant answers, debugging inside the dashboard.
  </Card>

  <Card title="In-app chat" icon="comments">
    Dashboard → **?** → **Chat with us**.

    **Best for:** human support.
  </Card>

  <Card title="Slack" icon="slack" href="https://join.slack.com/t/suprsendcommunity/shared_invite/zt-3932rw936-XNWY1RC8bsffh4if4ZyoXQ">
    [Join the community](https://join.slack.com/t/suprsendcommunity/shared_invite/zt-3932rw936-XNWY1RC8bsffh4if4ZyoXQ).

    **Best for:** community Q\&A and discussion.
  </Card>

  <Card title="Email" icon="envelope" href="mailto:support@suprsend.com">
    [support@suprsend.com](mailto:support@suprsend.com).

    **Best for:** bug reports, account questions.
  </Card>
</CardGroup>

***

## Learn more

<CardGroup cols={2}>
  <Card title="SuprSend Docs" icon="book-open" href="https://docs.suprsend.com">
    The full documentation site.
  </Card>

  <Card title="Workflow Schema skill" icon="diagram-project" href="/reference/agent-skill-workflow-schema">
    Pair this skill with the schema skill for accurate workflow generation.
  </Card>

  <Card title="Template Schema skill" icon="file-lines" href="/reference/agent-skill-template-schema">
    Pair with the template skill for accurate variant authoring.
  </Card>

  <Card title="CLI skill" icon="terminal" href="/reference/agent-skill-cli">
    Pair with the CLI skill for end-to-end SuprSend workflows.
  </Card>
</CardGroup>
