Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

feature-plan功能计划

Agent Skill

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

总安装

1,023

周安装

41

GitHub Stars

32

下载量

331
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/steveclarke/dotfiles --skill feature-plan

简介

feature-plan 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于前端设计相关的功能规划和协作流程管理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或命令执行操作。
  • 可结合原始 README 继续核验具体用法和功能细节。

SKILL.md

Implementation Plan

Overview

Structured command to help create implementation plan documents by determining plan structure, sequencing development phases, and generating actionable tasks following our established planning patterns.

Create implementation plan documents following the established feature development process. Comprehensive context available:

Required Reading:

  • Feature development guide: @~/.local/share/dotfiles/ai/guides/feature-development-process.md
  • Vision document: @vision.md
  • Requirements document: @requirements.md
  • Technical specification: @spec.md

Note: If the project has a local copy of the guide at @project/guides/feature-development-process.md, you may reference that instead for project-specific modifications.

Additional Context Available:

  • Full Codebase: Examine existing implementation patterns and architecture
  • Implementation Guides: Review backend/docs/guides/ and frontend/docs/guides/ for established approaches
  • Testing Guide: Reference backend/docs/guides/testing/backend-testing-guide.md for testing strategy

Approach: Use all available context to create practical implementation plans with clear sequencing and integrated development phases.

IMPORTANT: Start by creating a TODO list to track the 3 phases of plan creation. Mark the first phase as "in_progress" and others as "pending".

Implementation Plan Structure

