Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计异常

planning规划

Agent Skill

planning 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/harrymunro/ralph-wiggum --skill planning

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更、仓库状态进行整理和分析。planning 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 安装,可结合来源仓库进一步验证用法。
  • 安装前需确认权限范围和维护状态,避免触发不必要操作。
  • 建议核实是否会执行命令或读写文件后再使用。

SKILL.md

Planning Skill

Forces deep requirements exploration through 5 mandatory question rounds before you can create a PRD. This prevents under-specified features and wasted implementation cycles.


The Job

  1. Conduct 5 rounds of questions with the user
  2. Document answers in a planning summary
  3. Save output to tasks/planning-[feature].md
  4. Only then can you proceed to PRD creation

Important: You cannot skip rounds. All 5 rounds must be completed before moving to PRD.


Completion Gate

You MUST complete all 5 rounds before this skill is considered complete.

After each round, explicitly state:

Round [N] complete. [5-N] rounds remaining.

Do NOT proceed to PRD creation until you have stated:

Round 5 complete. Planning session finished.

If the user asks to skip rounds or rush to implementation, remind them:

"Planning requires all 5 rounds. Skipping leads to incomplete requirements and rework. Which question should we tackle next?"

Round 1: Problem Understanding

Goal: Understand WHAT problem we're solving and WHY it matters.

Ask questions about:

  • What problem does this solve?
  • Who experiences this problem?
  • What happens today without this feature?
  • What pain points does this address?
  • Why is this important now?

Example Questions:

1. What specific problem are we trying to solve?
   A. Users cannot do X at all
   B. Users can do X but it's slow/painful
   C. Users frequently make mistakes doing X
   D. Other: [please specify]

2. Who experiences this problem most acutely?
   A. New users during onboarding
   B. Power users doing advanced tasks
   C. All users equally
   D. Internal team members

3. What happens today when users encounter this problem?
   A. They work around it manually
   B. They contact support
   C. They abandon the task
   D. They use a competitor

After gathering answers, summarize:

## Round 1 Summary: Problem Understanding
- Problem: [concise problem statement]
- Affected users: [who]
- Current workaround: [what they do now]
- Impact: [why it matters]

Round 1 complete. 4 rounds remaining.


Round 2: Scope Definition

Goal: Define the boundaries of what we WILL and WON'T build.

Ask questions about:

  • What is the minimum viable solution?
  • What would a full-featured version include?
  • What is explicitly out of scope?
  • What are the must-haves vs nice-to-haves?
  • What adjacent features should we NOT touch?

Example Questions:

1. What is the minimum viable version of this feature?
   A. Just the core functionality, no polish
   B. Core + basic UI polish
   C. Full feature set with advanced options
   D. Let me describe: [specify]

2. Which of these are must-haves vs nice-to-haves?
   [List potential features, ask user to categorize]

3. What should this feature explicitly NOT do?
   A. No integration with external services
   B. No admin configuration options
   C. No mobile-specific features
   D. Other: [specify]

4. Are there adjacent features we should leave alone?
   A. Yes: [list them]
   B. No, we can modify anything needed

After gathering answers, summarize:

## Round 2 Summary: Scope Definition
- MVP includes: [list]
- Nice-to-haves (not MVP): [list]
- Explicitly out of scope: [list]
- Do not touch: [list of adjacent features to avoid]

Round 2 complete. 3 rounds remaining.


Round 3: Technical Constraints

Goal: Identify technical limitations, dependencies, and architecture requirements.

Ask questions about:

  • What existing systems does this touch?
  • What database changes are needed?
  • What API changes are needed?
  • Are there performance requirements?
  • Are there security considerations?
  • What dependencies exist?

Example Questions:

1. What existing systems will this feature interact with?
   A. Database only
   B. Database + existing API endpoints
   C. Database + API + external services
   D. Let me list: [specify]

2. Are there performance requirements?
   A. Must handle X requests per second
   B. Must respond within X milliseconds
   C. No specific requirements
   D. Other: [specify]

3. Are there security considerations?
   A. Handles sensitive user data
   B. Requires authentication checks
   C. Needs rate limiting
   D. No special security needs

