pi-gsd 1.2.2 → 1.3.1
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.
- package/.gsd/extensions/gsd-hooks.ts +550 -211
- package/README.md +2 -2
- package/package.json +6 -2
- package/prompts/gsd-add-backlog.md +6 -0
- package/prompts/gsd-add-phase.md +6 -0
- package/prompts/gsd-add-tests.md +6 -0
- package/prompts/gsd-add-todo.md +6 -0
- package/prompts/gsd-audit-milestone.md +6 -0
- package/prompts/gsd-audit-uat.md +6 -0
- package/prompts/gsd-autonomous.md +6 -0
- package/prompts/gsd-check-todos.md +6 -0
- package/prompts/gsd-cleanup.md +6 -0
- package/prompts/gsd-complete-milestone.md +6 -0
- package/prompts/gsd-debug.md +6 -0
- package/prompts/gsd-discuss-phase.md +6 -0
- package/prompts/gsd-do.md +6 -0
- package/prompts/gsd-execute-phase.md +6 -0
- package/prompts/gsd-fast.md +6 -0
- package/prompts/gsd-forensics.md +6 -0
- package/prompts/gsd-insert-phase.md +6 -0
- package/prompts/gsd-join-discord.md +6 -0
- package/prompts/gsd-list-phase-assumptions.md +6 -0
- package/prompts/gsd-list-workspaces.md +6 -0
- package/prompts/gsd-manager.md +6 -0
- package/prompts/gsd-map-codebase.md +6 -0
- package/prompts/gsd-milestone-summary.md +6 -0
- package/prompts/gsd-new-milestone.md +6 -0
- package/prompts/gsd-new-project.md +6 -0
- package/prompts/gsd-new-workspace.md +6 -0
- package/prompts/gsd-next.md +6 -0
- package/prompts/gsd-note.md +6 -0
- package/prompts/gsd-pause-work.md +6 -0
- package/prompts/gsd-plan-milestone-gaps.md +6 -0
- package/prompts/gsd-plan-phase.md +6 -0
- package/prompts/gsd-plant-seed.md +6 -0
- package/prompts/gsd-pr-branch.md +6 -0
- package/prompts/gsd-profile-user.md +6 -0
- package/prompts/gsd-quick.md +6 -0
- package/prompts/gsd-reapply-patches.md +6 -0
- package/prompts/gsd-remove-phase.md +6 -0
- package/prompts/gsd-remove-workspace.md +6 -0
- package/prompts/gsd-research-phase.md +6 -0
- package/prompts/gsd-resume-work.md +6 -0
- package/prompts/gsd-review-backlog.md +6 -0
- package/prompts/gsd-review.md +6 -0
- package/prompts/gsd-session-report.md +6 -0
- package/prompts/gsd-set-profile.md +6 -0
- package/prompts/gsd-settings.md +6 -0
- package/prompts/gsd-setup-pi.md +6 -0
- package/prompts/gsd-ship.md +6 -0
- package/prompts/gsd-thread.md +6 -0
- package/prompts/gsd-ui-phase.md +6 -0
- package/prompts/gsd-ui-review.md +6 -0
- package/prompts/gsd-update.md +6 -0
- package/prompts/gsd-validate-phase.md +6 -0
- package/prompts/gsd-verify-work.md +6 -0
- package/prompts/gsd-workstreams.md +6 -0
- package/scripts/postinstall.js +265 -250
package/README.md
CHANGED
|
@@ -136,8 +136,8 @@ Switch profile: `/gsd-set-profile <profile>`
|
|
|
136
136
|
| Compile-time type safety | ❌ | ⚡ | Fully typed - no `any`, only Zod-inferred types |
|
|
137
137
|
| Runtime validation (Zod) | ❌ | ⚡ | Schema-driven `validate health` with field-path errors |
|
|
138
138
|
| Smarter `--repair` | ❌ | ⚡ | Zod schema defaults fill all missing/invalid fields at once |
|
|
139
|
-
| Instant commands (no LLM cost) | ❌ |
|
|
140
|
-
| Prompt-dispatch for all skills | ❌ |
|
|
139
|
+
| Instant commands (no LLM cost) | ❌ | ✔️ | `/gsd-progress`, `/gsd-stats`, `/gsd-health`, `/gsd-help` — formatted output + deterministic next steps, zero LLM |
|
|
140
|
+
| Prompt-dispatch for all skills | ❌ | ✔️ | 54 pi prompt templates — clean autocomplete, arg hints, direct workflow dispatch |
|
|
141
141
|
|
|
142
142
|
<!-- | Pi harness config entry | ❌ | ✔️ | `HARNESS_CONFIG` pi entry - generates `AGENTS.md` via `/gsd-profile-user` | -->
|
|
143
143
|
<!-- | Toon output in skills | ❌ | ✔️ | `gsd-progress`, `gsd-stats`, `gsd-health` use `--output toon` | -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-gsd",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
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": {
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"scripts/postinstall.js",
|
|
21
21
|
".gsd/extensions",
|
|
22
22
|
"README.md",
|
|
23
|
-
"LICENSE"
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"prompts"
|
|
24
25
|
],
|
|
25
26
|
"engines": {
|
|
26
27
|
"node": ">=18.0.0"
|
|
@@ -57,6 +58,9 @@
|
|
|
57
58
|
"pi": {
|
|
58
59
|
"skills": [
|
|
59
60
|
"./skills"
|
|
61
|
+
],
|
|
62
|
+
"prompts": [
|
|
63
|
+
"./prompts"
|
|
60
64
|
]
|
|
61
65
|
},
|
|
62
66
|
"dependencies": {
|