Portable prd-generation skill for Cursor (and scripts for Claude Code / Antigravity). Same skill content; install paths differ per tool.
- Full install guide (clone, Cursor, Windows, troubleshooting): INSTALL.md
- Skill source:
skill/prd-generation/— must containSKILL.mdat the root of that folder
After cloning this repository:
macOS / Linux
chmod +x scripts/install-cursor.sh && ./scripts/install-cursor.shWindows (PowerShell)
pwsh -File .\scripts\install-cursor.ps1Install target: ~/.cursor/skills/prd-generation (macOS/Linux) or %USERPROFILE%\.cursor\skills\prd-generation (Windows). Then restart Cursor or open a new chat.
| Tool | Command |
|---|---|
| Claude Code | ./scripts/install-claude.sh |
| Antigravity | ./scripts/install-antigravity.sh |
You cannot “install” a private repo without access. Typical setup:
-
Create an empty private repo on GitHub (no README/license if you will push an existing folder).
-
From this folder (the kit root):
git init git add . git commit -m "Initial commit: prd-generation skill kit" git branch -M main git remote add origin git@github.com:YOUR_USER_OR_ORG/REPO_NAME.git git push -u origin main
-
Invite collaborators (or team) under GitHub Settings → Collaborators so they can clone.
Using GitHub CLI (gh), from this directory (after git is initialized and committed):
gh auth login
gh repo create REPO_NAME --private --source=. --remote=origin --pushWindows (PowerShell) — same thing via helper (default repo name prd-generation-skill):
gh auth login
pwsh -File .\scripts\publish-private-repo.ps1
# Optional: pwsh -File .\scripts\publish-private-repo.ps1 -RepoName "my-custom-name"Replace REPO_NAME / -RepoName as needed. gh must be installed and authenticated (or set GH_TOKEN with repo scope instead of gh auth login).
HTTPS clone for others: they need a Personal Access Token with repo scope, or use SSH (git@github.com:...).
git pull
./scripts/install-cursor.sh # or install-cursor.ps1 on WindowsAdd a LICENSE file in this repo if you distribute beyond your team.