@tekyzinc/gsd-t 2.16.0 → 2.16.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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.16.1] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- `gsd-t-init-scan-setup` now pulls existing code from remote before scanning — prevents treating repos with existing code as greenfield
|
|
9
|
+
|
|
5
10
|
## [2.16.0] - 2026-02-13
|
|
6
11
|
|
|
7
12
|
### Changed
|
|
@@ -28,6 +28,12 @@ All subsequent steps run from inside the project directory.
|
|
|
28
28
|
git remote add origin {url}
|
|
29
29
|
```
|
|
30
30
|
- **Remote exists** → Log it and continue
|
|
31
|
+
3. **Pull existing code from remote** (if any):
|
|
32
|
+
- Run `git fetch origin` to get remote refs
|
|
33
|
+
- If the remote has commits and local is empty (or behind), run `git pull origin main` (or the default branch)
|
|
34
|
+
- This ensures the scan sees the actual codebase, not an empty directory
|
|
35
|
+
- If pull fails due to branch mismatch, try `git pull origin master`
|
|
36
|
+
- Skip if local already has commits matching the remote
|
|
31
37
|
|
|
32
38
|
## Step 3: Initialize Project (gsd-t-init)
|
|
33
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.1",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 40 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|