@tekyzinc/gsd-t 2.11.0 → 2.11.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 +6 -0
- package/commands/gsd-t-resume.md +22 -6
- package/package.json +1 -1
- package/templates/CLAUDE-global.md +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.11.1] - 2026-02-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- `gsd-t-resume` now detects same-session vs cross-session mode — skips full state reload when context is already available, auto-resumes at Level 3
|
|
9
|
+
- Added "Conversation vs. Work" rule to global CLAUDE.md template — plain text questions are answered conversationally, workflow only runs when a `/gsd-t-*` command is invoked
|
|
10
|
+
|
|
5
11
|
## [2.11.0] - 2026-02-12
|
|
6
12
|
|
|
7
13
|
### Added
|
package/commands/gsd-t-resume.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
# GSD-T: Resume — Continue From Last State
|
|
2
2
|
|
|
3
|
-
You are
|
|
3
|
+
You are resuming work after an interruption. This handles both same-session pauses (user pressed Esc to interject) and cross-session recovery (new Claude Code session).
|
|
4
4
|
|
|
5
|
-
## Step
|
|
5
|
+
## Step 0: Detect Resume Mode
|
|
6
|
+
|
|
7
|
+
**Same-session** (conversation context still available — you can see prior messages about the active phase/task):
|
|
8
|
+
- Skip to Step 2 — you already have the context loaded
|
|
9
|
+
- Do NOT re-read all state files
|
|
10
|
+
|
|
11
|
+
**Cross-session** (first command in a new session, no prior conversation context):
|
|
12
|
+
- Run Step 1 to load full state
|
|
13
|
+
|
|
14
|
+
## Step 1: Load Full State (cross-session only)
|
|
6
15
|
|
|
7
16
|
Read in this exact order:
|
|
8
17
|
1. `CLAUDE.md` — project context and conventions
|
|
@@ -16,16 +25,23 @@ Read in this exact order:
|
|
|
16
25
|
|
|
17
26
|
## Step 2: Determine Current Position
|
|
18
27
|
|
|
19
|
-
From progress.md, identify:
|
|
28
|
+
From progress.md (or conversation context if same-session), identify:
|
|
20
29
|
- Current milestone and status
|
|
21
30
|
- Which phase we're in
|
|
22
31
|
- Which tasks are done, in progress, or blocked
|
|
23
32
|
- Any pending decisions or user-input-needed items
|
|
24
33
|
- Last entry in the Decision Log
|
|
25
34
|
|
|
26
|
-
## Step 3: Report
|
|
35
|
+
## Step 3: Report and Continue
|
|
36
|
+
|
|
37
|
+
**Level 3 (Full Auto)**: Log a brief status line and auto-resume from the current task/phase. Do NOT wait for user input.
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
🔄 Resuming: {milestone name} — {phase} — {next task or action}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**Level 1–2**: Present fuller context and wait for confirmation:
|
|
27
44
|
|
|
28
|
-
Present to the user:
|
|
29
45
|
```
|
|
30
46
|
🔄 GSD-T Resuming: {milestone name}
|
|
31
47
|
Phase: {current phase}
|
|
@@ -44,7 +60,7 @@ Ready to continue? Or run /user:gsd-t-status for full details.
|
|
|
44
60
|
## Step 4: Continue
|
|
45
61
|
|
|
46
62
|
If $ARGUMENTS specifies what to do next, proceed with that.
|
|
47
|
-
Otherwise,
|
|
63
|
+
Otherwise, pick up from the logical next action based on current state:
|
|
48
64
|
- Mid-execution → Continue with next unblocked task
|
|
49
65
|
- Between phases → Start next phase
|
|
50
66
|
- Blocked → Explain what's needed to unblock
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.1",
|
|
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",
|
|
@@ -149,6 +149,10 @@ Even in development, the user may have:
|
|
|
149
149
|
|
|
150
150
|
# Autonomous Execution Rules
|
|
151
151
|
|
|
152
|
+
## Conversation vs. Work
|
|
153
|
+
|
|
154
|
+
Only execute GSD-T workflow behavior when a `/gsd-t-*` command is invoked or when actively mid-phase (resumed via `/gsd-t-resume`). **Plain text messages — especially questions — should be answered conversationally.** Do not launch into workflow execution, file reading, or phase advancement from a question or comment. If the user wants work done, they will invoke a command.
|
|
155
|
+
|
|
152
156
|
## Prime Rule
|
|
153
157
|
KEEP GOING. Only stop for:
|
|
154
158
|
1. Unrecoverable errors after 2 fix attempts
|