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

pm%3aprd下午%3aprd

Agent Skill

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

总安装

297

周安装

12

GitHub Stars

公开资料未说明

下载量

93
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cloudvoyant/codevoyant --skill pm:prd

简介

用于查找、检索和筛选产品需求文档相关资料。

  • 适合根据关键词快速定位功能描述、用户故事或验收标准。
  • 使用时需明确产品版本和目标用户。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 安装前建议确认权限范围和维护状态。
  • pm%3aprd 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Compatibility: AskUserQuestion falls back to numbered list on non-Claude-Code platforms.

Skill Requirements

command -v npx >/dev/null 2>&1 || echo "MISSING: npx"

Critical Rules

  • One PRD per invocation — never generate multiple PRDs in one run
  • Consume research from .codevoyant/explore/{slug}/summary.md if available
  • No markdown tables — use bullets, definition lists, and plain prose
  • Problem statements describe user pain, not solutions
  • Success metrics must be measurable (baseline + target)
  • Out-of-scope section is required
  • Requirements must use P0/P1/P2 prioritization — never a flat unordered list
  • Acceptance criteria required for every user story
  • Problem statements must cite at least one evidence source (research artifact, user quote, support ticket, or analytics datum)
  • Prefer Mermaid diagrams for any visual structure in the PRD. Never use ASCII art.

Step 0: Parse arguments

FEATURE="${1:-}"
BG_FLAG=false; SILENT=false
[[ "$*" =~ --bg|-b ]] && BG_FLAG=true
[[ "$*" =~ --silent ]] && SILENT=true

If FEATURE looks like a Linear URL, extract the issue ID and fetch issue details.

Step 1: Gather context

If FEATURE is empty, ask:

AskUserQuestion:
  question: "What feature or capability is this PRD for?"
  header: "Feature"
  options:
    - label: "I'll describe below"
    - label: "Link a Linear issue (paste URL)"

Derive SLUG from FEATURE. Check for research artifact at .codevoyant/explore/{SLUG}/summary.md. If found, read it as RESEARCH_CONTEXT (also read any files in .codevoyant/explore/{SLUG}/research/) and inform the user it will be used.

Ask:

AskUserQuestion:
  questions:
    - question: "What is the primary user problem this feature solves?"
      header: "User problem"
      options:
        - label: "I'll describe below"
        - label: "Pull from research artifact"
    - question: "What does success look like? (measurable outcome)"
      header: "Success metric"
      options:
        - label: "I'll describe below"
        - label: "Pull from research artifact"

Step 1.5: Research backfill (if no research artifact)

Check for research artifacts at .codevoyant/explore/{SLUG}/summary.md or .codevoyant/explore/{SLUG}/research/.

If research exists: load it as RESEARCH_CONTEXT and skip this step.

If no research exists: tell the user "No prior research found for this feature — I'll run a quick web search to ground the PRD."

Ask one round of clarifying questions:

AskUserQuestion:
  questions:
    - question: "Who is the primary user this feature is for?"
      header: "Target user"
      options:
        - label: "I'll describe below"
    - question: "What existing solutions do users use today (if known)?"
      header: "Status quo"
      options:
        - label: "I'll describe below"
        - label: "Unknown — research it"

Then launch 2 Sonnet agents in parallel (both run_in_background: false, model: claude-sonnet-4-6):

Agent A — Market and user research:

Prompt: Search for evidence about the user problem for "{FEATURE}". Run WebSearch("{FEATURE} user problems {year}"), WebSearch("{FEATURE} why users need"), and WebSearch("{TARGET_USER} pain points {FEATURE}"). Fetch 2+ relevant URLs. Write 4–6 key findings to .codevoyant/explore/{SLUG}/research/prd-backfill-market.md with source citations. Flag every unverifiable claim as [UNVERIFIED].

Agent B — Competitive landscape:

Prompt: Search for existing solutions and competitors for "{FEATURE}". Run WebSearch("{FEATURE} alternatives"), WebSearch("{FEATURE} competitors"), and WebSearch("best {FEATURE} tools"). Fetch 2+ relevant URLs (competitor homepages or review pages). Write 4–6 key findings to .codevoyant/explore/{SLUG}/research/prd-backfill-competitive.md. Include for each competitor: target customer, core claim, one key strength, one gap. Cite sources.

