@tekyzinc/gsd-t 2.31.18 → 2.33.12
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 +626 -581
- package/README.md +15 -3
- package/bin/gsd-t.js +1 -1
- package/commands/gsd-t-brainstorm.md +31 -15
- package/commands/gsd-t-complete-milestone.md +23 -1
- package/commands/gsd-t-debug.md +107 -2
- package/commands/gsd-t-execute.md +15 -1
- package/commands/gsd-t-help.md +16 -0
- package/commands/gsd-t-init.md +3 -0
- package/commands/gsd-t-reflect.md +134 -0
- package/commands/gsd-t-visualize.md +104 -0
- package/commands/gsd-t-wave.md +21 -1
- package/docs/GSD-T-README.md +2 -0
- package/docs/architecture.md +16 -3
- package/docs/requirements.md +106 -84
- package/package.json +40 -40
- package/scripts/gsd-t-dashboard-mockup.html +1143 -0
- package/scripts/gsd-t-dashboard-server.js +140 -0
- package/scripts/gsd-t-dashboard.html +199 -0
- package/scripts/gsd-t-event-writer.js +124 -0
- package/scripts/gsd-t-heartbeat.js +54 -1
- package/templates/CLAUDE-global.md +2 -0
package/docs/GSD-T-README.md
CHANGED
|
@@ -113,6 +113,8 @@ GSD-T reads all state files and tells you exactly where you left off.
|
|
|
113
113
|
| `/user:gsd-t-status` | Cross-domain progress view | Manual |
|
|
114
114
|
| `/user:gsd-t-resume` | Restore context, continue | Manual |
|
|
115
115
|
| `/user:gsd-t-quick` | Fast task with GSD-T guarantees | Manual |
|
|
116
|
+
| `/user:gsd-t-reflect` | Generate retrospective from event stream, propose memory updates | Manual |
|
|
117
|
+
| `/user:gsd-t-visualize` | Launch browser dashboard — SSE server + React Flow agent visualization | Manual |
|
|
116
118
|
| `/user:gsd-t-debug` | Systematic debugging with state | Manual |
|
|
117
119
|
| `/user:gsd-t-health` | Validate .gsd-t/ structure, optionally repair | Manual |
|
|
118
120
|
| `/user:gsd-t-pause` | Save exact position for reliable resume | Manual |
|
package/docs/architecture.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Architecture — GSD-T Framework (@tekyzinc/gsd-t)
|
|
2
2
|
|
|
3
|
-
## Last Updated: 2026-
|
|
3
|
+
## Last Updated: 2026-03-04 (M14 Complete — Execution Intelligence Layer)
|
|
4
4
|
|
|
5
5
|
## System Overview
|
|
6
6
|
|
|
@@ -23,7 +23,7 @@ The framework has no runtime — it is consumed entirely by Claude Code's slash
|
|
|
23
23
|
### Slash Commands (commands/*.md)
|
|
24
24
|
- **Purpose**: Define the GSD-T methodology as executable workflows for Claude Code
|
|
25
25
|
- **Location**: `commands/`
|
|
26
|
-
- **Count**:
|
|
26
|
+
- **Count**: 47 (43 GSD-T workflow + 4 utility: gsd, branch, checkin, Claude-md) — includes gsd-t-health and gsd-t-pause (M13), gsd-t-reflect (M14)
|
|
27
27
|
- **Format**: Pure markdown with step-numbered instructions, team mode blocks, document ripple sections, and $ARGUMENTS terminator
|
|
28
28
|
|
|
29
29
|
### Templates (templates/*.md)
|
|
@@ -33,12 +33,25 @@ The framework has no runtime — it is consumed entirely by Claude Code's slash
|
|
|
33
33
|
- **Tokens**: `{Project Name}` and `{Date}` replaced during init via `applyTokens()`
|
|
34
34
|
|
|
35
35
|
### Hook Scripts (scripts/)
|
|
36
|
-
- **gsd-t-heartbeat.js** (181 lines, 6 functions, 5 exports): Real-time event logging via Claude Code hooks. Captures 9 event types as structured JSONL. Input capped at 1MB. Session ID validated. Path traversal protection. Secret scrubbing via `scrubSecrets()`/`scrubUrl()` (M5). Notification message + title scrubbing (M8/M9). EVENT_HANDLERS map pattern (M6). Auto-cleanup after 7 days (SessionStart only, M6).
|
|
36
|
+
- **gsd-t-heartbeat.js** (181 lines, 6 functions, 5 exports): Real-time event logging via Claude Code hooks. Captures 9 event types as structured JSONL. Input capped at 1MB. Session ID validated. Path traversal protection. Secret scrubbing via `scrubSecrets()`/`scrubUrl()` (M5). Notification message + title scrubbing (M8/M9). EVENT_HANDLERS map pattern (M6). Auto-cleanup after 7 days (SessionStart only, M6). M14: added `buildEventStreamEntry()` (maps SubagentStart/Stop/PostToolUse → events/ schema) and `appendToEventsFile()` (daily-rotated JSONL in `.gsd-t/events/`, symlink-safe).
|
|
37
|
+
- **gsd-t-event-writer.js** (124 lines, 3 exports, NEW in M14): Zero-dep CLI tool + module for structured JSONL event appends to `.gsd-t/events/`. Exports: `validateEvent()`, `resolveEventsFile()`, `appendEvent()`. CLI: `--type`, `--command`, `--phase`, `--reasoning`, `--outcome`, `--agent-id`. Validates all 8 event_type values and 5 outcome values from event-schema-contract. Installed to `~/.claude/scripts/` by CLI installer. Exit codes: 0 success, 1 write error, 2 validation error.
|
|
37
38
|
- **npm-update-check.js** (43 lines): Background npm registry version checker. Spawned detached by CLI when update cache is stale. Path validation within `~/.claude/` (M5). Symlink check before write (M5). 1MB response limit (M5).
|
|
38
39
|
- **gsd-t-fetch-version.js** (26 lines, NEW in M6): Synchronous npm registry fetch. Called by `fetchVersionSync()` via `execFileSync`. HTTPS-only, 5s timeout, 1MB limit. Silent failure on errors (caller validates).
|
|
39
40
|
- **gsd-t-tools.js** (163 lines, NEW in M13): State utility CLI returning compact JSON. Subcommands: state get/set (progress.md), validate (required file presence), parse progress --section, list domains/contracts, git pre-commit-check, template scope/tasks. Zero external dependencies. NOTE: No module.exports — untestable as module (TD-066).
|
|
40
41
|
- **gsd-t-statusline.js** (94 lines, NEW in M13): Context usage bar + project state for Claude Code `statusLine` setting. Reads CLAUDE_CONTEXT_TOKENS_USED/MAX env vars for usage percentage. Color-coded bar (green <50%, yellow <70%, orange <85%, red ≥85%). NOTE: No module.exports — untestable as module (TD-066).
|
|
41
42
|
|
|
43
|
+
### Execution Intelligence Layer (M14 — complete)
|
|
44
|
+
- **`.gsd-t/events/YYYY-MM-DD.jsonl`**: Append-only event stream. One event per line. Schema: `ts`, `event_type`, `command`, `phase`, `agent_id`, `parent_agent_id`, `trace_id`, `reasoning`, `outcome`. Written by hooks (SubagentStart/Stop, PostToolUse via heartbeat.js) and command files at phase transitions.
|
|
45
|
+
- **Outcome-tagged Decision Log**: New Decision Log entries use `[success]`/`[failure]`/`[learning]`/`[deferred]` prefixes for machine-readable filtering (execute, debug, wave, complete-milestone).
|
|
46
|
+
- **Pre-task experience retrieval (execute, debug)**: Grep Decision Log for `[failure]`/`[learning]` entries matching current domain before spawning subagent — Reflexion pattern without fine-tuning. Writes `experience_retrieval` event.
|
|
47
|
+
- **Distillation step (complete-milestone Step 2.5)**: Scans `.gsd-t/events/*.jsonl` for patterns seen ≥3 times, proposes CLAUDE.md / constraints.md rule additions, user confirms before write.
|
|
48
|
+
- **`commands/gsd-t-reflect.md`**: On-demand retrospective command (47th command). Reads current milestone events, generates `.gsd-t/retrospectives/YYYY-MM-DD-{milestone}.md` with sections: What Worked, What Failed, Patterns Found, Proposed Memory Updates.
|
|
49
|
+
|
|
50
|
+
### Real-Time Agent Dashboard (M15 — complete v2.33.10)
|
|
51
|
+
- **`scripts/gsd-t-dashboard-server.js`** (141 lines, zero external deps): Node.js SSE server watching `.gsd-t/events/*.jsonl`. Exports: `startServer(port, eventsDir, htmlPath)`, `tailEventsFile(filePath, callback)`, `readExistingEvents(eventsDir, maxEvents)`, `parseEventLine(line)`, `findEventsDir(projectDir)`. HTTP endpoints: `GET /` (serve dashboard HTML), `GET /events` (SSE stream, max 500 events on connect + tail for new), `GET /ping` (health check), `GET /stop` (graceful shutdown). CLI: `--port`, `--events`, `--detach` (writes PID to `.gsd-t/dashboard.pid`), `--stop` (kills running server). Symlink protection via `lstatSync` pattern. 23 unit tests in `test/dashboard-server.test.js`.
|
|
52
|
+
- **`scripts/gsd-t-dashboard.html`** (194 lines): React 17 + React Flow v11.11.4 + Dagre via CDN (no build step, no npm deps). Dark theme (`#0d1117`). Renders agent hierarchy as directed graph from `parent_agent_id` relationships. Live event feed (max 200, outcome color-coded). Auto-reconnects on SSE disconnect. Port configurable via `?port=` URL param.
|
|
53
|
+
- **`commands/gsd-t-visualize.md`** (104 lines, 48th command): Starts server via `--detach`, polls `/ping` up to 5s, opens browser cross-platform (win32/darwin/linux). Accepts `stop` argument to shut down server. Step 0 self-spawn with OBSERVABILITY LOGGING.
|
|
54
|
+
|
|
42
55
|
### Examples (examples/)
|
|
43
56
|
- **Purpose**: Reference project structure and settings
|
|
44
57
|
- **Location**: `examples/`
|
package/docs/requirements.md
CHANGED
|
@@ -1,84 +1,106 @@
|
|
|
1
|
-
# Requirements — GSD-T Framework (@tekyzinc/gsd-t)
|
|
2
|
-
|
|
3
|
-
## Last Updated: 2026-
|
|
4
|
-
|
|
5
|
-
## Functional Requirements
|
|
6
|
-
|
|
7
|
-
| ID | Requirement | Priority | Status | Tests |
|
|
8
|
-
|----|-------------|----------|--------|-------|
|
|
9
|
-
| REQ-001 | CLI installer with install, update, status, doctor, init, uninstall, update-all, register, changelog subcommands | P1 | complete | manual CLI testing |
|
|
10
|
-
| REQ-002 | 41 GSD-T workflow slash commands for Claude Code (incl. QA agent, health, pause) | P1 | complete | validated by use |
|
|
11
|
-
| REQ-003 | 4 utility commands (gsd smart router, branch, checkin, Claude-md) | P1 | complete | validated by use |
|
|
12
|
-
| REQ-004 | Backlog management system (7 commands: add, list, move, edit, remove, promote, settings) | P1 | complete | validated by use |
|
|
13
|
-
| REQ-005 | Contract-driven development with domain partitioning | P1 | complete | validated by use |
|
|
14
|
-
| REQ-006 | Wave orchestration (full cycle: partition → discuss → plan → impact → execute → test-sync → integrate → verify → complete) | P1 | complete | validated by use |
|
|
15
|
-
| REQ-007 | Heartbeat system via Claude Code hooks (9 events, JSONL output, 7-day cleanup) | P2 | complete | hook scripts installed |
|
|
16
|
-
| REQ-008 | Automatic update check against npm registry (1h cache, background refresh) | P2 | complete | CLI + slash command |
|
|
17
|
-
| REQ-009 | Document templates for living docs (9 templates with token replacement) | P1 | complete | used by gsd-t-init |
|
|
18
|
-
| REQ-010 | Smart router — natural language intent → command routing | P2 | complete | validated by use |
|
|
19
|
-
| REQ-011 | Triage and merge — auto-review, score, merge safe GitHub branches | P2 | complete | validated by use |
|
|
20
|
-
| REQ-012 | QA Agent — test-driven contract enforcement spawned in 10 phases | P1 | complete | validated by use |
|
|
21
|
-
| REQ-013 | Wave orchestrator — agent-per-phase execution with fresh context windows | P1 | complete | validated by use |
|
|
22
|
-
| REQ-014 | Token Efficiency — QA refactored (removed from partition/plan, Task subagent for execute/integrate, inline for test-sync/verify) | P2 | complete (M10) | validated by use |
|
|
23
|
-
| REQ-015 | Execution Quality — Deviation Rules (4-rule, 3-attempt), per-task commits, wave spot-check | P2 | complete (M11) | validated by use |
|
|
24
|
-
| REQ-016 | Planning Intelligence — CONTEXT.md from discuss, plan fidelity enforcement, plan validation subagent, REQ traceability | P2 | complete (M12) | validated by use |
|
|
25
|
-
| REQ-017 | Tooling & UX — gsd-t-tools.js state CLI, gsd-t-statusline.js context bar, gsd-t-health command, gsd-t-pause command | P2 | complete (M13) | validated by use |
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
|
30
|
-
|
|
31
|
-
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
|
36
|
-
|
|
37
|
-
| TECH-
|
|
38
|
-
| TECH-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
|
43
|
-
|
|
44
|
-
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
|
53
|
-
|
|
54
|
-
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
1
|
+
# Requirements — GSD-T Framework (@tekyzinc/gsd-t)
|
|
2
|
+
|
|
3
|
+
## Last Updated: 2026-03-04 (M15 Complete — Real-Time Agent Dashboard v2.33.10)
|
|
4
|
+
|
|
5
|
+
## Functional Requirements
|
|
6
|
+
|
|
7
|
+
| ID | Requirement | Priority | Status | Tests |
|
|
8
|
+
|----|-------------|----------|--------|-------|
|
|
9
|
+
| REQ-001 | CLI installer with install, update, status, doctor, init, uninstall, update-all, register, changelog subcommands | P1 | complete | manual CLI testing |
|
|
10
|
+
| REQ-002 | 41 GSD-T workflow slash commands for Claude Code (incl. QA agent, health, pause) | P1 | complete | validated by use |
|
|
11
|
+
| REQ-003 | 4 utility commands (gsd smart router, branch, checkin, Claude-md) | P1 | complete | validated by use |
|
|
12
|
+
| REQ-004 | Backlog management system (7 commands: add, list, move, edit, remove, promote, settings) | P1 | complete | validated by use |
|
|
13
|
+
| REQ-005 | Contract-driven development with domain partitioning | P1 | complete | validated by use |
|
|
14
|
+
| REQ-006 | Wave orchestration (full cycle: partition → discuss → plan → impact → execute → test-sync → integrate → verify → complete) | P1 | complete | validated by use |
|
|
15
|
+
| REQ-007 | Heartbeat system via Claude Code hooks (9 events, JSONL output, 7-day cleanup) | P2 | complete | hook scripts installed |
|
|
16
|
+
| REQ-008 | Automatic update check against npm registry (1h cache, background refresh) | P2 | complete | CLI + slash command |
|
|
17
|
+
| REQ-009 | Document templates for living docs (9 templates with token replacement) | P1 | complete | used by gsd-t-init |
|
|
18
|
+
| REQ-010 | Smart router — natural language intent → command routing | P2 | complete | validated by use |
|
|
19
|
+
| REQ-011 | Triage and merge — auto-review, score, merge safe GitHub branches | P2 | complete | validated by use |
|
|
20
|
+
| REQ-012 | QA Agent — test-driven contract enforcement spawned in 10 phases | P1 | complete | validated by use |
|
|
21
|
+
| REQ-013 | Wave orchestrator — agent-per-phase execution with fresh context windows | P1 | complete | validated by use |
|
|
22
|
+
| REQ-014 | Token Efficiency — QA refactored (removed from partition/plan, Task subagent for execute/integrate, inline for test-sync/verify) | P2 | complete (M10) | validated by use |
|
|
23
|
+
| REQ-015 | Execution Quality — Deviation Rules (4-rule, 3-attempt), per-task commits, wave spot-check | P2 | complete (M11) | validated by use |
|
|
24
|
+
| REQ-016 | Planning Intelligence — CONTEXT.md from discuss, plan fidelity enforcement, plan validation subagent, REQ traceability | P2 | complete (M12) | validated by use |
|
|
25
|
+
| REQ-017 | Tooling & UX — gsd-t-tools.js state CLI, gsd-t-statusline.js context bar, gsd-t-health command, gsd-t-pause command | P2 | complete (M13) | validated by use |
|
|
26
|
+
| REQ-018 | Execution Event Stream — append-only JSONL event log (.gsd-t/events/) capturing every command invocation, subagent spawn, phase transition, and decision with schema: ts, event_type, command, phase, agent_id, parent_agent_id, trace_id, reasoning, outcome | P1 | complete (M14) | test/event-stream.test.js |
|
|
27
|
+
| REQ-019 | Outcome-Tagged Decision Log — Decision Log entries prefixed with [success], [failure], [learning], [deferred] outcome tags for all new entries written by execute, debug, complete-milestone | P1 | complete (M14) | validated by use |
|
|
28
|
+
| REQ-020 | Pre-Task Experience Retrieval — execute and debug retrieve [failure]/[learning] Decision Log entries matching the current domain/task before spawning subagents (Reflexion pattern); warning injected into subagent prompt if relevant past failures found | P1 | complete (M14) | validated by use |
|
|
29
|
+
| REQ-021 | Milestone Distillation — complete-milestone runs a distillation step: scans the event stream for patterns found ≥3 times, proposes concrete constraints.md / CLAUDE.md rule additions, user confirms before write | P2 | complete (M14) | validated by use |
|
|
30
|
+
| REQ-022 | gsd-t-reflect command — reads .gsd-t/events/*.jsonl for the current milestone, generates structured retrospective (what worked, what failed, patterns found, proposed memory updates), outputs to .gsd-t/retrospectives/YYYY-MM-DD-{milestone}.md | P2 | complete (M14) | validated by use |
|
|
31
|
+
| REQ-023 | Real-Time Agent Dashboard — gsd-t-visualize command starts a zero-dependency SSE server watching .gsd-t/events/ and opens gsd-t-dashboard.html in the browser; dashboard renders agent hierarchy (React Flow + Dagre via CDN) with live event overlay; all 6 interaction patterns visualized (wave/execute, parallel domains, scan, brainstorm, debug, quick/error) | P2 | complete (M15) | test/dashboard-server.test.js (23 tests) |
|
|
32
|
+
|
|
33
|
+
## Technical Requirements
|
|
34
|
+
|
|
35
|
+
| ID | Requirement | Priority | Status |
|
|
36
|
+
|----|-------------|----------|--------|
|
|
37
|
+
| TECH-001 | Zero external npm dependencies | P1 | complete |
|
|
38
|
+
| TECH-002 | Node.js >= 16 compatibility | P1 | complete |
|
|
39
|
+
| TECH-003 | Cross-platform support (macOS, Linux, Windows) | P1 | complete |
|
|
40
|
+
| TECH-004 | Semantic versioning with git tags | P1 | complete |
|
|
41
|
+
| TECH-005 | Pre-Commit Gate enforced on every commit | P1 | complete (manual, not automated) |
|
|
42
|
+
| TECH-006 | Symlink protection on all file write operations | P1 | complete |
|
|
43
|
+
| TECH-007 | Input validation on project names, versions, paths, session IDs | P1 | complete |
|
|
44
|
+
| TECH-008 | prepublishOnly gate — `npm test` runs before `npm publish` | P1 | complete (M8) |
|
|
45
|
+
|
|
46
|
+
## Non-Functional Requirements
|
|
47
|
+
|
|
48
|
+
| ID | Requirement | Metric | Status |
|
|
49
|
+
|----|-------------|--------|--------|
|
|
50
|
+
| NFR-001 | CLI install completes quickly | < 5s | complete |
|
|
51
|
+
| NFR-002 | No runtime crashes on missing files | graceful fallback | complete |
|
|
52
|
+
| NFR-003 | Command files are pure markdown (no frontmatter) | 100% compliance | complete |
|
|
53
|
+
| NFR-004 | Heartbeat auto-cleanup prevents unbounded growth | 7-day TTL | complete |
|
|
54
|
+
| NFR-005 | Update check is non-blocking after first run | background process | complete |
|
|
55
|
+
|
|
56
|
+
## Test Coverage
|
|
57
|
+
|
|
58
|
+
| Requirement | Test File | Test Name | Status |
|
|
59
|
+
|-------------|-----------|-----------|--------|
|
|
60
|
+
| REQ-001 | test/helpers.test.js, test/filesystem.test.js | CLI subcommand + helper tests | passing (64 tests) |
|
|
61
|
+
| REQ-006 | test/cli-quality.test.js | Wave-related function tests (buildEvent, etc.) | passing (22 tests) |
|
|
62
|
+
| REQ-007 | test/security.test.js | Heartbeat security (scrubSecrets, scrubUrl) | passing (30 tests) |
|
|
63
|
+
| REQ-002–005, 008–013 | manual | Workflow validation by use | passing |
|
|
64
|
+
|
|
65
|
+
**Total automated tests**: 125 across 4 test files (M4: 64, M5: 30, M6: 22, M9: 9). Runner: `node --test` (zero dependencies).
|
|
66
|
+
|
|
67
|
+
## Requirements Traceability (updated by plan phase — M14)
|
|
68
|
+
|
|
69
|
+
| REQ-ID | Requirement Summary | Domain | Task(s) | Status |
|
|
70
|
+
|---------|-------------------------------------------------------------|---------------|-----------------|---------|
|
|
71
|
+
| REQ-018 | Execution Event Stream — JSONL events/ with 9-field schema | event-stream | Task 1, Task 2, Task 3, Task 4 | complete |
|
|
72
|
+
| REQ-019 | Outcome-Tagged Decision Log — [success]/[failure] prefixes | learning-loop | Task 1, Task 2 | complete |
|
|
73
|
+
| REQ-020 | Pre-Task Experience Retrieval — Reflexion pattern | learning-loop | Task 1, Task 2 | complete |
|
|
74
|
+
| REQ-021 | Milestone Distillation — patterns → CLAUDE.md proposals | reflect | Task 1 | complete |
|
|
75
|
+
| REQ-022 | gsd-t-reflect command — retrospective from events/ | reflect | Task 2, Task 3 | complete |
|
|
76
|
+
| REQ-023 | Real-Time Agent Dashboard — SSE server + React Flow dashboard + gsd-t-visualize command | server, dashboard, command | server T1, dashboard T1, command T1, T2, T3 | complete (M15) |
|
|
77
|
+
|
|
78
|
+
**Orphaned requirements**: REQ-001 through REQ-017 (all M1–M13 deliverables, complete — not mapped to M14 tasks by design).
|
|
79
|
+
**Unanchored tasks**: command Task 2 (bin/gsd-t.js installer update) and Task 3 (4 reference files) are infrastructure supporting REQ-023 — implicitly mapped.
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Gaps Identified
|
|
84
|
+
|
|
85
|
+
### Open (Scan #6 — 2026-02-18, Post-M10-M13)
|
|
86
|
+
- 14 new items: TD-066 through TD-079 (1 high: untestable new scripts; 5 medium: contract drift + doc staleness + stateSet injection; 7 low: cleanup)
|
|
87
|
+
- See `.gsd-t/techdebt.md` for full list
|
|
88
|
+
|
|
89
|
+
### Resolved (Milestone 9 + Milestones 10-13, 2026-02-18)
|
|
90
|
+
- ~~Scan #5 items (TD-056-TD-065)~~ — RESOLVED (M9, Cleanup Sprint)
|
|
91
|
+
- ~~Token efficiency gaps~~ — RESOLVED (M10)
|
|
92
|
+
- ~~Execution quality gaps (no deviation rules, no per-task commits)~~ — RESOLVED (M11)
|
|
93
|
+
- ~~Planning intelligence gaps (no CONTEXT.md, no plan validation)~~ — RESOLVED (M12)
|
|
94
|
+
- ~~Tooling gaps (no state CLI, no statusline, no health command, no pause)~~ — RESOLVED (M13)
|
|
95
|
+
|
|
96
|
+
### Resolved (Milestones 3-8, 2026-02-18/19)
|
|
97
|
+
- ~~All scan #4 items (TD-044-TD-055)~~ — RESOLVED (M8)
|
|
98
|
+
- ~~No automated test suite (TD-003)~~ — RESOLVED (116 tests, M4)
|
|
99
|
+
- ~~Command count 42→43 not updated (TD-022)~~ — RESOLVED (M3)
|
|
100
|
+
- ~~QA agent contract missing test-sync (TD-042)~~ — RESOLVED (M3)
|
|
101
|
+
- ~~Wave bypassPermissions not documented (TD-035)~~ — RESOLVED (M5)
|
|
102
|
+
- ~~All 15 scan #3 functions >30 lines (TD-021)~~ — RESOLVED (M6, all 81 functions ≤30 lines)
|
|
103
|
+
- ~~34 fractional step numbers (TD-031)~~ — RESOLVED (M7, all renumbered)
|
|
104
|
+
- ~~Backlog file format drift (TD-014)~~ — RESOLVED
|
|
105
|
+
- ~~Progress.md format drift (TD-015)~~ — RESOLVED
|
|
106
|
+
- ~~7 backlog commands missing from GSD-T-README (TD-016)~~ — RESOLVED
|
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "GSD-T: Contract-Driven Development for Claude Code —
|
|
5
|
-
"author": "Tekyz, Inc.",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/Tekyz-Inc/get-stuff-done-teams.git"
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://github.com/Tekyz-Inc/get-stuff-done-teams#readme",
|
|
12
|
-
"keywords": [
|
|
13
|
-
"claude-code",
|
|
14
|
-
"gsd",
|
|
15
|
-
"ai-development",
|
|
16
|
-
"agent-teams",
|
|
17
|
-
"contract-driven-development",
|
|
18
|
-
"slash-commands"
|
|
19
|
-
],
|
|
20
|
-
"main": "bin/gsd-t.js",
|
|
21
|
-
"bin": {
|
|
22
|
-
"gsd-t": "bin/gsd-t.js"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "node --test",
|
|
26
|
-
"prepublishOnly": "npm test"
|
|
27
|
-
},
|
|
28
|
-
"files": [
|
|
29
|
-
"bin/",
|
|
30
|
-
"commands/",
|
|
31
|
-
"scripts/",
|
|
32
|
-
"templates/",
|
|
33
|
-
"examples/",
|
|
34
|
-
"docs/",
|
|
35
|
-
"CHANGELOG.md"
|
|
36
|
-
],
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=16.0.0"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tekyzinc/gsd-t",
|
|
3
|
+
"version": "2.33.12",
|
|
4
|
+
"description": "GSD-T: Contract-Driven Development for Claude Code — 48 slash commands with real-time agent dashboard, execution intelligence, backlog management, impact analysis, test sync, milestone archival, and PRD generation",
|
|
5
|
+
"author": "Tekyz, Inc.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Tekyz-Inc/get-stuff-done-teams.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/Tekyz-Inc/get-stuff-done-teams#readme",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"claude-code",
|
|
14
|
+
"gsd",
|
|
15
|
+
"ai-development",
|
|
16
|
+
"agent-teams",
|
|
17
|
+
"contract-driven-development",
|
|
18
|
+
"slash-commands"
|
|
19
|
+
],
|
|
20
|
+
"main": "bin/gsd-t.js",
|
|
21
|
+
"bin": {
|
|
22
|
+
"gsd-t": "bin/gsd-t.js"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"test": "node --test",
|
|
26
|
+
"prepublishOnly": "npm test"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"bin/",
|
|
30
|
+
"commands/",
|
|
31
|
+
"scripts/",
|
|
32
|
+
"templates/",
|
|
33
|
+
"examples/",
|
|
34
|
+
"docs/",
|
|
35
|
+
"CHANGELOG.md"
|
|
36
|
+
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=16.0.0"
|
|
39
|
+
}
|
|
40
|
+
}
|