@tekyzinc/gsd-t 2.13.2 → 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 +5 -0
- package/commands/gsd-t-init-scan-setup.md +10 -5
- package/package.json +1 -1
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.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
|
+
|
|
5
10
|
## [2.13.2] - 2026-02-12
|
|
6
11
|
|
|
7
12
|
### Changed
|
|
@@ -6,12 +6,17 @@ Can be run from anywhere — does not require being in the project folder first.
|
|
|
6
6
|
|
|
7
7
|
## Step 1: Project Directory
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
First, ask: **"Is `{current directory name}` your project root folder?"**
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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.
|
|
15
20
|
|
|
16
21
|
## Step 2: Git Repository Check
|
|
17
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.13.
|
|
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",
|