Wait for both to complete. Read their outputs as RESEARCH_CONTEXT.

Executive decision protocol for gaps: When research is absent or ambiguous, make confident product design decisions rather than deferring or hedging. The guiding question: *what is most likely to create a sticky, resonant product?* Principles:

  • Prefer depth of value for a specific user over breadth across many
  • Prefer strong opinionated defaults over flexible-but-vague feature sets
  • Prefer clear differentiation over feature parity with incumbents
  • Prefer outcomes users care about over outputs teams can easily build

Label every such decision [DESIGN DECISION] in the PRD so the user can override it. Do not leave fields blank or write "TBD" — make a call and explain the reasoning briefly.

Step 2: Confirm scope

Present a one-paragraph summary (feature, user problem, success metric, research available). Ask:

AskUserQuestion:
  question: "Does this capture the PRD scope?"
  header: "Scope check"
  options:
    - label: "Yes — draft the PRD"
    - label: "Adjust scope (describe below)"

Step 3: Draft PRD

Set:

  • OUTPUT_PATH = .codevoyant/prds/{SLUG}/{SLUG}.md
mkdir -p ".codevoyant/prds/{SLUG}"

Write the PRD to OUTPUT_PATH using this structure (no markdown tables):

# PRD: {Feature Name}

**Status:** Draft
**Date:** {DATE}
**Author:** PM

## Problem Statement

{2–4 sentences describing the user pain, with evidence from research if available. Describes the problem, not the solution.}

## Goals

### Leading indicators (early signals, days to weeks)

- **{Metric name}**: baseline {X} → target {Y} by {timeframe}
  - Measurement method: {how we measure this}
  - Source: {evidence citation or "TBD"}

### Lagging indicators (outcome measures, weeks to months)

- **{Metric name}**: baseline {X} → target {Y} by {timeframe}
  - Measurement method: {how we measure this}
  - Source: {evidence citation or "TBD"}

## Non-Goals / Out of Scope

- {explicit deferral}
- {explicit deferral}

## User Stories

- **As a** {user type}, **I want to** {action} **so that** {outcome}
  - **Given** {context/precondition}
  - **When** {action taken}
  - **Then** {observable result}
- (repeat)

## Requirements

### P0 — Must-have (launch blocker)

- {requirement} — {rationale: why blocking}

### P1 — Nice-to-have (high value, ship when ready)

- {requirement} — {rationale: what it unlocks}

### P2 — Future (validate direction, don't build yet)

- {requirement} — {rationale: why deferred}

> If everything is P0, nothing is P0. Be ruthless about what truly blocks launch.

## Proposed Solution

{brief description of the approach — not implementation details}

### Key Decisions
- {decision}: {rationale}

## Dependencies

- {system or team}: {what is needed}

## Open Questions

- {question} — {proposed answer or "unresolved"}

## Risks

- {risk}: {mitigation}

Step 4: Quality checkpoint

Check the drafted PRD against these criteria:

  • Problem statement describes user pain, not a solution → flag if solution-phrased
  • Each goal has a baseline, target, and timeframe → flag if missing
  • Out-of-scope section is present and non-empty → flag if absent
  • User stories have "so that [outcome]" clauses → flag if missing
  • Problem statement is grounded in evidence (research, support data, user quotes) → flag if it reads as opinion without citation
  • Requirements have at least one P0 item → flag if P0 section is empty (product likely not scoped)
  • At least one leading and one lagging metric defined → flag if only one type present

Auto-fix what can be fixed without human judgment (add missing section skeletons with [TODO]).

Report what was auto-fixed and any remaining issues requiring user attention.

Step 5: Register + Notify

npx @codevoyant/agent-kit plans register \
  --name "{SLUG}-prd" \
  --plugin pm \
  --description "PRD: {FEATURE}" \
  --total "0"
if [ "$SILENT" != "true" ]; then
  npx @codevoyant/agent-kit notify \
    --title "pm:prd complete" \
    --message "PRD draft for '{FEATURE}' written to {OUTPUT_PATH}. Run /pm:approve to commit."
fi

Report: "PRD draft written to {OUTPUT_PATH}. Run /pm:approve to commit to docs/prd/{SLUG}/."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

34.95%
按下载量换算33

Claude

29.78%
按下载量换算28

Cursor

20.9%
按下载量换算19

Gemini CLI

10.85%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills