Catalog
affaan-m/skill-stocktake

affaan-m

skill-stocktake

Use when auditing Claude skills and commands for quality. Supports Quick Scan (changed skills only) and Full Stocktake modes with sequential subagent batch evaluation.

global
origin:ECC
New~1.9k
v1.0Saved Jul 14, 2026

skill-stocktake

Slash command (/skill-stocktake) that audits all Claude skills and commands using a quality checklist + AI holistic judgment. Supports two modes: Quick Scan for recently changed skills, and Full Stocktake for a complete review.

Scope

The command targets the following paths relative to the directory where it is invoked:

Path Description
~/.claude/skills/ Global skills (all projects)
{cwd}/.claude/skills/ Project-level skills (if the directory exists)

At the start of Phase 1, the command explicitly lists which paths were found and scanned.

Targeting a specific project

To include project-level skills, run from that project's root directory:

cd ~/path/to/my-project
/skill-stocktake

If the project has no .claude/skills/ directory, only global skills and commands are evaluated.

Modes

Mode Trigger Duration
Quick Scan results.json exists (default) 5–10 min
Full Stocktake results.json absent, or /skill-stocktake full 20–30 min

Results cache: ~/.claude/skills/skill-stocktake/results.json

Quick Scan Flow

Re-evaluate only skills that have changed since the last run (5–10 min).

  1. Read ~/.claude/skills/skill-stocktake/results.json
  2. Run: bash ~/.claude/skills/skill-stocktake/scripts/quick-diff.sh \ ~/.claude/skills/skill-stocktake/results.json (Project dir is auto-detected from $PWD/.claude/skills; pass it explicitly only if needed)
  3. If output is []: report "No changes since last run." and stop
  4. Re-evaluate only those changed files using the same Phase 2 criteria
  5. Carry forward unchanged skills from previous results
  6. Output only the diff
  7. Run: bash ~/.claude/skills/skill-stocktake/scripts/save-results.sh \ ~/.claude/skills/skill-stocktake/results.json <<< "$EVAL_RESULTS"

Full Stocktake Flow

Phase 1 — Inventory

Run: bash ~/.claude/skills/skill-stocktake/scripts/scan.sh

The script enumerates skill files, extracts frontmatter, and collects UTC mtimes. Project dir is auto-detected from $PWD/.claude/skills; pass it explicitly only if needed. Present the scan summary and inventory table from the script output:

Scanning:
  ✓ ~/.claude/skills/         (17 files)
  ✗ {cwd}/.claude/skills/    (not found — global skills only)
Skill 7d use 30d use Description

Phase 2 — Quality Evaluation

Launch an Agent tool subagent (general-purpose agent) with the full inventory and checklist:

