skills/skill/SKILL.md
Unified skill lifecycle management. Triggers on: "skill explore", "skill new", "skill learn", "skill consolidate", "skill update", "skill critique", "skill feedback", "skill help", "skill create", "skill improve", "skill review", "skill scaffold", "explore skills", "create a skill", "make a skill for", "learn from", "extract skill from", "skill from PR", "skill from URL", "skill from path", "merge skills", "consolidate skills", "combine skills", "update skill", "improve skill", "critique skill", "review skill quality", "report skill bug", "skill issue", "scaffold skill repo", "init skill repo", "new skill repo". Pass a subcommand as the first argument.
npx skillsauth add cloudvoyant/codevoyant skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Compatibility: AskUserQuestion falls back to numbered list on non-Claude-Code platforms.
command -v npx >/dev/null 2>&1 || echo "MISSING: npx"
Pass your intent directly on the invocation line — new and explore proceed immediately with no opening question when a description is provided.
/skill new add a /summarize command that condenses long files
/skill explore linear integration
/skill update linear-push
help.md — never error silently$REMAINING_ARGS unchangedreferences/workflows/ for per-verb behaviour; see references/ for all templatesVERB="[first non-flag argument, or empty]"
REMAINING_ARGS="[everything after VERB, preserving order and flags]"
# Normalise aliases
case "$VERB" in
"") VERB="help" ;;
"create") VERB="new" ;;
"improve") VERB="update" ;;
"review") VERB="critique" ;;
"scaffold") VERB="scaffold" ;;
"init") VERB="scaffold" ;;
"bootstrap") VERB="scaffold" ;;
esac
Read and execute references/workflows/{VERB}.md, passing $REMAINING_ARGS as the argument string.
If references/workflows/{VERB}.md does not exist, fall back to references/workflows/help.md and note the unknown verb.
references/workflows/explore.md) — research existing skills on agentskill.sh before buildingreferences/workflows/new.md) — create a new Claude Code compatible skill from a descriptionreferences/workflows/learn.md) — extract a skill from a local path, URL, or PR/MR diffreferences/workflows/consolidate.md) — merge two skills into one, deduplicating workflowsreferences/workflows/update.md) — update or improve an existing skillreferences/workflows/critique.md) — evaluate skill quality across 5 dimensionsreferences/workflows/feedback.md) — open a GitHub or GitLab issue to report a skill problemreferences/workflows/scaffold.md) — initialise a new skill repo with annotated example skillsreferences/workflows/help.md) — print command referencetools
Vim and Neovim key binding reference. Triggers on: "vim keys", "vim shortcuts", "how do I open a file in vim", "vim search replace", "vim splits", "vim buffers", "how do I navigate in vim".
testing
Generate a responsible-AI usage and decision-attribution report for the current session. Triggers on: "usage report", "usage generate", "usage run", "usage help".
development
Unified task runner dispatcher: auto-detects mise, just, task.dev, or package.json scripts and provides commands to run, list, or detect the project task runner. Triggers on: "/task", "run task", "list tasks", "detect task runner", "what tasks", "mise run", "just run", "pnpm run", "package.json scripts".
development
TanStack patterns: Start file-based routing, Router v1, Query v5, Form, and server functions. Load when working with @tanstack/ packages in a React project.