gsd-lite 0.6.4 → 0.6.5

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.
Files changed (57) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.mcp.json +0 -0
  4. package/README.md +0 -0
  5. package/agents/debugger.md +0 -0
  6. package/agents/executor.md +0 -0
  7. package/agents/researcher.md +0 -0
  8. package/agents/reviewer.md +0 -0
  9. package/commands/doctor.md +0 -0
  10. package/commands/prd.md +0 -0
  11. package/commands/resume.md +0 -0
  12. package/commands/start.md +0 -0
  13. package/commands/status.md +0 -0
  14. package/commands/stop.md +0 -0
  15. package/hooks/context-monitor.js +0 -0
  16. package/hooks/gsd-auto-update.cjs +0 -0
  17. package/hooks/gsd-context-monitor.cjs +0 -0
  18. package/hooks/gsd-session-init.cjs +0 -0
  19. package/hooks/gsd-session-stop.cjs +0 -0
  20. package/hooks/gsd-statusline.cjs +0 -0
  21. package/hooks/hooks.json +2 -39
  22. package/hooks/lib/gsd-finder.cjs +0 -0
  23. package/hooks/lib/semver-sort.cjs +0 -0
  24. package/hooks/lib/statusline-composite.cjs +0 -0
  25. package/install.js +7 -27
  26. package/launcher.js +0 -0
  27. package/package.json +1 -1
  28. package/references/anti-rationalization-full.md +0 -0
  29. package/references/evidence-spec.md +0 -0
  30. package/references/execution-loop.md +0 -0
  31. package/references/git-worktrees.md +0 -0
  32. package/references/questioning.md +0 -0
  33. package/references/review-classification.md +0 -0
  34. package/references/state-diagram.md +0 -0
  35. package/references/testing-patterns.md +0 -0
  36. package/src/schema.js +0 -0
  37. package/src/server.js +37 -5
  38. package/src/tools/orchestrator/debugger.js +0 -0
  39. package/src/tools/orchestrator/executor.js +0 -0
  40. package/src/tools/orchestrator/helpers.js +4 -2
  41. package/src/tools/orchestrator/index.js +0 -0
  42. package/src/tools/orchestrator/researcher.js +0 -0
  43. package/src/tools/orchestrator/resume.js +0 -0
  44. package/src/tools/orchestrator/reviewer.js +0 -0
  45. package/src/tools/state/constants.js +0 -0
  46. package/src/tools/state/crud.js +13 -6
  47. package/src/tools/state/index.js +0 -0
  48. package/src/tools/state/logic.js +0 -0
  49. package/src/tools/verify.js +0 -0
  50. package/src/utils.js +0 -0
  51. package/uninstall.js +0 -0
  52. package/workflows/debugging.md +0 -0
  53. package/workflows/deviation-rules.md +0 -0
  54. package/workflows/execution-flow.md +0 -0
  55. package/workflows/research.md +0 -0
  56. package/workflows/review-cycle.md +0 -0
  57. package/workflows/tdd-cycle.md +0 -0
@@ -13,7 +13,7 @@
13
13
  "name": "gsd",
14
14
  "source": "./",
15
15
  "description": "AI orchestration tool — GSD management shell + Superpowers quality core. 5 commands, 4 agents, 5 workflows, MCP server, context monitoring.",
