UseDocumentation Index
Fetch the complete documentation index at: https://redop.useagents.site/docs/llms.txt
Use this file to discover all available pages before exploring further.
derive(...) when several tools need the same request-derived state.
Example
When to use it
- auth metadata shared across many tools
- tenant or account selection from headers
- request-scoped utilities you do not want to recalculate in every handler
Why use derive(...) instead of middleware?
Use derive(...) when you want to enrich ctx. Use middleware when you need to control execution flow.