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

prd-maker制造商

Agent Skill

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

总安装

535

周安装

23

GitHub Stars

3

下载量

188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alpoxdev/hypercore --skill prd-maker

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息检索的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • prd-maker 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

@rules/prd-workflow.md @rules/storage-and-updates.md @rules/validation.md

PRD Maker

Create and maintain living PRDs inside this repository — classify complexity first, then either write directly or track progress through structured phases.
  • Turn a product idea, feature request, or initiative into a reusable PRD folder under .hypercore/prd/.
  • Update existing PRDs in place instead of rewriting them from scratch when the intent is refinement.
  • Keep product reasoning, scope decisions, risks, and source evidence explicit and easy to review.

<routing_rule>

Use prd-maker when the main output is a PRD or an update to an existing PRD.

Use research instead when the job is still fact-finding and there is no PRD deliverable yet.

Use docs-maker instead when the output is a general document, spec, or runbook rather than a PRD folder.

Use plan instead when the user wants planning but does not want the result stored as a PRD under .hypercore/prd/.

Do not use prd-maker when:

  • the user only wants brainstorming with no document output
  • the user only wants market or technical research with no PRD to write
  • the user wants implementation, coding, or debugging rather than product requirements

</routing_rule>

<activation_examples>

Positive requests:

  • "Write a PRD for team inbox assignments."
  • "Create a product requirements doc for the new billing retry flow."
  • "Update the existing PRD with the latest launch scope and open questions."

Negative requests:

  • "Research how competitors handle onboarding."
  • "Implement the billing retry flow."

Boundary request:

  • "Plan this feature before coding." Use prd-maker only if the output should become a stored PRD under .hypercore/prd/. Otherwise route to plan or docs-maker.

</activation_examples>

<trigger_conditions>

SituationMode
A new PRD needs to be createdcreate
An existing PRD needs scope, requirements, metrics, or risks updatedupdate
A product idea needs to be turned into a maintained requirements foldercreate
A release or initiative needs refreshed source-backed requirementsupdate

</trigger_conditions>

<supported_targets>

  • New PRD folders under .hypercore/prd/[slug]/
  • Existing PRD updates under .hypercore/prd/[slug]/
  • prd.md living requirements documents
  • sources.md evidence logs and query logs
  • flow.json phase tracking for complex PRDs
  • Scope changes, assumptions, risks, metrics, dependencies, and open questions

</supported_targets>

<complexity_classification>

Complexity Classification

Classify before starting work:

ComplexitySignalsPath
SimpleSingle feature, clear scope, minimal research needed, few stakeholders, small PRD (≤3 requirements sections)Direct — write prd.md + sources.md without flow tracking
ComplexMulti-feature initiative, extensive research needed, multiple stakeholders, large scope, cross-team dependencies, phased rolloutTracked — add flow.json to the PRD folder

Announce the classification:

Complexity: [simple/complex] — [one-line reason]

When uncertain, classify as complex. It is cheaper to track than to lose progress on a large PRD.

</complexity_classification>

<document_shape>

Default output shape:

.hypercore/prd/[slug]/
├── prd.md
├── sources.md
└── flow.json       (complex path only)
  • prd.md is the living product requirements document.
  • sources.md captures the evidence used to create or update the PRD.
  • flow.json tracks phase progress for complex PRDs. See references/flow-schema.md for the full schema.
  • Keep version history inside prd.md rather than creating extra changelog files.
  • Create the files from assets/prd.template.md and assets/sources.template.md when the folder does not exist yet.

</document_shape>

<flow_tracking>

Flow Tracking (Complex Path Only)

When classified as complex, write flow.json inside the PRD folder and update it as each phase progresses. See references/flow-schema.md for the full schema.

Phase progression

PhaseDescriptionNext
briefGather minimum working brief (problem, users, goals, constraints)research
researchRun live research if needed, or mark as skippeddraft
draftWrite or update prd.md using section reference and templatesources
sourcesWrite or update sources.md with evidence logvalidate
validateRun validation checks, finalizedone

Resume support

If flow.json already exists in the PRD folder, read it first and continue from the last incomplete phase. Do not restart completed phases. This enables multi-session PRD writing for large initiatives.

</flow_tracking>

<support_file_read_order>

Read in this order:

  1. This core SKILL.md to confirm that the job is PRD creation or update.
  2. rules/prd-workflow.md to choose create vs update mode and decide when research is required.
  3. rules/storage-and-updates.md to apply folder, file, slug, and merge rules.
  4. references/prd-sections.md when drafting or updating the PRD body, including optional launch-gating sections such as release criteria.
  5. assets/prd.template.md and assets/sources.template.md when creating a new PRD folder.
  6. instructions/sourcing/reliable-search.md when live research is needed.
  7. rules/validation.md before declaring the PRD complete.

</support_file_read_order>

Simple Path

PhaseTaskOutput
0Confirm PRD deliverable, choose create/update, classify as simpleMode + complexity
1Gather minimum product contextWorking brief
2Create or locate .hypercore/prd/[slug]/Storage target
3Write or update prd.md + sources.mdLiving PRD
4Validate scope, citations, open questionsFinalized PRD folder

Complex Path

PhaseTaskOutput
0Confirm PRD deliverable, choose create/update, classify as complexMode + complexity
1Create or locate .hypercore/prd/[slug]/, write flow.json with brief: in_progressStorage target + flow
2Gather product context → update flow brief: completedWorking brief
3Run live research if needed → update flow research: completed (or skipped)Evidence
4Write or update prd.md → update flow draft: completedLiving PRD
5Write or update sources.md → update flow sources: completedEvidence log
6Validate and finalize → update flow validate: completed, status: completedFinalized PRD folder

Phase rules

  • Prefer updating an existing PRD when the request is a revision, not a brand-new initiative.
  • If the request depends on current market, customer, legal, technical, or competitive facts, run live research with distinct queries before writing.
  • If the user already provided enough reliable context, do not force unnecessary external research.
  • Keep the main PRD concise. Put raw source accumulation in sources.md, not in the main body.
  • Preserve prior decisions unless the new information clearly supersedes them.
  • Complexity classified (simple/complex) before starting work.
  • Store every PRD under .hypercore/prd/[slug]/.
  • Prefer ASCII kebab-case slugs.
  • Keep explicit sections for goals, scope, non-goals, requirements, metrics, risks or dependencies, open questions, and change history.
  • Add links for non-obvious claims when research informed the document.
  • When updating, append a dated change-log row instead of silently overwriting significant decisions.
  • For complex path: maintain flow.json and update after each phase.
  • Writing a PRD only in chat without saving the folder output
  • Rewriting the entire PRD when only one section needs updating
  • Hiding unresolved questions or assumptions
  • Mixing raw research notes into the main PRD body when they belong in sources.md
  • Creating extra README or changelog files for the PRD folder
  • Skipping flow.json updates in complex path

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.43%
按下载量换算70

Claude

28.13%
按下载量换算53

Cursor

16.59%
按下载量换算31

Gemini CLI

9.81%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills