CleanvoiceDocs

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.txt

Add to Claude Code

Append to CLAUDE.md in your project root:

curl -s https://docs.cleanvoice.ai/llms.txt >> CLAUDE.md

Claude 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
  1. Open Cursor Settings → Rules
  2. 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.md

Any 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