From samocode
Creates implementation plans with phase management, storing checklists per phase in session folder. Breaks tasks into small, independently completable units with testing and PR readiness phases.
How this skill is triggered — by the user, by Claude, or both
Slash command
/samocode:planningThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Creates detailed implementation plans with phases, stored within the session folder.
Creates detailed implementation plans with phases, stored within the session folder.
Session path: [SESSION_PATH from working memory] Context: $ARGUMENTS
Gather context:
Create plan file:
[SESSION_PATH]/[TIMESTAMP_FILE]-plan-[plan-slug].mdPhase design principles:
Structure:
# Plan: [Title]
Created: [TIMESTAMP_LOG]
## Task Definition
[Concise summary]
## Requirements
- [ ] [Requirement 1]
- [ ] [Requirement 2]
## Context
[Key files, current state, constraints]
## Implementation Phases
### Phase 1: [Name]
- [ ] [Step]
- [ ] [Step]
- [ ] Run pyright/ruff or tsc - fix errors
### Phase 2: [Name]
- [ ] [Step]
- [ ] [Step]
- [ ] Run pyright/ruff or tsc - fix errors
### Phase 3: Testing
- [ ] [Test case]
- [ ] Edge cases: all/partial/no validators, queue succeeds/DB fails, DB succeeds/queue fails, concurrent same-KI revalidation, large uploads, API-key user missing email/name where applicable
- [ ] Final checks
### Phase 4: PR Readiness
- [ ] Enter the `pr-readiness` phase after all fixes/merges/manual debugging
- [ ] Resolve `_review_debt.md` rows: fix, defer with ticket/reason, or reject with evidence
## Notes
[Important context from task definition]
Update session:
[SESSION_PATH]/_overview.md:
- [TIMESTAMP_ITERATION] Plan created -> [filename].md- [filename].md - [brief description]- [filename].md - Plan: [brief description]cd [SESSION_DIR] && git add . && git commit -m "Plan: [title]"Report back: Plan summary and file location
npx claudepluginhub yuvasee/samocodeCreates structured implementation plans for multi-step tasks from specs or requirements. Generates plan.json and task markdown files with explicit code and testing steps.
Create detailed execution-ready implementation plans for complex or high-risk changes without coding. Useful for refactors, migrations, resumable phase checklists, and hand-offs to execute-plan.
Generates structured phased implementation plans from feature descriptions, sized for 30-50k token sub-agent contexts, with clarifying questions, acceptance criteria, and dependencies. Invoke before multi-phase execution.