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

feature-implementation-planner功能实施规划师

Agent Skill

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

总安装

396

周安装

17

GitHub Stars

公开资料未说明

下载量

139
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ghou533/agent-skills --skill feature-implementation-planner

简介

将功能需求转化为可执行任务清单,遵循工作树规范。

  • 支持上下文感知、范围界定与多方案对比,输出确认态计划。
  • 需用户提供目标与约束,自动选择规划模式并分解步骤。
  • 适用于复杂系统开发,降低任务遗漏与返工风险。
  • feature-implementation-planner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Planning Workflow

Follow this sequence unless the user asks for a shorter output:

  1. Define feature worktree + branch plan using Feature Worktree Policy.
  2. Clarify objective and constraints.
  3. Discover relevant system context from repository docs and code.
  4. Select planning mode using Practical Default Mode Selection.
  5. Define scope boundaries (in-scope, out-of-scope, assumptions).
  6. Generate one primary implementation approach and optional alternatives.
  7. Convert the selected approach into an agent-executable plan with right-sized tasks.
  8. Present plan status as Awaiting Confirmation, including the task list and commit strategy.
  9. Wait for explicit user confirmation before execution (worktree creation, code edits, tests, or commits).

Feature Worktree Policy

  • Treat the current checked-out branch as the source branch unless the user specifies another source.
  • For new feature implementation work, create a dedicated worktree and feature branch before code changes.
  • Preferred commands:

- git worktree add -b feature/<concise-feature-name>../<repo>-<concise-feature-name> <source-branch> - cd../<repo>-<concise-feature-name>

  • Use a short, informative kebab-case branch suffix (for example: feature/profile-groups-redesign).
  • Include a one-line worktree summary near the top of the plan:

- Worktree Plan: create../<repo>-<name> on feature/<name> from <current-branch>

  • If only planning is requested and no implementation follows in the same session, still include the branch name to be used at execution time.
  • If worktree creation requires a path outside the current project directory, explicitly call out that user confirmation is required before execution.

Parallel Feature Streams

  • Worktree isolation is the default for every feature. When the user is running multiple features at the same time, recommend worktree-parallel to orchestrate separate worktrees cleanly.
  • Add a one-line parallelization note in the plan when applicable:

- Parallel Plan: use worktree-parallel to create isolated worktrees per feature branch

  • Keep one feature branch per worktree to reduce cross-feature conflicts and simplify review/rollback.

Plan Confirmation Gate

  • After presenting a plan, explicitly ask for confirmation before execution (for example: Confirm this plan for execution?).
  • Do not start implementation actions until the user gives clear approval (for example: approved, proceed, yes, implement).
  • If the user requests changes, revise the plan and re-confirm.
  • Confirmation must include the commit strategy choice (task-level commits recommended).

Task Chunking Policy

  • Break the feature into clear, relevant tasks that are independently reviewable and testable.
  • Target meaningful chunks (typically 2-5 tasks per phase), not micro-steps and not broad "do everything" buckets.
  • Each task should include objective, file/module targets, acceptance criteria, and validation commands.
  • Prefer coherent vertical slices when possible so each task has visible user or system value.

Implementation Commit Policy

  • Recommend one commit per completed task to preserve traceability between plan and code history.
  • Include a suggested commit message for every planned task.
  • Tiny inseparable follow-up fixes MAY be folded into the same task commit.
  • Do not create commits until the user confirms both execution and the commit strategy.
  • During implementation, report task completion alongside the corresponding commit SHA.

Practical Default Mode Selection

Choose planning mode using these defaults:

  • Use architecture-first for auth, data model, routing, or infrastructure-impacting features.
  • Use implementation-tickets-first for contained UI flows, isolated endpoints, and incremental enhancements.
  • Use hybrid by default when uncertain: produce a short architecture section (maximum one page), then move to ticket-first execution steps.

Mode behavior:

  • architecture-first: expand Proposed Design with boundaries, contracts, and data flow before ticket breakdown.
  • implementation-tickets-first: keep Proposed Design concise and prioritize detailed, implementation-ready tickets.
  • hybrid: keep architecture concise, then provide full ticketized phases.

Context Discovery Rules

  • Start from docs/INDEX.md, then open only docs relevant to the feature.
  • Read AGENTS.md and task-specific prompt files before proposing implementation steps.
  • Use rg to find existing modules, routes, APIs, schemas, and tests that match the feature.
  • Prefer incremental changes that align with current architecture and conventions.

Output Contract

Produce plans in a concrete format with explicit file targets:

  1. Feature Summary
  2. Goals and Non-Goals
  3. Current State
  4. Proposed Design
  5. Implementation Phases
  6. Testing Strategy
  7. Rollout and Safety
  8. Risks and Mitigations
  9. Open Questions
  10. Execution Readiness

For Implementation Phases, include:

  • Phase name and objective
  • Expected files/modules to change
  • Ordered, right-sized tasks with acceptance criteria
  • Dependencies/blockers
  • Definition of done
  • Suggested commit message per task

Also include a one-line Planning Mode declaration near the top of every plan. Also include Plan Status: Awaiting Confirmation near the top of every plan.

Quality Bar

  • Prefer small, reversible steps over broad rewrites.
  • Keep tasks right-sized: avoid overly granular noise and overly broad bundles.
  • Call out assumptions explicitly when information is missing.
  • Separate mandatory work from optional follow-ups.
  • Include validation commands (lint, typecheck, unit/e2e) for each meaningful phase.
  • Keep plans actionable enough that another agent can implement without reinterpretation.
  • Never start execution until explicit user confirmation is received.

References

  • For a reusable plan skeleton, use references/plan-template.md.
  • For discovery and risk checks, use references/planning-checklist.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.61%
按下载量换算49

Claude

29.81%
按下载量换算41

Cursor

18.04%
按下载量换算25

Gemini CLI

9.86%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills