CO

committee-plan

A workflow skill that uses four lenses to deterministically generate a roadmap plan.

Install

mkdir -p .claude/skills/committee-plan && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10262" && unzip -o skill.zip -d .claude/skills/committee-plan && rm skill.zip

Installs to .claude/skills/committee-plan

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

**WORKFLOW SKILL** — How the /issue-plan committee fans out four read-only lenses over the open backlog and synthesizes an ORDER-ONLY plan deterministically. USE WHEN running /issue-plan or building the planning step. INVOKES: the plan-lens-* agents (or inline personas), scripts/sync-plan.rb. DO NOT USE FOR implementing tasks (use /issue-implement) or filing them (use /repo-audit intake).
391 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Synthesize an order-only plan for the open backlog
  • Analyze tasks using a priority/impact lens
  • Identify task dependencies and sequencing
  • Assess risk and autonomy for task batches
  • Determine testing requirements for each batch

How it works

A committee of four specialized lenses (priority, dependency, risk, test framework) reads the open backlog and synthesizes an order-only plan deterministically.

Inputs & outputs

You give it
An open backlog of tasks
You get back
A `_data/roadmap_plan.yml` file and one pinned issue

When to use committee-plan

  • Generate a deterministic roadmap plan
  • Prioritize backlog tasks using multi-lens analysis
  • Identify task dependencies and risk

About this skill

Committee Plan

Operational checklist for the planning committee. Canonical contract: /issue-plan. The committee plans, it does not build — it writes only _data/roadmap_plan.yml + one pinned issue.

Golden rules

  1. Read-only on code. Only _data/roadmap_plan.yml and the pinned issue change.
  2. Order only. Reference task ids; never copy a backlog-owned field (risk/priority/area/status) into the plan — sync-plan.rb --check rejects it.
  3. Deterministic. Same corpus ⇒ byte-identical plan. Skip the whole run when the corpus hash is unchanged.
  4. Bounded. Exactly 4 lenses, no recursion; batches ≤6 tasks; ≤5 batches/run.
  5. Autonomy is derived, never re-encoded — point at continuous-evolution.md.

The four lenses (read-only, write nothing)

LensAgentAnswers
Priority/impactplan-lens-prioritywhich tasks matter most
Dependency/DAGplan-lens-dependencywhat must precede / not parallelize
Risk/autonomyplan-lens-riskwhich batches mix auto + human (→ split)
Test frameworkplan-lens-testthe tests/evidence each batch needs

Prefer one Task subagent per lens; if the runtime can't delegate, run the four personas inline and sequentially — identical output.

Synthesis (fixed precedence ⇒ determinism)

dependency sets batch membership → risk splits mixed batches → priority orders within the layering → test annotates test_framework. Write the plan, record meta.corpus_hash + meta.updated, then:

ruby scripts/sync-plan.rb --check   # ids open · DAG acyclic · order-only

Open a chore(plan) PR (no auto-merge). On merge, scripts/sync-plan.sh upserts the single pinned tracking issue (agent-hold).

Idempotency

  • The corpus-hash gate makes a no-change run a no-op (cheap on schedule).
  • The pinned issue is marker-fenced (<!-- roadmap-plan:pinned -->) and upserted, never duplicated.

When not to use it

  • When implementing tasks
  • When filing new tasks

Limitations

  • The committee plans, it does not build
  • Read-only on code
  • Order only

How it compares

This skill uses a fixed committee structure and synthesis precedence to deterministically generate a roadmap plan, ensuring consistent output for the same input, unlike a manual planning process.

Compared to similar skills

committee-plan side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
committee-plan (this skill)027dReviewIntermediate
trello412moReviewBeginner
executing-plans63moNo flagsIntermediate
github-project-management46moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

trello

openclaw

Manage Trello boards, lists, and cards via the Trello REST API.

41205

executing-plans

obra

Use when you have a written implementation plan to execute in a separate session with review checkpoints

643

github-project-management

ruvnet

Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning

427

project-clickup

incidentfox

ClickUp project management integration for incident tracking and task management

320

coo-advisor

alirezarezvani

Operations leadership for scaling companies. Process design, OKR execution, operational cadence, and scaling playbooks. Use when designing operations, setting up OKRs, building processes, scaling teams, analyzing bottlenecks, planning operational cadence, or when user mentions COO, operations, process improvement, OKRs, scaling, operational efficiency, or execution.

613

tlc-spec-driven

tech-leads-club

Project and feature planning with 4 phases - Specify, Design, Tasks, Implement+Validate. Creates atomic tasks with verification criteria and maintains persistent memory across sessions. Stack-agnostic. Use when: (1) Starting new projects (initialize vision, goals, roadmap), (2) Working with existing codebases (map stack, architecture, conventions), (3) Planning features (requirements, design, task breakdown), (4) Implementing with verification, (5) Tracking decisions/blockers across sessions, (6) Pausing/resuming work. Triggers on "initialize project", "map codebase", "specify feature", "design", "tasks", "implement", "pause work", "resume work".

77

Search skills

Search the agent skills registry