Catalog
affaan-m/security-scan

affaan-m

security-scan

Scan your Claude Code configuration (.claude/ directory) for security vulnerabilities, misconfigurations, and injection risks using AgentShield. Checks CLAUDE.md, settings.json, MCP servers, hooks, and agent definitions.

global
New~1.1k
v1.1Saved May 11, 2026

Security Scan Skill

Audit your Claude Code configuration for security issues using AgentShield.

When to Activate

  • Setting up a new Claude Code project
  • After modifying .claude/settings.json, CLAUDE.md, or MCP configs
  • Before committing configuration changes
  • When onboarding to a new repository with existing Claude Code configs
  • Periodic security hygiene checks

What It Scans

File Checks
CLAUDE.md Hardcoded secrets, auto-run instructions, prompt injection patterns
settings.json Overly permissive allow lists, missing deny lists, dangerous bypass flags
mcp.json Risky MCP servers, hardcoded env secrets, npx supply chain risks
hooks/ Command injection via interpolation, data exfiltration, silent error suppression
agents/*.md Unrestricted tool access, prompt injection surface, missing model specs

Prerequisites

AgentShield must be installed. Check and install if needed:

# Check if installed
npx ecc-agentshield --version

# Install globally (recommended)
npm install -g ecc-agentshield

# Or run directly via npx (no install needed)
npx ecc-agentshield scan .

Usage

Basic Scan

Run against the current project's .claude/ directory:

# Scan current project
npx ecc-agentshield scan

# Scan a specific path
npx ecc-agentshield scan --path /path/to/.claude

# Scan with minimum severity filter
npx ecc-agentshield scan --min-severity medium

Output Formats

# Terminal output (default) — colored report with grade
npx ecc-agentshield scan

# JSON — for CI/CD integration
npx ecc-agentshield scan --format json

# Markdown — for documentation
npx ecc-agentshield scan --format markdown

# HTML — self-contained dark-theme report
npx ecc-agentshield scan --format html > security-report.html

Auto-Fix

Apply safe fixes automatically (only fixes marked as auto-fixable):

npx ecc-agentshield scan --fix

This will:

  • Replace hardcoded secrets with environment variable references
  • Tighten wildcard permissions to scoped alternatives
  • Never modify manual-only suggestions

Opus 4.6 Deep Analysis

Run the adversarial three-agent pipeline for deeper analysis:

# Requires ANTHROPIC_API_KEY
export ANTHROPIC_API_KEY=your-key
npx ecc-agentshield scan --opus --stream

This runs:

  1. Attacker (Red Team) — finds attack vectors
  2. Defender (Blue Team) — recommends hardening
  3. Auditor (Final Verdict) — synthesizes both perspectives

Initialize Secure Config

Scaffold a new secure .claude/ configuration from scratch:

npx ecc-agentshield init

Creates:

  • settings.json with scoped permissions and deny list
  • CLAUDE.md with security best practices
  • mcp.json placeholder

GitHub Action

Add to your CI pipeline:

- uses: affaan-m/agentshield@v1
  with:
    path: '.'
    min-severity: 'medium'
    fail-on-findings: true

Severity Levels

Grade Score Meaning
A 90-100 Secure configuration
B 75-89 Minor issues
C 60-74 Needs attention
D 40-59 Significant risks
F 0-39 Critical vulnerabilities

Interpreting Results

Critical Findings (fix immediately)

  • Hardcoded API keys or tokens in config files
  • Bash(*) in the allow list (unrestricted shell access)
  • Command injection in hooks via ${file} interpolation
  • Shell-running MCP servers

High Findings (fix before production)

  • Auto-run instructions in CLAUDE.md (prompt injection vector)
  • Missing deny lists in permissions
  • Agents with unnecessary Bash access
  • Silent error suppression in hooks (2>/dev/null, || true)
  • Missing PreToolUse security hooks
  • npx -y auto-install in MCP server configs

Info Findings (awareness)

  • Missing descriptions on MCP servers
  • Prohibitive instructions correctly flagged as good practice
Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

86/100

Grade

A

Excellent

Safety

88

Quality

85

Clarity

88

Completeness

82

Summary

A security audit skill that uses AgentShield to scan Claude Code configuration files (.claude/ directory) for vulnerabilities, misconfigurations, and injection risks. The skill provides multiple scanning modes (basic, deep analysis with Opus 4.6, auto-fix), output formats (terminal, JSON, Markdown, HTML), and GitHub Action integration. It audits CLAUDE.md, settings.json, MCP configs, hooks, and agent definitions for hardcoded secrets, prompt injection, command injection, and overly permissive permissions.

Detected Capabilities

file readshell execution (npx)JSON output generationenvironment variable reads (ANTHROPIC_API_KEY)external dependency invocation (AgentShield tool)API calls to Claude API for deep analysis (Opus 4.6)GitHub Actions integration

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

scan claude configurationsecurity audit configdetect hardcoded secretscheck prompt injectionaudit agent permissionssecurity governance checkclaude code setup

Risk Signals

INFO

ANTHROPIC_API_KEY environment variable read for Opus deep analysis

Usage > Opus 4.6 Deep Analysis section
INFO

External tool dependency on ecc-agentshield via npx

Prerequisites and Usage sections
INFO

Claude API invocation for adversarial analysis (requires API key and quota)

Opus 4.6 Deep Analysis section

Referenced Domains

External domains referenced in skill content, detected by static analysis.

github.comwww.npmjs.com

Use Cases

  • Audit Claude Code configuration before deploying to production
  • Check for hardcoded secrets and credentials in .claude/ files
  • Detect prompt injection vulnerabilities in CLAUDE.md and agent definitions
  • Identify overly permissive tool permissions and missing security guardrails
  • Integrate security scanning into CI/CD pipelines with GitHub Actions
  • Deep-dive security analysis using adversarial red-team and blue-team agents
  • Scaffold secure starter configurations for new Claude Code projects

Quality Notes

  • Clear and well-organized skill with distinct sections for activation, scanning targets, and usage patterns
  • Comprehensive table of what files are scanned and what checks are performed
  • Multiple invocation patterns documented: basic scan, formatted output, auto-fix, deep analysis, initialization, and CI/CD integration
  • Severity levels and interpretation guide help users understand and prioritize findings
  • Good balance of explanation and practical examples — prerequisites clearly state install vs. npx options
  • Security scope is well-defined: audits Claude Code configs, not general code scanning
  • GitHub Action provides CI/CD integration path
  • Limitations section implicitly clear: only checks .claude/ directory, depends on AgentShield tool
  • Links to external resources (GitHub, npm) are provided for additional documentation
Model: claude-haiku-4-5-20251001Analyzed: May 11, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

v1.1

Content updated

2026-04-20

Latest
v1.0

Seeded from github.com/affaan-m/everything-claude-code

2026-03-16

Add affaan-m/security-scan to your library

Command Palette

Search for a command to run...