4. What existing code patterns should we follow?
   A. Follow existing patterns in [module]
   B. This is a new pattern for the codebase
   C. Not sure, needs investigation

After gathering answers, summarize:

## Round 3 Summary: Technical Constraints
- Systems affected: [list]
- Database changes: [yes/no, what]
- API changes: [yes/no, what]
- Performance requirements: [list]
- Security considerations: [list]
- Patterns to follow: [reference]

Round 3 complete. 2 rounds remaining.


Round 4: Edge Cases

Goal: Identify what could go wrong and how to handle it.

Ask questions about:

  • What happens when X fails?
  • What if the user does Y unexpectedly?
  • What about empty states?
  • What about error states?
  • What about concurrent operations?
  • What about data migration for existing users?

Example Questions:

1. What should happen when [primary action] fails?
   A. Show error message and let user retry
   B. Automatically retry X times
   C. Fall back to [alternative behavior]
   D. Other: [specify]

2. What about empty states (no data yet)?
   A. Show helpful empty state with CTA
   B. Show nothing
   C. Show sample/demo data
   D. Other: [specify]

3. What about existing users/data?
   A. Migration needed for existing data
   B. Feature only applies to new data
   C. Backfill existing data automatically
   D. Let users manually migrate

4. What if user does something unexpected?
   [List specific unexpected behaviors and ask how to handle]

After gathering answers, summarize:

## Round 4 Summary: Edge Cases
- Error handling: [approach]
- Empty states: [approach]
- Data migration: [approach]
- Unexpected user behavior: [list with handling]
- Concurrent operations: [approach]

Round 4 complete. 1 round remaining.


Round 5: Verification Strategy

Goal: Define how we'll know the feature works correctly.

Ask questions about:

  • How will we test this feature?
  • What manual testing is needed?
  • What automated tests should exist?
  • How do we verify in production?
  • What metrics indicate success?
  • What could we monitor for issues?

Example Questions:

1. What automated tests should cover this feature?
   A. Unit tests for core logic
   B. Integration tests for API endpoints
   C. E2E tests for user flows
   D. All of the above

2. What manual testing is required?
   A. Visual inspection of UI changes
   B. Testing edge cases in browser
   C. Testing with different user roles
   D. List specific scenarios: [specify]

3. How do we know this feature is successful in production?
   A. Users complete [action] X% more often
   B. Support tickets about [topic] decrease
   C. Feature adoption reaches X%
   D. Other metrics: [specify]

4. What should we monitor for issues?
   A. Error rates on new endpoints
   B. Performance metrics
   C. User feedback/complaints
   D. All of the above

After gathering answers, summarize:

## Round 5 Summary: Verification Strategy
- Automated tests: [list]
- Manual testing: [list]
- Success metrics: [list]
- Monitoring: [list]

Round 5 complete. Planning session finished.


Output Format

After all 5 rounds, compile the summaries into tasks/planning-[feature].md:

# Planning Summary: [Feature Name]

Generated: [Date]
Status: Ready for PRD

---

## Round 1: Problem Understanding
[Summary from Round 1]

## Round 2: Scope Definition
[Summary from Round 2]

## Round 3: Technical Constraints
[Summary from Round 3]

## Round 4: Edge Cases
[Summary from Round 4]

## Round 5: Verification Strategy
[Summary from Round 5]

---

## Next Steps

1. Create PRD using `/prd` skill
2. Convert to `prd.json` using `/ralph` skill
3. Run Ralph to implement

Checklist

Before completing planning:

  • Round 1 complete (Problem Understanding)
  • Round 2 complete (Scope Definition)
  • Round 3 complete (Technical Constraints)
  • Round 4 complete (Edge Cases)
  • Round 5 complete (Verification Strategy)
  • All summaries documented
  • Saved to tasks/planning-[feature].md

Do not proceed to PRD until all boxes are checked.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35%
按下载量换算25

Claude

30.22%
按下载量换算21

Cursor

20.21%
按下载量换算14

Gemini CLI

9.49%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills