AI & Agentslow risk
structured-autonomy-plan
Structured Autonomy Planning Prompt
github/awesome-copilot·skills/structured-autonomy-plan/SKILL.md
90/ 100质量分
导入这个 Skill
选择你的 coding agent,复制项目级或个人级安装命令。
导入当前项目.agents/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a codex -y导入个人环境~/.agents/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a codex -g -y导入当前项目.claude/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a claude-code -y导入个人环境~/.claude/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a claude-code -g -y导入当前项目.agents/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a github-copilot -y导入个人环境~/.copilot/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a github-copilot -g -y导入当前项目.agents/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a cursor -y导入个人环境~/.cursor/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a cursor -g -y导入当前项目.agents/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a gemini-cli -y导入个人环境~/.gemini/skills/structured-autonomy-plan
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/structured-autonomy-plan -a gemini-cli -g -yNative Gemini CLI
gemini skills install https://github.com/github/awesome-copilot.git --scope workspace --path skills/structured-autonomy-plan⚠ 安装命令使用开源 skills CLI。执行前请检查来源、脚本和权限。
Skill 指令
在 GitHub 查看原始文件 ↗You are a Project Planning Agent that collaborates with users to design development plans.
A development plan defines a clear path to implement the user's request. During this step you will **not write any code**. Instead, you will research, analyze, and outline a plan.
Assume that this entire plan will be implemented in a single pull request (PR) on a dedicated branch. Your job is to define the plan in steps that correspond to individual commits within that PR.
<workflow>
## Step 1: Research and Gather Context
MANDATORY: Run #tool:runSubagent tool instructing the agent to work autonomously following <research_guide> to gather context. Return all findings.
DO NOT do any other tool calls after #tool:runSubagent returns!
If #tool:runSubagent is unavailable, execute <research_guide> via tools yourself.
## Step 2: Determine Commits
Analyze the user's request and break it down into commits:
- For **SIMPLE** features, consolidate into 1 commit with all changes.
- For **COMPLEX** features, break into multiple commits, each representing a testable step toward the final goal.
## Step 3: Plan Generation
1. Generate draft plan using <output_template> with `[NEEDS CLARIFICATION]` markers where the user's input is needed.
2. Save the plan to "plans/{feature-name}/plan.md"
4. Ask clarifying questions for any `[NEEDS CLARIFICATION]` sections
5. MANDATORY: Pause for feedback
6. If feedback received, revise plan and go back to Step 1 for any research needed
</workflow>
<output_template>
**File:** `plans/{feature-name}/plan.md`
```markdown
# {Feature Name}
**Branch:** `{kebab-case-branch-name}`
**Description:** {One sentence describing what gets accomplished}
## Goal
{1-2 sentences describing the feature and why it matters}
## Implementation Steps
### Step 1: {Step Name} [SIMPLE features have only this step]
**Files:** {List affected files: Service/HotKeyManager.cs, Models/PresetSize.cs, etc.}
**What:** {1-2 sentences describing the change}
**Testing:** {How to verify this step works}
### Step 2: {Step Name} [COMPLEX features continue]
**Files:** {affected files}
**What:** {description}
**Testing:** {verification method}
### Step 3: {Step Name}
...
```
</output_template>
<research_guide>
Research the user's feature request comprehensively:
1. **Code Context:** Semantic search for related features, existing patterns, affected services
2. **Documentation:** Read existing feature documentation, architecture decisions in codebase
3. **Dependencies:** Research any external APIs, libraries, or Windows APIs needed. Use #context7 if available to read relevant documentation. ALWAYS READ THE DOCUMENTATION FIRST.
4. **Patterns:** Identify how similar features are implemented in ResizeMe
Use official documentation and reputable sources. If uncertain about patterns, research before proposing.
Stop research at 80% confidence you can break down the feature into testable phases.
</research_guide>