@tekyzinc/gsd-t 2.13.1 → 2.13.3

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,16 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [2.13.3] - 2026-02-12
6
+
7
+ ### Changed
8
+ - `gsd-t-init-scan-setup` now asks "Is {current folder} your project root?" before prompting for a folder name
9
+
10
+ ## [2.13.2] - 2026-02-12
11
+
12
+ ### Changed
13
+ - `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
14
+
5
15
  ## [2.13.1] - 2026-02-12
6
16
 
7
17
  ### Changed
@@ -1,10 +1,26 @@
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
+ First, ask: **"Is `{current directory name}` your project root folder?"**
10
+
11
+ - **Yes** → Stay here and continue to Step 2
12
+ - **No** → Ask: "What's the project folder name?" (or use `$ARGUMENTS` if provided)
13
+ 1. Check if the folder exists in the current directory
14
+ - **Exists** → `cd` into it
15
+ - **Does not exist** → Create it, then `cd` into it
16
+
17
+ If `$ARGUMENTS` includes a folder/project name, skip the question and use it directly.
18
+
19
+ All subsequent steps run from inside the project directory.
20
+
21
+ ## Step 2: Git Repository Check
22
+
23
+ 1. Check if the directory is inside a git repo: `git rev-parse --is-inside-work-tree`
8
24
  - **Not a git repo** → Run `git init`
9
25
  2. Check for an existing remote: `git remote -v`
10
26
  - **No remote found** → Ask the user for the GitHub repository URL, then run:
@@ -13,7 +29,7 @@ One command to fully onboard a project into GSD-T. Combines git setup, `gsd-t-in
13
29
  ```
14
30
  - **Remote exists** → Log it and continue
15
31
 
16
- ## Step 2: Initialize Project (gsd-t-init)
32
+ ## Step 3: Initialize Project (gsd-t-init)
17
33
 
18
34
  Execute the full init workflow (same as `/user:gsd-t-init`):
19
35
 
@@ -27,7 +43,7 @@ Execute the full init workflow (same as `/user:gsd-t-init`):
27
43
 
28
44
  **If `.gsd-t/` already exists**: Skip init — it's already done. Log and continue to scan.
29
45
 
30
- ## Step 3: Deep Codebase Scan (gsd-t-scan)
46
+ ## Step 4: Deep Codebase Scan (gsd-t-scan)
31
47
 
32
48
  Execute the full scan workflow (same as `/user:gsd-t-scan`):
33
49
 
@@ -40,7 +56,7 @@ Use team mode if agent teams are enabled. Otherwise run solo.
40
56
 
41
57
  **If `.gsd-t/techdebt.md` already exists**: Append new findings, don't overwrite.
42
58
 
43
- ## Step 4: Generate Project CLAUDE.md (gsd-t-setup)
59
+ ## Step 5: Generate Project CLAUDE.md (gsd-t-setup)
44
60
 
45
61
  Execute the full setup workflow (same as `/user:gsd-t-setup`):
46
62
 
@@ -52,7 +68,7 @@ Execute the full setup workflow (same as `/user:gsd-t-setup`):
52
68
  At Level 3: skip questions that were auto-detected — only ask what's truly unknown.
53
69
  At Level 1-2: ask all targeted questions per the setup workflow.
54
70
 
55
- ## Step 5: Report
71
+ ## Step 6: Report
56
72
 
57
73
  Present a unified summary:
58
74
 
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.3",
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",