plugins/dev-workflow/skills-pi/coding/SKILL.md
Implementation process discipline for all languages — surface assumptions, define verifiable success criteria, and ground work in project domain docs. Use when implementing features, writing functions/classes/modules, or adding code. Complements language-specific skills and includes test-first guidance when implementation is explicitly TDD.
npx skillsauth add alexei-led/claude-code-config codingInstall 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.
State assumptions. Do not pick an interpretation silently.
CONTEXT.mdCONTEXT-MAP.mddocs/adr/*/CONTEXT.md or */docs/adr/Transform the task into verifiable goals.
| Vague | Verifiable | | ---------------- | --------------------------------------------------- | | "Add validation" | Write invalid-input tests, then make them pass | | "Fix the bug" | Reproduce with a test or script, then make it pass | | "Refactor X" | Tests pass before and after, diff stays minimal |
For multi-step work, state a brief plan. Every step must include its own verification check; do not write unverified plan steps. In first responses to ambiguous feature work, every numbered plan item must include → verify:; a single final "run tests" step is not enough.
1. Read domain docs and ADRs → verify: list concepts/constraints found or say none exist
2. Define export behavior and privacy rules → verify: user confirms success criteria
3. Add CSV/JSON behavior tests → verify: targeted tests fail for missing behavior
4. Implement export path → verify: targeted tests pass and broader suite still passes
Use this when the user asks for TDD, test-first, or red-green-refactor.
Cycle:
RED: one behavior test fails
GREEN: minimal implementation passes
REFACTOR: simplify without changing behavior
Every changed line must trace to the request.
When done, check the diff:
CONTEXT.md vocabulary? Rename to match the domain language.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. NOT for generic implementation planning that does not read or write `.spec/` files.
development
Simple web development with HTML, CSS, JS, and HTMX. Use when working with .html, .css, or .htmx files, web templates, stylesheets, or vanilla JS scripts. NOT for React/Vue/Angular (use writing-typescript) or Node.js backends.
tools
Idiomatic TypeScript development. Use when writing TypeScript code, Node.js services, React apps, or TypeScript design advice. Emphasizes strict typing, boundary validation, composition, fast feedback, behavior tests, and project-configured tooling. NOT for Go, Python, Rust, plain HTML/CSS/JS, or server-rendered templates (use writing-web).
tools
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, CI `run:` shell bodies, or command-runner recipes. Emphasizes portability, quoting, safe filesystem/process handling, non-TUI CLI tools, ShellCheck, shfmt, Bats, and ShellSpec. NOT for Python, Rust, TypeScript, Go, web code, or GitHub Actions workflow/job/permissions semantics; use operating-infra.