# Send Prd to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "prd",
    "name": "Prd",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/bjesuiter/prd",
    "canonicalUrl": "https://clawhub.ai/bjesuiter/prd",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/prd",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prd",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/agent-usage.md",
      "references/output-patterns.md",
      "references/workflows.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "prd",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T08:39:27.036Z",
      "expiresAt": "2026-05-14T08:39:27.036Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prd",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prd",
        "contentDisposition": "attachment; filename=\"prd-2.0.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "prd"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/prd"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/prd",
    "downloadUrl": "https://openagent3.xyz/downloads/prd",
    "agentUrl": "https://openagent3.xyz/skills/prd/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prd/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prd/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: bjesuiter
- Version: 2.0.5
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T08:39:27.036Z
- Expires at: 2026-05-14T08:39:27.036Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/prd)
- [Send to Agent page](https://openagent3.xyz/skills/prd/agent)
- [JSON manifest](https://openagent3.xyz/skills/prd/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/prd/agent.md)
- [Download page](https://openagent3.xyz/downloads/prd)