> For the complete documentation index, see [llms.txt](https://docs.toolregistry.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.toolregistry.ai/concepts/intent-and-context.md).

# Intent & Context

Use **Intent** to say *what* to accomplish. Use **Context** to supply *everything the AI needs to do it safely and correctly*.

### Intent

Describe the goal in natural language. Be direct.

> "Schedule a meeting with John next week"

> "Create a new contact in CRM from the last inbound email"

Good intents are outcome‑focused&#x20;

### Context

Add execution details the agent shouldn’t have to infer or expose to end users. This is a free‑form guidance. Use it to pass:

* Time constraints and windows (`timezone=Europe/Copenhagen`, `window=next_week`)
* Environmental facts and feature flags (`crm=hubspot`, `dry_run=false`)
* Data bindings and IDs the UI shouldn’t show
* Safety constraints / policies (max changes per run, rate limits)
* Additional guidance for edge cases

**Do NOT leak sensitive context to users.** Context is meant for the system/agent, not for display.
