Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

plan-mode计划模式

Agent Skill

plan-mode 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,367

周安装

298

GitHub Stars

1

下载量

2,312
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:plan-mode(计划模式)
来源仓库:https://github.com/pieterjanliekens/plan-mode
安装命令:
openclaw skills install plan-mode
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install plan-mode

简介

引入审批门控机制管理复杂多步骤任务执行流程。

  • 适用于高风险、不可逆或需多方确认的工作事项。
  • 在执行前强制比较选项并评估中断可能性。plan-mode 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 帮助用户避免冲动决策,提升行动审慎度。
  • 需定义清晰的批准条件与回滚预案方可有效运作。

SKILL.md

name
plan
description
Think-first execution with approval gating. Use when work is complex, ambiguous, irreversible, multi-step, worth comparing before choosing, interrupted and needs recovery, or long-running enough to need a living plan. Supports clarify, compare, execute, recover, parallel, and living planning lenses. Not for simple edits or quick questions.

Plan

Use this skill to stop execution-first behavior on meaningful work.

Default pattern: clarify → plan → approve → execute → close.

Treat /plan as a read-only planning stance until approval. Safe reads are allowed: reading files, listing files, searching, inspecting docs, checking status, and other non-destructive exploration. Do not edit files, delete data, push commits, deploy, or run destructive or irreversible commands until the user approves a plan or explicitly says to skip planning.

Prefer the core lenses first. Use parallel and living only when the work is clearly big enough to justify the extra structure.

When to stay out of the way

Do not force planning for:

  • trivial single-file edits
  • simple factual questions
  • obvious follow-up micro-actions
  • work where the user explicitly says to skip planning

Command model

Use /plan as an auto-router. Pick the lens that matches the real problem.

Core lenses

CommandUse forOutput
/planAuto-pick the right lensShort diagnosis + recommended plan
/plan clarifyVague or political requestsScope, assumptions, open questions, success criteria
/plan compareChoosing between optionsOption matrix, tradeoffs, recommendation
/plan executeClear multi-step workOrdered plan, risks, checkpoints, definition of done
/plan recoverInterrupted or messy workCurrent state, what is done, what is blocked, safest next step

Advanced lenses

CommandUse forOutput
/plan parallelWork that should split across subagents or lanesSolo lane, parallel lanes, merge points
/plan livingMulti-session or strategic workPersistent plan with decisions, next actions, open loops

Auto-router heuristics

When the user just says /plan, pick the simplest fitting lens:

  • unclear request, fuzzy scope, or political ambiguity → clarify
  • explicit choice between 2+ viable paths → compare
  • clear multi-step task with real execution work → execute
  • interrupted, messy, or half-finished work → recover
  • only escalate to parallel if there are clearly separable lanes with owners and a merge point
  • only escalate to living if the work is likely to span multiple sessions, days, or major checkpoints

If two lenses could fit, prefer the simpler one.

Depth modifiers

Use these as optional modifiers, not separate lenses:

  • light — use for small work, usually <= 5 steps, no lasting state needed
  • standard — default for normal complex work
  • deep — use for risky, irreversible, multi-day, or file-backed work

Format guidance

Light

Use for short tasks. Keep output inline:

  • Goal
  • Approach
  • 2-5 steps
  • Main risk

Standard

Use for most work. Include:

  • Goal
  • Recommended lens
  • Approach
  • Using
  • Steps
  • Risks
  • Approval ask

Keep it short enough that the user can approve it quickly.

Deep

Use for large or risky work. Include:

  • Goal
  • Context / current state
  • Option or approach rationale
  • Detailed steps
  • Checkpoints
  • Risks and reversibility
  • Definition of done
  • Optional persistent file only after explicit approval if the plan should survive compaction

Examples:

  • /plan compare
  • /plan recover light
  • /plan living deep
  • /plan off

Use /plan off to disable auto-activation for the current session.

What to do in each lens

Clarify

Use when the request is still fuzzy.

Do this:

  • Define the actual problem
  • Surface assumptions
  • List open questions only if they materially affect the plan
  • State success criteria and non-goals

Do not jump into solution design too early.

Compare

Use when multiple routes are plausible.

