@tekyzinc/gsd-t 2.10.1 → 2.10.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,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.10.3] - 2026-02-11
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Default autonomy level changed from Level 2 (Standard) to Level 3 (Full Auto) across all templates and commands
|
|
9
|
+
- `gsd-t-init` now sets Level 3 in generated CLAUDE.md
|
|
10
|
+
- `gsd-t-setup` defaults to Level 3 when asking autonomy level
|
|
11
|
+
|
|
12
|
+
## [2.10.2] - 2026-02-11
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Version update check in `gsd-t-status` slash command — works inside Claude Code and ClaudeWebCLI sessions, not just the CLI binary
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Normalized `repository.url` in package.json (`git+https://` prefix)
|
|
19
|
+
|
|
5
20
|
## [2.10.1] - 2026-02-10
|
|
6
21
|
|
|
7
22
|
### Added
|
package/commands/gsd-t-init.md
CHANGED
|
@@ -96,6 +96,9 @@ Create a starter template:
|
|
|
96
96
|
- Workflows: docs/workflows.md
|
|
97
97
|
- Infrastructure: docs/infrastructure.md
|
|
98
98
|
|
|
99
|
+
## Autonomy Level
|
|
100
|
+
**Level 3 — Full Auto** (only pause for blockers or completion)
|
|
101
|
+
|
|
99
102
|
## Branch Guard
|
|
100
103
|
**Expected branch**: {current branch from `git branch --show-current`}
|
|
101
104
|
|
package/commands/gsd-t-setup.md
CHANGED
|
@@ -79,7 +79,7 @@ Only ask what could NOT be auto-detected. Skip questions where the answer is alr
|
|
|
79
79
|
**Potential questions** (ask only if not auto-detected):
|
|
80
80
|
|
|
81
81
|
1. **Branch Guard**: "Which branch should commits target?" (skip if only `main` or `master` exists)
|
|
82
|
-
2. **Autonomy Level**: "What autonomy level? Level 1 (Supervised), Level 2 (Standard
|
|
82
|
+
2. **Autonomy Level**: "What autonomy level? Level 1 (Supervised), Level 2 (Standard), Level 3 (Full Auto — default)" (skip if existing CLAUDE.md already declares it)
|
|
83
83
|
3. **Workflow Preferences**: "Any overrides to the global defaults? (Research Policy, Phase Flow)" (skip if user has no overrides)
|
|
84
84
|
4. **Deployed URLs**: "Production, staging, and local URLs?" (skip if found in .env or existing docs)
|
|
85
85
|
5. **Project-specific rules**: "Any 'never do' rules specific to this project?" (skip if existing CLAUDE.md already has them)
|
|
@@ -123,7 +123,7 @@ Build the file using this structure. Include only sections that have real conten
|
|
|
123
123
|
- Infrastructure: docs/infrastructure.md
|
|
124
124
|
|
|
125
125
|
## Autonomy Level
|
|
126
|
-
**Level {N} — {Name}** (
|
|
126
|
+
**Level {N} — {Name}** ({description}) <!-- default: Level 3 — Full Auto -->
|
|
127
127
|
|
|
128
128
|
## Workflow Preferences
|
|
129
129
|
<!-- Override global defaults. Delete what you don't need to override. -->
|
package/commands/gsd-t-status.md
CHANGED
|
@@ -40,4 +40,20 @@ If `.gsd-t/backlog.md` exists, read and parse it. Show total count and top 3 ite
|
|
|
40
40
|
If there are blockers or issues, highlight them.
|
|
41
41
|
If the user provides $ARGUMENTS, focus the status on that specific domain or aspect.
|
|
42
42
|
|
|
43
|
+
## Version Check
|
|
44
|
+
|
|
45
|
+
After displaying the project status, check for GSD-T updates:
|
|
46
|
+
|
|
47
|
+
1. Read `~/.claude/.gsd-t-version` to get the installed version
|
|
48
|
+
2. Read `~/.claude/.gsd-t-update-check` (JSON with `latest` and `timestamp` fields) to get the latest known version
|
|
49
|
+
3. If the file doesn't exist or is unreadable, run `gsd-t status` (CLI) in the background to trigger a cache refresh, and skip the notice
|
|
50
|
+
4. If `latest` is newer than the installed version, append to the report:
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
⬆️ GSD-T update available: {installed} → {latest}
|
|
54
|
+
Run: npm update -g @tekyzinc/gsd-t && gsd-t update-all
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
5. If versions match, skip — don't show anything
|
|
58
|
+
|
|
43
59
|
$ARGUMENTS
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.3",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 35 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/Tekyz-Inc/get-stuff-done-teams.git"
|
|
9
|
+
"url": "git+https://github.com/Tekyz-Inc/get-stuff-done-teams.git"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://github.com/Tekyz-Inc/get-stuff-done-teams#readme",
|
|
12
12
|
"keywords": [
|
|
@@ -213,10 +213,10 @@ Projects can specify an autonomy level in their project CLAUDE.md:
|
|
|
213
213
|
| Level | Behavior |
|
|
214
214
|
|-------|----------|
|
|
215
215
|
| **Level 1: Supervised** | Pause at each phase for confirmation |
|
|
216
|
-
| **Level 2: Standard** | Pause only at milestones
|
|
217
|
-
| **Level 3: Full Auto** | Only pause for blockers or project completion |
|
|
216
|
+
| **Level 2: Standard** | Pause only at milestones |
|
|
217
|
+
| **Level 3: Full Auto** | Only pause for blockers or project completion (default) |
|
|
218
218
|
|
|
219
|
-
If not specified, use Level
|
|
219
|
+
If not specified, use Level 3.
|
|
220
220
|
|
|
221
221
|
## Workflow Preferences (Defaults — override in project CLAUDE.md)
|
|
222
222
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{Brief project description — what problem does this solve and for whom?}
|
|
5
5
|
|
|
6
6
|
## Autonomy Level
|
|
7
|
-
**Level
|
|
7
|
+
**Level 3 — Full Auto** (only pause for blockers or completion)
|
|
8
8
|
<!-- Options: Level 1 (Supervised), Level 2 (Standard), Level 3 (Full Auto) -->
|
|
9
9
|
|
|
10
10
|
## Tech Stack
|