원클릭으로
plan-manager
Manage plans and context documents with automatic indexing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage plans and context documents with automatic indexing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | plan-manager |
| description | Manage plans and context documents with automatic indexing |
Manage workflow plans and context documents with automatic file tracking and indexing.
Creates a new plan document with timestamp-based naming.
Usage: create-plan <title> --workflow <name>
Example:
create-plan "Add contact form" --workflow tdd
Creates: .claude/plans/active/YYYY-MM-DD--add-contact-form.md
Updates the status of a specific step in an active plan.
Usage: update-step <plan-slug> <step-number> <status>
Status options: pending, in_progress, completed, blocked
Example:
update-step add-contact-form 1 in_progress
Creates a new context document for a codebase area.
Usage: create-context <title> --areas <area1,area2>
Example:
create-context "Authentication" --areas auth,security,api
Creates: .claude/context/auth--context.md
Regenerates all index files from current markdown files.
Usage: update-indexes
Updates:
.claude/indexes/_plans.md.claude/indexes/_context.md.claude/indexes/_workflows.mdMoves a completed plan to the archive directory.
Usage: archive-plan <plan-slug>
Example:
archive-plan add-contact-form
Moves: .claude/plans/active/ → .claude/plans/archive/
Lists all active plans with their current status.
Usage: list-active or list-plans
YYYY-MM-DD--[slug].md.claude/plans/active/ (or /archive/ when completed)[area]--context.md.claude/context/auth--context.md, routing--context.md_<type>.md.claude/indexes/When using any workflow (TDD, UI-iteration, Bug-fix), the plan manager automatically:
Context documents should reference source files rather than duplicate content:
DO:
## Source Files
- [src/lib/auth.ts](src/lib/auth.ts) - JWT utilities
- [src/middleware.ts](src/middleware.ts) - Route protection
DON'T:
## Source Files
src/lib/auth.ts contains:
```typescript
export function jwtSign(payload) { ... }
## Frontmatter Schema
### Plan Document
```yaml
---
created: 2025-01-10
started: null # null if still in planning phase
updated: 2025-01-10 # null if never updated
completed: null # null until done
status: planning|in_progress|blocked|completed|archived
workflow: tdd|ui-iteration|bug-fix
related_context:
- auth--context.md
priority: p1|p2|p3 # P1=Critical, P2=Important, P3=Nice-to-Have
quality_gates_passed: false # Set to true when all quality gates pass
scrutiny: # Added after plan scrutiny (Step 3.5)
p1_findings: 0
p2_findings: 0
p3_findings: 0
confidence_score: 95
---
Severity Classification (P1/P2/P3):
See the quality-severity skill for detailed classification guidelines:
P1 (Critical): Blocks implementation - must be addressed before proceeding
P2 (Important): Should address - significant issues that impact quality
P3 (Nice-to-Have): Consider addressing - improvements and optimizations
---
created: 2025-01-10
updated: null # null if never updated
areas:
- auth
- security
related_plans:
- 2025-01-10--add-contact-form.md
---
update-indexes command is a shell script: .claude/bin/update-indexes.shstatus: fielddescription: field or first headingInitial Convex workspace setup in Coder workspaces with self-hosted Convex deployment, authentication configuration, Docker setup, and environment variable generation
Self-hosted Convex development in Coder workspaces with authentication, queries, mutations, React integration, and environment configuration
Guides self-hosted Convex deployment, authentication setup, environment configuration, troubleshooting, and production deployment considerations.
Coder workspace environment for hahomelabs.com deployments. Includes networking, ports, convex config, nhost config
Manages git operations including commits, pull requests, merge requests, and branching. Use when creating commits, handling git conflicts, managing branches, or reviewing git history. Enforces clean commit messages without author attribution.
Refactors Claude Code skills to reduce token usage 80-95% using Progressive Disclosure Architecture (PDA). Splits monolithic skills into orchestrator + reference files, extracts scripts, creates reference/ directories. Use when optimizing skills, improving skill efficiency, refactoring large/bloated skills, reducing token costs, applying PDA, modularizing skills, breaking down skills, or converting encyclopedia-style skills to orchestrator pattern.