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

prp-generatorprp 生成器

Agent Skill

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

总安装

490

周安装

20

GitHub Stars

51

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/henkisdabro/wookstar-claude-plugins --skill prp-generator

简介

prp-generator 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限和维护状态。
  • 使用前建议核验具体用法,注意是否会触发联网、命令执行或文件读写操作。
  • 涉及敏感数据时应先确认脱敏边界和操作权限,避免误改生产环境。

SKILL.md

PRP Generator

Overview

Generates comprehensive Product Requirement Plans (PRPs) that enable AI agents to implement features in a single pass. Combines systematic codebase analysis with external research to create detailed, context-rich implementation blueprints.

When to Use

  • User requests a PRP, PRD, or detailed implementation plan
  • User asks to "plan out" or "design" a complex feature
  • Beginning significant feature development that benefits from structured planning
  • User provides a feature description file and asks for implementation guidance

Core Principle

Context is Everything: The implementing agent only receives the PRP content, training data knowledge, codebase access, and WebSearch. Your PRP must be self-contained with all necessary context, specific references, and executable validation gates.

Workflow

Phase 1: Understand the Feature

  1. Read the feature request - if a file path is given, read it completely; if verbal, clarify requirements
  2. Clarify ambiguities - use AskUserQuestion for unclear requirements, confirm tech stack, verify integration points
  3. Identify the core problem being solved and acceptance criteria

Phase 2: Codebase Analysis (Mandatory)

Goal: Understand existing patterns, conventions, and integration points.

Systematically analyse the codebase across five dimensions:

AreaWhat to Capture
Similar featuresFile paths, line numbers, code snippets, adaptations needed
ArchitectureDirectory conventions, component organisation, state management, API patterns
Coding conventionsTypeScript usage, component patterns, styling, import ordering, naming
Test patternsFramework, file naming, mock strategies, coverage expectations
ConfigurationDependencies, build setup, path aliases, TypeScript settings

For detailed sub-steps, examples, and documentation templates, see references/codebase-analysis-guide.md.

Also refer to references/research_methodology.md for the full research process.

Phase 3: External Research (Mandatory)

Goal: Find best practices, documentation, examples, and gotchas.

Research across four areas:

AreaKey Actions
Library documentationFind official docs for the SPECIFIC version from package.json; note version-specific gotchas
Implementation examplesSearch GitHub, StackOverflow, official examples; prefer recent, production-grade code
Best practicesSearch "[technology] best practices [current year]"; check OWASP for security
Performance and securityBundle size implications, runtime patterns, vulnerabilities, accessibility

Always document exact URLs, versions, and specific sections. See references/research_methodology.md for detailed guidance.

Phase 4: Ultra-Thinking (Critical)

STOP AND THINK DEEPLY BEFORE WRITING THE PRP.

Analyse integration points, implementation ordering, validation strategy, and context completeness. Verify the PRP will enable one-pass implementation without questions.

For the full set of analysis questions and the quality checklist, see references/quality-assessment.md.

Phase 5: Generate the PRP

Use assets/prp_template.md as the base structure. Populate all sections:

  1. Metadata - feature name, timeline, confidence score (1-10), date
  2. Executive Summary - 2-3 sentences with core value proposition
  3. Research Findings - codebase analysis (file:line refs) and external research (URLs, versions)
  4. Technical Specification - architecture, components, data models, API endpoints
  5. Implementation Blueprint - prerequisites, step-by-step with pseudocode, file changes, error handling, edge cases
  6. Testing Strategy - unit, integration, and manual testing approaches
  7. Validation Gates - must be EXECUTABLE commands (e.g. npm run test && npm run build)
  8. Success Criteria - clear, measurable checklist

Phase 6: Quality Scoring

Score the PRP for one-pass implementation success:

ScoreMeaning
9-10Exceptionally detailed, all context included, clear path, executable gates
7-8Very good, minor gaps, mostly clear implementation path
5-6Adequate, some ambiguity, may require clarification
3-4Incomplete research, missing context, unclear path
1-2Insufficient for implementation

If score is below 7: Go back and improve the PRP before delivering.

Phase 7: Save and Deliver

  1. Save the PRP to PRPs/[feature-name].md (kebab-case, create directory if needed)
  2. Deliver summary to user with: brief feature summary, file location, confidence score with rationale, and next steps

Common Pitfalls

PitfallBadGood
Vague references"There's a similar component somewhere""See UserProfile at src/components/UserProfile.tsx:45-67"
Missing versions"Use React Query""Use @tanstack/react-query v5.28.0"
Non-executable gates"Run tests and make sure they pass"npm run test && npm run build
Generic advice"Follow React best practices""Use named exports (see src/components/Button.tsx:1)"
Incomplete researchSkipping codebase analysisThoroughly document existing patterns
Missing gotchasAssuming smooth implementationDocument known issues and edge cases

Example Usage

User: "Create a PRP for adding dark mode support to the application"

  1. Clarify: "Should dark mode preference persist across sessions? Should it respect system preferences?"
  2. Research codebase for theme-related code
  3. Research external resources (dark mode best practices, library options)
  4. Ultra-think about implementation approach
  5. Generate comprehensive PRP using template
  6. Score the PRP
  7. Save to PRPs/dark-mode-support.md
  8. Deliver summary with confidence score

Resources

ResourceDescription
assets/prp_template.mdBase template for all PRPs
references/research_methodology.mdDetailed research guidance and best practices
references/codebase-analysis-guide.mdDetailed codebase analysis sub-steps and examples
references/quality-assessment.mdUltra-thinking analysis questions and quality checklist

Key Reminders

  • Research is mandatory - never skip codebase or external research
  • Be specific - always include file paths, line numbers, URLs, versions
  • Think deeply - Phase 4 (Ultra-Thinking) is critical for success
  • Validate everything - all validation gates must be executable
  • Score honestly - if confidence is below 7, improve the PRP
  • Context is king - the implementer only has what you put in the PRP

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.53%
按下载量换算60

Claude

28.12%
按下载量换算44

Cursor

19.72%
按下载量换算31

Gemini CLI

10.22%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills