새 개발 세션 시작
Starts a new development session with planning, analysis, and task breakdown.
/plugin marketplace add wonjiko/claude-toymarket/plugin install typical-process@claude-toymarket<session_name>Validate session_name: $ARGUMENTS
Ensure session directory exists:
mkdir -p .claude/session/archive
Analyze the codebase relevant to this task
Create .claude/session/$ARGUMENTS-plan.md with:
Create .claude/session/$ARGUMENTS-context.md with initial state:
Set active session:
echo "$ARGUMENTS" > .claude/session/active
Present plan summary and ask for approval
Do NOT begin implementation until user approves the plan.
# Plan: [session_name]
## Meta
- Session: [session_name]
- Created: [timestamp]
- Status: draft
## Objective
[What we're building and why]
## Current State Analysis
[Assessment of existing code/system before changes]
## Tasks
- [ ] Task 1
- [ ] Task 2
- [ ] Task 3
## Files to Modify
- `path/to/file.ts` - [reason]
## Dependencies & Risks
[External dependencies, potential blockers]
## Acceptance Criteria
[How we know it's done]
# Context: [session_name]
## State
- Phase: planning
- Started: [timestamp]
- Last Activity: [timestamp]
- Progress: 0/N tasks
## Execution Log
(No entries yet)
/startInitiates the task orchestration workflow using the three-agent system (task-orchestrator, task-decomposer, and dependency-analyzer) to create a comprehensive execution plan.