@tekyzinc/gsd-t 2.11.6 → 2.13.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,25 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [2.13.1] - 2026-02-12
6
+
7
+ ### Changed
8
+ - Update notification now includes changelog link (https://github.com/Tekyz-Inc/get-stuff-done-teams/blob/main/CHANGELOG.md)
9
+
10
+ ## [2.13.0] - 2026-02-12
11
+
12
+ ### Added
13
+ - `/user:gsd-t-init-scan-setup` slash command — full project onboarding combining git setup, init, scan, and setup in one command
14
+ - Prompts for GitHub repo URL if not already connected; skips if remote exists
15
+ - Total commands: 35 GSD-T + 3 utility = 38
16
+
17
+ ## [2.12.0] - 2026-02-12
18
+
19
+ ### Added
20
+ - `/user:gsd-t-version-update` slash command — update GSD-T to latest version from within Claude Code
21
+ - `/user:gsd-t-version-update-all` slash command — update GSD-T + all registered projects from within Claude Code
22
+ - Total commands: 34 GSD-T + 3 utility = 37
23
+
5
24
  ## [2.11.6] - 2026-02-12
6
25
 
7
26
  ### Changed
package/README.md CHANGED
@@ -18,7 +18,7 @@ A methodology for reliable, parallelizable development using Claude Code with op
18
18
  npx @tekyzinc/gsd-t install
19
19
  ```
20
20
 
21
- This installs 32 GSD-T commands + 3 utility commands to `~/.claude/commands/` and the global CLAUDE.md to `~/.claude/CLAUDE.md`. Works on Windows, Mac, and Linux.
21
+ This installs 35 GSD-T commands + 3 utility commands to `~/.claude/commands/` and the global CLAUDE.md to `~/.claude/CLAUDE.md`. Works on Windows, Mac, and Linux.
22
22
 
23
23
  ### Start Using It
24
24
 
@@ -27,10 +27,10 @@ This installs 32 GSD-T commands + 3 utility commands to `~/.claude/commands/` an
27
27
  cd my-project
28
28
  claude
29
29
 
30
- # 2. Need help articulating your idea?
31
- /user:gsd-t-prompt
30
+ # 2. Full onboarding (git + init + scan + setup in one)
31
+ /user:gsd-t-init-scan-setup
32
32
 
33
- # 3. Initialize GSD-T
33
+ # Or step by step:
34
34
  /user:gsd-t-init my-project
35
35
 
36
36
  # 4. Define what you're building
@@ -104,6 +104,7 @@ This will replace changed command files, back up your CLAUDE.md if customized, a
104
104
  |---------|---------|
105
105
  | `/user:gsd-t-setup` | Generate or restructure project CLAUDE.md |
106
106
  | `/user:gsd-t-init` | Initialize GSD-T structure in project |
107
+ | `/user:gsd-t-init-scan-setup` | Full onboarding: git + init + scan + setup in one |
107
108
  | `/user:gsd-t-project` | Full project → milestone roadmap |
108
109
  | `/user:gsd-t-feature` | Major feature → impact analysis + milestones |
109
110
  | `/user:gsd-t-scan` | Deep codebase analysis → techdebt.md |
@@ -134,6 +135,8 @@ This will replace changed command files, back up your CLAUDE.md if customized, a
134
135
  | `/user:gsd-t-resume` | Restore context, continue |
135
136
  | `/user:gsd-t-quick` | Fast task with GSD-T guarantees |
136
137
  | `/user:gsd-t-debug` | Systematic debugging with state |
138
+ | `/user:gsd-t-version-update` | Update GSD-T to latest version |
139
+ | `/user:gsd-t-version-update-all` | Update GSD-T + all registered projects |
137
140
 
138
141
  ### Backlog Management
139
142
 
@@ -270,8 +273,8 @@ get-stuff-done-teams/
270
273
  ├── LICENSE
271
274
  ├── bin/
272
275
  │ └── gsd-t.js # CLI installer
273
- ├── commands/ # 35 slash commands
274
- │ ├── gsd-t-*.md # 32 GSD-T workflow commands
276
+ ├── commands/ # 38 slash commands
277
+ │ ├── gsd-t-*.md # 35 GSD-T workflow commands
275
278
  │ ├── branch.md # Git branch helper
276
279
  │ ├── checkin.md # Auto-version + commit/push helper
277
280
  │ └── Claude-md.md # Reload CLAUDE.md directives
@@ -17,6 +17,7 @@ GETTING STARTED
17
17
  brainstorm Creative exploration, rethinking, and idea generation
18
18
  setup Generate or restructure project CLAUDE.md
19
19
  init Initialize GSD-T structure in current project
20
+ init-scan-setup Full onboarding: git + init + scan + setup in one
20
21
  project New project → requirements → milestone roadmap
21
22
  feature Major feature → impact analysis → milestones
22
23
  scan Deep codebase analysis → techdebt.md
@@ -46,6 +47,8 @@ UTILITIES
46
47
  debug Systematic debugging with state
47
48
  promote-debt Convert techdebt items to milestones
48
49
  populate Auto-populate docs from existing codebase
50
+ version-update Update GSD-T package to latest version
51
+ version-update-all Update GSD-T package + all registered projects
49
52
 
50
53
  BACKLOG
51
54
  ───────────────────────────────────────────────────────────────────────────────
@@ -144,6 +147,13 @@ Use these when user asks for help on a specific command:
144
147
  - **Creates**: `.gsd-t/` directory structure, initial progress.md
145
148
  - **Use when**: Starting GSD-T in a new or existing project
146
149
 
150
+ ### init-scan-setup
151
+ - **Summary**: Full project onboarding — git + init + scan + setup in one command
152
+ - **Auto-invoked**: No
153
+ - **Creates**: `.gsd-t/` structure, `docs/`, `.gsd-t/scan/`, `.gsd-t/techdebt.md`, optimized `CLAUDE.md`
154
+ - **Use when**: Onboarding any project into GSD-T for the first time (new or existing codebase)
155
+ - **Combines**: gsd-t-init → gsd-t-scan → gsd-t-setup, plus git remote setup if needed
156
+
147
157
  ### project
148
158
  - **Summary**: Define a complete new project with requirements and milestone roadmap
149
159
  - **Auto-invoked**: No
@@ -0,0 +1,80 @@
1
+ # GSD-T: Init-Scan-Setup — Full Project Onboarding
2
+
3
+ One command to fully onboard a project into GSD-T. Combines git setup, `gsd-t-init`, `gsd-t-scan`, and `gsd-t-setup` into a single orchestrated flow.
4
+
5
+ ## Step 1: Git Repository Check
6
+
7
+ 1. Check if the current directory is inside a git repo: `git rev-parse --is-inside-work-tree`
8
+ - **Not a git repo** → Run `git init`
9
+ 2. Check for an existing remote: `git remote -v`
10
+ - **No remote found** → Ask the user for the GitHub repository URL, then run:
11
+ ```
12
+ git remote add origin {url}
13
+ ```
14
+ - **Remote exists** → Log it and continue
15
+
16
+ ## Step 2: Initialize Project (gsd-t-init)
17
+
18
+ Execute the full init workflow (same as `/user:gsd-t-init`):
19
+
20
+ 1. Create `.gsd-t/` directory structure (contracts/, domains/, progress.md, backlog.md, backlog-settings.md)
21
+ 2. Ensure `CLAUDE.md` exists (create starter if missing, append GSD-T section if present without it)
22
+ 3. Create `docs/` with all 4 living document templates (skip existing files)
23
+ 4. Ensure `README.md` exists
24
+ 5. Map existing codebase if code exists
25
+ 6. Initialize backlog with auto-derived categories
26
+ 7. Register project in `~/.claude/.gsd-t-projects`
27
+
28
+ **If `.gsd-t/` already exists**: Skip init — it's already done. Log and continue to scan.
29
+
30
+ ## Step 3: Deep Codebase Scan (gsd-t-scan)
31
+
32
+ Execute the full scan workflow (same as `/user:gsd-t-scan`):
33
+
34
+ 1. Scan across all dimensions: architecture, business rules, security, quality, contracts
35
+ 2. Build `.gsd-t/techdebt.md` register
36
+ 3. Cross-populate findings into living documents (docs/architecture.md, docs/workflows.md, docs/infrastructure.md, docs/requirements.md)
37
+ 4. Update README.md with discovered tech stack and setup info
38
+
39
+ Use team mode if agent teams are enabled. Otherwise run solo.
40
+
41
+ **If `.gsd-t/techdebt.md` already exists**: Append new findings, don't overwrite.
42
+
43
+ ## Step 4: Generate Project CLAUDE.md (gsd-t-setup)
44
+
45
+ Execute the full setup workflow (same as `/user:gsd-t-setup`):
46
+
47
+ 1. Read global `~/.claude/CLAUDE.md` to understand what's already covered
48
+ 2. Use scan findings + auto-detection to populate project-specific sections
49
+ 3. Remove any global duplicates from the project CLAUDE.md
50
+ 4. Generate and write the optimized CLAUDE.md
51
+
52
+ At Level 3: skip questions that were auto-detected — only ask what's truly unknown.
53
+ At Level 1-2: ask all targeted questions per the setup workflow.
54
+
55
+ ## Step 5: Report
56
+
57
+ Present a unified summary:
58
+
59
+ ```
60
+ Project Onboarded: {project name}
61
+
62
+ Git: {remote URL or "local only"}
63
+ Init: .gsd-t/ created, docs/ populated
64
+ Scan: {N} tech debt items ({critical} critical, {high} high, {medium} medium, {low} low)
65
+ Setup: CLAUDE.md generated ({N} sections)
66
+ Registry: {registered | already registered}
67
+
68
+ Next steps:
69
+ → Review .gsd-t/techdebt.md for critical items
70
+ → /user:gsd-t-milestone to define your first milestone
71
+ → /user:gsd-t-wave to run a full development cycle
72
+ ```
73
+
74
+ ### Autonomy Behavior
75
+
76
+ **Level 3 (Full Auto)**: Run all steps without pausing. Only stop if git remote is needed (requires user input) or if a scan reveals critical security blockers.
77
+
78
+ **Level 1-2**: Pause after each major step (init, scan, setup) for user review before continuing.
79
+
80
+ $ARGUMENTS
@@ -0,0 +1,23 @@
1
+ # GSD-T: Version Update All — Update GSD-T and All Registered Projects
2
+
3
+ You are updating the GSD-T package to the latest version from npm and applying it to the global installation and all registered projects.
4
+
5
+ ## Step 1: Update the npm package
6
+
7
+ ```bash
8
+ npm update -g @tekyzinc/gsd-t
9
+ ```
10
+
11
+ ## Step 2: Apply to global install and all projects
12
+
13
+ ```bash
14
+ gsd-t update-all
15
+ ```
16
+
17
+ ## Step 3: Report
18
+
19
+ Show the user what version was installed, how many projects were updated, and confirm success.
20
+
21
+ If the update fails (e.g., permissions issue), suggest running with `sudo` on macOS/Linux or using an Administrator terminal on Windows.
22
+
23
+ $ARGUMENTS
@@ -0,0 +1,23 @@
1
+ # GSD-T: Version Update — Update GSD-T Package
2
+
3
+ You are updating the GSD-T package to the latest version from npm and applying it to the current installation.
4
+
5
+ ## Step 1: Update the npm package
6
+
7
+ ```bash
8
+ npm update -g @tekyzinc/gsd-t
9
+ ```
10
+
11
+ ## Step 2: Apply the update
12
+
13
+ ```bash
14
+ gsd-t update
15
+ ```
16
+
17
+ ## Step 3: Report
18
+
19
+ Show the user what version was installed and confirm success.
20
+
21
+ If the update fails (e.g., permissions issue), suggest running with `sudo` on macOS/Linux or using an Administrator terminal on Windows.
22
+
23
+ $ARGUMENTS
@@ -21,13 +21,13 @@ A methodology for reliable, parallelizable development using Claude Code with op
21
21
  cd my-project
22
22
  claude
23
23
 
24
- # 2. Need help articulating your idea?
25
- /user:gsd-t-prompt
24
+ # 2. Full onboarding (git + init + scan + setup in one)
25
+ /user:gsd-t-init-scan-setup
26
26
 
27
- # 3. Initialize GSD-T
27
+ # Or step by step:
28
28
  /user:gsd-t-init my-project
29
29
 
30
- # 4. Define what you're building
30
+ # 3. Define what you're building
31
31
  /user:gsd-t-milestone "User Authentication System"
32
32
 
33
33
  # 5. Let it rip (auto-advances through all phases)
@@ -73,6 +73,7 @@ GSD-T reads all state files and tells you exactly where you left off.
73
73
  |---------|---------|
74
74
  | `/user:gsd-t-setup` | Generate or restructure project CLAUDE.md |
75
75
  | `/user:gsd-t-init` | Initialize GSD-T structure in project |
76
+ | `/user:gsd-t-init-scan-setup` | Full onboarding: git + init + scan + setup in one |
76
77
  | `/user:gsd-t-project` | Full project → milestone roadmap |
77
78
  | `/user:gsd-t-feature` | Major feature → impact analysis + milestones |
78
79
  | `/user:gsd-t-scan` | Deep codebase analysis → techdebt.md |
@@ -102,6 +103,8 @@ GSD-T reads all state files and tells you exactly where you left off.
102
103
  | `/user:gsd-t-status` | Cross-domain progress view |
103
104
  | `/user:gsd-t-resume` | Restore context, continue |
104
105
  | `/user:gsd-t-quick` | Fast task with GSD-T guarantees |
106
+ | `/user:gsd-t-version-update` | Update GSD-T to latest version |
107
+ | `/user:gsd-t-version-update-all` | Update GSD-T + all registered projects |
105
108
  | `/user:gsd-t-debug` | Systematic debugging with state |
106
109
 
107
110
  ---
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.11.6",
4
- "description": "GSD-T: Contract-Driven Development for Claude Code — 35 slash commands with backlog management, impact analysis, test sync, and milestone archival",
3
+ "version": "2.13.1",
4
+ "description": "GSD-T: Contract-Driven Development for Claude Code — 38 slash commands with backlog management, impact analysis, test sync, and milestone archival",
5
5
  "author": "Tekyz, Inc.",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -36,6 +36,7 @@ PROJECT or FEATURE or SCAN
36
36
  | `/user:gsd-t-promote-debt` | Convert debt items to milestones |
37
37
  | `/user:gsd-t-setup` | Generate or restructure project CLAUDE.md |
38
38
  | `/user:gsd-t-init` | Initialize project structure |
39
+ | `/user:gsd-t-init-scan-setup` | Full onboarding: git + init + scan + setup in one |
39
40
  | `/user:gsd-t-milestone` | Define new milestone |
40
41
  | `/user:gsd-t-partition` | Decompose into domains + contracts |
41
42
  | `/user:gsd-t-discuss` | Multi-perspective design exploration |
@@ -52,6 +53,8 @@ PROJECT or FEATURE or SCAN
52
53
  | `/user:gsd-t-quick` | Fast task, respects contracts |
53
54
  | `/user:gsd-t-populate` | Auto-populate docs from existing codebase |
54
55
  | `/user:gsd-t-resume` | Restore context, continue |
56
+ | `/user:gsd-t-version-update` | Update GSD-T to latest version |
57
+ | `/user:gsd-t-version-update-all` | Update GSD-T + all registered projects |
55
58
  | `/user:gsd-t-backlog-add` | Capture item, auto-categorize, append to backlog |
56
59
  | `/user:gsd-t-backlog-list` | Filtered, ordered view of backlog items |
57
60
  | `/user:gsd-t-backlog-move` | Reorder items by position (priority) |
@@ -156,6 +159,7 @@ If a `[GSD-T UPDATE]` message appears in session startup context, show it to the
156
159
  ```
157
160
  ⬆️ GSD-T update available: {installed} → {latest}
158
161
  Run: npm update -g @tekyzinc/gsd-t && gsd-t update-all
162
+ Changelog: https://github.com/Tekyz-Inc/get-stuff-done-teams/blob/main/CHANGELOG.md
159
163
  ```
160
164
 
161
165
  ## Conversation vs. Work