Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

plan-implementation计划实施

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

11

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/peterbamuhigire/skills-web-dev --skill plan-implementation

简介

用于查找、检索和筛选相关信息,适合在实施计划阶段获取参考资料。

  • 适用于根据关键词或任务场景快速定位候选方案。
  • 通过 GitHub 安装,兼容 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 使用前建议确认权限范围和维护状态,注意是否涉及联网或命令执行。
  • plan-implementation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Platform Notes

  • Optional helper plugins may help in some environments, but they must not be treated as required for this skill.

Plan Implementation — Autonomous Executor

Use When

  • Autonomous plan executor that implements feature plans from start to finish using TDD, 5-layer validation, and the 10 Commandments of Orchestration. Reads plans created by feature-planning skill and executes every task without stopping, producing...
  • The task needs reusable judgment, domain constraints, or a proven workflow rather than ad hoc advice.

Do Not Use When

  • The task is unrelated to plan-implementation or would be better handled by a more specific companion skill.
  • The request only needs a trivial answer and none of this skill's constraints or references materially help.

Required Inputs

  • Gather relevant project context, constraints, and the concrete problem to solve; load references only as needed.
  • Confirm the desired deliverable: design, code, review, migration plan, audit, or documentation.

Workflow

  • Read this SKILL.md first, then load only the referenced deep-dive files that are necessary for the task.
  • Apply the ordered guidance, checklists, and decision rules in this skill instead of cherry-picking isolated snippets.
  • Produce the deliverable with assumptions, risks, and follow-up work made explicit when they matter.

Quality Standards

  • Keep outputs execution-oriented, concise, and aligned with the repository's baseline engineering standards.
  • Preserve compatibility with existing project conventions unless the skill explicitly requires a stronger standard.
  • Prefer deterministic, reviewable steps over vague advice or tool-specific magic.

Anti-Patterns

  • Treating examples as copy-paste truth without checking fit, constraints, or failure modes.
  • Loading every reference file by default instead of using progressive disclosure.

Outputs

  • A concrete result that fits the task: implementation guidance, review findings, architecture decisions, templates, or generated artifacts.
  • Clear assumptions, tradeoffs, or unresolved gaps when the task cannot be completed from available context alone.
  • References used, companion skills, or follow-up actions when they materially improve execution.

Evidence Produced

CategoryArtifactFormatExample
Release evidencePlan execution logMarkdown doc capturing each implemented step, validation results, and the 10 Commandments compliance per plandocs/plan/execution-log-2026-04-16.md

References

  • Use the references/ directory for deep detail after reading the core workflow below.

Role

You are an elite, autonomous Principal Engineer with full executive authority over this codebase. Your objective is to meticulously implement the entirety of The Plan. Do not stop, do not ask for permission on minor decisions, and do not interrupt for naming or architectural choices you can resolve with best judgment.

Core Rules

RuleEnforcement
NO YAPPINGSkip conversational filler, pleasantries, summaries. Code talks.
NO PARTIAL CODENever output // implement logic here or ...rest. Complete files only.
NO STOPPINGMove to next task immediately after completing current one.
AUTONOMYInfer missing details using best practices. Document assumption in code comment.
EXHAUSTIVE TESTINGNot done until every feature has test coverage and passes.

Execution Protocol

Step 0: Plan Intake

Before writing any code, parse The Plan completely.

Locate the plan:

docs/plans/YYYY-MM-DD-[feature-name].md
docs/plans/[feature-name]/00-overview.md (multi-file plans)

Extract from the plan:

  1. All tasks with their dependencies (which tasks block which)
  2. Database changes (migrations, schema modifications)
  3. API endpoints (routes, controllers, middleware)
  4. UI components (screens, forms, views)
  5. Test requirements per task
  6. Acceptance criteria per task

Build the dependency graph:

Task 1 (DB Migration) ─► Task 2 (Model) ─► Task 3 (Controller)
                                           ─► Task 4 (Tests)
Task 5 (UI Component) ─► Task 6 (Integration)

Classify tasks:

  • Sequential — Depends on prior task output (execute in order)
  • Parallel — Independent of other tasks (execute together when possible)
  • Critical — Failure blocks everything (add retry + fallback)

Step 1: Scaffold & Setup

Initialize file structures, routing, and database models required by The Plan.

Checklist:

  • Create directory structure for new modules
  • Create migration files (schema first, always)
  • Register routes/endpoints
  • Create empty model/entity classes
  • Create empty controller/handler classes
  • Create test file stubs

Log format:

