pi-gsd 2.0.2 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/pi-gsd-hooks.js +1 -0
  2. package/dist/pi-gsd-tools.js +53 -52
  3. package/package.json +2 -2
  4. package/prompts/gsd-add-backlog.md +0 -1
  5. package/prompts/gsd-add-phase.md +0 -1
  6. package/prompts/gsd-add-tests.md +0 -1
  7. package/prompts/gsd-add-todo.md +0 -1
  8. package/prompts/gsd-audit-milestone.md +0 -1
  9. package/prompts/gsd-audit-uat.md +0 -1
  10. package/prompts/gsd-autonomous.md +0 -1
  11. package/prompts/gsd-check-todos.md +0 -1
  12. package/prompts/gsd-cleanup.md +0 -1
  13. package/prompts/gsd-complete-milestone.md +0 -1
  14. package/prompts/gsd-debug.md +0 -1
  15. package/prompts/gsd-discuss-phase.md +1 -2
  16. package/prompts/gsd-do.md +0 -1
  17. package/prompts/gsd-execute-milestone.md +0 -1
  18. package/prompts/gsd-execute-phase.md +1 -2
  19. package/prompts/gsd-fast.md +0 -1
  20. package/prompts/gsd-forensics.md +0 -1
  21. package/prompts/gsd-insert-phase.md +0 -1
  22. package/prompts/gsd-join-discord.md +0 -1
  23. package/prompts/gsd-list-phase-assumptions.md +0 -1
  24. package/prompts/gsd-list-workspaces.md +0 -1
  25. package/prompts/gsd-manager.md +0 -1
  26. package/prompts/gsd-map-codebase.md +0 -1
  27. package/prompts/gsd-milestone-summary.md +0 -1
  28. package/prompts/gsd-new-milestone.md +0 -1
  29. package/prompts/gsd-new-project.md +0 -1
  30. package/prompts/gsd-new-workspace.md +0 -1
  31. package/prompts/gsd-note.md +0 -1
  32. package/prompts/gsd-pause-work.md +0 -1
  33. package/prompts/gsd-plan-milestone-gaps.md +0 -1
  34. package/prompts/gsd-plan-milestone.md +0 -1
  35. package/prompts/gsd-plan-phase.md +1 -2
  36. package/prompts/gsd-plant-seed.md +0 -1
  37. package/prompts/gsd-pr-branch.md +0 -1
  38. package/prompts/gsd-profile-user.md +0 -1
  39. package/prompts/gsd-quick.md +1 -2
  40. package/prompts/gsd-reapply-patches.md +0 -1
  41. package/prompts/gsd-remove-phase.md +0 -1
  42. package/prompts/gsd-remove-workspace.md +0 -1
  43. package/prompts/gsd-research-phase.md +0 -1
  44. package/prompts/gsd-resume-work.md +0 -1
  45. package/prompts/gsd-review-backlog.md +0 -1
  46. package/prompts/gsd-review.md +0 -1
  47. package/prompts/gsd-session-report.md +0 -1
  48. package/prompts/gsd-set-profile.md +1 -2
  49. package/prompts/gsd-settings.md +0 -1
  50. package/prompts/gsd-ship.md +0 -1
  51. package/prompts/gsd-thread.md +0 -1
  52. package/prompts/gsd-ui-phase.md +0 -1
  53. package/prompts/gsd-ui-review.md +0 -1
  54. package/prompts/gsd-validate-phase.md +0 -1
  55. package/prompts/gsd-verify-work.md +1 -2
  56. package/prompts/gsd-workstreams.md +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-gsd",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Get Shit Done - Unofficial port of the renowned AI-native project-planning spec-driven toolkit",
5
5
  "main": "dist/pi-gsd-tools.js",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  "pi-gsd": "./dist/pi-gsd-tools.js"
9
9
  },
