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

# Recipes

> Multi-step CLI workflows that compose Path leaf commands with jq, shell pipes, and standard Unix tools.

Recipes are end-to-end scripts that solve a single, scoped job: pull this month's registrants, run a CSV import from analyze to recovery, compare a set of channels, or shape any list with `jq`. Each one composes the leaf commands already documented under [Commands](/cli/commands/path/overview) with standard shell tools, so nothing is hidden behind a wrapper.

## When to use a recipe

* You want a finished workflow, not a per-command reference.
* You need to run the same multi-step report on a schedule and want a starting script.
* You're an AI agent and you want a documented composition pattern to follow.

<CardGroup cols={3}>
  <Card title="New registrants this week" icon="user-plus" href="/cli/recipes/new-registrants">
    Pull the latest event sign-ups, filter by date, and export them for follow-up.
  </Card>

  <Card title="CSV import end-to-end" icon="file-csv" href="/cli/recipes/csv-import">
    Analyze, create, poll, and recover failed rows in one script.
  </Card>

  <Card title="Channel analysis" icon="chart-mixed" href="/cli/recipes/channel-analysis">
    Combine channel-event attribution with audience overlap for a full ROI view.
  </Card>

  <Card title="Scripting with jq" icon="terminal" href="/cli/recipes/scripting-with-jq">
    Reusable `jq` snippets for filtering, projecting, and aggregating CLI JSON output.
  </Card>
</CardGroup>

## See also

* [Commands](/cli/commands/path/overview). Every leaf command the recipes compose.
* [Output format](/cli/output-format). The JSON envelope `jq` walks.
* [AI agent skills](/cli/agents/skills). The same recipes packaged as installable skills.
