@tekyzinc/gsd-t 2.13.1 → 2.13.2

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.13.2] - 2026-02-12
6
+
7
+ ### Changed
8
+ - `gsd-t-init-scan-setup` now asks for project folder name, creates it if needed, and `cd`s into it — can be run from anywhere
9
+
5
10
  ## [2.13.1] - 2026-02-12
6
11
 
7
12
  ### Changed
@@ -1,10 +1,21 @@
1
1
  # GSD-T: Init-Scan-Setup — Full Project Onboarding
2
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.
3
+ One command to fully onboard a project into GSD-T. Combines project directory setup, git setup, `gsd-t-init`, `gsd-t-scan`, and `gsd-t-setup` into a single orchestrated flow.
4
4
 
5
- ## Step 1: Git Repository Check
5
+ Can be run from anywhere — does not require being in the project folder first.
6
6
 
7
- 1. Check if the current directory is inside a git repo: `git rev-parse --is-inside-work-tree`
7
+ ## Step 1: Project Directory
8
+
9
+ If `$ARGUMENTS` includes a folder/project name, use it. Otherwise ask: "What's the project folder name?"
10
+
11
+ 1. Check if the folder exists in the current directory
12
+ - **Exists** → `cd` into it
13
+ - **Does not exist** → Create it, then `cd` into it
14
+ 2. All subsequent steps run from inside this project directory
15
+
16
+ ## Step 2: Git Repository Check
17
+
18
+ 1. Check if the directory is inside a git repo: `git rev-parse --is-inside-work-tree`
8
19
  - **Not a git repo** → Run `git init`
9
20
  2. Check for an existing remote: `git remote -v`
10
21
  - **No remote found** → Ask the user for the GitHub repository URL, then run:
@@ -13,7 +24,7 @@ One command to fully onboard a project into GSD-T. Combines git setup, `gsd-t-in
13
24
  ```
14
25
  - **Remote exists** → Log it and continue
15
26
 
16
- ## Step 2: Initialize Project (gsd-t-init)
27
+ ## Step 3: Initialize Project (gsd-t-init)
17
28
 
18
29
  Execute the full init workflow (same as `/user:gsd-t-init`):
19
30
 
@@ -27,7 +38,7 @@ Execute the full init workflow (same as `/user:gsd-t-init`):
27
38
 
28
39
  **If `.gsd-t/` already exists**: Skip init — it's already done. Log and continue to scan.
29
40
 
30
- ## Step 3: Deep Codebase Scan (gsd-t-scan)
41
+ ## Step 4: Deep Codebase Scan (gsd-t-scan)
31
42
 
32
43
  Execute the full scan workflow (same as `/user:gsd-t-scan`):
33
44
 
@@ -40,7 +51,7 @@ Use team mode if agent teams are enabled. Otherwise run solo.
40
51
 
41
52
  **If `.gsd-t/techdebt.md` already exists**: Append new findings, don't overwrite.
42
53
 
43
- ## Step 4: Generate Project CLAUDE.md (gsd-t-setup)
54
+ ## Step 5: Generate Project CLAUDE.md (gsd-t-setup)
44
55
 
45
56
  Execute the full setup workflow (same as `/user:gsd-t-setup`):
46
57
 
@@ -52,7 +63,7 @@ Execute the full setup workflow (same as `/user:gsd-t-setup`):
52
63
  At Level 3: skip questions that were auto-detected — only ask what's truly unknown.
53
64
  At Level 1-2: ask all targeted questions per the setup workflow.
54
65
 
55
- ## Step 5: Report
66
+ ## Step 6: Report
56
67
 
57
68
  Present a unified summary:
58
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.13.1",
3
+ "version": "2.13.2",
4
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",