review-a-skill
Use when evaluating whether a skill belongs in a library. Preview content, check frontmatter, validate structure, and decide whether to keep, curate, or remove.
What this skill does
# Review A Skill ## Goal Evaluate a single skill's quality, relevance, and safety before it enters or stays in a library. ## Guardrails - Always use `--format json` for machine-readable output in automated pipelines. - Always use `--fields` to limit output size when inspecting catalog entries. - Always use `--dry-run` before curating or removing a skill. - Never remove a skill without first checking if other skills depend on it via `info --format json` dependencies. ## Workflow 1. Preview the skill content to check for quality and safety. ```bash npx ai-agent-skills preview <skill-name> ``` The preview command sanitizes content — if it flags sanitization, investigate before proceeding. 2. Inspect the catalog entry for metadata completeness. ```bash npx ai-agent-skills info <skill-name> --format json --fields name,description,tags,collections,dependencies ``` 3. Validate the skill's SKILL.md structure. ```bash npx ai-agent-skills validate <skill-name> ``` 4. If the skill needs curation (notes, collections, verification): ```bash npx ai-agent-skills curate <skill-name> --notes "Reviewed: solid patterns" --verify --dry-run npx ai-agent-skills curate <skill-name> --notes "Reviewed: solid patterns" --verify ``` 5. If the skill should be removed: ```bash npx ai-agent-skills curate <skill-name> --remove --dry-run npx ai-agent-skills curate <skill-name> --remove --yes ``` ## Decision Criteria - **Keep**: Clear description, valid frontmatter, useful to the library's audience, no injection patterns. - **Curate**: Needs better whyHere, collection placement, or verification status. - **Remove**: Duplicate, outdated, broken source, or contains suspicious content. ## Gotchas - The `preview` command only works for vendored (house) skills. Upstream skills show description and whyHere only. - The `validate` command checks frontmatter structure but not content quality — that requires human or agent judgment. - Removing a skill that other skills depend on will break the dependency graph. Always check `dependencies.usedBy` first.
Related in workflow
absolute-work
IncludedEnd-to-end, phase-gated software development lifecycle for AI agents. Turns a ticket, task, plan, or migration into a validated design, a dependency-graphed task board, and verified code. Triggers on "build this end-to-end", "plan and build", "break this into tasks", "pick up this ticket", "grill me on this", "run this migration", "absolute-work this", or any multi-step development task. Relentlessly interviews to a shared design, writes a reviewed spec, decomposes into atomic tasks on a persistent markdown board, then peels tasks one safe wave at a time with test-first verification. Handles features, bugs, refactors, greenfield projects, planning breakdowns, and migrations.
absolute-simplify
IncludedAutonomously simplifies code in your working changes or targeted files. Detects staged or unstaged git changes, analyzes for simplification opportunities following clean code and clean architecture principles, applies improvements directly, runs tests to verify nothing broke, and shows a structured summary with reasoning. Triggers on "simplify this", "refactor this", "clean up my changes", "absolute-simplify", "simplify my code", "make this cleaner", "tidy this up", "reduce complexity", "flatten this", "remove dead code", or when code needs clarity improvements, nesting reduction, or redundancy removal. Language-agnostic at base with deep opinions for JS/TS/React, Python, and Go.
sentry-sdk-upgrade
IncludedUpgrade the Sentry JavaScript SDK across major versions. Use when asked to upgrade Sentry, migrate to a newer version, fix deprecated Sentry APIs, or resolve breaking changes after a Sentry version bump.
when-using-advanced-swarm-use-swarm-advanced
IncludedAdvanced swarm patterns with dynamic topology switching and self-organizing behaviors for complex multi-agent coordination
development-workflow
IncludedDetailed development workflow with modular patterns for git, review, testing, and deployment.
project-execution
IncludedExecutes implementation plans with progress tracking, checkpoint validation, and quality gates. Use after planning is complete and tasks are ready to implement.