planner-ops

planner-ops is a skill for Claude Code, Codex from Xwen0857/agent-orchestrator. It costs 40 tokens per session (3,161 once invoked), scanned A, original, MIT.

A set of operating rules for a planning agent that breaks a large request into smaller tasks and assigns them to workers.

In plain words
What is it for?
Use it to create checklists, split work into executable subtasks, assign workers, track their progress, and respond to test results.
Why use it?
It keeps task states, assignments, retries, and links between the original request and subtasks recorded consistently.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to create checklists, split work into executable subtasks, assign workers, track their progress, and respond to test results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xwen0857/agent-orchestrator/planner-ops
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Xwen0857/agent-orchestrator --skill planner-ops
Clone the repo
git clone --depth 1 https://github.com/Xwen0857/agent-orchestrator

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for planner-ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/xwen0857/agent-orchestrator/planner-ops/github.svg)](https://agentmods.dev/skills/xwen0857/agent-orchestrator/planner-ops)
Your own site
<a href="https://agentmods.dev/skills/xwen0857/agent-orchestrator/planner-ops"><img src="https://agentmods.dev/badge/skills/xwen0857/agent-orchestrator/planner-ops/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for planner-ops

Your own site · 80×15
<a href="https://agentmods.dev/skills/xwen0857/agent-orchestrator/planner-ops"><img src="https://agentmods.dev/badge/skills/xwen0857/agent-orchestrator/planner-ops.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,161 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.03161
Opus 5 $0.00020 $0.01580
Sonnet 5 $0.00008 $0.00632
Haiku 4.5 $0.00004 $0.00316

Measured 8d ago against content hash d8d34ef1cc10, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

planner-ops scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

planner-ops/SKILL.md · 154 lines

How it starts

The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Planner Ops

V2 基线(强制优先)

  1. planner-ops 必须在 templates/coordination/tasks/task_folders/<task_id>/meta.json 上进行状态推进,禁止通过 *_tasks.md 推断真实状态。
  2. CREATED -> PLANNED -> ASSIGNED 为 planner 主负责链路,转移时必须校验 meta.version 并追加事件日志。
  3. 所有分配动作必须生成 operation_id(幂等键);重试时复用同一 operation_id,不得重复生效。
  4. 每次任务分配都必须落地 plan.md 追溯字段(primary_id/checklist_item_id/subchecklist_id)并在 meta.artifacts 中声明。
  5. 兼容镜像仍可生成到 templates/coordination/tasks/<worker_id>_tasks.md,但运行态 worker 任务与 subchecklist 记录已迁至仓外状态目录。

核心职责

  1. 接收并维护用户原始需求入口文件 primary.md
  2. 在接收到启动指令后,将 primary 拆解为 checklist
  3. checklist 拆解为可执行 subchecklist,并建立追溯关系。
  4. subchecklist 进一步拆解并分配为 worker 可直接执行的任务文件。
  5. 维护任务状态机、worker 生命周期、替换映射与替换日志。
  6. 读取 tester 验收结果,驱动重试、替换或任务收敛。

输入文件相对路径

  1. primary 需求入口运行路径:$AGENT_ORCHESTRATOR_STATE_DIR/planner/primary.md(默认 ~/.openclaw-state/agent-orchestrator/planner/primary.md)。
  2. checklist 运行记录路径:$AGENT_ORCHESTRATOR_STATE_DIR/planner/checklist.md(若未设置,则默认 ~/.openclaw-state/agent-orchestrator/planner/checklist.md)。
  3. checklist 示例模板路径:templates/coordination/planner/checklist.example.md
  4. subchecklist 运行目录路径:$AGENT_ORCHESTRATOR_STATE_DIR/tasks/subchecklists(默认 ~/.openclaw-state/agent-orchestrator/tasks/subchecklists)。
  5. worker 任务运行目录路径:$AGENT_ORCHESTRATOR_STATE_DIR/tasks/worker_tasks(默认 ~/.openclaw-state/agent-orchestrator/tasks/worker_tasks)。
  6. 兼容 worker 任务路径(旧):templates/coordination/tasks/<worker_id>_tasks.md

输出文件相对路径

  1. checklist 运行记录路径:$AGENT_ORCHESTRATOR_STATE_DIR/planner/checklist.md(默认 ~/.openclaw-state/agent-orchestrator/planner/checklist.md)。
  2. subchecklist 运行文件路径:$AGENT_ORCHESTRATOR_STATE_DIR/tasks/subchecklists/<subchecklist_id>.md
  3. worker 任务运行文件路径:$AGENT_ORCHESTRATOR_STATE_DIR/tasks/worker_tasks/<worker_id>_tasks.md
  4. worker 状态文件路径:templates/coordination/workers/<worker_id>_worker.md
  5. worker 生命周期文件路径:templates/coordination/worker_lifecycle/<worker_id>_lifecycle.md
  6. 替换日志路径:templates/coordination/replacement_log.md
  7. 替换映射路径:templates/coordination/worker_replacement_mapping.md

Read the full file on GitHub · 154 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 154 lines · 40 tokens per session scan A d8d34ef1cc10

Subscribe to this mod's changes

planner-ops is a skill published in the GitHub repository Xwen0857/agent-orchestrator (2 stars, last pushed 5mo ago), licensed MIT. It adds 40 tokens to every session and 3,161 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.