Documentation Index
Fetch the complete documentation index at: https://crewai-lorenze-imp-docs-improvements.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Decorators
@start()entrypoint, optional conditional trigger@listen(...)downstream method subscription@router(...)label-based deterministic routing@persist()automatic state persistence checkpoints
Runtime contracts
kickoff(inputs=...)initializes or updates run inputs.- final output is the value from the last completed method.
self.statealways has an auto-generatedid.
State contracts
- Use typed state for durable workflows.
- Keep control fields explicit (
route,status,retry_count). - Avoid storing unbounded raw transcripts in state.
Resume and recovery
- Use persistence for recoverable runs.
- Keep idempotent step logic for safe retries.
