Agent SkillsAgent Skills

Project Analysis

Analyze projects for skill suggestions, security audits, pattern mining, and insights

suggestauditmineinsight

suggest#

Get skill suggestions based on your project's tech stack.

skills suggest [options]
# Alias: skills sg
OptionDescription
-l, --limit <n>Maximum number of suggestions (default: 10)
-m, --min-score <n>Minimum match score 0–100 (default: 20)
-c, --category <cat>Filter by category
-t, --task <query>Search skills by task description
-v, --verboseShow detailed match reasons
-j, --jsonOutput in JSON format
-p, --path <dir>Project path (default: current directory)

Example:

skills suggest --json
skills sg -t "unit testing" -v
skills suggest --min-score 50

audit#

Security audit — scan skills for vulnerabilities.

skills audit <path> [options]
# Alias: skills scan <path>
OptionDescription
-f, --format <format>Output format: summary, json, table, sarif (default: summary)
--fail-on <severity>Exit code 1 if findings ≥ severity (critical, high, medium, low)
--skip-rules <rules>Comma-separated rule IDs to skip

Examples:

skills audit ./my-skill
skills scan ./my-skill --format sarif
skills audit ./skill --fail-on high    # CI/CD friendly

Output:

🔍 Scanning: my-skill

  ✓ No security issues found

  Checks: 12 passed, 0 warnings, 0 critical

mine#

Extract coding patterns and conventions from git history.

skills mine [options]
# Alias: skills mn
OptionDescription
-d, --depth <n>Number of commits to analyze (default: 100)
-o, --output <path>Save patterns to file
-f, --format <fmt>Output format: text, json, skill (default: text)

Example:

skills mine --depth 5           # Analyze last 5 commits
skills mine -f skill -o .       # Generate a skill from patterns
skills mn --depth 50 -f json    # JSON for processing

insight#

Analyze installed skills — patterns, coverage, and gaps.

skills insight [options]
# Alias: skills in
OptionDescription
-j, --jsonOutput as JSON
-v, --verboseShow detailed breakdown