Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

prd珠三角

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

238

周安装

10

GitHub Stars

1

下载量

83
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/olamedia/analytics-skills --skill prd

简介

用于辅助数据整理、表格处理、CSV/Excel 分析和指标计算。

  • 适合清洗字段、汇总数据、发现异常或生成统计口径与可读说明。
  • 需确认数据来源、字段含义和时间范围,避免将样本当全量事实。
  • 涉及敏感数据或批量操作时应先确认权限和脱敏边界。
  • 安装命令:npx skills add https://github.com/olamedia/analytics-skills --skill prd

SKILL.md

PRD

Create a structured Product Requirements Document with user stories, acceptance criteria, functional requirements, and scope boundaries.

When to Use

  • A direction has been chosen and needs to be formalized into requirements
  • Before architecture or task breakdown — requirements must exist first
  • When the team needs a shared source of truth for what "done" means
  • When acceptance criteria need to be explicit and verifiable

When NOT to use: Requirements are already documented in a prd.md that is still accurate, or the change is a single-line fix with obvious scope.

Input

  • brainstorming.md from the artifact folder (required — contains chosen direction)
  • goal-definition.md from the artifact folder (required — contains success criteria)
  • context-map.md from the artifact folder (recommended — for technical grounding)

Output

  • prd.md saved to the artifact folder (see references/formats.md for template)

The Process

Step 1: Load Upstream Artifacts

Read brainstorming.md, goal-definition.md, and context-map.md from the artifact folder. If brainstorming.md or goal-definition.md is missing, tell the user which skill to run first.

Also check for project documentation listed in references/context-sources.md (docs/TechStack.md, docs/ProjectStructure.md). If available, use them to inform technical considerations.

Extract:

  • The chosen direction and rationale (from brainstorming)
  • Success criteria and constraints (from goal definition)
  • Tech stack and existing patterns (from context map)

Step 2: Ask Clarifying Questions

Ask 3-5 essential clarifying questions where the chosen direction leaves gaps. Focus on:

  • Core Functionality: What are the key actions a user takes?
  • Scope Boundaries: What should this specifically NOT do?
  • Edge Cases: What happens when things go wrong?
  • Success Criteria: How do we measure "done" beyond the goal definition?

Format questions with lettered options for quick answers:

1. How should the system handle duplicate entries?
   A. Allow duplicates silently
   B. Reject with a validation error
   C. Warn the user and let them decide
   D. Auto-merge duplicates

2. What is the scope for the first version?
   A. Minimal viable — core happy path only
   B. Full-featured with error handling
   C. Core path + most common edge cases
   D. Other: [please specify]

Users can answer with "1C, 2A" for quick iteration.

Only ask questions where the answer genuinely changes the PRD. Do not ask questions you can answer from the upstream artifacts.

Step 3: Write User Stories

For each piece of functionality, write a user story:

### US-001: [Title]
**Description:** As a [user], I want [feature] so that [benefit].

**Acceptance Criteria:**
- [ ] [Specific verifiable criterion]
- [ ] [Specific verifiable criterion]

Rules for user stories:

  • Each story must be small enough to implement in one focused session
  • Acceptance criteria must be verifiable, never vague
  • Bad: "Works correctly", "Good UX", "Handles edge cases"
  • Good: "Button shows confirmation dialog before deleting", "Response returns within 500ms"
  • Number stories sequentially: US-001, US-002, etc.

Step 4: Write Functional Requirements

Number each requirement for easy reference:

- FR-1: The system must allow users to create an account with email and password
- FR-2: When a user submits an invalid email, the system must display an inline error message
- FR-3: Passwords must be at least 8 characters with one number and one special character

Be explicit and unambiguous. The reader may be a junior developer or AI agent.

Step 5: Define Non-Goals

Carry over the "Not Doing" list from goal definition and expand it based on the clarifying questions:

## Non-Goals (Out of Scope)
- No email verification in v1 — will be added later
- No social login — only email/password for now
- No admin dashboard — management via database directly

This section prevents scope creep. Every PRD must have non-goals.

Step 6: Add Technical and Design Considerations

Based on the context map, note:

  • Existing components that can be reused
  • Integration points with existing systems
  • Performance requirements
  • Known constraints or dependencies

Step 7: Define Success Metrics

Translate the success criteria from goal definition into measurable metrics:

## Success Metrics
- Registration completes in under 3 clicks
- Error rate for form submission < 5%
- Page load time < 2 seconds

Step 8: Write and Save PRD

Write prd.md to the artifact folder using the template from references/formats.md. Include all sections from Steps 3-7, plus an Open Questions section for anything unresolved.

Present the PRD to the user for review before saving. Apply any requested changes.

Announce the saved path:

"PRD saved to [path]/prd.md."

Writing Quality

The PRD reader may be a junior developer or AI agent:

  • Be explicit and unambiguous
  • Avoid jargon or explain it
  • Provide concrete examples where helpful
  • Number requirements for easy reference
  • Make acceptance criteria verifiable (not "works correctly")

Common Rationalizations

RationalizationReality
"The requirements are obvious from the brainstorming"Brainstorming picks a direction. PRD defines every detail within that direction. Different levels of specificity.
"User stories are too formal"User stories force you to name the user, the action, and the benefit. That's clarity, not ceremony.
"We'll figure out edge cases during implementation"Edge cases found during implementation cost 10x more than edge cases found during requirements.
"Non-goals section is unnecessary"Without non-goals, scope creep is invisible. Every "quick addition" erodes focus.
"Acceptance criteria slow us down"Acceptance criteria define "done." Without them, you're done when someone feels like it.

Red Flags

  • User stories without acceptance criteria
  • Acceptance criteria that say "works correctly" or "is intuitive"
  • No non-goals section
  • No functional requirements — only user stories (or vice versa)
  • PRD that doesn't reference the chosen direction from brainstorming
  • Proceeding to architecture without user reviewing the PRD

Verification

Before handing off, confirm:

  • Upstream artifacts loaded (brainstorming, goal definition)
  • 3-5 clarifying questions asked where needed
  • Every user story has verifiable acceptance criteria
  • Functional requirements are numbered and unambiguous
  • Non-goals section has at least 2 items
  • Success metrics are measurable
  • User has reviewed and approved the PRD
  • prd.md saved to artifact folder

Next

"PRD complete. Next recommended skill: architecture — design the technical approach for these requirements."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.58%
按下载量换算29

Claude

29.93%
按下载量换算25

Cursor

20.1%
按下载量换算17

Gemini CLI

10.63%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills