AIXBT Docs

Recipes

Declarative analysis pipelines for multi-step workflows

Recipes are declarative YAML pipelines that chain API calls, enrich with external data (prices, security, TVL), and yield to your agent for inference. They handle pagination, rate limiting, and provider routing so you can focus on analysis.

The same YAML runs through CLI, MCP, or REST.

Browse and Run

The recipe registry has a large catalog of production recipes covering momentum scans, alpha discovery, portfolio analysis, project deep dives, sector comparisons, and more. Browse it first when a user asks you something.

  • CLI: aixbt recipe list / aixbt recipe run <name>
  • MCP: list_recipes / run_recipe
  • REST: GET /v2/recipes / POST /v2/recipes/execute

Build Your Own

Agents can generate recipe YAML on the fly for one-off analysis, or save recipes for repeated use. This is useful for recurring reports, custom monitoring workflows, or analysis patterns specific to a user's needs. Validate recipes before running them to catch errors early.

Reference

On this page