โ† All skills
Tencent SkillHub ยท Developer Tools

Prd

Create and manage Product Requirements Documents (PRDs). Use when: (1) Creating structured task lists with user stories, (2) Specifying features with acceptance criteria, (3) Planning feature implementation for AI agents or human developers.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Create and manage Product Requirements Documents (PRDs). Use when: (1) Creating structured task lists with user stories, (2) Specifying features with acceptance criteria, (3) Planning feature implementation for AI agents or human developers.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/agent-usage.md, references/output-patterns.md, references/workflows.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.5

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

PRD Skill

Create and manage Product Requirements Documents (PRDs) for feature planning.

What is a PRD?

A PRD (Product Requirements Document) is a structured specification that: Breaks a feature into small, independent user stories Defines verifiable acceptance criteria for each story Orders tasks by dependency (schema โ†’ backend โ†’ UI)

Quick Start

Create/edit agents/prd.json in the project Define user stories with acceptance criteria Track progress by updating passes: false โ†’ true

prd.json Format

{ "project": "MyApp", "branchName": "ralph/feature-name", "description": "Short description of the feature", "userStories": [ { "id": "US-001", "title": "Add priority field to database", "description": "As a developer, I need to store task priority.", "acceptanceCriteria": [ "Add priority column: 'high' | 'medium' | 'low'", "Generate and run migration", "Typecheck passes" ], "priority": 1, "passes": false, "notes": "" } ] }

Field Descriptions

FieldDescriptionprojectProject name for contextbranchNameGit branch for this feature (prefix with ralph/)descriptionOne-line feature summaryuserStoriesList of stories to completeuserStories[].idUnique identifier (US-001, US-002)userStories[].titleShort descriptive titleuserStories[].description"As a [user], I want [feature] so that [benefit]"userStories[].acceptanceCriteriaVerifiable checklist itemsuserStories[].priorityExecution order (1 = first)userStories[].passesCompletion status (false โ†’ true when done)userStories[].notesRuntime notes added by agent

Story Sizing

Each story should be completable in one context window.

โœ… Right-sized:

Add a database column and migration Add a UI component to an existing page Update a server action with new logic Add a filter dropdown to a list

โŒ Too large (split these):

"Build the entire dashboard" โ†’ Split into: schema, queries, UI, filters "Add authentication" โ†’ Split into: schema, middleware, login UI, session

Story Ordering

Stories execute in priority order. Earlier stories must NOT depend on later ones. Correct order: Schema/database changes (migrations) Server actions / backend logic UI components that use the backend Dashboard/summary views

Acceptance Criteria

Must be verifiable, not vague.

โœ… Good:

"Add status column to tasks table with default 'pending'" "Filter dropdown has options: All, Active, Completed" "Typecheck passes"

โŒ Bad:

"Works correctly" "User can do X easily" Always include: "Typecheck passes"

Progress Tracking

Update passes: true when a story is complete. Use notes field for runtime observations: "notes": "Used IF NOT EXISTS for migrations"

Quick Reference

ActionCommandCreate PRDSave to agents/prd.jsonCheck status`cat prd.jsonView incomplete`jq '.userStories[]

Resources

See references/ for detailed documentation: agent-usage.md - How AI agents execute PRDs (Claude Code, OpenCode, etc.) workflows.md - Sequential workflow patterns output-patterns.md - Templates and examples

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • references/agent-usage.md Docs
  • references/output-patterns.md Docs
  • references/workflows.md Docs