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

# Examples

> Start from complete Agent SDK patterns for research, support, coding, and parallel tools.

Choose the smallest example that matches the product you are building. Each pattern keeps persistence and user interfaces in your application while using Phaseo for model turns.

## Included package examples

| Example                   | Use it for                                                 |
| ------------------------- | ---------------------------------------------------------- |
| `research-brief-agent.ts` | Research with managed search and a typed final brief       |
| `support-triage-agent.ts` | Routing and classifying support work with a managed preset |
| `coding-review-agent.ts`  | Reviewing code with local runtime tools                    |
| `parallel-tool-agent.ts`  | Running independent local tools concurrently               |

## Cookbook guides

<CardGroup cols={2}>
  <Card title="Durable agent loop" icon="database" href="../../cookbook/agent-sdk-durable-loop">
    Persist a returned run and continue it in a later request.
  </Card>

  <Card title="Research brief" icon="search-check" href="../../cookbook/agent-sdk-research-brief">
    Combine an agent with grounded web research.
  </Card>

  <Card title="Support triage" icon="life-buoy" href="../../cookbook/agent-sdk-support-triage">
    Keep routing and prompt defaults in a managed preset.
  </Card>

  <Card title="Coding review" icon="code-2" href="../../cookbook/agent-sdk-coding-review">
    Connect focused local tools to a coding workflow.
  </Card>

  <Card title="Parallel tools" icon="waypoints" href="../../cookbook/agent-sdk-parallel-tools">
    Fan out independent tool calls without changing result order.
  </Card>
</CardGroup>

## Related reference

* [Build your first agent](./agent-sdk)
* [Tools](./agent-sdk-tools)
* [State and approval](./agent-sdk-state-and-approval)
