gsd-pi 2.37.0-dev.b4168e4 → 2.37.0-dev.c5c85d8
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/README.md +19 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,19 +24,19 @@ One command. Walk away. Come back to a built project with clean git history.
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
## What's New in v2.
|
|
28
|
-
|
|
29
|
-
- **
|
|
30
|
-
- **
|
|
31
|
-
- **
|
|
32
|
-
- **
|
|
33
|
-
- **
|
|
34
|
-
- **
|
|
35
|
-
- **
|
|
36
|
-
- **
|
|
37
|
-
- **
|
|
38
|
-
- **
|
|
39
|
-
-
|
|
27
|
+
## What's New in v2.33
|
|
28
|
+
|
|
29
|
+
- **Dispatch loop hardening** — defensive guards, reentrancy protection, and 125 new regression tests covering the full `deriveState → resolveDispatch` chain without an LLM
|
|
30
|
+
- **Live regression test harness** — post-build pipeline validation that catches dispatch, parser, and lock lifecycle regressions before promotion
|
|
31
|
+
- **Unified error handling** — `getErrorMessage()` helper replaces 65 inline duplicates across the codebase
|
|
32
|
+
- **Centralized unit ID parsing** — `parseUnitId()` eliminates fragile regex patterns scattered across dispatch, recovery, and metrics code
|
|
33
|
+
- **Milestone merge consolidation** — `tryMergeMilestone()` replaces 4 duplicate merge paths in the auto-mode loop
|
|
34
|
+
- **Lock alignment fix** — retry lock path now matches primary lock settings, preventing `ECOMPROMISED` errors on resume
|
|
35
|
+
- **NixOS/nix-darwin support** — symlinks in `.gsd/` are skipped during `makeTreeWritable` to prevent `EPERM` failures
|
|
36
|
+
- **Windows EPERM fallback** — `.gsd/` migration uses copy+delete when NTFS blocks direct rename
|
|
37
|
+
- **Worktree identity fix** — stable project hash resolved from main repo root, not worktree path
|
|
38
|
+
- **Quick-task branch cleanup** — `/gsd quick` branches auto-merge back to the original branch after completion
|
|
39
|
+
- **Crash recovery guidance** — actionable next-step messages based on what was interrupted and what state survived
|
|
40
40
|
|
|
41
41
|
See the full [Changelog](./CHANGELOG.md) for details.
|
|
42
42
|
|
|
@@ -49,7 +49,7 @@ Full documentation is available in the [`docs/`](./docs/) directory:
|
|
|
49
49
|
- **[Getting Started](./docs/getting-started.md)** — install, first run, basic usage
|
|
50
50
|
- **[Auto Mode](./docs/auto-mode.md)** — autonomous execution deep-dive
|
|
51
51
|
- **[Configuration](./docs/configuration.md)** — all preferences, models, git, and hooks
|
|
52
|
-
- **[Token Optimization](./docs/token-optimization.md)** — profiles, context compression, complexity routing
|
|
52
|
+
- **[Token Optimization](./docs/token-optimization.md)** — profiles, context compression, complexity routing (v2.17)
|
|
53
53
|
- **[Cost Management](./docs/cost-management.md)** — budgets, tracking, projections
|
|
54
54
|
- **[Git Strategy](./docs/git-strategy.md)** — worktree isolation, branching, merge behavior
|
|
55
55
|
- **[Parallel Orchestration](./docs/parallel-orchestration.md)** — run multiple milestones simultaneously
|
|
@@ -463,9 +463,9 @@ Place an `AGENTS.md` file in any directory to provide persistent behavioral guid
|
|
|
463
463
|
|
|
464
464
|
Start GSD with `gsd --debug` to enable structured JSONL diagnostic logging. Debug logs capture dispatch decisions, state transitions, and timing data for troubleshooting auto-mode issues.
|
|
465
465
|
|
|
466
|
-
### Token Optimization
|
|
466
|
+
### Token Optimization (v2.17)
|
|
467
467
|
|
|
468
|
-
GSD
|
|
468
|
+
GSD 2.17 introduced a coordinated token optimization system that reduces usage by 40-60% on cost-sensitive workloads. Set a single preference to coordinate model selection, phase skipping, and context compression:
|
|
469
469
|
|
|
470
470
|
```yaml
|
|
471
471
|
token_profile: budget # or balanced (default), quality
|
|
@@ -485,7 +485,7 @@ See the full [Token Optimization Guide](./docs/token-optimization.md) for detail
|
|
|
485
485
|
|
|
486
486
|
### Bundled Tools
|
|
487
487
|
|
|
488
|
-
GSD ships with
|
|
488
|
+
GSD ships with 18 extensions, all loaded automatically:
|
|
489
489
|
|
|
490
490
|
| Extension | What it provides |
|
|
491
491
|
| ---------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
|
@@ -495,13 +495,12 @@ GSD ships with 19 extensions, all loaded automatically:
|
|
|
495
495
|
| **Google Search** | Gemini-powered web search with AI-synthesized answers |
|
|
496
496
|
| **Context7** | Up-to-date library/framework documentation |
|
|
497
497
|
| **Background Shell** | Long-running process management with readiness detection |
|
|
498
|
-
| **Async Jobs** | Background bash commands with job tracking and cancellation |
|
|
499
498
|
| **Subagent** | Delegated tasks with isolated context windows |
|
|
500
|
-
| **GitHub** | Full-suite GitHub issues and PR management via `/gh` command |
|
|
501
499
|
| **Mac Tools** | macOS native app automation via Accessibility APIs |
|
|
502
500
|
| **MCP Client** | Native MCP server integration via @modelcontextprotocol/sdk |
|
|
503
501
|
| **Voice** | Real-time speech-to-text transcription (macOS, Linux — Ubuntu 22.04+) |
|
|
504
502
|
| **Slash Commands** | Custom command creation |
|
|
503
|
+
| **LSP** | Language Server Protocol integration — diagnostics, go-to-definition, references, hover, symbols, rename, code actions |
|
|
505
504
|
| **Ask User Questions** | Structured user input with single/multi-select |
|
|
506
505
|
| **Secure Env Collect** | Masked secret collection without manual .env editing |
|
|
507
506
|
| **Remote Questions** | Route decisions to Slack/Discord when human input is needed in headless/CI mode |
|
|
@@ -592,7 +591,7 @@ gsd (CLI binary)
|
|
|
592
591
|
├─ resource-loader.ts Syncs bundled extensions + agents to ~/.gsd/agent/
|
|
593
592
|
└─ src/resources/
|
|
594
593
|
├─ extensions/gsd/ Core GSD extension (auto, state, commands, ...)
|
|
595
|
-
├─ extensions/...
|
|
594
|
+
├─ extensions/... 12 supporting extensions
|
|
596
595
|
├─ agents/ scout, researcher, worker
|
|
597
596
|
├─ AGENTS.md Agent routing instructions
|
|
598
597
|
└─ GSD-WORKFLOW.md Manual bootstrap protocol
|