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

# For Agents

> Use Bungee docs from coding agents and other LLM-powered tools.

If you are using Bungee from a coding agent or automation workflow, start with the machine-readable files.

<Note>
  If you were looking for `skills.md`, Bungee exposes this file as [`skill.md`](https://docs.bungee.exchange/skill.md).
</Note>

<Tabs>
  <Tab title="skill.md" icon="tools">
    **Best for agent planning and tool selection.** A structured capability summary of what Bungee can do, what inputs it needs, and what constraints apply. Start here.

    ```bash theme={null}
    curl https://docs.bungee.exchange/skill.md
    ```
  </Tab>

  <Tab title="llms.txt" icon="list-tree">
    **Best for fast discovery.** A map of documentation pages and descriptions. Use this to find the right page before loading full docs.

    ```bash theme={null}
    curl https://docs.bungee.exchange/llms.txt
    ```
  </Tab>

  <Tab title="llms-full.txt" icon="file-lines">
    **Best for single-shot grounding.** The entire docs site combined into one text file for broad context in a single fetch.

    ```bash theme={null}
    curl https://docs.bungee.exchange/llms-full.txt
    ```
  </Tab>
</Tabs>

## Recommended order

1. Load [`skill.md`](https://docs.bungee.exchange/skill.md) to understand the Bungee capability surface.
2. Load [`llms.txt`](https://docs.bungee.exchange/llms.txt) to find the most relevant integration pages.
3. Fetch the specific pages you need, or use [`llms-full.txt`](https://docs.bungee.exchange/llms-full.txt) if
   your tool can handle the larger context window.

## Using skills-compatible tooling

If your agent supports the Skills CLI, you can add Bungee directly from the docs domain:

```bash theme={null}
npx skills add https://docs.bungee.exchange
```

After that, use the regular integration guides for implementation details such as [Permit2 integration](/integrate/integration-guides/auto-erc20-permit2), and [onchain requests](/integrate/integration-guides/auto-onchain-requests).
