From axiom-planning
Generates atomic-task implementation plans for multi-step projects, with file paths, code examples, TDD steps, and verification for handoff to unfamiliar developers.
npx claudepluginhub tachyon-beep/skillpacks --plugin axiom-planningThis skill uses the workspace's default tool permissions.
Write comprehensive implementation plans assuming the engineer is skilled but unfamiliar with the codebase and project conventions. Document everything they need: which files to touch for each task, complete code examples, testing commands, documentation to reference, and verification steps. Break work into atomic, committable units following DRY, YAGNI, and TDD principles.
Applies Acme Corporation brand guidelines including colors, fonts, layouts, and messaging to generated PowerPoint, Excel, and PDF documents.
Builds DCF models with sensitivity analysis, Monte Carlo simulations, and scenario planning for investment valuation and risk assessment.
Calculates profitability (ROE, margins), liquidity (current ratio), leverage, efficiency, and valuation (P/E, EV/EBITDA) ratios from financial statements in CSV, JSON, text, or Excel for investment analysis.
Write comprehensive implementation plans assuming the engineer is skilled but unfamiliar with the codebase and project conventions. Document everything they need: which files to touch for each task, complete code examples, testing commands, documentation to reference, and verification steps. Break work into atomic, committable units following DRY, YAGNI, and TDD principles.
Announce at start: "I'm using the implementation-planning skill to create the implementation plan."
Context: Plans should be created in a dedicated worktree for isolation.
Save plans to: docs/plans/YYYY-MM-DD-<feature-name>.md
Use implementation-planning when:
Don't use for:
Each step is one atomic action:
Examples of atomic steps:
NOT atomic:
Every plan MUST start with this header:
# [Feature Name] Implementation Plan
> **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task.
**Goal:** [One sentence describing what this builds]
**Architecture:** [2-3 sentences about approach]
**Tech Stack:** [Key technologies/libraries]
**Prerequisites:**
- [Any setup needed before starting]
- [Dependencies that must be installed]
---
Each task follows this template:
### Task N: [Component Name]
**Files:**
- Create: `exact/path/to/file.py`
- Modify: `exact/path/to/existing.py:123-145` (lines if known)
- Test: `tests/exact/path/to/test.py`
- Docs: `docs/path/to/reference.md` (if relevant)
**Step 1: Write the failing test**
```python
def test_specific_behavior():
# Arrange
input_data = create_test_input()
# Act
result = function(input_data)
# Assert
assert result == expected_output
Why this test: [Explain what behavior this verifies]
Step 2: Run test to verify it fails
Run: pytest tests/path/test.py::test_specific_behavior -v
Expected output:
FAILED - NameError: name 'function' is not defined
Step 3: Write minimal implementation
def function(input_data):
"""Brief docstring explaining purpose."""
# Minimal code to make test pass
return expected_output
Why minimal: [Explain what's deliberately omitted for now]
Step 4: Run test to verify it passes
Run: pytest tests/path/test.py::test_specific_behavior -v
Expected output:
PASSED
Step 5: Commit
git add tests/path/test.py src/path/file.py
git commit -m "feat: add specific feature
- Implements [specific behavior]
- Tests verify [specific condition]
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>"
Definition of Done:
## Quality Standards
**Every task MUST include:**
1. **Exact file paths** - No "update the config file" without path
2. **Complete code** - No "add validation logic" without showing the code
3. **Exact commands** - Full command with flags, not "run tests"
4. **Expected output** - What success/failure looks like
5. **Definition of Done** - Checklist for task completion
**Code examples must be:**
- Complete and runnable
- Include necessary imports
- Show actual logic, not pseudocode
- Have minimal comments (code should be self-explanatory)
## Cross-Skill References
**Reference skills using requirement markers, NOT @ syntax:**
```markdown
# ✅ GOOD: Explicit requirement marker
**REQUIRED SUB-SKILL:** Use superpowers:test-driven-development
**BACKGROUND:** Understanding superpowers:systematic-debugging helps with troubleshooting
# ❌ BAD: @ syntax force-loads and burns context
@skills/test-driven-development/SKILL.md
| Mistake | Impact | Fix |
|---|---|---|
| Vague tasks ("add validation") | Engineer doesn't know what to implement | Include complete validation code in plan |
| Missing file paths | Time wasted searching codebase | Exact path for every file touched |
| "Run tests" without specifics | Wrong tests run, or none at all | Exact command with file::function and expected output |
| Generic commit messages | Hard to review, poor history | Follow conventional commits with context |
| Skipping test failure verification | False confidence (test might not work) | Always verify RED before implementing GREEN |
| Combining multiple actions in one step | Unclear what to commit, harder to debug | Each step = one atomic action |
| Assuming context knowledge | Engineer unfamiliar with codebase stuck | Document which files define types, where utilities live |
| Incomplete code examples | "Figure it out" wastes time | Complete, runnable code in plan |
These thoughts mean incomplete plan:
| Excuse | Reality |
|---|---|
| "They'll figure out the details" | Details ARE the plan. Document them. |
| "File path is obvious from context" | Not obvious to someone unfamiliar. State it explicitly. |
| "Standard validation, doesn't need code" | What's standard to you is unclear to others. Show the code. |
| "Test command is straightforward" | Exact command eliminates ambiguity. Specify it. |
| "This step is quick, combine with next" | Atomic steps = atomic commits. Keep separate. |
If you catch yourself using these rationalizations, STOP and add the missing details.
After saving the plan, offer execution choice:
"Plan complete and saved to docs/plans/<filename>.md. Two execution options:
1. Subagent-Driven (this session) - I dispatch fresh subagent per task with code review between tasks for fast iteration
2. Parallel Session (separate) - Open new session with executing-plans for batch execution with checkpoints
Which approach?"
If Subagent-Driven chosen:
If Parallel Session chosen:
DRY (Don't Repeat Yourself):
YAGNI (You Aren't Gonna Need It):
TDD (Test-Driven Development):
Frequent Commits: