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

blueprint-prp-create蓝图 prp 创建

Agent Skill

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

总安装

1,317

周安装

56

GitHub Stars

28

下载量

461
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

blueprint-prp-create 用于创建完整的 PRP(产品需求提示),包含 AI 代理实施所需的所有上下文。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 整合 PRD、精选代码库智能、实施蓝图和验证门控,生成可靠的实施包。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/blueprint:prp-create

Create a comprehensive PRP (Product Requirement Prompt) - a self-contained packet with all context an AI agent needs to deliver production code on first attempt.

What is a PRP? PRD + Curated Codebase Intelligence + Implementation Blueprint + Validation Gates = everything needed for reliable implementation.

Usage: /blueprint:prp-create [feature-name]

Prerequisites:

  • Blueprint Development initialized (docs/blueprint/ exists)
  • Clear understanding of the feature to implement

When to Use This Skill

Use this skill when...Use alternative when...
Creating new feature implementation packetExecuting an existing PRP (use /blueprint:prp-execute)
Want comprehensive research and documentationQuick prototyping without formal requirements
Planning for AI agent or subagent executionSolo developer implementing without research
Need to document implementation approachImplementing based on existing codebase patterns

Context

  • Blueprint initialized:!find docs/blueprint -maxdepth 1 -name 'manifest.json' -type f
  • Last PRP ID:!jq -r '.id_registry.last_prp // 0' docs/blueprint/manifest.json
  • ai_docs available:!find docs/blueprint/ai_docs -type f -name "*.md"
  • Existing PRDs:!find docs/prds -name "*.md" -type f

Parameters

Parse $ARGUMENTS:

  • feature-name (required): Kebab-case name for PRP (e.g., auth-oauth2, api-rate-limiting)

- Used for filename and document ID generation

Execution

Execute the complete PRP creation workflow:

Step 1: Verify prerequisites and understand requirements

  1. If Blueprint not initialized → Error: "Run /blueprint:init first"
  2. Ask user to describe the feature: "What feature needs to be implemented?"

- Capture: Goal, why it matters, success criteria

  1. Ask if this implements an existing PRD: "Does this implement an existing PRD or is it standalone?"

- If PRD chosen → Store PRD ID for linking

  1. Determine feature type (API endpoint, database, UI, integration, etc.)

Step 2: Research codebase patterns

Use Explore agent to find existing patterns:

  1. Similar features already implemented (identify existing patterns to follow)
  2. Relevant file locations and integration points
  3. Testing patterns used for similar features
  4. Architecture decisions that affect this feature

Store findings with specific file paths and line numbers.

Step 3: Research external documentation

For relevant libraries/frameworks, gather:

  1. Official documentation sections (capture URLs with specific sections)
  2. Known issues and gotchas from Stack Overflow / GitHub discussions
  3. Best practices from documentation
  4. Common implementation patterns

Use WebSearch/WebFetch as needed. Create or update ai_docs entries if needed (see REFERENCE.md).

Step 4: Generate PRP document ID and structure

Generate next PRP ID from manifest:

  • Extract id_registry.last_prp from manifest.json
  • Next ID = last_prp + 1 (format: PRP-NNN)

Create docs/prps/[feature-name].md with frontmatter and sections (see REFERENCE.md).

Step 5: Draft PRP content with research findings

Fill all required sections (see REFERENCE.md):

  1. Goal & Why: One-sentence goal, business justification, target users, priority
  2. Success Criteria: Specific, testable acceptance criteria with metrics
  3. Context:

- Documentation references (URLs with specific sections) - ai_docs references (links to curated library docs) - Codebase Intelligence: File paths, code snippets with line numbers, patterns to follow - Known Gotchas: Critical warnings with mitigations

  1. Implementation Blueprint:

- Architecture decision with rationale - Task breakdown (Required / Deferred / Nice-to-Have categories) - Order of implementation

  1. TDD Requirements: Test strategy and critical test cases
  2. Validation Gates: Executable commands (linting, type-checking, tests, coverage)

Critical: All tasks must be explicitly categorized (see REFERENCE.md).

Step 6: Score confidence across dimensions

Rate each dimension 1-10:

DimensionCriteria
Context CompletenessAre all file paths, code snippets, and references explicit?
Implementation ClarityIs pseudocode clear enough for AI to follow?
Gotchas DocumentedAre all known pitfalls documented with mitigations?
Validation CoverageAre all validation gates with executable commands?

Calculate overall score as average of dimensions. Target: 7+ for execution, 9+ for subagent delegation.

If score < 7 → Return to Steps 2-3 to fill gaps.

Step 7: Review and validate completeness

Verify checklist (see REFERENCE.md):

  • Goal is clear and specific
  • Success criteria are testable
  • All file paths are explicit (not "somewhere in...")
  • Code snippets show actual patterns with line references
  • Gotchas include mitigations
  • Validation commands are copy-pasteable
  • Confidence score is honest

Update docs/blueprint/manifest.json ID registry with new PRP entry.

Step 8: Report PRP and prompt for next action

Display summary showing:

  • PRP ID and location
  • Feature summary and approach
  • Context collected (ai_docs, patterns, documentation)
  • Linked documents (source PRD if applicable)
  • Confidence score with breakdown
  • Any gaps if score < 7

If confidence >= 7, offer user choices:

  • Execute PRP now → /blueprint:prp-execute [feature-name]
  • Create work-order for subagent → /blueprint:work-order
  • Review and refine → Show file location and gaps
  • Done for now → Exit (save for later execution)

If confidence < 7, offer user choices:

  • Research more context → Use Explore agent for gaps
  • Create ai_docs entries → /blueprint:curate-docs
  • Execute anyway (risky) → Proceed with warning
  • Done for now → Save incomplete PRP

Agentic Optimizations

ContextCommand
Check blueprint init`test -f docs/blueprint/manifest.json && echo "YES" \\echo "NO"`
Next PRP ID`jq -r '.id_registry.last_prp // 0' docs/blueprint/manifest.json \awk '{print $1+1}'`
List existing PRPs`ls -1 docs/prps/ 2>/dev/null \wc -l`
Search for patternsUse Explore agent instead of manual grep
Fast researchUse existing ai_docs rather than fetching docs again

For PRP document structure, task categorization, review checklists, and ai_docs creation guidance, see REFERENCE.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.97%
按下载量换算152

Claude

31.01%
按下载量换算143

Cursor

19.01%
按下载量换算88

Gemini CLI

8.83%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills