dist/claude/plugins/spec/skills/spec-core/SKILL.md
Spec-driven development orientation and quick reference. Use when starting spec-driven development, unsure which sub-skill to use, or wanting a pipeline overview and current project state. NOT for executing tasks (spec-work) or marking them done (spec-done).
npx skillsauth add alexei-led/claude-code-config spec-coreInstall 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.
Show the user this quick reference, check .spec/ state, and direct them to the right sub-skill.
spec-init → spec-interview → spec-plan → spec-work → spec-done (loop until epic complete)
spec-status reads state at any point.
spec-init — initialize .spec/, or add requirements from an existing docspec-interview — deep PRD-quality requirement capture via Q&Aspec-plan — create an EPIC + vertical-slice TASKs from a requirement or ideaspec-new — one-off task or requirement from a templatespec-work — implement the next ready task (one per session, user approval at every step)spec-done — mark a task complete with evidence; optionally discover or verify firstspec-status — overview, single-task detail, filtered list, or quality auditCLI at scripts/specctl.
scripts/specctl init — create the .spec/ structurescripts/specctl ready [--epic EPIC-x] — list unblocked tasks, priority orderscripts/specctl show <REQ-x | EPIC-x | TASK-x> — render an artifactscripts/specctl start TASK-x — mark in-progress, record base commitscripts/specctl done TASK-x --summary ... --files ... --commits ... --tests ... — close with evidencescripts/specctl validate — check for orphans, cycles, missing fieldsscripts/specctl status — global counts and progressscripts/specctl dep add A B [--type X] — add dependency with cycle checkscripts/specctl dep rm A B — remove dependencyscripts/specctl epic close X — mark an epic donescripts/specctl session show | resume | step <name> — session state and recoveryscripts/specctl hook install — install git pre-commit validation.spec/reqs/REQ-*.md — requirements (WHAT / WHY).spec/epics/EPIC-*.md — epics grouping related tasks.spec/tasks/TASK-*.md — vertical-slice tasks with dependencies.spec/memory/ — pitfalls, conventions, decisions discovered during work.spec/SESSION.yaml — current session (task, step, base commit).spec/PROGRESS.md — activity logscripts/specctl status 2>/dev/null || echo "NO_SPEC"
.spec/ yet → use the spec-init skill to initialize the projectspec-interview skill to capture requirementsspec-plan skill to create tasksspec-work skill to implement the next tasktools
Idiomatic shell development for POSIX sh, Bash, Zsh, Fish, hooks, CI shell steps, and scriptable CLI glue. Use when writing or changing `.sh`, `.bash`, `.zsh`, `.fish`, `.bats`, shell functions, shell pipelines, or command-runner recipes. Emphasizes portability, quoting, safe filesystem/process handling, non-TUI CLI tools, ShellCheck, shfmt, Bats, and ShellSpec. NOT for Python, TypeScript, Go, web code, or infrastructure operations.
tools
Use when planning, executing, checkpointing, finishing, or inspecting lightweight spec-driven work. Runs one task at a time using `.spec/` markdown files and the bundled `specctl` helper. NOT for broad product discovery beyond a short requirement interview.
testing
Author, inspect, troubleshoot, and review infrastructure across IaC, Kubernetes, cloud resources, containers, CI/CD, and Linux hosts. Use when changing Terraform/OpenTofu, Kubernetes, Helm, Kustomize, Dockerfiles, GitHub Actions, AWS, GCP, Cloud Run, BigQuery, IAM, logs, instances, or service health. NOT for deploy/apply/rollback workflows (see deploying-infra). NOT for shell scripts or generic command pipelines (see writing-shell).
development
Configure safe git workflow hygiene: pre-commit/pre-push hooks, Gitleaks secret scanning, .gitignore rules, local git config, and guardrails. Use when setting up git hooks, gitleaks/git leaks, staged pre-commit checks, pre-push validation, core.hooksPath, .gitignore, or git config best practices. NOT for creating commits (use committing-code), cleaning branches/worktrees (use cleanup-git), or creating worktrees (use using-git-worktrees).