Agent(
  subagent_type="general-purpose",
  prompt="
Evaluate the following skill inventory against the checklist.

[INVENTORY]

[CHECKLIST]

Return JSON for each skill:
{ \"verdict\": \"Keep\"|\"Improve\"|\"Update\"|\"Retire\"|\"Merge into [X]\", \"reason\": \"...\" }
"
)

The subagent reads each skill, applies the checklist, and returns per-skill JSON:

{ "verdict": "Keep"|"Improve"|"Update"|"Retire"|"Merge into [X]", "reason": "..." }

Chunk guidance: Process ~20 skills per subagent invocation to keep context manageable. Save intermediate results to results.json (status: "in_progress") after each chunk.

After all skills are evaluated: set status: "completed", proceed to Phase 3.

Resume detection: If status: "in_progress" is found on startup, resume from the first unevaluated skill.

Each skill is evaluated against this checklist:

- [ ] Content overlap with other skills checked
- [ ] Overlap with MEMORY.md / CLAUDE.md checked
- [ ] Freshness of technical references verified (use WebSearch if tool names / CLI flags / APIs are present)
- [ ] Usage frequency considered

Verdict criteria:

Verdict Meaning
Keep Useful and current
Improve Worth keeping, but specific improvements needed
Update Referenced technology is outdated (verify with WebSearch)
Retire Low quality, stale, or cost-asymmetric
Merge into [X] Substantial overlap with another skill; name the merge target

Evaluation is holistic AI judgment — not a numeric rubric. Guiding dimensions:

  • Actionability: code examples, commands, or steps that let you act immediately
  • Scope fit: name, trigger, and content are aligned; not too broad or narrow
  • Uniqueness: value not replaceable by MEMORY.md / CLAUDE.md / another skill
  • Currency: technical references work in the current environment

Reason quality requirements — the reason field must be self-contained and decision-enabling:

  • Do NOT write "unchanged" alone — always restate the core evidence
  • For Retire: state (1) what specific defect was found, (2) what covers the same need instead
    • Bad: "Superseded"
    • Good: "disable-model-invocation: true already set; superseded by continuous-learning-v2 which covers all the same patterns plus confidence scoring. No unique content remains."
  • For Merge: name the target and describe what content to integrate
    • Bad: "Overlaps with X"
    • Good: "42-line thin content; Step 4 of chatlog-to-article already covers the same workflow. Integrate the 'article angle' tip as a note in that skill."
  • For Improve: describe the specific change needed (what section, what action, target size if relevant)
    • Bad: "Too long"
    • Good: "276 lines; Section 'Framework Comparison' (L80–140) duplicates ai-era-architecture-principles; delete it to reach ~150 lines."
  • For Keep (mtime-only change in Quick Scan): restate the original verdict rationale, do not write "unchanged"
    • Bad: "Unchanged"
    • Good: "mtime updated but content unchanged. Unique Python reference explicitly imported by rules/python/; no overlap found."

Phase 3 — Summary Table

Skill 7d use Verdict Reason

Phase 4 — Consolidation

  1. Retire / Merge: present detailed justification per file before confirming with user:
    • What specific problem was found (overlap, staleness, broken references, etc.)
    • What alternative covers the same functionality (for Retire: which existing skill/rule; for Merge: the target file and what content to integrate)
    • Impact of removal (any dependent skills, MEMORY.md references, or workflows affected)
  2. Improve: present specific improvement suggestions with rationale:
    • What to change and why (e.g., "trim 430→200 lines because sections X/Y duplicate python-patterns")
    • User decides whether to act
  3. Update: present updated content with sources checked
  4. Check MEMORY.md line count; propose compression if >100 lines

Results File Schema

~/.claude/skills/skill-stocktake/results.json:

evaluated_at: Must be set to the actual UTC time of evaluation completion. Obtain via Bash: date -u +%Y-%m-%dT%H:%M:%SZ. Never use a date-only approximation like T00:00:00Z.

{
  "evaluated_at": "2026-02-21T10:00:00Z",
  "mode": "full",
  "batch_progress": {
    "total": 80,
    "evaluated": 80,
    "status": "completed"
  },
  "skills": {
    "skill-name": {
      "path": "~/.claude/skills/skill-name/SKILL.md",
      "verdict": "Keep",
      "reason": "Concrete, actionable, unique value for X workflow",
      "mtime": "2026-01-15T08:30:00Z"
    }
  }
}

Notes

  • Evaluation is blind: the same checklist applies to all skills regardless of origin (ECC, self-authored, auto-extracted)
  • Archive / delete operations always require explicit user confirmation
  • No verdict branching by skill origin
Files4
4 files · 11.7 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

78

Quality

85

Clarity

82

Completeness

78

Summary

skill-stocktake is a structured audit command for evaluating Claude skills and subagent commands against a quality checklist. It supports two modes (Quick Scan for recent changes, Full Stocktake for comprehensive review) and uses a four-phase workflow: Phase 1 inventories skills from global and project directories, Phase 2 invokes a subagent to evaluate them against actionable criteria, Phase 3 summarizes results, and Phase 4 consolidates recommendations. Results are cached in JSON to enable incremental updates.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Destructive Operation
SEC-001Recursive Deletion2x in 2 filesMax: B

Recursive deletion pattern (rm -rf)

scripts/scan.shrm -rf
scripts/quick-diff.shrm -rf

Detected Capabilities

file readfile writeshell executionJSON parsing and generationdirectory traversaltimestamps (mtime and UTC)subagent invocationtemporary file creation and cleanup

Trigger Keywords

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

audit skills qualityidentify overlapping skillsskill consolidation reviewdetect stale referencesskill usage frequencyquick scan changes

Risk Signals

INFO

SEC-001: Recursive deletion (rm -rf) in trap cleanup

scripts/scan.sh:99, scripts/quick-diff.sh:74
WARNING

Writes to user home directory (~/.claude/skills/)

SKILL.md Phase 1–4, scripts/save-results.sh:48
WARNING

Reads ~/.claude/observations.jsonl for usage metrics

scripts/scan.sh:15
INFO

Path validation only warns on mismatch (defense-in-depth but not enforced)

scripts/scan.sh:22–25, scripts/quick-diff.sh:27–30
INFO

jq invocations on user-supplied JSON (results.json)

scripts/quick-diff.sh:37, scripts/save-results.sh:32
INFO

Assumes subagent return format is valid (no schema validation)

SKILL.md Phase 2

Use Cases

  • Audit all Claude skills in a project or globally for quality and freshness
  • Identify overlapping or redundant skills that should be merged or retired
  • Detect stale technical references and outdated CLI patterns in skill instructions
  • Track skill usage frequency to prioritize improvements and consolidation
  • Run incremental scans to focus only on recently changed skills
  • Generate actionable improvement recommendations with specific line number and section references

Quality Notes

  • Excellent scope documentation: clearly defines which directories are scanned (global + project-relative) and provides a table of targeting modes.
  • Strong error handling: validates JSON input (save-results.sh:32), checks date format (quick-diff.sh:35–41), and includes detailed path traversal defense-in-depth with environment override for testing.
  • Comprehensive mtime-based diff logic: pre-aggregates observation counts to reduce O(n*m) to O(n+m) jq invocations, uses awk exact field matching to avoid substring false-positives.
  • Verdict criteria are well-defined with actionable examples: 'Retire' and 'Improve' verdict reasons show good/bad format with specific line numbers and rationale.
  • Clear two-mode design: Quick Scan resumes efficiently from results.json cache, Full Stocktake supports resume-on-interrupt with 'status: in_progress' checkpoint.
  • Frontmatter extraction is deliberately simple (single-line values only, no multi-line YAML blocks) with documented limitations — appropriate for the use case.
  • Reason field quality requirements are explicitly stated and include anti-patterns ('unchanged' alone is bad, 'mtime updated but content unchanged...' is good).
  • Phase 2 subagent invocation lacks explicit schema validation for returned JSON — relies on downstream jq parsing to catch malformed results.
  • Chunking guidance (20 skills per batch) is provided but not enforced; skill depends on user/system following this recommendation for stable context.
  • Results cache field 'evaluated_at' must be UTC with seconds precision — script correctly uses `date -u +%Y-%m-%dT%H:%M:%SZ` and validates the format (not date-only approximations).
  • Temporary file handling is correct: uses mktemp with cleanup trap; prevents TMPDIR injection via function variables rather than string interpolation.
  • cleanup in scan.sh and quick-diff.sh uses rm -rf on controlled tmpdir (created by mktemp) — this is safe because the path is generated and not user-controlled.
Model: claude-haiku-4-5-20251001Analyzed: Jul 14, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use affaan-m/skill-stocktake in your dev environment

Command Palette

Search for a command to run...