16
- "version": "0.6.4",
16
+ "version": "0.6.5",
17
17
  "keywords": [
18
18
  "orchestration",
19
19
  "mcp",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "AI orchestration tool for Claude Code — GSD management shell + Superpowers quality core",
5
5
  "author": {
6
6
  "name": "sdsrss",
package/.mcp.json CHANGED
File without changes
package/README.md CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/commands/prd.md CHANGED
File without changes
File without changes
package/commands/start.md CHANGED
File without changes
File without changes
package/commands/stop.md CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/hooks/hooks.json CHANGED
@@ -1,41 +1,4 @@
1
1
  {
2
- "description": "GSD-Lite hooks: statusline + context monitor + session lifecycle",
3
- "hooks": {
4
- "SessionStart": [
5
- {
6
- "matcher": "startup",
7
- "hooks": [
8
- {
9
- "type": "command",
10
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/gsd-session-init.cjs\"",
11
- "timeout": 5
12
- }
13
- ]
14
- }
15
- ],
16
- "PostToolUse": [
17
- {
18
- "matcher": "*",
19
- "hooks": [
20
- {
21
- "type": "command",
22
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/gsd-context-monitor.cjs\"",
23
- "timeout": 3
24
- }
25
- ]
26
- }
27
- ],
28
- "Stop": [
29
- {
30
- "matcher": "*",
31
- "hooks": [
32
- {
33
- "type": "command",
34
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/gsd-session-stop.cjs\"",
35
- "timeout": 5
36
- }
37
- ]
38
- }
39
- ]
40
- }
2
+ "description": "GSD-Lite hooks authoritative registration is in settings.json via install.js. This file cleared to prevent double execution if the plugin system also loads it.",
3
+ "hooks": {}
41
4
  }
File without changes
File without changes
File without changes
package/install.js CHANGED
@@ -21,7 +21,7 @@ const HOOK_FILES = ['gsd-session-init.cjs', 'gsd-auto-update.cjs', 'gsd-context-
21
21
 
22
22
  // Hook registration config: hookType → { file identifier, matcher, timeout? }
23
23
  const HOOK_REGISTRY = [
24
- { hookType: 'SessionStart', identifier: 'gsd-session-init', matcher: 'startup', timeout: 5 },
24
+ { hookType: 'SessionStart', identifier: 'gsd-session-init', matcher: 'startup|clear|compact', timeout: 5 },
25
25
  { hookType: 'PostToolUse', identifier: 'gsd-context-monitor', matcher: '*' },
26
26
  { hookType: 'Stop', identifier: 'gsd-session-stop', matcher: '*', timeout: 3 },
27
27
  ];
@@ -239,33 +239,13 @@ export function main() {
239
239
  const statuslinePath = join(CLAUDE_DIR, 'hooks', 'gsd-statusline.cjs');
240
240
  let statusLineRegistered = registerStatusLine(settings, statuslinePath);
241
241
 
242
- // Hooks are managed by hooks.json via the plugin system for plugin installs.
243
- // Only register in settings.json for manual installs to avoid double execution.
242
+ // Always register hooks in settings.json regardless of install method.
243
+ // The plugin system's hooks.json auto-loading is unreliable settings.json
244
+ // is the only reliable hook registration path (consistent with claude-mem-lite).
244
245
  let hooksRegistered = false;
245
- if (!isPluginInstall) {
246
- if (!settings.hooks) settings.hooks = {};
247
- for (const config of HOOK_REGISTRY) {
248
- if (registerHookEntry(settings.hooks, config)) hooksRegistered = true;
249
- }
250
- } else {
251
- // Clean up stale manual hook entries left from previous install.js runs
252
- if (settings.hooks) {
253
- let cleaned = false;
254
- for (const [hookType, identifier] of [
255
- ['PostToolUse', 'gsd-context-monitor'],
256
- ['SessionStart', 'gsd-session-init'],
257
- ['Stop', 'gsd-session-stop'],
258
- ]) {
259
- if (Array.isArray(settings.hooks[hookType])) {
260
- const before = settings.hooks[hookType].length;
261
- settings.hooks[hookType] = settings.hooks[hookType].filter(e =>
262
- !e.hooks?.some(h => h.command?.includes(identifier)));
263
- if (settings.hooks[hookType].length < before) cleaned = true;
264
- if (settings.hooks[hookType].length === 0) delete settings.hooks[hookType];
265
- }
266
- }
267
- if (cleaned) log(' ✓ Removed stale manual hook entries (plugin hooks.json handles registration)');
268
- }
246
+ if (!settings.hooks) settings.hooks = {};
247
+ for (const config of HOOK_REGISTRY) {
248
+ if (registerHookEntry(settings.hooks, config)) hooksRegistered = true;
269
249
  }
270
250
 
271
251
  const tmpSettings = settingsPath + `.${process.pid}-${Date.now()}.tmp`;
package/launcher.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-lite",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "AI orchestration tool for Claude Code — GSD management shell + Superpowers quality core",
5
5
  "type": "module",
6
6
  "bin": {
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/src/schema.js CHANGED
File without changes
package/src/server.js CHANGED
@@ -285,12 +285,33 @@ async function dispatchToolCall(name, args) {
285
285
  case 'state-read':
286
286
  result = await read(args || {});
287
287
  break;
288
- case 'state-update':
289
- result = await update(args);
288
+ case 'state-update': {
289
+ const updateResult = await update(args);
290
+ // Strip full state from response to save tokens — keep only _version for optimistic concurrency
291
+ if (updateResult.success && updateResult.state) {
292
+ result = { success: true, _version: updateResult.state._version };
293
+ } else {
294
+ result = updateResult;
295
+ }
290
296
  break;
291
- case 'phase-complete':
292
- result = await phaseComplete(args);
297
+ }
298
+ case 'phase-complete': {
299
+ const pcResult = await phaseComplete(args);
300
+ // Enrich sparse success response with progress info
301
+ if (pcResult.success && !pcResult.action) {
302
+ const st = await read({ fields: ['current_phase', 'total_phases', 'workflow_mode'] });
303
+ result = {
304
+ ...pcResult,
305
+ phase_completed: args.phase_id,
306
+ current_phase: st.current_phase,
307
+ total_phases: st.total_phases,
308
+ workflow_mode: st.workflow_mode,
309
+ };
310
+ } else {
311
+ result = pcResult;
312
+ }
293
313
  break;
314
+ }
294
315
  case 'state-patch':
295
316
  result = await patchPlan(args);
296
317
  break;
@@ -316,9 +337,20 @@ async function dispatchToolCall(name, args) {
316
337
  return result;
317
338
  }
318
339
 
340
+ // Strip result_contract from orchestrator responses — it's static reference data
341
+ // already available in MCP tool descriptions. Saves ~200 tokens per call.
342
+ function stripResultContract(result) {
343
+ if (result && typeof result === 'object' && 'result_contract' in result) {
344
+ const { result_contract, ...rest } = result;
345
+ return rest;
346
+ }
347
+ return result;
348
+ }
349
+
319
350
  export async function handleToolCall(name, args) {
320
351
  try {
321
- return await dispatchToolCall(name, args);
352
+ const result = await dispatchToolCall(name, args);
353
+ return stripResultContract(result);
322
354
  } catch (err) {
323
355
  const message = err instanceof Error ? err.message : String(err);
324
356
  return { error: true, message: `Tool execution failed: ${message}` };
File without changes
File without changes
@@ -23,7 +23,7 @@ const RESULT_CONTRACTS = {
23
23
  summary: 'string — non-empty description of work done',
24
24
  checkpoint_commit: 'string — required when outcome="checkpointed"',
25
25
  files_changed: 'string[] — list of modified file paths',
26
- decisions: '{ id, title, rationale }[] — architectural decisions made',
26
+ decisions: '{ id, summary|title, rationale }[] — architectural decisions (summary is canonical; title accepted as alias)',
27
27
  blockers: '{ description, type }[] — what blocked progress (when outcome="blocked")',
28
28
  contract_changed: 'boolean — true if external API/behavior contract changed',
29
29
  confidence: '"high" | "medium" | "low" (optional) — executor self-assessed confidence; affects review level',
@@ -336,12 +336,14 @@ function buildDecisionEntries(decisions, phaseId, taskId, existingCount = 0) {
336
336
  task: taskId,
337
337
  };
338
338
  }
339
- if (decision && typeof decision === 'object' && typeof decision.summary === 'string') {
339
+ if (decision && typeof decision === 'object' && (typeof decision.summary === 'string' || typeof decision.title === 'string')) {
340
+ const summary = decision.summary || decision.title;
340
341
  return {
341
342
  id: decision.id || `decision:${phaseId}:${taskId}:${existingCount + index + 1}`,
342
343
  phase: decision.phase ?? phaseId,
343
344
  task: decision.task ?? taskId,
344
345
  ...decision,
346
+ summary,
345
347
  };
346
348
  }
347
349
  return null;
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -23,6 +23,13 @@ import {
23
23
  } from './constants.js';
24
24
  import { propagateInvalidation } from './logic.js';
25
25
 
26
+ function friendlyReadError(rawError) {
27
+ if (rawError?.includes('ENOENT')) {
28
+ return 'No GSD project found (state.json missing). Run /gsd:start or /gsd:prd to begin.';
29
+ }
30
+ return rawError;
31
+ }
32
+
26
33
  /**
27
34
  * Compute SHA-256 content hashes for an array of file paths.
28
35
  * Returns an object mapping relative-to-gsdDir paths to hex hashes.
@@ -154,7 +161,7 @@ export async function read({ fields, basePath = process.cwd(), validate = false
154
161
 
155
162
  const result = await readJson(statePath);
156
163
  if (!result.ok) {
157
- return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: result.error };
164
+ return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: friendlyReadError(result.error) };
158
165
  }
159
166
  const state = migrateState(result.data);
160
167
 
@@ -207,7 +214,7 @@ export async function update({ updates, basePath = process.cwd(), expectedVersio
207
214
  return withStateLock(async () => {
208
215
  const result = await readJson(statePath);
209
216
  if (!result.ok) {
210
- return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: result.error };
217
+ return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: friendlyReadError(result.error) };
211
218
  }
212
219
  const state = migrateState(result.data);
213
220
 
@@ -425,7 +432,7 @@ export async function phaseComplete({
425
432
  return withStateLock(async () => {
426
433
  const result = await readJson(statePath);
427
434
  if (!result.ok) {
428
- return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: result.error };
435
+ return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: friendlyReadError(result.error) };
429
436
  }
430
437
  const state = migrateState(result.data);
431
438
 
@@ -600,7 +607,7 @@ export async function addEvidence({ id, data, basePath = process.cwd() }) {
600
607
  return withStateLock(async () => {
601
608
  const result = await readJson(statePath);
602
609
  if (!result.ok) {
603
- return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: result.error };
610
+ return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: friendlyReadError(result.error) };
604
611
  }
605
612
  const state = migrateState(result.data);
606
613
 
@@ -681,7 +688,7 @@ export async function pruneEvidence({ currentPhase, basePath = process.cwd() })
681
688
  return withStateLock(async () => {
682
689
  const result = await readJson(statePath);
683
690
  if (!result.ok) {
684
- return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: result.error };
691
+ return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: friendlyReadError(result.error) };
685
692
  }
686
693
  const state = migrateState(result.data);
687
694
 
@@ -721,7 +728,7 @@ export async function patchPlan({ operations, basePath = process.cwd() } = {}) {
721
728
  return withStateLock(async () => {
722
729
  const result = await readJson(statePath);
723
730
  if (!result.ok) {
724
- return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: result.error };
731
+ return { error: true, code: ERROR_CODES.NO_PROJECT_DIR, message: friendlyReadError(result.error) };
725
732
  }
726
733
  const state = migrateState(result.data);
727
734
 
File without changes
File without changes
File without changes
package/src/utils.js CHANGED
File without changes
package/uninstall.js CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes