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

planning规划

Agent Skill

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

总安装

2,328

周安装

104

GitHub Stars

8

下载量

816
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anentrypoint/plugforge --skill planning

简介

planning 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 处于 PLAN 阶段时负责发现所有潜在未知项,确保执行前完成完整依赖梳理。
  • 通过多次迭代添加新发现的 mutable 变量直至某轮未产生新增项为止来冻结 .prd 文件。
  • 安装命令:npx skills add https://github.com/anentrypoint/plugforge --skill planning。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。

SKILL.md

PRD Construction — Mutable Discovery Loop

You are in the PLAN phase. Your job is to discover every unknown before execution begins.

GRAPH POSITION: [PLAN] → EXECUTE → EMIT → VERIFY → COMPLETE

  • Entry chain: prompt-submit hook → gm skill → planning skill (here).
  • Also entered: any time a new unknown surfaces in EXECUTE, EMIT, or VERIFY.

TRANSITIONS

FORWARD:

  • No new mutables discovered in latest pass →.prd is complete → invoke gm-execute skill

SELF-LOOP (stay in PLAN):

  • Each planning pass may surface new unknowns → add them to.prd → plan again
  • Loop until a full pass produces zero new items
  • Do not advance to EXECUTE while unknowns remain discoverable through reasoning alone

BACKWARD (snakes back here from later phases):

  • From EXECUTE: execution reveals an unknown not in.prd → snake here, add it, re-plan
  • From EMIT: scope shifted mid-write → snake here, revise affected items, re-plan
  • From VERIFY: end-to-end reveals requirement was wrong → snake here, rewrite items, re-plan

WHAT PLANNING MEANS

Planning = exhaustive mutable discovery. For every aspect of the task ask:

  • What do I not know? → name it as a mutable
  • What could go wrong? → name it as an edge case item
  • What depends on what? → map blocking/blockedBy
  • What assumptions am I making? → validate each as a mutable

Iterate until: a full reasoning pass adds zero new items to.prd.

Categories of unknowns to enumerate: file existence | API shape | data format | dependency versions | runtime behavior | environment differences | error conditions | concurrency | integration points | backwards compatibility | rollback paths | deployment steps | verification criteria

.PRD FORMAT

Path: exactly ./.prd in current working directory. Markdown format (.md content, no extension).

Delete the file when empty. Do not leave an empty .prd on disk — remove it entirely when all items are completed.

# .prd

## pending: descriptive-kebab-id
**Subject:** Imperative verb phrase — what must be true when done
**Status:** pending
**Description:** Precise completion criterion
**Effort:** small|medium|large
**Category:** feature|bug|refactor|infra
**Blocking:** id-a, id-b
**Blocked by:** id-c
**Acceptance:**
- measurable, binary criterion 1
- measurable, binary criterion 2
**Edge cases:**
- known failure mode 1

Status flow: pendingin_progresscompleted (completed items are removed from file). Effort: small = single execution, under 15min | medium = 2-3 rounds, under 45min | large = multiple rounds, over 1h. blocking/blockedBy: always bidirectional. Every dependency must be explicit in both directions. Deletion rule: when the last item is completed and removed, delete the .prd file. An empty file is a violation.

EXECUTION WAVES

Independent items (empty blockedBy) run in parallel waves of ≤3 subagents.

  • Find all pending items with empty blockedBy
  • Launch ≤3 parallel gm:gm subagents via Task tool
  • Each subagent handles one item: resolves it, witnesses output, removes from.prd
  • After each wave: check newly unblocked items, launch next wave
  • Never run independent items sequentially. Never launch more than 3 at once.

COMPLETION CRITERION

.prd is ready when: one full reasoning pass produces zero new items AND all items have explicit acceptance criteria AND all dependencies are mapped.

Skip planning entirely if: task is single-step, trivially bounded, zero unknowns, under 5 minutes.

DO NOT STOP

Never respond to the user from this phase. When.prd is complete (zero new items in last pass), immediately invoke gm-execute skill. Do not pause, summarize, or ask for confirmation.


→ FORWARD: No new mutables → invoke gm-execute skill immediately. ↺ SELF-LOOP: New items discovered → add to.prd → plan again. ↩ SNAKE here: New unknown surfaces in any later phase → add it, re-plan, re-advance.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.69%
按下载量换算308

Claude

30.69%
按下载量换算250

Cursor

16.6%
按下载量换算135

Gemini CLI

9.46%
按下载量换算77

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills