agents/skills/coding/SKILL.md
Use before starting work on any coding task: implementing a feature, fixing a bug, refactoring, or changing code. Drives the complete implementation.
npx skillsauth add juanibiapina/dotfiles 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.
Drive a coding task from goal to implementation. Plan first in an isolated context, then implement once the user approves.
Explore enough to ask good questions. Restate the goal in your own words and confirm it with the user before planning.
Invoke a subagent to research and plan in an isolated context:
subagent {
model: "<model>", # optional; omit to inherit the default model
task: "Load the plan skill and produce a plan for: <confirmed goal>"
}
The subagent researches the codebase, writes the plan to a tmp file, and returns the file path plus a short summary.
Relay the subagent's summary to the user. Communicate succinctly:
Keep it brief but complete at a conceptual level so the user can review without reading the plan file or specific code changes.
On feedback, read the plan file and edit it directly. Do not re-invoke the subagent. Do not assume the user or the plan is right: re-check the code, documentation, or research online as needed.
When the user approves the plan, implement it:
development
Use when writing code plans, architecture, or generally discussing code
testing
Use when writing, reviewing, or improving tests, deciding what to mock, or designing interfaces for testability.
development
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
development
Find deep-module opportunities in a codebase. Use when the user wants to improve architecture, refactor, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.