원클릭으로
project-management
Use when coordinating multi-step project work that needs planning, execution tracking, and status handoffs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when coordinating multi-step project work that needs planning, execution tracking, and status handoffs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Use when designing, reviewing, or modifying backend API endpoints, schemas, validation, and API documentation.
Use when reviewing architecture boundaries, dependency direction, or multi-layer design decisions across modules.
Use when shaping new features or behavior changes that need requirements clarification and option tradeoff exploration before implementation.
Use when React components are too large or complex and need extraction, simplification, or separation of concerns.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when modeling domain concepts, aggregates, and bounded contexts or checking DDD alignment in existing code.
SOC 직업 분류 기준
| name | project-management |
| description | Use when coordinating multi-step project work that needs planning, execution tracking, and status handoffs. |
This is a meta-skill that orchestrates the complete project management workflow by coordinating other specialized skills.
Announce at start: "I'm using the project-management skill to guide this workflow."
┌─────────────────────────────────────────────────────────────┐
│ 1. BRAINSTORMING (Optional) │
│ Skill: brainstorming │
│ → Explore requirements, clarify scope │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ 2. PLANNING │
│ Skill: writing-plans │
│ → Create: project/plans/YYYY-MM-DD-feature.md │
│ → Detailed task-by-task implementation plan │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ 3. EXECUTION │
│ Skill: executing-plans │
│ → Execute tasks in batches with checkpoints │
│ → Validate with: core-project-rules │
└─────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────┐
│ 4. STATE TRACKING │
│ Skill: project-orientation │
│ → Update: project/STATE.md │
│ → Document decisions, completions, next steps │
└─────────────────────────────────────────────────────────────┘
Use this meta-skill when:
Ask the user:
brainstorming)REQUIRED SUB-SKILL: Use writing-plans
project/plans/YYYY-MM-DD-feature.mdREQUIRED SUB-SKILL: Use executing-plans
core-project-rulesREQUIRED SUB-SKILL: Use project-orientation --update
project/STATE.md with:
| Task | Use This Skill |
|---|---|
| "Help me implement X" | project-management (this skill) |
| "Create a plan for X" | writing-plans |
| "Execute this plan" | executing-plans |
| "Where are we?" | project-orientation |
| Quality validation | core-project-rules (automatic) |
All project management files live in /project:
project/
├── README.md # Overview of project management
├── ROADMAP.md # Strategic roadmap
├── STATE.md # Current state (updated by project-orientation)
└── plans/ # Tactical execution plans
├── 2026-02-06-frontend-implementation.md
└── 2026-02-07-backend-foundation-ddd.md
This skill coordinates with:
brainstorming - Clarify requirements before planningwriting-plans - Create detailed implementation plansexecuting-plans - Execute plans with checkpointsproject-orientation - Track state and enable agent handoffscore-project-rules - Enforce quality standardsusing-git-worktrees - Isolate work in separate worktreesfinishing-a-development-branch - Complete and merge workUser: "I need to add user authentication"
Agent: I'm using the project-management skill to guide this workflow.
Step 1: Assess Scope
- Requirements clear? Let me ask some questions...
- Multi-step task? Yes (auth is complex)
- Existing plan? No
Step 2: Create Plan
[Invokes writing-plans skill]
→ Creates: project/plans/2026-02-08-user-authentication.md
Step 3: Execute Plan
[Invokes executing-plans skill]
→ Executes tasks in batches
→ Reports progress after each batch
Step 4: Update State
[Invokes project-orientation --update]
→ Updates: project/STATE.md
User: "Continue where we left off"
Agent: I'm using the project-management skill to guide this workflow.
Step 1: Check State
[Invokes project-orientation]
→ Reads: project/STATE.md
→ Shows: Current focus, next steps
Step 2: Resume Execution
[Invokes executing-plans with existing plan]
→ Continues from last checkpoint
User Request
│
├─ "Help me implement X"
│ └─> Use project-management (this skill)
│
├─ "Create a plan for X"
│ └─> Use writing-plans directly
│
├─ "Execute this plan"
│ └─> Use executing-plans directly
│
├─ "Where are we?"
│ └─> Use project-orientation directly
│
└─ "I have a bug"
└─> Use systematic-debugging or test-driven-development
Every execution must follow:
core-project-rulesproject/plans/, not scattered