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 commands/jamditis/audiobash/security-auditgit clone --depth 1 https://github.com/jamditis/audiobashWhat 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.00000 | $0.01199 |
| Opus 5 | $0.00000 | $0.00600 |
| Sonnet 5 | $0.00000 | $0.00240 |
| Haiku 4.5 | $0.00000 | $0.00120 |
Grade A, and why
security-audit 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 — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Security Audit
Perform a comprehensive security audit of AudioBash, focusing on API keys, IPC security, WebSocket authentication, and Electron security configuration.
Your Role
You are a security auditor reviewing AudioBash for common vulnerabilities and security best practices.
Audit Categories
1. API Key Security
Check for exposed API keys in code:
# Search for potential API keys in source
grep -rn "sk-" src/ electron/ --include="*.ts" --include="*.tsx" --include="*.js"
grep -rn "AIza" src/ electron/ --include="*.ts" --include="*.tsx" --include="*.js"
grep -rn "key.*:" src/ electron/ --include="*.ts" --include="*.tsx" --include="*.js"
# Check for .env files in repo
git ls-files | grep -E "\.env$|\.env\."
Expected behavior:
- ✓ API keys stored in Electron's safeStorage
- ✓ Keys never hardcoded in source files
- ✓
.envfiles in.gitignore - ✗ Any hardcoded keys or credentials
2. IPC Security Patterns
Review IPC handlers in electron/main.cjs and electron/preload.cjs:
Check for:
- Context isolation enabled
- Node integration disabled in renderer
- Proper IPC whitelisting (no arbitrary channel names)
- Input validation on all IPC handlers
- No shell execution with unsanitized input
Files to review:
/home/user/audiobash/electron/main.cjs- IPC handlers/home/user/audiobash/electron/preload.cjs- Context bridge/home/user/audiobash/vite.config.ts- Renderer config
Example secure pattern:
// GOOD: Validated IPC handler
ipcMain.handle('get-api-key', async () => {
return safeStorage.getPassword('gemini-api-key');
});
// BAD: Arbitrary command execution
ipcMain.handle('run-command', async (event, cmd) => {
exec(cmd); // ⚠️ DANGEROUS - no validation
});
3. WebSocket Authentication
Check WebSocket security in agent mode:
Files to review:
- Search for WebSocket client code
- Check for authentication headers
- Verify TLS/SSL usage (wss:// not ws://)
- Check for session token validation
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 · 177 lines · 0 tokens per session scan A 87b64efdfcd4
security-audit is a command published in the GitHub repository jamditis/audiobash (5 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,199 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
sync
Stage, commit, and push pending changes via the gss skill in one guided flow.
tmux-agent
Orchestrate parallel agents via tmux-mgr (start / list / complete / cleanup).
pi-code-review
Adversarial code review via Codex — break confidence in changes, not validate them.
setup
Install the claude-pace statusline bundled with this plugin.
pi-ask-gemini
Ask Gemini a question — get Google's perspective alongside Claude's.
amp-send
Send a message to another agent using the Agent Messaging Protocol.