Agent Skills: Planning

Structured task decomposition and tracking.

UncategorizedID: simhacker/moollm/planning

Install this agent skill to your local

pnpm dlx add-skill https://github.com/SimHacker/moollm/tree/HEAD/skills/planning

Skill Files

Browse the full folder contents for planning.

Download Skill

Loading file treeโ€ฆ

skills/planning/SKILL.md

Skill Metadata

Name
planning
Description
"Structured task decomposition and tracking."

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

| 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.


Contents

| File | Purpose | |------|---------| | SKILL.md | Full protocol documentation | | PLAN.yml.tmpl | Plan template | | PROGRESS.md.tmpl | Progress 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

| 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 |

Protocol Symbols

| Symbol | Link | |--------|------| | PLAY-LEARN-LIFT | PROTOCOLS.yml |

Navigation

| Direction | Destination | |-----------|-------------| | โฌ†๏ธ Up | skills/ | | โฌ†๏ธโฌ†๏ธ Root | Project Root | | ๐Ÿ“‹ Sister | plan-then-execute/ | | ๐ŸŽฎ Sister | play-learn-lift/ |