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

blueprint-prp-execute蓝图 prp 执行

Agent Skill

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

总安装

1,248

周安装

52

GitHub Stars

28

下载量

416
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill blueprint-prp-execute

简介

blueprint-prp-execute 用于系统化执行 PRP,包含实施、验证门控和 TDD 工作流。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 提供质量保证和错误处理模式,确保 PRP 的高效可靠执行。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/blueprint:prp-execute

Execute a PRP (Product Requirement Prompt) with systematic implementation, validation gates, TDD workflow, and quality assurance.

Usage: /blueprint:prp-execute [prp-name]

Prerequisites:

  • PRP exists in docs/prps/[prp-name].md
  • Confidence score >= 7 (if lower, suggest /blueprint:prp-create refinement)

For detailed report templates, deferred items workflow, feature tracker sync, and error handling patterns, see REFERENCE.md.

When to Use This Skill

Use this skill when...Use alternative when...
Ready to implement a planned feature from a PRPPRP is not yet ready (confidence < 7)
Want to execute with full validation and TDD workflowImplementing ad-hoc features without documentation
Need feature tracker and GitHub issue trackingWorking on isolated bug fixes
Want automatic progress reporting and deferred items trackingQuick prototyping without formal tracking

Context

  • PRP file path:!find. -maxdepth 1 -name \'docs/prps/${1:-unknown}.md\'
  • PRP confidence score:!grep -m1 "^confidence:" docs/prps/${1:-unknown}.md
  • Feature tracker enabled:!find docs/blueprint -maxdepth 1 -name 'feature-tracker.json' -type f
  • Current branch:!git rev-parse --abbrev-ref HEAD
  • Uncommitted changes:!git status --porcelain

Parameters

Parse $ARGUMENTS:

  • prp-name (required): Name of PRP file in docs/prps/ (without.md extension)

- Example: feature-auth-oauth2 → loads docs/prps/feature-auth-oauth2.md

Execution

Execute the complete PRP implementation workflow:

Step 1: Load and validate PRP

  1. Read PRP file: docs/prps/{prp-name}.md
  2. Extract confidence score from frontmatter
  3. If confidence < 7 → Error: "PRP confidence too low. Run /blueprint:prp-create {prp-name} to refine"
  4. If confidence >= 9 → Offer delegation: "This PRP has high confidence. Execute now (current session) or create work-order for delegation?"

- If work-order chosen → Run /blueprint:work-order --from-prp {prp-name} and exit - If delegation to multiple subagents chosen → Create focused work-orders per module from Implementation Blueprint and exit

  1. Continue to Step 2 if executing now OR confidence 7-8
  2. Load all referenced ai_docs entries for context
  3. Parse Implementation Blueprint and create TodoWrite entries ordered by dependencies

Step 2: Establish baseline with validation gates

Run pre-implementation validation gates (see REFERENCE.md) to establish clean starting state:

  1. Linting gate: [command from PRP] - Expected: PASS
  2. Existing tests gate: [command from PRP] - Expected: PASS

If gates fail:

  • Document existing issues
  • Decide: fix first or proceed with note
  • Continue when ready

Step 3: Execute TDD implementation cycle

For each task in Implementation Blueprint:

  1. RED phase: Write failing test matching PRP TDD Requirements

- Create test file if needed - Run tests → Confirm FAILURE (test is meaningful)

  1. GREEN phase: Implement minimal code to pass test

- Follow Codebase Intelligence patterns from PRP - Apply patterns from ai_docs references - Watch for Known Gotchas - Run tests → Confirm SUCCESS

  1. REFACTOR phase: Improve code while keeping tests green

- Extract common patterns - Improve naming, add type hints - Follow project conventions - Run tests → Confirm PASS - Run validation gates frequently (not just at end)

  1. Mark progress: Update TodoWrite: ✅ Task N: [Description]

Step 4: Run comprehensive final validation

Execute all validation gates from PRP (see REFERENCE.md):

  • Linting: [cmd] - Expected: PASS
  • Type checking: [cmd] - Expected: PASS
  • Unit tests: [cmd] - Expected: PASS (all tests)
  • Integration tests: [cmd] - Expected: PASS (if applicable)
  • Coverage check: [cmd] - Expected: Meets threshold
  • Security scan: [cmd] - Expected: No high/critical issues (if applicable)
  • Performance tests: [cmd] - Expected: Meets baseline (if defined)

Verify each success criterion from PRP.

Step 5: Document deferred items

Identify and track any deferred work:

  1. Review Implementation Blueprint - items not completed
  2. Categorize each deferred item:

- Phase 2 (Required): Must have GitHub issues created - Nice-to-Have: Optional, no issue required - Blocked: Cannot complete - document blocker, create issue

  1. Create GitHub issues for all Phase 2 and Blocked items (see REFERENCE.md)
  2. Update PRP with deferred items section linking to GitHub issues
  3. Do NOT proceed to Step 6 until all required issues are created

Step 6: Sync feature tracker (if enabled)

If feature tracker exists (docs/blueprint/feature-tracker.json):

  1. Identify which feature codes (e.g., FR2.1) were addressed from PRP
  2. Update feature tracker for each code:

- Status: complete (all criteria met) or partial (some criteria met) or in_progress - Files: List of modified/created files - Tests: List of test files - Commits: Commit hashes - Notes: Implementation notes

  1. Recalculate statistics: completion percentages, phase status
  2. Update TODO.md: Check boxes for completed features
  3. Report feature tracker changes

Step 7: Report results and next steps

Generate comprehensive execution summary report:

  • Tasks completed: X/Y
  • Tests added: N
  • Files modified: [list]
  • Validation results: Table of all gates (PASS/FAIL status)
  • Success criteria: All verified
  • Deferred items summary: Count and GitHub issue numbers
  • Feature tracker updates: Features updated and percentages
  • New gotchas discovered: [documented for future reference]
  • Recommendations: Follow-up work or ai_docs updates

Prompt user for next action:

  • Commit changes (Recommended) → Run /git:commit
  • Create work-order for follow-up → Run /blueprint:work-order
  • Update ai_docs with patterns → Run /blueprint:curate-docs
  • Continue to next PRP → Run /blueprint:prp-execute [next]
  • Done for now → Exit

Agentic Optimizations

ContextCommand
Check PRP exists`test -f docs/prps/${1}.md && echo "EXISTS" \\echo "MISSING"`
Extract confidence`head -50 docs/prps/${1}.md \grep -m1 "^confidence:" \sed 's/^[^:]*:[[:space:]]*//'`
List all PRPs`ls docs/prps/*.md 2>/dev/null \xargs basename -s.md`
Check feature tracker`test -f docs/blueprint/feature-tracker.json && echo "YES" \\echo "NO"`
Fast validationRun validation gates in parallel when possible

For detailed validation gate definitions, deferred items workflow, error handling procedures, and agent team coordination, see REFERENCE.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

40.24%
按下载量换算167

Claude

29.41%
按下载量换算122

Cursor

18.79%
按下载量换算78

Gemini CLI

9.15%
按下载量换算38

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills