From work-manager
This skill should be used when the current work phase is "plan". Provides the planning workflow: reading research notes, building acceptance criteria, creating ordered task lists with parallelization strategy, saving design decisions to _notes/plan-*.md, and transition to implement phase.
How this skill is triggered — by the user, by Claude, or both
Slash command
/work-manager:work-planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Plan phase workflow. Primary deliverable: updated `_notes/_summary.md` with concrete plan and `_notes/plan-*.md` files with design decisions.
Plan phase workflow. Primary deliverable: updated _notes/_summary.md with concrete plan and _notes/plan-*.md files with design decisions.
Read all _notes/research-*.md files. Summarize what is known before proposing a plan.
Work with the user to create:
Acceptance criteria — clear, testable conditions for "done":
## Acceptance Criteria
- [ ] Auth endpoint returns 401 for expired tokens
- [ ] Refresh token rotation works with Redis TTL
- [ ] SDK client handles token refresh transparently
Ordered task list — concrete steps with file references:
## Plan
1. Add refresh endpoint to `core/pl/pkg/auth/handler.go`
2. Implement token rotation in `core/pl/pkg/auth/token.go`
3. Update SDK client in `core/platforma/sdk/src/auth.ts`
4. Add integration tests in `core/pl/pkg/auth/handler_test.go`
Parallelization strategy — how to split work:
### Work Split
- Group 1 (Go): Tasks 1, 2, 4 — core/pl auth package
- Group 2 (TypeScript): Task 3 — core/platforma SDK
Split rules:
Write design decisions, trade-offs, and rationale to _notes/plan-*.md:
File template:
# Plan: <Topic>
Created: YYYY-MM-DD
## Decision
<what was decided>
## Rationale
<why this approach over alternatives>
## Trade-offs
- Pro: <benefit>
- Con: <cost>
File naming: _notes/plan-<topic-slug>.md
Examples:
_notes/plan-api-design.md_notes/plan-scope.md_notes/plan-risks.mdAfter plan is agreed:
_notes/_summary.md Plan section_notes/_summary.md Acceptance Criteria section_notes/plan-*.md files in Work Notes section_notes/worklog.md: - YYYY-MM-DD: Plan completedWhen the plan is ready:
[PLAN] Plan is complete. Task list, acceptance criteria, and work split are documented.
When ready, use `/work update move to implement` to begin coding.
If unknowns surface during planning:
[PLAN] Discovered unknowns: <list>. Suggest `/work update move to research` to explore before continuing.
_notes/plan-<topic-slug>.md_notes/_summary.md Work Notes section.After completing ANY action in this skill, you MUST update _notes/worklog.md with a timestamped entry describing what was done. Format:
- YYYY-MM-DD HH:MM: <action summary>
Never skip this step. Notes are the primary deliverable, not a side-effect.
npx claudepluginhub popoffvg/claude-plugin-work-manager --plugin work-managerGenerates execution-ready implementation plans from research docs in .artifacts/research/. Ensures junior developers can execute tasks with zero ambiguity. Planning only—no code changes, fixes, or verification.
Creates detailed implementation plans through interactive, iterative collaboration. Use when planning features, refactoring, or tasks with research and multi-agent analysis.
Transforms research findings into actionable implementation plans with granular steps, verification criteria, and stakes-based enforcement. Useful for structuring complex coding tasks before execution.