Public repo for the prd-creater skill, with a synced Notion PRD template catalog, scenario-based shortlist guides, and one-command installers for Codex and other AI tools.
Quick Start · Scenario Guide · Test Sample · Repo Map · Maintenance
If you want to turn rough feature ideas, design briefs, roadmap items, or research notes into a Notion-ready PRD, this repo gives you both the reusable skill and the template selection layer.
| Module | What it gives you |
|---|---|
skills/prd-creater/ |
The skill itself, including the PRD scaffold, synced references, and refresh scripts |
Readme/模板清单-PRD-Creater.md |
The full raw list of 98 Notion Marketplace PRD templates |
Readme/模板分类与场景-PRD-Creater.md |
A scenario-based guide that groups all 98 templates into 10 practical categories |
Readme/测试模板-设计PRD.md |
A complete design-focused PRD sample generated with the skill workflow |
scripts/install-prd-creater.ps1 |
Windows one-command installer for Codex or any local skills/prompts directory |
scripts/install-prd-creater.sh |
macOS/Linux installer for other AI toolchains |
Use this if your AI tool supports a local skills, prompts, or similar directory.
Windows PowerShell
Install to the default Codex skills directory:
$target = if ($env:CODEX_HOME) { Join-Path $env:CODEX_HOME "skills" } else { Join-Path $HOME ".codex\\skills" }
$script = Join-Path $env:TEMP "install-prd-creater.ps1"
Invoke-WebRequest "https://raw.githubusercontent.com/aEboli/PRD-Creat/main/scripts/install-prd-creater.ps1" -OutFile $script
& $script -TargetDir $target -ForceInstall to another AI tool's local directory:
$script = Join-Path $env:TEMP "install-prd-creater.ps1"
Invoke-WebRequest "https://raw.githubusercontent.com/aEboli/PRD-Creat/main/scripts/install-prd-creater.ps1" -OutFile $script
& $script -TargetDir "C:\\path\\to\\your\\ai-tool\\skills" -ForcemacOS / Linux
Install to the default Codex skills directory:
curl -fsSL https://raw.githubusercontent.com/aEboli/PRD-Creat/main/scripts/install-prd-creater.sh -o /tmp/install-prd-creater.sh
bash /tmp/install-prd-creater.sh "${CODEX_HOME:-$HOME/.codex}/skills" --forceInstall to another AI tool's local directory:
curl -fsSL https://raw.githubusercontent.com/aEboli/PRD-Creat/main/scripts/install-prd-creater.sh -o /tmp/install-prd-creater.sh
bash /tmp/install-prd-creater.sh "/path/to/your/ai-tool/skills" --forceAfter installation, try:
Use $prd-creater to turn this feature brief into a PRD.
The current snapshot is based on 2026-03-13 and includes:
98templates total68free templates30paid templates6official Notion templates
| Category | Count | Best for |
|---|---|---|
| Official Notion Baseline | 6 | Starting from the safest Notion-owned PRD spine |
| General Product PRD | 27 | Standard feature specs, iteration docs, single-project PRDs |
| AI / Intelligent Product PRD | 4 | AI capability, model constraints, evaluation, guardrails |
| Startup / MVP / Early Product | 8 | Lean MVP planning and fast-moving small teams |
| Discovery / Strategy / Problem Framing | 14 | Problem definition, evidence capture, option comparison |
| Design / UX / Website Requirements | 8 | Design-heavy specs, website redesigns, UX review |
| Roadmap / Prioritization / Planning | 13 | Prioritization, quarterly planning, roadmap-linked delivery |
| Engineering / Internal Tool / Technical Spec | 7 | Internal tooling, technical constraints, tracking plans |
| PM Workspace / Collaboration Hub / Knowledge Base | 5 | Managing many PRDs, briefs, meetings, and knowledge assets |
| BRD / Approval / Compliance / Business Ops | 6 | Approvals, BRDs, RFPs, compliance, formal cross-team workflows |
Go deeper here:
Want to see what the skill actually outputs?
This sample uses the Design / UX / Website Requirements family and demonstrates how the skill handles:
- information architecture
- search experience
- article readability
- support deflection metrics
PRD-Creat/
skills/
prd-creater/
SKILL.md
agents/openai.yaml
assets/
references/
scripts/
Readme/
scripts/
doc/
| Path | Purpose |
|---|---|
skills/prd-creater/SKILL.md |
Trigger rules, workflow, and output guidance for the skill |
skills/prd-creater/assets/notion-prd-template.md |
Paste-ready PRD scaffold |
skills/prd-creater/references/notion-prd-marketplace-catalog.json |
Structured Notion template catalog |
skills/prd-creater/references/notion-prd-marketplace-scenario-guide.md |
Scenario-oriented shortlist guide for the skill itself |
scripts/generate_prd_template_guides.py |
Regenerates the categorized template guides |
doc/进展记录.md |
Ongoing project progress log |
Refresh the Notion Marketplace PRD catalog:
python skills/prd-creater/scripts/sync_notion_marketplace_catalog.py --query PRDRegenerate the categorized guides:
python scripts/generate_prd_template_guides.pyValidate the skill:
python C:/Users/AEboli/.codex/skills/.system/skill-creator/scripts/quick_validate.py C:/Users/AEboli/Documents/PRD-Creat/skills/prd-creater