Skip to main content

plan

Implementation planning methodology and patterns. Triggers on: "plan", "design", "architect", "structure", "how should I implement", "before I start coding", "implementation plan", "feature planning", "break down this feature". Provides planning patterns, templates, and analysis strategies.

跳到安装

来源信息

仓库
anilcancakir/claude-code-plugins
最近来源活动
2026年1月26日 13:27
检测到的 SKILL.md 语言
英语
星标
6
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
2 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
plan
description
Implementation planning methodology and patterns. Triggers on: "plan", "design", "architect", "structure", "how should I implement", "before I start coding", "implementation plan", "feature planning", "break down this feature". Provides planning patterns, templates, and analysis strategies.
# Implementation Planning Skill Guidelines for creating effective implementation plans. ## When to Use Planning ### Plan When - Feature spans multiple files/components - Architecture decisions needed - Multiple valid approaches exist - Dependencies need coordination - Risk of rework is high ### Skip Planning When - Single file change - Bug fix with clear solution - Following existing pattern exactly - Simple CRUD operation ## Planning Phases ### 1. Requirements Clarification - What exactly needs to be built? - What are the acceptance criteria? - What constraints exist? (performance, security, compatibility) - Is TDD expected? ### 2. Codebase Analysis - Explore existing structure - Find similar implementations - Identify patterns and conventions - Map dependencies ### 3. Solution Design - Break into logical phases - Order by dependencies - Define atomic tasks - Add verification steps ### 4. Documentation - Save structured plan - Include specific file paths - Add verification commands ## Plan File Location ``` .claude/plans/{YYYYMMDD}-{HHMMSS}-{slug}.md ``` ## Analysis Strategies ### Standard Analysis 1. Read CLAUDE.md for conventions 2. Use Grep/Glob to find similar code 3. Read key files to understand patterns 4. Map where new code should live ### Serena-Enhanced Analysis 1. `get_symbols_overview()` - file structure 2. `find_symbol()` - locate classes/functions 3. `find_referencing_symbols()` - dependency mapping 4. `read_memory()` - project knowledge ## Task Granularity Good task: ```markdown ### Task 1.1: Create User Model - **File**: app/Models/User.php - **Action**: Create - **Verification**: `php artisan tinker` → `new User()` works ``` Too vague: ```markdown ### Task 1.1: Set up user system - **Action**: Create everything for users ``` ## Verification Types | Type | Example | |------|---------| | Command | `php artisan test --filter=UserTest` | | File Check | File exists at expected path | | Syntax | No errors when loading file | | Manual | User confirms behavior | ## Reference For detailed plan format, see [references/plan-format.md](references/plan-format.md).
在 GitHub 查看