Skip to content

Section A · Agent Design · Free

A2. Tool-Use Planning Template

What this does

Plan a sequence of tool calls (price fetches, position queries, oracle reads, etc.) before committing to an action. Reduces the "agent acts then fetches data" failure mode.

What to expect back

Ordered list of tool calls with dependencies.

Works with

No tools. This one is pure thinking, and works before you connect anything.

The prompt

Inputs

  • AVAILABLE_TOOLSlist of tool names and their input/output shapes
  • DECISION_CONTEXTwhat the agent is trying to decide
  • LATENCY_BUDGETmilliseconds available for tool sequence

A · Agent Design