Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计通过

prd珠三角

Agent Skill

prd 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

872

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/iannuttall/ralph --skill prd

简介

prd 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕项目协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • prd 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PRD Generator (JSON Only)

Create a structured JSON PRD that Ralph can execute deterministically. This PRD is the single source of truth for stories, gates, and status.


The Job

  1. Receive a feature description from the user
  2. Ask 5–10 clarifying questions (with lettered options), in batches of up to 5 at a time (ask 5, wait for answers, then ask the next batch if needed).
  3. Always ask about quality gates (commands that must pass)
  4. Generate a detailed JSON PRD and save it to the provided path

Important: Do NOT implement anything. Only generate JSON.


Step 1: Clarifying Questions

Ask questions even if the prompt seems clear. The goal is to capture missing product details, stack choices, and UI/route structure so the PRD is implementable without guesswork. Focus on:

  • Problem/Goal: What problem does this solve?
  • Core Functionality: What are the key actions?
  • Scope/Boundaries: What should it NOT do?
  • Success Criteria: How do we know it's done?
  • Stack + Environment: frameworks, hosting, runtime, database, auth approach
  • UI + Routes: key screens, navigation, route map, layout constraints
  • Data Model + Import Format: entities, relationships, external data shape
  • Rules/Calculations: business logic, progression rules, edge cases
  • Quality Gates: tests, lint, typecheck, build/dev verification (REQUIRED)

Always ask explicitly:

  • Is this a new project or an existing codebase?

Format Questions Like This:

1. What is the primary goal of this feature?
   A. Improve user onboarding experience
   B. Increase user retention
   C. Reduce support burden
   D. Other: [please specify]

2. Who is the target user?
   A. New users only
   B. Existing users only
   C. All users
   D. Admin users only

3. What quality commands must pass for each story?
   A. npm test
   B. npm run lint
   C. npm run typecheck
   D. Other: [specify]

Note: All example questions and options in this section are illustrative only. Do not copy them verbatim into the PRD unless the user explicitly chooses them. Derive the final quality gates and requirements from the user's answers and the feature context.

4. What stack + hosting are we using (and any constraints)?
   A. React + Vite (static hosting)
   B. Next.js (Node/Edge)
   C. TanStack Start (Cloudflare)
   D. Other: [specify]

5. What UI screens/routes are required?
   A. Minimal (1–2 pages)
   B. Basic app shell (dashboard + detail pages)
   C. Full routing map (list all routes)
   D. Other: [specify]

Step 2: JSON Structure

Output a JSON file with this shape (include detailed top-level fields so the PRD is fully self-contained):

{
  "version": 1,
  "project": "Feature Name",
  "overview": "Short problem + solution summary",
  "goals": [
    "Goal 1",
    "Goal 2"
  ],
  "nonGoals": [
    "Explicitly out of scope items"
  ],
  "successMetrics": [
    "How success is measured"
  ],
  "openQuestions": [
    "Remaining unknowns"
  ],
  "stack": {
    "framework": "TanStack Start",
    "hosting": "Cloudflare",
    "database": "D1",
    "auth": "describe approach"
  },
  "routes": [
    { "path": "/", "name": "Home", "purpose": "..." }
  ],
  "uiNotes": [
    "Layout or component requirements"
  ],
  "dataModel": [
    { "entity": "Workout", "fields": ["id", "userId", "date", "notes"] }
  ],
  "importFormat": {
    "description": "Expected JSON shape",
    "example": { "programName": "..." }
  },
  "rules": [
    "Key business rules / calculations"
  ],
  "qualityGates": ["npm run test:ping"],
  "stories": [
    {
      "id": "US-001",
      "title": "Short story title",
      "status": "open",
      "dependsOn": [],
      "description": "As a [user], I want [feature] so that [benefit].",
      "acceptanceCriteria": [
        "Specific verifiable criterion",
        "Another criterion"
      ]
    }
  ]
}

Rules

  • IDs: Sequential (US-001, US-002,...)
  • Status: Always "open" for new stories
  • DependsOn: Use IDs only; empty array if none
  • Quality Gates: Only at the top-level qualityGates
  • Acceptance Criteria: Verifiable, specific, testable
  • Every story must include: at least 1 example + 1 negative case
  • UI stories: include explicit routes, components, and UI states
  • New projects: include initial setup stories (scaffold, env/config, local dev, deploy basics, package installs)
  • Dependencies: any new package/library introduced must be called out with install commands in acceptance criteria (e.g., npm install <pkg>), plus any required config or scripts.
  • Ordering: if this is a new project, the first story must be setup (scaffold + installs + scripts + env/config). Migrations or data model work come after setup.

Output Requirements

  • Save the JSON to the exact path provided in the prompt (e.g., .agents/tasks/prd-<slug>.json)
  • Output only the JSON file content (no Markdown PRD)
  • Do not include extra commentary in the file

After saving, tell the user: PRD JSON saved to <path>. Close this chat and run \ralph build.

If the prompt provides a directory (not a filename), choose a short filename:

  • prd-<short-slug>.json where <short-slug> is 1–3 meaningful words (avoid filler like “i want to”).
  • Examples: prd-workout-tracker.json, prd-usage-billing.json

Story Size (Critical)

Each story must be completable in a single Ralph iteration. If a story feels too large, split it into multiple smaller stories with dependencies.


Example Output (JSON)

{
  "version": 1,
  "project": "Task Priority System",
  "overview": "Add priority levels to tasks so users can focus on what matters most.",
  "goals": [
    "Allow assigning priority (high/medium/low) to any task",
    "Enable filtering by priority"
  ],
  "nonGoals": [
    "No automatic priority assignment"
  ],
  "successMetrics": [
    "Users can change priority in under 2 clicks"
  ],
  "openQuestions": [
    "Should priority affect ordering within a column?"
  ],
  "stack": {
    "framework": "React",
    "hosting": "Cloudflare Pages",
    "database": "D1",
    "auth": "single shared login"
  },
  "routes": [
    { "path": "/tasks", "name": "Task List", "purpose": "View and filter tasks" },
    { "path": "/tasks/:id", "name": "Task Detail", "purpose": "Edit task priority" }
  ],
  "uiNotes": [
    "Priority badge colors: high=red, medium=yellow, low=gray"
  ],
  "dataModel": [
    { "entity": "Task", "fields": ["id", "title", "priority"] }
  ],
  "importFormat": {
    "description": "Not applicable",
    "example": {}
  },
  "rules": [
    "Priority defaults to medium when not set"
  ],
  "qualityGates": ["npm run test:ping"],
  "stories": [
    {
      "id": "US-001",
      "title": "Add priority field to database",
      "status": "open",
      "dependsOn": [],
      "description": "As a developer, I want to store task priority so it persists across sessions.",
      "acceptanceCriteria": [
        "Add priority column with default 'medium'",
        "Example: creating a task without priority -> defaults to 'medium'",
        "Negative case: invalid priority 'urgent' -> validation error",
        "Migration runs successfully"
      ]
    }
  ]
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.75%
按下载量换算23

Claude

30.89%
按下载量换算19

Cursor

20.3%
按下载量换算13

Gemini CLI

9.67%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills