From software-engineering
Use when implementing any feature, component, or bugfix — covers planning, per-unit review, and git commit discipline. Apply to all coding tasks alongside domain-specific skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/software-engineering:development-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Shared workflow for all coding tasks: plan upfront, implement one unit at a time, review with user, commit.
Shared workflow for all coding tasks: plan upfront, implement one unit at a time, review with user, commit.
Apply alongside domain-specific skills (tdd, web-app-design, api-design) for all implementation work.
PLAN → Write plan before any code
IMPLEMENT → Build one unit (test case, component, endpoint)
REVIEW → Stop. Show diff to user. Await approval.
COMMIT → git commit accepted changes; mark unit done in plan
REPEAT → Next unit
Before any code, write a plan to .claude/plans/<type>-<feature-name>.md. Use a prefix matching the work type: tdd-, web-, api-, etc.
# Plan: <feature name>
## Tasks
- [ ] <unit of work>
- [ ] <unit of work>
- [ ] ...
Break work into independent deliverable units. After each committed unit, mark it [x] and save the file.
After completing each unit of work:
git add <changed files>
git commit -m "<conventional commit message describing what was added>"
[x] in the plan file and save it.When all tasks in the plan are marked [x]:
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub de-anchorite/claude-skills --plugin software-engineering