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

dev-plan开发计划

Agent Skill

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

总安装

423

周安装

18

GitHub Stars

2

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andreaserradev-gbj/dev-workflow --skill dev-plan

简介

dev-plan 通过 discovery 脚本定位项目根目录,生成战略级实施方案和详细任务清单。

  • 结合 scripts/discover.sh 动态确定 PROJECT_ROOT,保证路径准确性。
  • 输出包含风险评估、资源分配和时间节点的完整路线图。
  • 使用前需确保 discover.sh 脚本具备可执行权限且位于正确位置。
  • dev-plan 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Step 0: Discover Project Root

Run the discovery script:

bash "$DISCOVER" root

Where $DISCOVER is the absolute path to scripts/discover.sh within this skill's directory.

Path safety — shell state does not persist between tool calls, so you must provide full script paths on each call:

  • Use $HOME instead of the literal home directory (e.g., bash "$HOME/code/…/discover.sh", not bash "/Users/name/…/discover.sh"). This prevents username hallucination.
  • Copy values from tool output. When reusing a value returned by a previous command (like $PROJECT_ROOT), copy it verbatim from that command's output. Never retype a path from memory.
  • Verify on first call: if a script call fails with "No such file", the path is wrong — STOP and re-derive from the skill-loading context.
  • Never ignore a non-zero exit. If any script in this skill fails, stop and report the error before continuing.

Store the output as $PROJECT_ROOT. If the command fails, inform the user and stop.

PRIMARY DIRECTIVE

The sole deliverable is PRD files written to $PROJECT_ROOT/.dev/$FEATURE_NAME/. Produce documentation, not code. Every session must end with files on disk.

This is part of a 3-skill system (/dev-plan/dev-checkpoint/dev-resume). The other skills parse PRD files using status markers (/), phase gates, file changes summary, and sub-PRD links.

AGENTS

This skill uses specialized agents for research and planning:

  • prd-researcher (cyan) — Researches codebase for patterns, dependencies, and reference implementations
  • prd-planner (green) — Designs implementation phases and file changes

Agent definitions are in agents/ within this skill's directory.

PHASE 1: UNDERSTAND

$ARGUMENTS

The 3 key questions for this phase:

  1. What feature do you want to build? (Brief description)
  2. What problem does it solve? (User need or business requirement)
  3. Is there a reference implementation? (Existing code, similar feature)

Path A — Arguments were provided above

If $ARGUMENTS above is non-empty (the user provided a feature description):

  1. Extrapolate answers to all 3 questions from the provided text.
  2. Present a 2-3 sentence summary of your understanding.
  3. Proceed directly to Phase 2. Do not ask for confirmation.

Path B — No arguments provided

If $ARGUMENTS above is empty (the user ran /dev-plan with no arguments):

  1. Ask the 3 questions above.
  2. STOP. Do not output anything else. Do not proceed until the user responds with their answers.
  3. After receiving answers, summarize your understanding in 2-3 sentences.
  4. Ask: "Does this capture your intent? Confirm and I'll start researching."
  5. Do NOT move to Phase 2 until the user explicitly confirms.
Guardrail: Once confirmed (Path B) or summarized (Path A), move to research. Don't linger here.

Step 1.5: Derive and Validate $FEATURE_NAME

Before creating any directories or files, set a safe feature slug in $FEATURE_NAME.

Normalize and validate with the validation script:

bash "$VALIDATE" normalize "<candidate-name>"

Where $VALIDATE is the absolute path to scripts/validate.sh within this skill's directory. Apply the path safety rules from Step 0 ($HOME, copy from output). Outputs $FEATURE_NAME on success; on failure, STOP immediately — do not continue with an unvalidated path.

Rules:

  • Never use raw $ARGUMENTS directly in file paths.
  • Use $FEATURE_NAME for all .dev/ path references.

PHASE 2: RESEARCH

Launch 2-3 prd-researcher agents in parallel using the Task tool with different focuses:

Agent 1: "Find similar implementations and patterns to reuse for [feature]. Include file:line references."
Agent 2: "Identify architecture constraints, dependencies, and integration points for [feature]."
Agent 3: "List all files that will need modification for [feature] and what changes are needed."

Use subagent_type=dev-workflow:prd-researcher and model=sonnet for each agent.

After Agents Return

  1. Synthesize findings — Combine agent outputs into a unified Research Summary
  2. Present summary using this format:

- Patterns to reuse — existing code/architecture to leverage (with file:line refs) - Files to modify — list of paths with 1-line descriptions - Key decisions — 2-3 architectural choices needing confirmation - Open questions — anything unclear (if any)

Keep it to ~10-15 lines.

STOP. Do not proceed to Phase 3 until the user confirms the research findings or provides corrections.

Guardrail: Research serves the PRD. Move to writing after one research round. If deeper investigation is requested, do one more round — then write.

PHASE 3: WRITE THE PRD

Launch 1 prd-planner agent to design the implementation structure:

"Design implementation phases for [feature].
Research findings: [summarize key patterns and files from Phase 2].
Determine if this needs sub-PRDs (complex) or a single PRD (simple)."

Use subagent_type=dev-workflow:prd-planner.

After Agent Returns

  1. Review agent output — Verify phases are logical and complete
  2. Propose architecture approach — Present the recommended structure to the user

STOP. Do not create any files until the user confirms the architecture approach or requests adjustments.

  1. Create files under $PROJECT_ROOT/.dev/$FEATURE_NAME/:

- Always create 00-master-plan.md — use the Master Plan template in prd-templates.md - For complex features, create 01-sub-prd-[name].md etc. — use the Sub-PRD template in prd-templates.md - Incorporate research findings (Phase 2) and implementation plan (agent output) into the PRD

  1. Verify PRD structure — Run the CLI to confirm the PRD is parseable: node "$CLI" feature-show --json --dir "$PROJECT_ROOT/.dev/$FEATURE_NAME" Where $CLI is the absolute path to scripts/dev-workflow.cjs within this skill's directory. Apply the path safety rules from Step 0 ($HOME, copy from output). If the command fails or returns unexpected data, fix the PRD files before continuing.
  2. State what was created — list every file path written.
  3. Suggest running /dev-checkpoint to save a continuation prompt.
Guardrail: Files MUST be created. If this phase is reached without writing, stop everything else and write the PRD.

RULES

  • One round of research, then write — do NOT research endlessly
  • Fold research findings into the master plan's "Research Findings" section (no separate findings.md)

PRIVACY RULES

NEVER include in PRD files — use safe alternatives:

  • Absolute paths with usernames → use relative paths from project root
  • Secrets, API keys, tokens, credentials → use placeholders (<API_KEY>, $ENV_VAR)
  • Personal information (names, emails) → use generic references

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.44%
按下载量换算55

Claude

31.06%
按下载量换算46

Cursor

16.69%
按下载量换算25

Gemini CLI

8.96%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/andreaserradev-gbj/dev-workflow --skill dev-plan 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills