원클릭으로
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.