Our implementation plans include:

  • Development phases and sequencing (the WHEN and ORDER)
  • Detailed code blocks for unique/novel aspects (with full documentation using your language's standards)
  • Pattern references for established code (noting only what's different)
  • Granular checkbox tasks within each phase
  • Cross-references to vision, requirements (using IDs like REQ-2.1.1, US-1.1.2), and spec documents

IMPORTANT:

  • Do NOT include any effort sizing estimates, hours, or time estimates in the plan documents
  • The checklist tasks themselves serve as the completion criteria - no separate success criteria sections needed
  • Code Detail Strategy:

- Unique/Novel/Complex code: Spell out FULLY with complete documentation using your language's conventions - developers should be able to review, understand, and iterate at the plan level - Established patterns: Just reference existing implementations and note what's different - no boilerplate code - When you DO include code, make it thorough and detailed with full documentation - Goal: Enable plan-level iteration for novel code, skip redundant boilerplate entirely

Process: Work Through These 3 Phases Sequentially

Phase 1: Determine Plan Structure

First, analyze the technical specification and determine how to organize the planning documents:

Complexity Analysis:

  1. Review the technical spec to understand implementation scope
  2. Examine existing similar features in the codebase for patterns
  3. Assess team involvement (backend-only, frontend-only, full-stack, design work)
  4. Determine optimal plan structure

Structure Recommendation - Suggest approach with rationale:

  • Single plan.md: For focused features or single-domain work (backend-only, frontend-only, etc.) (estimated <500 lines)
  • Split by domain: plan-backend.md + plan-frontend.md + plan-design.md for complex full-stack features
  • Separate tasks.md: Only for complex coordination (multiple developers, handoff scenarios)

Ask: "Based on your spec analysis, I recommend [structure]. Does this match your preferences?"

Phase 2: Design Implementation Approach

Determine implementation approach and phase structure:

Planning Activities:

  • Analyze implementation scope and determine high-level phase breakdown
  • Identify what's unique vs established patterns - differentiate novel aspects from boilerplate
  • Identify phase dependencies and sequencing requirements
  • Determine code placement approach (which files, directory structure, following existing patterns)
  • Assess complexity factors and technical challenges requiring detailed explanation
  • Reference existing patterns to minimize boilerplate in plan - note existing implementations developers can follow

Information Gathering:

  • Ask specific questions about:

- Unique implementation approaches not covered by existing patterns - Testing depth preferences for this feature - Any specific implementation constraints or preferences

Sequencing Validation:

  • Present proposed implementation sequence with high-level phase breakdown and rationale
  • Ask for sequencing confirmation: "Does this order make sense? Are there dependencies I missed?"
  • Validate phase dependencies and prerequisites before proceeding to document generation
  • Get explicit approval of the implementation approach and sequencing

Phase 3: Generate Plan Documents

Create the actual plan documents based on Phase 2 planning:

  • Generate plan.md or plan-[domain].md files as determined in Phase 1
  • Write implementation phases using the approach and structure designed in Phase 2
  • Include table of contents with systematic section numbering (1.1, 1.2, 2.1, 2.2, etc.)
  • Add actionable checkbox tasks within each implementation phase (these tasks ARE the completion criteria)
  • Apply selective detail approach:

- For unique/novel code: Include FULL, detailed implementations with complete documentation using your language's standards - For established patterns: Reference existing implementations and note only what's different - When code IS included, make it complete enough for plan-level review and iteration

  • Include justification and cross-references for each phase explaining which spec sections and requirements it implements (use spec references like spec.md#1.2 and requirement IDs like REQ-2.1.1, US-1.1.2)
  • Use clear, practical language focused on implementation sequencing
  • Update discussion-summary.md:

- Check if discussion-summary.md exists in the feature directory - If exists: Add a "Plan Phase" section with: - Implementation approach discussions - Sequencing decisions and rationale - Any pivots made during planning - Update Key Decisions Log with plan decisions (continuing numbering) - Update Technical Context with newly referenced files - If not exists: Create it with full structure including earlier phase placeholders

Guidelines

  • Context First: Always analyze existing plans and implementation patterns before planning
  • Selective Detail Strategy:

- Novel/Complex Code: Include FULL, detailed code with complete documentation using your framework's conventions - enable plan-level review and iteration - Established Patterns: Reference existing implementations, note differences only - no boilerplate repetition - When code IS included, make it thorough enough for developers to understand and refactor in the plan itself

  • Pattern References: When similar code exists, say "Follow pattern from X, but adjust Y" instead of repeating boilerplate
  • Plan Overview Required: Start documents with concise overview (what we're building, key components, sequencing logic as bullets)
  • Prerequisites as Phase 1: Include external setup, manual configurations, and environment requirements as the first implementation phase - even if they're confirmatory steps
  • Actionable Tasks: Use checkboxes for actionable tasks and implementation steps
  • Integrated Development: Each phase includes code implementation with appropriate validation and data (not separate activities)
  • Code + Validation Approach:

- Implementation phases focus on novel/complex code with full details; reference existing patterns for standard code - When code IS included: make it thorough with complete documentation using your framework's standards for plan-level review - Include tests: full details for novel logic, references for standard patterns appropriate to your testing framework - Include smoke tests, throwaway scripts, or manual validation when formal testing patterns don't exist - Phases creating new data models should include realistic sample data for developer use

  • Test Structure Pattern: Selective detail based on novelty

- Standard CRUD/simple patterns: Just reference existing test patterns ("Follow test pattern from X") - Novel/complex testing logic: Include FULL test structure with complete test blocks and implementation details appropriate to your testing framework - When tests ARE included, make them detailed enough to review and iterate at the plan level - Goal: Enable thorough test review for unique testing scenarios, skip boilerplate for standard patterns

  • Code Documentation: Full documentation for novel code, skip for standard patterns

- Standard CRUD/simple patterns: Developers can follow existing examples - no need to include - Novel/complex code: Include COMPLETE documentation with all parameters, return values, examples, type information, and detailed descriptions using your language's documentation standards - When documentation IS included, make it thorough and complete - enable full understanding at the plan level - Use your language's documentation format (e.g., JSDoc, docstrings, YARD, etc.) - Goal: Full documentation for unique code, zero boilerplate for standard patterns

  • Incremental Validation: Include validation steps for complex integrations and end-to-end workflows where manual testing would be tedious
  • Early Sample Data: Include realistic sample data for new backend database models early in development phases, unless model interdependencies prevent it
  • Justification Required: Every implementation phase must be traceable to spec sections
  • Pattern Following: Base implementation approach on established codebase patterns
  • Documentation Required: Include documentation/guide generation as the final phase of every implementation plan
  • Focus on Implementation Only: Do NOT include development philosophy, risk mitigation strategy, or quality assurance strategy sections - developers have vision, requirements, spec, and guides for context
  • Update your TODO list as you complete each phase
  • Focus on WHEN and ORDER of implementation phases
  • Reference implementation guides and similar features
  • Cross-reference all previous documents for business and technical context

Getting Started Process

  1. Create your 3-phase TODO list immediately
  2. Ask user: "What feature directory are you working in? Please provide the full path (e.g., project/features/FT033-feature-name)"
  3. Ask user: "Please tag your vision, requirements, and spec documents with @vision.md @requirements.md @spec.md"
  4. Validate the directory exists and confirm where you'll create the plan documents
  5. Review all previous documents to understand complete feature context
  6. Begin Phase 1 with plan structure analysis and recommendation
  7. Keep recommendations focused and wait for confirmation before proceeding

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.4%
按下载量换算117

Claude

30.93%
按下载量换算102

Cursor

18.75%
按下载量换算62

Gemini CLI

10.2%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills