Documentation Index
Fetch the complete documentation index at: https://manifest.build/docs/llms.txt
Use this file to discover all available pages before exploring further.
What you saw
Why it happened
Manifest caps each request at 1000 messages so scoring and tier resolution stay fast. Long agent loops that never prune their context window hit this faster than you’d think.How to fix it
- Trim conversation history before sending. Keep the last N messages plus the system prompt.
- Summarize older turns into a single message instead of replaying the raw history.
- If you actually need more than 1000, split the work across multiple requests.