From soundcheck
Flags code treating LLM output as authoritative without safeguards, like direct UI display or automated pipelines, and suggests fixes with confidence gates, disclaimers, human review, and audit logs.
npx claudepluginhub thejefflarson/soundcheck --plugin soundcheckThis skill uses the workspace's default tool permissions.
Prevents systems from treating LLM output as ground truth. LLMs hallucinate, produce
Audits AI-generated code and LLM applications for security vulnerabilities, covering OWASP Top 10 for LLMs, secure coding patterns, and AI-specific threat models.
Flags insecure LLM output handling in code to prevent XSS, command injection, and SQL injection. Use when rendering to UI, executing generated code/shell, or passing to DB/APIs.
Audits LLM and GenAI applications for OWASP Top 10 2025 vulnerabilities including prompt injection, data leakage, supply chain risks, and more. Use before deployment, for RAG reviews, or pen testing.
Share bugs, ideas, or general feedback.
Prevents systems from treating LLM output as ground truth. LLMs hallucinate, produce confident-sounding errors, and lack real-time knowledge. Acting on unverified output in medical, legal, financial, or deployment contexts can cause serious harm.
When this skill invokes, flag the vulnerable code and explain the risk. Then suggest a fix that establishes these properties:
CONFIDENCE_THRESHOLD or a HIGH_STAKES_DOMAINS set without a conditional that
actually diverges behavior (review queue vs. direct return / proceed vs. halt) is
the exact bug this skill prevents. The failing branch routes to human review; the
passing branch attaches a disclaimer and returns.Anchor (Python, any language works the same way):
if confidence < THRESHOLD or domain in HIGH_STAKES:
audit_log(prompt, content, confidence) # enough to reconstruct the call
return route_to_human_review(content + DISCLAIMER)
return content + DISCLAIMER # no raw output; disclaimer on every path
Confirm these properties hold (language-agnostic; apply only where the pattern is present):