10
10
  "scripts": {
11
- "build": "tsup src/cli.ts --format cjs --out-dir dist --minify --no-splitting && mv dist/cli.js dist/pi-gsd-tools.js && chmod +x dist/pi-gsd-tools.js && tsup .gsd/extensions/pi-gsd-hooks.ts --format cjs --out-dir dist --no-splitting --external @mariozechner/pi-coding-agent",
11
+ "build": "tsup",
12
12
  "dev": "tsup src/cli.ts --format cjs --out-dir dist --watch",
13
13
  "typecheck": "tsc --noEmit",
14
14
  "check": "tsc --noEmit && npm run build",
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Park idea in backlog (999.x). Args: idea (string, greedy)
3
- arguments: "Usage: /gsd-add-backlog <idea>"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Add phase to end of roadmap. Args: description (string, greedy)
3
- arguments: "Usage: /gsd-add-phase <description>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/add-phase.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Generate tests for a phase. Args: phase (number)
3
- arguments: "Usage: /gsd-add-tests <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/add-tests.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Capture a todo. Args: text (string, greedy)
3
- arguments: "Usage: /gsd-add-todo <text>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/add-todo.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Audit milestone before archiving. No required args.
3
- arguments: "Usage: /gsd-audit-milestone"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/audit-milestone.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Cross-phase UAT gap audit. No required args.
3
- arguments: "Usage: /gsd-audit-uat"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/audit-uat.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Run all remaining phases. Flags: --from N (start phase), --to N (end phase)
3
- arguments: "Usage: /gsd-autonomous"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/autonomous.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" select="tag:core" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: List and select a todo to work on. No required args.
3
- arguments: "Usage: /gsd-check-todos"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/check-todos.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Archive completed phase directories. No required args.
3
- arguments: "Usage: /gsd-cleanup"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/cleanup.md" include-arguments />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Archive milestone. Args: version (string, e.g. v1.0)
3
- arguments: "Usage: /gsd-complete-milestone <version>"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Systematic debugging session. No required args.
3
- arguments: "Usage: /gsd-debug"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
- description: Gather phase context. Args: phase (number) | Flags: --auto
3
- arguments: "Usage: /gsd-discuss-phase <phase>"
2
+ description: Gather phase context. Args: phase (number) Flags: --auto
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/discuss-phase.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/workflows/discuss-phase-assumptions.md" include-arguments />
package/prompts/gsd-do.md CHANGED
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Auto-route to right command. Args: text (string, greedy)
3
- arguments: "Usage: /gsd-do <text>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/do.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" select="tag:core" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Execute all phases with lifecycle. Flags: --from N, --uat-threshold N (default 80)
3
- arguments: "Usage: /gsd-execute-milestone"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/execute-milestone.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" />
@@ -1,6 +1,5 @@
1
1
  ---
2
- description: Execute all plans in a phase. Args: phase (number) | Flags: --auto (skip transition), --wave N (single wave), --interactive
3
- arguments: "Usage: /gsd-execute-phase <phase>"
2
+ description: Execute all plans in a phase. Args: phase (number) Flags: --auto (skip transition), --wave N (single wave), --interactive
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/execute-phase.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Inline task, no subagents. Args: task (string, greedy)
3
- arguments: "Usage: /gsd-fast <task>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/fast.md" />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Post-mortem investigation. No required args.
3
- arguments: "Usage: /gsd-forensics"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/forensics.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Insert decimal phase after existing phase. Args: after-phase (number), description (string, greedy)
3
- arguments: "Usage: /gsd-insert-phase <after-phase> <description>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/insert-phase.md" include-arguments />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Join the GSD Discord community. No required args.
3
- arguments: "Usage: /gsd-join-discord"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Surface agent assumptions before planning. Args: phase (number)
3
- arguments: "Usage: /gsd-list-phase-assumptions <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/list-phase-assumptions.md" />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: List active workspaces. No required args.
3
- arguments: "Usage: /gsd-list-workspaces"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/list-workspaces.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Interactive multi-phase command center. No required args.
3
- arguments: "Usage: /gsd-manager"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/manager.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Analyze codebase with parallel agents. No required args.
3
- arguments: "Usage: /gsd-map-codebase"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/map-codebase.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Generate milestone summary. No required args.
3
- arguments: "Usage: /gsd-milestone-summary"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/milestone-summary.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Start new milestone cycle. Flags: --auto, --skip-research
3
- arguments: "Usage: /gsd-new-milestone"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/new-milestone.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/questioning.md" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Initialize new project. Flags: --auto, --skip-research
3
- arguments: "Usage: /gsd-new-project"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/new-project.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/questioning.md" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Create isolated workspace. Args: name (string)
3
- arguments: "Usage: /gsd-new-workspace <name>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/new-workspace.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Capture/list/promote notes. Args: text (greedy) or subcommand
3
- arguments: "Usage: /gsd-note <text> | /gsd-note list | /gsd-note promote <id>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/note.md" />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Create handoff for pausing work. No required args.
3
- arguments: "Usage: /gsd-pause-work"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/pause-work.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Create phases to close audit gaps. No required args.
3
- arguments: "Usage: /gsd-plan-milestone-gaps"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/plan-milestone-gaps.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Plan all unplanned phases. Flags: --interactive
3
- arguments: "Usage: /gsd-plan-milestone"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/plan-milestone.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" select="tag:core" />
@@ -1,6 +1,5 @@
1
1
  ---
2
- description: Plan a phase with research→plan→verify loop. Args: phase (number) | Flags: --auto, --skip-research, --gaps, --text
3
- arguments: "Usage: /gsd-plan-phase <phase>"
2
+ description: Plan a phase with research→plan→verify loop. Args: phase (number) Flags: --auto, --skip-research, --gaps, --text
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/plan-phase.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" select="tag:core" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Capture forward-looking idea with trigger. Args: idea (string, greedy)
3
- arguments: "Usage: /gsd-plant-seed <idea>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/plant-seed.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Create clean PR branch. No required args.
3
- arguments: "Usage: /gsd-pr-branch"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/pr-branch.md" />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Generate developer behavioral profile. No required args.
3
- arguments: "Usage: /gsd-profile-user"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/profile-user.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
- description: Quick tracked task. Args: task (string, greedy) | Flags: --no-commit
3
- arguments: "Usage: /gsd-quick <task>"
2
+ description: Quick tracked task. Args: task (string, greedy) Flags: --no-commit
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/quick.md" include-arguments />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Reapply local mods after GSD update. No required args.
3
- arguments: "Usage: /gsd-reapply-patches"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Remove a phase from roadmap. Args: phase (number)
3
- arguments: "Usage: /gsd-remove-phase <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/remove-phase.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Remove workspace. Args: name (string)
3
- arguments: "Usage: /gsd-remove-workspace <name>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/remove-workspace.md" include-arguments />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Research phase implementation. Args: phase (number)
3
- arguments: "Usage: /gsd-research-phase <phase>"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Restore previous session context. No required args.
3
- arguments: "Usage: /gsd-resume-work"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/resume-project.md" include-arguments />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Review and promote backlog items. No required args.
3
- arguments: "Usage: /gsd-review-backlog"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Cross-AI peer review of phase plan. Args: phase (number)
3
- arguments: "Usage: /gsd-review <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/review.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Generate session report. No required args.
3
- arguments: "Usage: /gsd-session-report"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/session-report.md" />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
- description: Set model profile. Args: profile (quality|balanced|budget|inherit)
3
- arguments: "Usage: /gsd-set-profile <profile>"
2
+ description: Set model profile. Args: profile (quality/balanced/budget/inherit)
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Configure workflow toggles. No required args.
3
- arguments: "Usage: /gsd-settings"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/settings.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Create PR and prepare for merge. No required args.
3
- arguments: "Usage: /gsd-ship"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/ship.md" include-arguments />
6
5
 
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Manage context threads. Subcommands: list, new, switch
3
- arguments: "Usage: /gsd-thread [list|new <name>|switch <name>]"
4
3
  ---
5
4
  $ARGUMENTS
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Generate UI design contract. Args: phase (number)
3
- arguments: "Usage: /gsd-ui-phase <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/ui-phase.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Visual audit of frontend phase. Args: phase (number)
3
- arguments: "Usage: /gsd-ui-review <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/ui-review.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/references/ui-brand.md" />
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  description: Retroactive Nyquist validation. Args: phase (number)
3
- arguments: "Usage: /gsd-validate-phase <phase>"
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/validate-phase.md" include-arguments />
6
5
 
@@ -1,6 +1,5 @@
1
1
  ---
2
- description: Run UAT for a phase. Args: phase (number) | Flags: --plan N (specific plan only)
3
- arguments: "Usage: /gsd-verify-work <phase>"
2
+ description: Run UAT for a phase. Args: phase (number) Flags: --plan N (specific plan only)
4
3
  ---
5
4
  <gsd-include path=".pi/gsd/workflows/verify-work.md" include-arguments />
6
5
  <gsd-include path=".pi/gsd/templates/UAT.md" />
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  description: Manage workstreams. Subcommands: list, create <name>, switch <name>, status, complete <name>
3
- arguments: "Usage: /gsd-workstreams [subcommand]"
4
3
  ---
5
4
  $ARGUMENTS