AI Tools
Add Cleanvoice context to Claude, Cursor, Copilot, and any AI coding assistant.
Cleanvoice ships a single llms.txt file — a complete reference covering every API endpoint, config option, and SDK method in a format optimised for AI models. Load it once and your assistant will know the full API without you ever having to explain it.
https://docs.cleanvoice.ai/llms.txtAdd to Claude Code
Append to CLAUDE.md in your project root:
curl -s https://docs.cleanvoice.ai/llms.txt >> CLAUDE.mdClaude will now understand the Cleanvoice API, both SDKs, all config options, and the async job pattern in every conversation within that project.
Add to Cursor
mkdir -p .cursor/rules
curl -s https://docs.cleanvoice.ai/llms.txt > .cursor/rules/cleanvoice.mdc- Open Cursor Settings → Rules
- Add a new rule and paste the contents of
/llms.txt
Add to GitHub Copilot
curl -s https://docs.cleanvoice.ai/llms.txt >> .github/copilot-instructions.mdAny AI chat
Paste the URL into any model that supports URL fetching, or copy the raw contents directly into your chat context.
What gets loaded
- All API endpoints and request/response shapes
- Every config option with its API, Python, and JavaScript name
- Full SDK method signatures for both Python and JavaScript
- The async submit → poll → download pattern
- Multi-track, fire-and-forget, and async usage examples
- Supported languages