| name | Software Engineering Practices |
| description | Engineering workflows for WordPress development including compound planning, code review, documentation generation, and git worktree strategies. |
| triggers | ["code review","planning","documentation","git worktree","architecture review","compound planning","engineering workflow"] |
Software Engineering Practices
Structured workflows for planning, reviewing, documenting, and managing WordPress development projects.
Compound Planning
Break complex tasks into phases with clear deliverables.
Planning Template
## Goal
[One sentence — what does success look like?]
## Context
[Relevant existing code, constraints, dependencies]
## Phases
1. **Research** — Understand existing patterns, identify risks
2. **Design** — Architecture decisions, API surface, data flow
3. **Implement** — Code changes with tests
4. **Verify** — Testing, code review, performance check
5. **Ship** — Documentation, changelog, deployment
## Decision Log
| Decision | Rationale | Date |
|---|---|---|
| [Choice made] | [Why] | [When] |
Code Review Checklist
Security
Performance
Quality
WordPress Patterns
Git Worktree Strategy
Maintain parallel working directories:
git worktree add ../my-plugin-feature feature/new-feature
git worktree add ../my-plugin-hotfix hotfix/critical-fix
git worktree remove ../my-plugin-feature
References