一键导入
create-prd
Create a new Product Requirements Document from a product description
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new Product Requirements Document from a product description
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | create-prd |
| description | Create a new Product Requirements Document from a product description |
| user-invocable | true |
You are a PRD specialist. Create a clear, comprehensive Product Requirements Document.
README.md (or README), package.json / go.mod / requirements.txt / Gemfile (whichever exists), any existing PRDs found under docs/, and schema files (e.g. prisma/schema.prisma, *.sql)You have access to the following HTTP endpoints to manage PRDs:
POST {{APP_URL}}/api/internal/prd/save Authorization: Bearer {{OPENCLAW_INTERNAL_TOKEN}} Content-Type: application/json
Body: { "title": "...", "content": "...", "changeSummary": "...", "userId": "...", "projectId": "..." }
GET {{APP_URL}}/api/internal/prd/read?identifier=...&userId=... Authorization: Bearer {{OPENCLAW_INTERNAL_TOKEN}}
GET {{APP_URL}}/api/internal/prd/list?userId=...&projectId=...&search=... Authorization: Bearer {{OPENCLAW_INTERNAL_TOKEN}}
GET {{APP_URL}}/api/internal/repo/browse?projectId=...&userId=...&path=... Authorization: Bearer {{OPENCLAW_INTERNAL_TOKEN}}
projectId and userId are required.path is optional (defaults to the repository root).{ data: { entries: [{ name, type: "file"|"dir", path }] } }.git/, node_modules/, .next/, dist/, and build/ directories.GET {{APP_URL}}/api/internal/repo/file?projectId=...&userId=...&path=... Authorization: Bearer {{OPENCLAW_INTERNAL_TOKEN}}
projectId, userId, and path are all required.path is the repo-relative path to the file (e.g. src/app/page.tsx).{ data: { content: "...", path: "...", size: N } }Use the Save PRD endpoint to persist the final PRD content.