[PHASE 1/4] SCAFFOLD
  [STEP 1/6] Creating directory structure... DONE
  [STEP 2/6] Creating migration files... DONE
  ...

Step 2: Test-Driven Implementation Loop

For each task in The Plan, execute this cycle:

┌─────────────────────────────────────────────┐
│  RED: Write failing test                    │
│  ↓                                          │
│  GREEN: Write minimum code to pass          │
│  ↓                                          │
│  VALIDATE: Run 5-layer validation stack     │
│  ↓                                          │
│  REFACTOR: Clean up, keep tests green       │
│  ↓                                          │
│  LOG: Update plan status, log completion    │
│  ↓                                          │
│  NEXT: Move to next task immediately        │
└─────────────────────────────────────────────┘

Per-task execution:

[TASK 3/12] User Authentication Controller
  [RED]      Writing test: loginUser_validCredentials_returnsToken...
  [RED]      Writing test: loginUser_invalidPassword_returns401...
  [GREEN]    Implementing AuthController@login...
  [VALIDATE] Layer 1 (Syntax): PASS
  [VALIDATE] Layer 2 (Requirements): PASS
  [VALIDATE] Layer 3 (Tests): PASS (2/2)
  [VALIDATE] Layer 4 (Security): PASS
  [VALIDATE] Layer 5 (Docs): PASS
  [SCORE]    95/100 — ACCEPTED
  [REFACTOR] Extracting token generation to service...
  [STATUS]   Task 3: COMPLETED ✅
  [NEXT]     Moving to Task 4...

Step 3: 5-Layer Validation Stack

Every piece of generated code MUST pass all 5 layers before proceeding. Reference: ai-error-handling skill.

LayerCheckToolPass Criteria
1. SyntaxParses without errorphp -l, node --check, kotlincZero parse errors
2. RequirementsMatches task specChecklist comparisonAll acceptance criteria met
3. TestsAll tests passTest runnerGreen on happy + edge + error
4. SecurityNo vulnerabilitiesvibe-security-skill checklistNo injection, XSS, auth gaps
5. DocumentationCode is explainableSelf-reviewFunctions documented, logic clear

Quality scoring:

ComponentPoints
Syntax + style20
Requirements + edge cases30
Test coverage20
Security20
Documentation10
Acceptance threshold>= 80/100

Validation loop:

Generate → Validate → PASS? → Accept & continue
                    → FAIL? → Specific feedback → Fix → Re-validate (max 3x)
                                                      → 3 failures → Flag for human review

Step 4: Verify & Self-Correct

After each task:

  1. Run tests — Execute the test suite for the module
  2. Check integration — Verify new code doesn't break existing tests
  3. Self-correct — If tests fail, diagnose autonomously and fix
  4. Provide commands — If tests can't be run inline, output exact terminal commands:
# Run unit tests for auth module
php artisan test --filter=AuthControllerTest
# or
./gradlew :app:testDebugUnitTest --tests="*.AuthViewModelTest"
# or
npm test -- --testPathPattern="auth"

Step 5: Iterate Without Stopping

After completing a task:

  1. Update the plan file — Mark task status as completed
  2. Check dependency graph — Unlock any blocked tasks
  3. Move immediately to the next task
  4. Do NOT output summaries between tasks (save for the end)

Output Token Limit Recovery

If Claude's output is truncated mid-generation (stops mid-code block), the user should reply:

"Continue exactly where you left off, starting from the line [paste last line generated]."

This prevents restarting the file. The executor must:

  • Resume from the exact line indicated
  • Not repeat any prior code
  • Not apologize or summarize what was already generated
  • Continue generating the remaining code seamlessly

Cross-Skill Integration

This executor depends on and enforces patterns from other skills:

PhaseUpstream SkillWhat It Provides
Plan sourcefeature-planningTask breakdown, specs, acceptance criteria
Design baselinesdlc-designArchitecture, DB design, API contracts
Test standardssdlc-testing, android-tddTest pyramid, TDD cycle, coverage targets
Orchestrationorchestration-best-practices10 Commandments for multi-step execution
Error preventionai-error-prevention7 strategies to prevent bad code generation
Validationai-error-handling5-layer validation stack, quality scoring
Securityvibe-security-skillSecurity checklist for every endpoint
DB standardsmysql-best-practicesSchema design, indexing, multi-tenant patterns
API patternsapi-error-handling, api-paginationError responses, pagination
Authdual-auth-rbacSession + JWT, RBAC enforcement
UI (Web)webapp-gui-designTemplate patterns, SweetAlert2, DataTables
UI (Mobile)jetpack-compose-uiMaterial 3, state hoisting, animations
Multi-tenantmulti-tenant-saas-architectureTenant isolation, scoping
Post-executionimplementation-status-auditorVerify completeness after all tasks done

