Back to list
SimHacker

planning

by SimHacker

MOOLLM

8🍴 2📅 Jan 24, 2026

SKILL.md


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]

Planning

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.


What This Is

A flexible planning system for:

  • Breaking down large tasks
  • Tracking progress
  • Adapting as you learn
  • Documenting decisions

Unlike plan-then-execute/: Plans here are living documents that evolve.


Structure

# 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

Key Difference from plan-then-execute

PlanningPlan-Then-Execute
Plans evolvePlans are frozen
FlexibleAuditable
For explorationFor security
Adapts to findingsRequires approval gate

Use planning/ when you need to adapt. Use plan-then-execute/ when you need control.


Contents

FilePurpose
SKILL.mdFull protocol documentation
PLAN.yml.tmplPlan template
PROGRESS.md.tmplProgress template

The Intertwingularity

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]

Dovetails With

Sister Skills

SkillRelationship
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

Protocol Symbols

SymbolLink
PLAY-LEARN-LIFTPROTOCOLS.yml
DirectionDestination
⬆️ Upskills/
⬆️⬆️ RootProject Root
📋 Sisterplan-then-execute/
🎮 Sisterplay-learn-lift/

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon