Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

planning规划

Agent Skill

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

总安装

1,382

周安装

57

GitHub Stars

288

下载量

451
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/xiaolai/vmark --skill planning

简介

planning 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网、命令执行或文件读写。
  • 当前功能描述基于公开资料,实际能力以官方文档为准。

SKILL.md

Planning Skill

When to use

Use this skill when the user asks for planning, a roadmap, a spec-to-implementation breakdown, or wants decisions documented.

Modes

Choose the lightest mode that meets the request.

quick-plan

Use when:

  • task is small/medium and non-breaking
  • no migrations and no multi-phase rollout

Output:

  • 3–8 Work Items (WI-###), each with tests + acceptance

full-plan (default)

Use when:

  • migrations/persistence changes
  • API/contract changes (public tools, schemas, SDKs)
  • multi-phase roadmaps
  • performance-sensitive work

Output:

  • structured plan sections (see “Plan file template”)

Process

  1. Clarify outcomes

- Restate desired behaviors and constraints. - Identify ambiguities and propose defaults if the user doesn’t decide. - Capture constraints & dependencies (runtime versions, OS, external services, feature flags, required tools). - Capture gaps: list requirement/behavior gaps or missing decisions revealed here.

  1. Inventory current behavior

- Trace entry points → state/store → side effects → persistence. - List key files/modules and the invariants they rely on. - Note ownership/priority rules (windows, workspaces, files). - Capture gaps: list where current behavior diverges from the stated outcomes.

  1. Define target rules

- Convert outcomes into explicit rules and precedence. - For each rule, include: trigger/context, expected behavior, scope, constraints, and exclusions. - Edge-case pass: cover empty/none, invalid/malformed, boundary sizes, conflicting state, multi-surface coordination, persistence/restore, and I/O failures. - Capture gaps: list rules that lack implementation support or current behavior conflicts. - Create a Decision Log: - decision, options considered, rationale, and why alternatives were rejected. - Create an Open Questions list: - questions that block correctness, who decides, and what the default is if not decided.

  1. Structure the plan

- Break into Work Items (WI-###), each with: - Goal - Acceptance (measurable) (correctness + performance + UX where relevant) - Tests (first) (file names + test intent; unit/integration/e2e as applicable) - Touched areas (file paths + key functions/classes/symbols) - Dependencies (other WIs, external tools/services) - Risks + mitigations - Rollback / revert strategy - Add priority + estimates (S/M/L) and explicit ordering/dependencies between WIs. - Capture gaps: map each gap to at least one WI (or record as “out of scope”). - Plan lint (required): - Sections present (Outcomes, Constraints, Current Behavior, Target Rules, Work Items, Testing). - WI numbering is sequential and referenced consistently. - Every WI includes tests + acceptance.

  1. Write the plan file

- Use the template at templates/TEMPLATE.md (bundled with this skill) if available, otherwise follow the structure above. - Write plans to a local directory (e.g. dev-docs/plans/YYYYMMDD-HHMM-<topic>.md — local, not in repo). - Always report the saved plan path.

Testing Requirements

  • Every WI must include explicit tests to write before implementation (file names and test intent).
  • If tests cannot be written, call it out explicitly and propose the smallest test seam to enable them.
  • Include a Testing Procedures section in the plan with required commands and when to run them.
  • End the plan with a short Manual Test Checklist.

Acceptance Criteria Guidance

Acceptance must be measurable and verifiable:

  • Good: “Search returns v1 schema with locator_v1 for every result (unit test).”
  • Bad: “Search feels better.”

Plan → Verify Handoff (required)

At the end of the plan, include:

  • Evidence to collect per WI (tests, logs, manual steps).
  • Any required fixtures or sample data.

Migration / persistence requirements (when applicable)

If the plan changes anything persisted (DB, on-disk cache, config files, APIs that clients store):

  • Add a Data Model section (tables/columns/keys, versions).
  • Add a Migration Plan:

- forward migration steps - rollback steps - compatibility guarantees (old clients vs new server)

  • Add Invariants + validation queries (what to check post-migration).
  • Add a Backfill / reindex strategy if needed.

Observability requirements (when applicable)

If the plan touches indexing/search/performance-sensitive paths:

  • Define metrics (latency, throughput, memory, DB size growth).
  • Define where logs go and how to enable verbose tracing.
  • Add acceptance thresholds (e.g. “index 1000 docs < X minutes on machine Y”).

Rollout requirements (when applicable)

If behavior changes are user-visible or risky:

  • Add a Rollout Plan (feature flags, staged enablement, default-off vs default-on).
  • Define “kill switch” conditions and how to revert quickly.

Output Requirements

  • Always produce a plan file and include its path in the response.
  • Ask at most 1–2 clarifying questions only when they change the rules.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.8%
按下载量换算157

Claude

31.25%
按下载量换算141

Cursor

18.83%
按下载量换算85

Gemini CLI

8.87%
按下载量换算40

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills