{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/prd",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prd",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/agent-usage.md",
      "references/output-patterns.md",
      "references/workflows.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/prd",
    "agentPageUrl": "https://openagent3.xyz/skills/prd/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prd/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prd/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PRD Skill",
        "body": "Create and manage Product Requirements Documents (PRDs) for feature planning."
      },
      {
        "title": "What is a PRD?",
        "body": "A PRD (Product Requirements Document) is a structured specification that:\n\nBreaks a feature into small, independent user stories\nDefines verifiable acceptance criteria for each story\nOrders tasks by dependency (schema → backend → UI)"
      },
      {
        "title": "Quick Start",
        "body": "Create/edit agents/prd.json in the project\nDefine user stories with acceptance criteria\nTrack progress by updating passes: false → true"
      },
      {
        "title": "prd.json Format",
        "body": "{\n  \"project\": \"MyApp\",\n  \"branchName\": \"ralph/feature-name\",\n  \"description\": \"Short description of the feature\",\n  \"userStories\": [\n    {\n      \"id\": \"US-001\",\n      \"title\": \"Add priority field to database\",\n      \"description\": \"As a developer, I need to store task priority.\",\n      \"acceptanceCriteria\": [\n        \"Add priority column: 'high' | 'medium' | 'low'\",\n        \"Generate and run migration\",\n        \"Typecheck passes\"\n      ],\n      \"priority\": 1,\n      \"passes\": false,\n      \"notes\": \"\"\n    }\n  ]\n}"
      },
      {
        "title": "Field Descriptions",
        "body": "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"
      },
      {
        "title": "Story Sizing",
        "body": "Each story should be completable in one context window."
      },
      {
        "title": "✅ Right-sized:",
        "body": "Add a database column and migration\nAdd a UI component to an existing page\nUpdate a server action with new logic\nAdd a filter dropdown to a list"
      },
      {
        "title": "❌ Too large (split these):",
        "body": "\"Build the entire dashboard\" → Split into: schema, queries, UI, filters\n\"Add authentication\" → Split into: schema, middleware, login UI, session"
      },
      {
        "title": "Story Ordering",
        "body": "Stories execute in priority order. Earlier stories must NOT depend on later ones.\n\nCorrect order:\n\nSchema/database changes (migrations)\nServer actions / backend logic\nUI components that use the backend\nDashboard/summary views"
      },
      {
        "title": "Acceptance Criteria",
        "body": "Must be verifiable, not vague."
      },
      {
        "title": "✅ Good:",
        "body": "\"Add status column to tasks table with default 'pending'\"\n\"Filter dropdown has options: All, Active, Completed\"\n\"Typecheck passes\""
      },
      {
        "title": "❌ Bad:",
        "body": "\"Works correctly\"\n\"User can do X easily\"\n\nAlways include: \"Typecheck passes\""
      },
      {
        "title": "Progress Tracking",
        "body": "Update passes: true when a story is complete. Use notes field for runtime observations:\n\n\"notes\": \"Used IF NOT EXISTS for migrations\""
      },
      {
        "title": "Quick Reference",
        "body": "ActionCommandCreate PRDSave to agents/prd.jsonCheck status`cat prd.jsonView incomplete`jq '.userStories[]"
      },
      {
        "title": "Resources",
        "body": "See references/ for detailed documentation:\n\nagent-usage.md - How AI agents execute PRDs (Claude Code, OpenCode, etc.)\nworkflows.md - Sequential workflow patterns\noutput-patterns.md - Templates and examples"
      }
    ],
    "body": "PRD Skill\n\nCreate and manage Product Requirements Documents (PRDs) for feature planning.\n\nWhat is a PRD?\n\nA PRD (Product Requirements Document) is a structured specification that:\n\nBreaks a feature into small, independent user stories\nDefines verifiable acceptance criteria for each story\nOrders tasks by dependency (schema → backend → UI)\nQuick Start\nCreate/edit agents/prd.json in the project\nDefine user stories with acceptance criteria\nTrack progress by updating passes: false → true\nprd.json Format\n{\n  \"project\": \"MyApp\",\n  \"branchName\": \"ralph/feature-name\",\n  \"description\": \"Short description of the feature\",\n  \"userStories\": [\n    {\n      \"id\": \"US-001\",\n      \"title\": \"Add priority field to database\",\n      \"description\": \"As a developer, I need to store task priority.\",\n      \"acceptanceCriteria\": [\n        \"Add priority column: 'high' | 'medium' | 'low'\",\n        \"Generate and run migration\",\n        \"Typecheck passes\"\n      ],\n      \"priority\": 1,\n      \"passes\": false,\n      \"notes\": \"\"\n    }\n  ]\n}\n\nField Descriptions\nField\tDescription\nproject\tProject name for context\nbranchName\tGit branch for this feature (prefix with ralph/)\ndescription\tOne-line feature summary\nuserStories\tList of stories to complete\nuserStories[].id\tUnique identifier (US-001, US-002)\nuserStories[].title\tShort descriptive title\nuserStories[].description\t\"As a [user], I want [feature] so that [benefit]\"\nuserStories[].acceptanceCriteria\tVerifiable checklist items\nuserStories[].priority\tExecution order (1 = first)\nuserStories[].passes\tCompletion status (false → true when done)\nuserStories[].notes\tRuntime notes added by agent\nStory Sizing\n\nEach story should be completable in one context window.\n\n✅ Right-sized:\nAdd a database column and migration\nAdd a UI component to an existing page\nUpdate a server action with new logic\nAdd a filter dropdown to a list\n❌ Too large (split these):\n\"Build the entire dashboard\" → Split into: schema, queries, UI, filters\n\"Add authentication\" → Split into: schema, middleware, login UI, session\nStory Ordering\n\nStories execute in priority order. Earlier stories must NOT depend on later ones.\n\nCorrect order:\n\nSchema/database changes (migrations)\nServer actions / backend logic\nUI components that use the backend\nDashboard/summary views\nAcceptance Criteria\n\nMust be verifiable, not vague.\n\n✅ Good:\n\"Add status column to tasks table with default 'pending'\"\n\"Filter dropdown has options: All, Active, Completed\"\n\"Typecheck passes\"\n❌ Bad:\n\"Works correctly\"\n\"User can do X easily\"\n\nAlways include: \"Typecheck passes\"\n\nProgress Tracking\n\nUpdate passes: true when a story is complete. Use notes field for runtime observations:\n\n\"notes\": \"Used IF NOT EXISTS for migrations\"\n\nQuick Reference\nAction\tCommand\nCreate PRD\tSave to agents/prd.json\nCheck status\t`cat prd.json\nView incomplete\t`jq '.userStories[]\nResources\n\nSee references/ for detailed documentation:\n\nagent-usage.md - How AI agents execute PRDs (Claude Code, OpenCode, etc.)\nworkflows.md - Sequential workflow patterns\noutput-patterns.md - Templates and examples"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bjesuiter/prd",
    "publisherUrl": "https://clawhub.ai/bjesuiter/prd",
    "owner": "bjesuiter",
    "version": "2.0.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}