Do this:

  • Compare 2-4 realistic options
  • Show tradeoffs: speed, risk, reversibility, cost, maintenance, politics
  • Recommend one path and explain why

Prefer recommendation over fence-sitting.

Execute

Use for normal complex work.

Do this:

  • State goal and approach
  • List concrete steps
  • Flag irreversible or high-risk actions with ⚠️
  • State dependencies, checkpoints, and definition of done
  • Ask for approval before acting

Recover

Use when work already exists and the problem is continuity, not invention.

Do this:

  • Summarize current state
  • Distinguish completed / partial / blocked / unknown
  • Give the safest next step
  • Say what should be discarded, preserved, or verified

Prefer stabilization over cleverness.

Parallel

Use only when splitting work clearly improves speed or clarity.

Do this:

  • Separate solo work from delegable work
  • Define lanes with owners
  • Define merge points and shared assumptions
  • Keep parallelism minimal and purposeful

Do not parallelize tiny tasks just because you can.

Living

Use for long-running projects.

Do this:

  • Before creating a new living plan, first check whether one already exists for the project
  • Do not write or update a living-plan file until the user explicitly approves persistent storage
  • Once approved, persist the plan to file when useful
  • If the project has no existing convention, default to a simple plan file under docs/plans/ or another clearly named project folder
  • Keep these sections updated:

- current focus - next actions - decisions - open loops - risks

  • On session start, resume, or after compaction, reload the latest approved living plan before continuing
  • If the living plan is stale enough to be doubtful, say so and refresh it before acting

Prefer living plans for strategy, negotiations, and multi-day builds.

Approval contract

Until approval:

  • Stay read-only
  • Inspect files, docs, and current state
  • Audit available tools and skills using local/project context first
  • Do not create or update plan files
  • Do not make external network lookups for toolbox audit unless the user explicitly approves that broader search
  • Compare approaches
  • Ask only the minimum blocking questions

After approval:

  • Execute only the approved scope
  • Respect partial approvals like “do 1-3, hold on 4”
  • If reality changes materially, stop and re-plan

Recognize these approval patterns:

  • go
  • do it
  • do steps 1-3
  • hold on 4
  • skip plan
  • cancel
  • similar clearly positive approval language such as "sounds good" or "yes, proceed"

Control semantics:

  • /plan off = stop auto-activating this skill for the current session
  • cancel before execution = abort the plan and do nothing
  • cancel during partial execution = stop immediately, report what has already been done, and do not assume rollback unless explicitly asked

Surprise policy

Pause and report when:

  • a required tool, file, or dependency was missing from the plan
  • risk becomes meaningfully higher than planned
  • destructive action becomes necessary unexpectedly
  • new information changes the recommendation

Do not silently widen scope.

Toolbox audit

Before presenting an execute-oriented plan:

  • Check relevant installed skills first
  • Prefer local/project-available capabilities over reinvention
  • Only check external registries such as ClawHub when it materially changes the recommendation and the user has approved that broader search
  • Do not send plan contents, secrets, or private project details to external services during toolbox audit

Show this briefly in a Using: section when it materially changes the approach.

Likely failure modes to avoid

  • Using parallel for work that is still unclear
  • Using living for tasks that are actually small and one-shot
  • Presenting too many lenses at once instead of recommending one
  • Turning /plan into ceremony on obvious work

Example patterns

Example: compare

User: “Should we launch in market A or market B first?”

Output:

  • Option A: Market A first
  • Option B: Market B first
  • Tradeoffs
  • Recommendation

Example: execute

User: “Migrate auth from sessions to JWT.”

Output:

  • Goal
  • Approach
  • Using
  • Ordered steps
  • ⚠️ irreversible cleanup step
  • Approval ask

Example: recover

User: “Everything is all over the place. Pick this back up.”

Output:

  • Current state
  • What is done
  • What is blocked
  • Safest next step

Example: parallel

User: “Review the repo, draft migration steps, and prep the rollout note.”

Output:

  • Solo lane
  • Parallel lanes with owners
  • Merge point
  • Approval ask

Example: living

User: “Track this negotiation through 14 April.”

Output:

  • Current focus
  • Next actions
  • Decisions
  • Open loops
  • Resume instruction

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.21%
按下载量换算2,063

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills