Skip to content

v2.0.0

Choose a tag to compare

@github-actions github-actions released this 27 Jan 01:02
· 671 commits to main since this release

Breaking changes

  • Paths moved from skills/<phase>/<skill>/ to skills/{phase-skill}/. Update any hard-coded references.
  • Slash commands point to the new paths.
  • .claude/skills and .claude/commands are no longer shipped populated; generate locally with the sync helper if needed.

What's Included

  • Flat skills layout: all 24 skills now live at skills/{phase-skill}/ (no nested phase folders).
  • Command alignment: every slash command updated to the flat paths.
  • Sync helper: scripts/sync-claude.(sh|ps1) rebuilds .claude/skills and .claude/commands with validation for Claude Code/openskills discovery.
  • Reproducible packaging: scripts/build-release.(sh|ps1) creates the ZIP + SHA256 manifest (excludes populated .claude/*).
  • Docs refresh: README, QUICKSTART, AGENTS, bundles, guides, and references now match the flat layout and two-path install story.
  • Front-matter consistency: all SKILL.md files have name, phase, version: 2.0.0, updated: 2026-01-26.
  • Issue chooser tidy: awesome-list template hidden; duplicate security link removed.

Download

pm-skills-v2.0.0.zip — Complete package for all platforms

Installation

Claude Code / openskills

  1. Download pm-skills-v2.0.0.zip
  2. Extract, then run:
    • Bash: ./scripts/sync-claude.sh
    • PowerShell: ./scripts/sync-claude.ps1
  3. Claude Code / openskills will discover commands in .claude/commands/ and skills in .claude/skills/.

Other editors/agents

  • Use skills/ and commands/ directly from the extracted ZIP.

Quick Usage

/prd "Your feature description"
/hypothesis "Your assumption to test"
/kickoff "Feature name"

See QUICKSTART.md in the archive for full instructions.


Upgrade guide

  1. Pull or unzip v2.0.0.
  2. If your tool expects .claude/skills (openskills/Claude Code): run ./scripts/sync-claude.sh (macOS/Linux) or ./scripts/sync-claude.ps1 (Windows); keep .claude/ untracked.
  3. Update custom scripts from skills/<phase>/<skill>/ to skills/{phase-skill}/.
  4. Optional: run scripts/validate-commands.(sh|ps1) to verify command→skill mappings.

Assets

  • pm-skills-v2.0.zip
  • SHA256: B89A0352404F09C2CC0A42F60B843B0E672CBC9FB11C5A63A8A3480CD59079AA

Technical notes

  • Build script: scripts/build-release.(sh|ps1) (excludes populated .claude/*).
  • Sync helper: scripts/sync-claude.(sh|ps1) validates SKILL + TEMPLATE + EXAMPLE before copying.
  • Command validator: scripts/validate-commands.(sh|ps1) checks command targets and references.
  • Detailed release notes: docs/releases/Release_v2.0.md.