Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/SimHacker/moollm --skill planning명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | planning |
| description | Structured task decomposition and tracking. |
| license | MIT |
| tier | 1 |
| allowed-tools | ["read_file","write_file"] |
| related | ["play-learn-lift","scratchpad","plan-then-execute","action-queue","sister-script","debugging","session-log"] |
| tags | ["moollm","decomposition","tracking","tasks","strategy"] |
Structured task decomposition and tracking.
Turn complex goals into actionable steps.
[!TIP] Plans here are living documents. Unlike plan-then-execute, these evolve as you learn.
A flexible planning system for:
Unlike plan-then-execute/: Plans here are living documents that evolve.
# PLAN.yml
plan:
goal: "Implement authentication system"
status: in_progress
tasks:
- id: 1
name: "Design auth flow"
status: done
- id: 2
name: "Implement login endpoint"
status: in_progress
subtasks:
- "Create route handler"
- "Add validation"
- "Write tests"
- id: 3
name: "Add session management"
status: blocked
blocked_by: 2
| Planning | Plan-Then-Execute |
|---|---|
| Plans evolve | Plans are frozen |
| Flexible | Auditable |
| For exploration | For security |
| Adapts to findings | Requires approval gate |
Use planning/ when you need to adapt. Use plan-then-execute/ when you need control.
| File | Purpose |
|---|---|
| SKILL.md | Full protocol documentation |
| PLAN.yml.tmpl | Plan template |
| PROGRESS.md.tmpl | Progress template |
Planning is play-learn-lift applied to task decomposition.
graph LR
PL[🗂️ planning] -->|LEARN stage of| PLL[🎮📚🚀 play-learn-lift]
PL -->|frozen variant| PTE[📋 plan-then-execute]
PL -->|thinking in| SP[📝 scratchpad]
PL -->|logs to| SL[📜 session-log]
| Skill | Relationship |
|---|---|
| plan-then-execute/ | Frozen, auditable plans |
| play-learn-lift/ | Planning IS LEARN stage |
| scratchpad/ | For freeform thinking |
| session-log/ | Track planning progress |
| roberts-rules/ | Structured deliberation for planning decisions |
| adversarial-committee/ | Multiple perspectives on plan viability |
| Symbol | Link |
|---|---|
PLAY-LEARN-LIFT | PROTOCOLS.yml |
| Direction | Destination |
|---|---|
| ⬆️ Up | skills/ |
| ⬆️⬆️ Root | Project Root |
| 📋 Sister | plan-then-execute/ |
| 🎮 Sister | play-learn-lift/ |