Skip to content

CodeDaim0n/prd-generation-skill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PRD generation skill — universal install kit

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 contain SKILL.md at the root of that folder

Quick install (Cursor)

After cloning this repository:

macOS / Linux

chmod +x scripts/install-cursor.sh && ./scripts/install-cursor.sh

Windows (PowerShell)

pwsh -File .\scripts\install-cursor.ps1

Install target: ~/.cursor/skills/prd-generation (macOS/Linux) or %USERPROFILE%\.cursor\skills\prd-generation (Windows). Then restart Cursor or open a new chat.

Other tools

Tool Command
Claude Code ./scripts/install-claude.sh
Antigravity ./scripts/install-antigravity.sh

Private GitHub repository (for maintainers)

You cannot “install” a private repo without access. Typical setup:

  1. Create an empty private repo on GitHub (no README/license if you will push an existing folder).

  2. 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
  3. 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 --push

Windows (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:...).

Updating the skill after changes

git pull
./scripts/install-cursor.sh    # or install-cursor.ps1 on Windows

License

Add a LICENSE file in this repo if you distribute beyond your team.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors