gsd-remix 1.1.0 → 1.1.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/README.md +8 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,6 +72,7 @@ npx gsd-remix@latest
|
|
|
72
72
|
All remix-specific changes are tracked in [docs/REMIX-DIFFERENCES.md](docs/REMIX-DIFFERENCES.md). If this fork changes upstream behavior, installation, prompts, queries, or workflow defaults, it should be recorded there.
|
|
73
73
|
|
|
74
74
|
Current highlights:
|
|
75
|
+
- **Slimmed to a focused core (1.1.0)** — trimmed the command/agent surface down to the essential discuss → plan → execute → verify loop. Removed the update-check system (`/gsd-update`, `/gsd-reapply-patches`, background update hook) and the heavyweight ceremonies (AI-integration wizard, Nyquist validation, secure-phase, multi-workspace/workstreams, spike/sketch, intel/graphify). Unified the model profiles and folded security review into execution. Docs maintained in **English + 简体中文** only.
|
|
75
76
|
- Published independently on npm as `gsd-remix`, while keeping the `/gsd-*` command surface and core planning layout compatible
|
|
76
77
|
- Isolates the bundled SDK namespace as `@gsd-remix/sdk` / `gsd-remix-sdk`, so remix installs no longer collide with upstream `@gsd-build/sdk`
|
|
77
78
|
- Token-efficiency changes in the main workflow path, including summary-first discuss history loading and low-complexity inline execution routing
|
|
@@ -108,12 +109,14 @@ People who want to describe what they want and have it built correctly — witho
|
|
|
108
109
|
|
|
109
110
|
Built-in quality gates catch real problems: schema drift detection flags ORM changes missing migrations, a diff-scoped security review gate runs during execution, and scope reduction detection prevents the planner from silently dropping your requirements.
|
|
110
111
|
|
|
111
|
-
###
|
|
112
|
+
### 1.1.0 Highlights — The Slim Release
|
|
112
113
|
|
|
113
|
-
- **
|
|
114
|
-
- **
|
|
115
|
-
- **
|
|
116
|
-
- **
|
|
114
|
+
- **Focused command surface** — Removed ~44 legacy commands and the ceremonies behind them (AI-integration wizard, Nyquist validation, secure-phase, multi-workspace/workstreams, spike/sketch, intel/graphify/scan, docs-ingest, developer profiling, ship/stats/manager/forensics). What remains is the core loop plus the utilities that earn their keep.
|
|
115
|
+
- **No more update machinery** — Dropped `/gsd-update`, `/gsd-reapply-patches`, and the background update-check hook. Update by re-running `npx gsd-remix@latest`.
|
|
116
|
+
- **Unified model profiles** — All named profiles resolve to one allocation: Opus for planning/research/debugging, Sonnet for everything else. Use `inherit` for non-Anthropic providers.
|
|
117
|
+
- **Security review folded into execution** — A diff-scoped security review gate runs during `/gsd-execute-phase` instead of a separate secure-phase command; it prefers an installed company security skill and falls back to the bundled generic reviewer.
|
|
118
|
+
- **18 focused agents** and **English + 简体中文** docs only.
|
|
119
|
+
- **Runtime health + isolated SDK** — `/gsd-health --runtime` diagnoses install drift and `/gsd-health --runtime --repair` rebuilds the bundled `@gsd-remix/sdk` (`gsd-remix-sdk` binary), avoiding collisions with upstream installs.
|
|
117
120
|
|
|
118
121
|
---
|
|
119
122
|
|