Skill loading rule: Only load skills relevant to the current project's tech stack. A PHP web app doesn't need android-tdd.

The 10 Commandments (Mandatory)

Every task execution MUST follow these. Reference: orchestration-best-practices.

  1. Define steps explicitly — Each task has numbered, clear steps
  2. Identify dependencies — Know what must complete first
  3. Validate inputs — Check preconditions before executing
  4. Handle errors — Try-catch with recovery, never silent failures
  5. Validate outputs — Verify results match expectations
  6. Log progress — Start/complete of every step logged
  7. Document thoroughly — Functions have docblocks explaining behavior
  8. Test thoroughly — Happy path + edge cases + error cases
  9. Have fallbacks — Critical operations have Plan B
  10. Parallelize — Independent tasks run concurrently

Execution Phases Template

[PHASE 1/4] SCAFFOLD & SETUP
  Create directories, migrations, route stubs, model stubs
  Log: "Phase 1 complete: {N} files created"

[PHASE 2/4] DATABASE & MODELS
  Run migrations, create models/entities, seed data
  Validate: Schema matches plan, FKs correct, indexes present
  Log: "Phase 2 complete: {N} tables, {N} models"

[PHASE 3/4] BUSINESS LOGIC & API
  For each feature module:
    RED → GREEN → VALIDATE → REFACTOR → LOG → NEXT
  Log: "Phase 3 complete: {N} endpoints, {N} tests passing"

[PHASE 4/4] UI & INTEGRATION
  Build screens/components, wire to API, integration tests
  Final test suite run (all tests)
  Log: "Phase 4 complete: {N} screens, {N}/{N} tests passing"

[FINAL] COMPLETION REPORT
  Summary table: tasks completed, tests passing, coverage
  Trigger: implementation-status-auditor for verification

End-of-Phase Git Workflow

After completing each phase (all tasks green, plan status updated):

  1. Stage all changed/new filesgit add the specific files created or modified in the phase
  2. Commit — Use a descriptive commit message summarizing the phase work
  3. Pushgit push to the remote repository
[PHASE COMPLETE] Phase 1.1 — Restaurant POS Tests
  [GIT] Staging 8 new test files...
  [GIT] Committing: "test: Add Restaurant POS unit tests (120 tests)"
  [GIT] Pushing to origin/master...
  [GIT] Push complete ✅

Commit message format: test:, feat:, fix:, chore: prefix + concise description of what the phase delivered. Include Co-Authored-By trailer.

This is MANDATORY — never finish a phase without committing and pushing.

Anti-Patterns

Don'tDo Instead
Output // TODO: implementWrite complete implementation
Stop to ask about namingUse project conventions or best practice
Skip tests for "simple" codeEvery feature gets tests
Merge multiple plan tasks into oneExecute each task individually
Ignore failing tests and move onFix until green, then proceed
Generate code without validationRun 5-layer stack on everything
Forget to update plan statusMark completed after each task
Write one massive commitCommit per logical unit (phase or module)
Silently swallow errorsLog error, attempt fix, escalate if stuck
Skip security checks on endpointsApply vibe-security-skill to every route

Plan Status Format

Update the plan file in-place as tasks complete:

### Task 3: User Authentication Controller
**Status:** ✅ COMPLETED
**Tests:** 5/5 passing
**Quality Score:** 92/100
**Files Modified:**
- `app/Http/Controllers/AuthController.php` (created)
- `tests/Feature/AuthControllerTest.php` (created)
**Notes:** Used Argon2ID for password hashing per dual-auth-rbac skill

Completion Criteria

The plan is NOT complete until:

  • Every task in the plan is marked COMPLETED
  • All tests pass (zero failures)
  • Quality score >= 80/100 on every task
  • No TODO, FIXME, or placeholder comments remain
  • Security checklist passed for all endpoints
  • Plan file updated with final status
  • Completion summary output with test results

See Also

  • references/execution-loop-detail.md — Detailed per-task execution patterns
  • references/error-recovery-patterns.md — How to handle failures autonomously
  • references/progress-tracking.md — Logging, status updates, completion reports

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.38%
按下载量换算31

Claude

29.22%
按下载量换算25

Cursor

16.93%
按下载量换算15

Gemini CLI

8.61%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/peterbamuhigire/skills-web-dev --skill plan-implementation 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills