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

prd-interview珠三角面试

Agent Skill

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

总安装

523

周安装

22

GitHub Stars

29

下载量

183
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mwguerra/claude-code-plugins --skill prd-interview

简介

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

  • 适合根据关键词或任务场景快速定位候选结果。
  • 通过 npx 命令从指定仓库安装并使用该技能。
  • 使用前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PRD Interview Skill

Guide comprehensive interviews to transform rough ideas into actionable Product Requirements Documents through structured discovery across 8 categories.

Core Interview Process

Interview Flow

  1. Initial Prompt: Capture the base idea in user's own words
  2. Category-Based Discovery: Work through relevant categories using AskUserQuestion
  3. Adaptive Branching: Skip irrelevant questions based on context
  4. Progressive Summarization: Summarize after each category before moving on
  5. Document Generation: Create the final PRD with Mermaid diagrams
  6. Task Integration: Offer to generate hierarchical tasks via taskmanager

Interview Categories

Conduct interviews across these 8 categories (adapt based on PRD type):

CategoryFocus AreasWhen to Use
Problem & ContextPain points, current state, why nowAlways
Users & CustomersPersonas, segments, user journeysAlways
Solution & FeaturesFeature list, MVP scope, prioritiesAlways
Technical ImplementationArchitecture, stack, integrationsAlways
Business & ValueROI, pricing, revenue modelProducts, major features
UX & DesignFlows, wireframes, accessibilityUI-facing work
Risks & ConcernsDependencies, assumptions, blockersAlways
Testing & QualityTest strategies, acceptance criteriaAlways

Question Guidelines

When using AskUserQuestion:

  • Ask 2-4 questions per round maximum
  • Provide concrete options when possible
  • Enable multiSelect for non-mutually-exclusive choices
  • Include "Other" automatically (tool handles this)
  • Use short headers (max 12 chars)

Adaptive Branching Rules

Skip categories based on context:

  • Internal tool: Skip pricing/revenue questions in Business & Value
  • Backend-only: Minimize UX & Design category
  • Bug fix: Focus on Problem & Context, Technical, Testing
  • Feature: Full interview but lighter on Business & Value

Session State Management

State File Location

Save interview progress to: .taskmanager/prd-state.json

State Structure

{
  "sessionId": "uuid",
  "prdType": "product|feature|bugfix",
  "slug": "feature-name",
  "startedAt": "ISO timestamp",
  "lastUpdatedAt": "ISO timestamp",
  "currentCategory": "category-name",
  "completedCategories": ["category1", "category2"],
  "answers": {
    "category-name": {
      "question-key": "answer-value"
    }
  },
  "initialPrompt": "User's original description"
}

Resuming Sessions

When /prd-builder:prd or similar is invoked:

  1. Check for existing state in .taskmanager/prd-state.json
  2. If found, ask user: "Resume previous session for '{slug}' or start fresh?"
  3. If resuming, continue from currentCategory
  4. If starting fresh, archive old state and begin new session

PRD Document Structure

Output Location

Save PRDs to: docs/prd/prd-{slug}.md

Document Template

Generate PRDs following the template in templates/prd-template.md. Key sections:

  1. Header: Title, version, date, status, author
  2. Executive Summary: One-paragraph overview
  3. Problem Statement: What problem, who has it, current solutions
  4. Users & Personas: Target users with characteristics
  5. Solution Overview: High-level approach
  6. Features & Requirements: Detailed feature breakdown with priorities
  7. Technical Architecture: Stack, integrations, Mermaid diagrams
  8. User Experience: Flows, wireframes references
  9. Business Case: Value proposition, pricing (if applicable)
  10. Risks & Mitigations: Known risks with mitigation strategies
  11. Testing Strategy: Acceptance criteria, test approach
  12. Timeline & Milestones: Phase breakdown (if applicable)
  13. Open Questions: Unresolved items for follow-up

Mermaid Diagrams

Include these diagrams where appropriate:

Architecture Diagram:

graph TB
    subgraph Frontend
        UI[User Interface]
    end
    subgraph Backend
        API[API Layer]
        DB[(Database)]
    end
    UI --> API --> DB

User Flow Diagram:

flowchart LR
    A[Start] --> B{Decision}
    B -->|Yes| C[Action]
    B -->|No| D[Alternative]

TaskManager Integration

Task Generation Process

After PRD completion:

  1. Parse all features from the PRD
  2. Create hierarchical task structure:

- Parent task per major feature - Child tasks for implementation steps

  1. Use /taskmanager:plan with the PRD file path

Task Hierarchy Example

Feature: User Authentication
├── Setup authentication infrastructure
├── Implement login endpoint
├── Implement registration endpoint
├── Add password reset flow
├── Create authentication middleware
└── Write authentication tests

Automatic Execution

After generating tasks, ask: "Tasks created. Start autonomous execution?" If yes, invoke /taskmanager:run to begin implementation.

PRD Types

Full Product PRD (/prd-builder:prd)

Complete interview covering all 8 categories in depth:

  • 10-15 question rounds
  • Comprehensive documentation
  • Full Mermaid diagrams
  • Complete task breakdown

Feature PRD (/prd-builder:feature)

Lighter interview focused on implementation:

  • 5-8 question rounds
  • Skip or minimize Business & Value (unless monetized feature)
  • Focus on Technical, UX, Testing
  • Assume product context exists

Bug Fix PRD (/prd-builder:bugfix)

Problem-focused documentation:

  • 3-5 question rounds
  • Heavy focus on Problem & Context
  • Technical root cause analysis
  • Regression testing strategy
  • Skip Business, minimize UX

Refine PRD (/prd-builder:refine)

Enhance existing PRDs:

  1. Read and analyze existing PRD
  2. Identify weak or missing sections
  3. Ask targeted questions for gaps only
  4. Merge new answers into existing document
  5. Preserve original content where adequate

Additional Resources

Reference Files

Detailed question banks for each category:

  • references/question-bank.md - Complete question library organized by category

Template Files

PRD output template:

  • templates/prd-template.md - Full PRD document structure

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

32.19%
按下载量换算59

Codex

31.67%
按下载量换算58

Cursor

17.97%
按下载量换算33

Gemini CLI

9.45%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills