ワンクリックで
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.