security-audit

A security-audit command for AudioBash, an Electron voice-controlled terminal application.

In plain words
What is it for?
Use it to inspect API-key storage, environment files, IPC handlers, WebSocket authentication, Electron security settings, input validation, and dependency risks.
Why use it?
It checks common places where credentials, commands, or communication between app processes can become unsafe before release.

Command for Claude Code

Install

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.

agentmods
npx agentmods add commands/jamditis/audiobash/security-audit
Clone the repo
git clone --depth 1 https://github.com/jamditis/audiobash

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,199 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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

ModelPer sessionOnce 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

Measured 2d ago against content hash 87b64efdfcd4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.claude/commands/security-audit.md · 177 lines

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
  • .env files 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

Read the full file on GitHub · 177 lines

Changes

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.

  1. 2d ago First seen · 177 lines · 0 tokens per session scan A 87b64efdfcd4

Subscribe to this mod's changes

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.