← ClaudeAtlas

writing-planslisted

Turns a spec or requirements into a task-by-task implementation plan. Use when a multi-step task has a spec or requirements, before touching code.
rodrigopaitach/superpowersplus · ★ 0 · Code & Development · score 72
Install: claude install-skill rodrigopaitach/superpowersplus
# Writing Plans ## Overview Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, code, testing, docs they might need to check, how to test it. Give them the whole plan as bite-sized tasks. DRY. YAGNI. TDD. Frequent commits. Assume they are a skilled developer, but know almost nothing about our toolset or problem domain. Assume they don't know good test design very well. **Announce at start:** "I'm using the writing-plans skill to create the implementation plan." **Context:** This skill creates no worktree. Both execution paths open by creating or verifying one with `superpowersplus:using-git-worktrees`; if you are already in one while planning, it predates this plan. **Save plans to:** `docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md` - (User preferences for plan location override this default) ## Scope Check If the spec covers multiple independent subsystems, it should have been broken into sub-project specs during brainstorming. If it wasn't, suggest breaking this into separate plans — one per subsystem. Each plan should produce working, testable software on its own. ## File Structure Before defining tasks, map out which files will be created or modified and what each one is responsible for. This is where decomposition decisions get locked in. - Design units with clear boundaries and well-defined interfaces. Each file