Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/vakandi/elevenlabsmcp-windows/cursorrulesgit clone --depth 1 https://github.com/vakandi/ElevenLabsMcp-WindowsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00629 | $0.00629 |
| Opus 5 | $0.00315 | $0.00315 |
| Sonnet 5 | $0.00126 | $0.00126 |
| Haiku 4.5 | $0.00063 | $0.00063 |
Grade A, and why
cursorrules scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Audio Playback Rules
When User Asks to Speak or Play Audio
When the user requests to "speak", "say something", "talk", or asks to play/generate audio:
-
Always use ElevenLabs MCP to generate audio:
- Use
mcp_elevenlabs_text_to_speechtool with the requested text - Save the audio file to a suitable location (project directory or user's preferred location)
- Note the generated file path
- Use
-
Always use VLC to play audio files:
- Use this detection pattern (try in order):
- Check if
vlcis in PATH:Get-Command vlc -ErrorAction SilentlyContinue - Check common installation paths:
C:\Program Files\VideoLAN\VLC\vlc.exeC:\Program Files (x86)\VideoLAN\VLC\vlc.exe
- Check if
- If VLC is found, use it with background playback flags
- If VLC is not found, inform the user and ask for the VLC installation path
- Use this detection pattern (try in order):
-
Background Playback Pattern (use this exact pattern):
# Find VLC executable $vlcPath = $null $vlcCmd = Get-Command vlc -ErrorAction SilentlyContinue if ($vlcCmd) { $vlcPath = $vlcCmd.Source } elseif (Test-Path "C:\Program Files\VideoLAN\VLC\vlc.exe") { $vlcPath = "C:\Program Files\VideoLAN\VLC\vlc.exe" } elseif (Test-Path "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe") { $vlcPath = "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" } if ($vlcPath) { # Play audio in background without showing VLC window Start-Process -FilePath $vlcPath -ArgumentList "`"$audioFile`"", "--intf", "dummy", "--play-and-exit" -WindowStyle Hidden -ErrorAction SilentlyContinue } else { Write-Host "VLC not found. Please install VLC or provide the path to vlc.exe" }- This ensures VLC plays in the background without opening a visible window
- The
--intf dummyflag prevents GUI,--play-and-exitcloses after playback
-
Always prefer MCP ElevenLabs over other TTS solutions when available.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 53 lines · 629 tokens per session scan A e0ff70cbc805
cursorrules is a cursor rule published in the GitHub repository vakandi/ElevenLabsMcp-Windows (3 stars, last pushed 9mo ago), licensed MIT. It adds 629 tokens to every session, about $0.0031 per session on Opus 5. A static security scan graded it A with 0 findings. It comes from a forked repository.
Other cursor rules, from other repositories
visual-explainer
Optional legacy rule for visual-explainer when you prefer rules over skill discovery.
android-viewmodel
Android ViewModel conventions — StateFlow, repository abstraction, coroutines, no LiveData.
livkiet-plugins-playai
Agent Framework plugin for voice synthesis with PlayAI API.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.