gsd-lite 0.6.3 → 0.6.4
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/src/schema.js +5 -5
- package/src/server.js +1 -1
- package/src/tools/orchestrator/helpers.js +27 -9
- package/src/tools/state/crud.js +25 -5
- package/src/tools/state/index.js +1 -1
- package/workflows/execution-flow.md +41 -6
|
@@ -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.
|
|
16
|
+
"version": "0.6.4",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"orchestration",
|
|
19
19
|
"mcp",
|
package/package.json
CHANGED
package/src/schema.js
CHANGED
|
@@ -22,9 +22,9 @@ export const WORKFLOW_MODES = [
|
|
|
22
22
|
export const WORKFLOW_TRANSITIONS = {
|
|
23
23
|
planning: ['executing_task', 'paused_by_user'],
|
|
24
24
|
executing_task: ['planning', 'reviewing_task', 'reviewing_phase', 'awaiting_user', 'awaiting_clear', 'paused_by_user', 'reconcile_workspace', 'replan_required', 'research_refresh_needed', 'failed'],
|
|
25
|
-
reviewing_task: ['executing_task', 'reviewing_phase', 'awaiting_user', 'awaiting_clear', 'paused_by_user', 'failed'],
|
|
26
|
-
reviewing_phase: ['executing_task', 'awaiting_user', 'awaiting_clear', 'paused_by_user', 'completed', 'failed'],
|
|
27
|
-
awaiting_user: ['executing_task', 'reviewing_task', 'reviewing_phase', 'paused_by_user', 'awaiting_clear'],
|
|
25
|
+
reviewing_task: ['executing_task', 'reviewing_phase', 'awaiting_user', 'awaiting_clear', 'paused_by_user', 'reconcile_workspace', 'replan_required', 'failed'],
|
|
26
|
+
reviewing_phase: ['executing_task', 'awaiting_user', 'awaiting_clear', 'paused_by_user', 'reconcile_workspace', 'replan_required', 'completed', 'failed'],
|
|
27
|
+
awaiting_user: ['executing_task', 'reviewing_task', 'reviewing_phase', 'paused_by_user', 'awaiting_clear', 'reconcile_workspace', 'replan_required'],
|
|
28
28
|
awaiting_clear: ['executing_task', 'paused_by_user'],
|
|
29
29
|
paused_by_user: ['executing_task', 'awaiting_user', 'awaiting_clear', 'reconcile_workspace', 'replan_required', 'research_refresh_needed', 'reviewing_task', 'reviewing_phase'],
|
|
30
30
|
reconcile_workspace: ['executing_task', 'paused_by_user'],
|
|
@@ -173,7 +173,7 @@ export function validateStateUpdate(state, updates) {
|
|
|
173
173
|
switch (key) {
|
|
174
174
|
case 'workflow_mode': {
|
|
175
175
|
if (!WORKFLOW_MODES.includes(updates.workflow_mode)) {
|
|
176
|
-
errors.push(`Invalid workflow_mode: ${updates.workflow_mode}`);
|
|
176
|
+
errors.push(`Invalid workflow_mode: ${updates.workflow_mode} (valid: ${WORKFLOW_MODES.join(', ')})`);
|
|
177
177
|
break;
|
|
178
178
|
}
|
|
179
179
|
// Transition whitelist — reject unlisted transitions
|
|
@@ -310,7 +310,7 @@ export function validateState(state) {
|
|
|
310
310
|
errors.push('schema_version must be a finite number');
|
|
311
311
|
}
|
|
312
312
|
if (!WORKFLOW_MODES.includes(state.workflow_mode)) {
|
|
313
|
-
errors.push(`Invalid workflow_mode: ${state.workflow_mode}`);
|
|
313
|
+
errors.push(`Invalid workflow_mode: ${state.workflow_mode} (valid: ${WORKFLOW_MODES.join(', ')})`);
|
|
314
314
|
}
|
|
315
315
|
if (!Number.isFinite(state.plan_version)) {
|
|
316
316
|
errors.push('plan_version must be a finite number');
|
package/src/server.js
CHANGED
|
@@ -119,7 +119,7 @@ const TOOLS = [
|
|
|
119
119
|
properties: {
|
|
120
120
|
updates: {
|
|
121
121
|
type: 'object',
|
|
122
|
-
description: 'Key-value pairs of canonical fields: workflow_mode, current_phase, current_task, current_review, git_head, plan_version, schema_version, total_phases, project, decisions, context, evidence, research',
|
|
122
|
+
description: 'Key-value pairs of canonical fields: workflow_mode (planning|executing_task|reviewing_task|reviewing_phase|awaiting_clear|awaiting_user|paused_by_user|reconcile_workspace|replan_required|research_refresh_needed|completed|failed), current_phase, current_task, current_review, git_head, plan_version, schema_version, total_phases, project, decisions, context, evidence, research',
|
|
123
123
|
},
|
|
124
124
|
},
|
|
125
125
|
required: ['updates'],
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
update,
|
|
6
6
|
buildExecutorContext,
|
|
7
7
|
matchDecisionForBlocker,
|
|
8
|
+
computePlanHashes,
|
|
8
9
|
} from '../state/index.js';
|
|
9
10
|
import { getGitHead, getGsdDir } from '../../utils.js';
|
|
10
11
|
|
|
@@ -173,15 +174,32 @@ async function evaluatePreflight(state, basePath) {
|
|
|
173
174
|
});
|
|
174
175
|
}
|
|
175
176
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
177
|
+
// Plan drift detection — only run when no prior blocking hint (git_head mismatch)
|
|
178
|
+
// exists, because establishing a baseline in a suspect workspace state would
|
|
179
|
+
// anchor hashes to potentially wrong files.
|
|
180
|
+
if (hints.length === 0) {
|
|
181
|
+
const storedHashes = state.context?.plan_hashes;
|
|
182
|
+
if (!storedHashes || Object.keys(storedHashes).length === 0) {
|
|
183
|
+
// No baseline hashes — compute and persist them now (first resume after init).
|
|
184
|
+
// This avoids false drift when state-init creates placeholders that the agent
|
|
185
|
+
// subsequently overwrites with real plan content.
|
|
186
|
+
const freshHashes = await computePlanHashes(basePath);
|
|
187
|
+
if (Object.keys(freshHashes).length > 0) {
|
|
188
|
+
const hashPersistErr = await persist(basePath, { context: { plan_hashes: freshHashes } });
|
|
189
|
+
if (hashPersistErr) return { override: hashPersistErr };
|
|
190
|
+
}
|
|
191
|
+
} else {
|
|
192
|
+
const changed_files = await detectPlanDrift(basePath, storedHashes);
|
|
193
|
+
if (changed_files.length > 0) {
|
|
194
|
+
hints.push({
|
|
195
|
+
workflow_mode: 'replan_required',
|
|
196
|
+
action: 'await_manual_intervention',
|
|
197
|
+
updates: { workflow_mode: 'replan_required' },
|
|
198
|
+
changed_files,
|
|
199
|
+
message: 'Plan artifacts changed after the last recorded session',
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
}
|
|
185
203
|
}
|
|
186
204
|
|
|
187
205
|
const skipDirectionDrift = state.workflow_mode === 'awaiting_user'
|
package/src/tools/state/crud.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// State CRUD operations
|
|
2
2
|
|
|
3
3
|
import { dirname, join, relative } from 'node:path';
|
|
4
|
-
import { readFile, stat } from 'node:fs/promises';
|
|
4
|
+
import { readFile, readdir, stat } from 'node:fs/promises';
|
|
5
5
|
import { createHash } from 'node:crypto';
|
|
6
|
-
import { ensureDir, readJson, writeJson, writeAtomic, getStatePath, getGitHead, isPlainObject, clearGsdDirCache } from '../../utils.js';
|
|
6
|
+
import { ensureDir, readJson, writeJson, writeAtomic, getStatePath, getGsdDir, getGitHead, isPlainObject, clearGsdDirCache } from '../../utils.js';
|
|
7
7
|
import {
|
|
8
8
|
CANONICAL_FIELDS,
|
|
9
9
|
TASK_LEVELS,
|
|
@@ -28,7 +28,16 @@ import { propagateInvalidation } from './logic.js';
|
|
|
28
28
|
* Returns an object mapping relative-to-gsdDir paths to hex hashes.
|
|
29
29
|
* Missing/unreadable files are silently skipped.
|
|
30
30
|
*/
|
|
31
|
-
async function computePlanHashes(
|
|
31
|
+
export async function computePlanHashes(basePath) {
|
|
32
|
+
const gsdDir = await getGsdDir(basePath);
|
|
33
|
+
if (!gsdDir) return {};
|
|
34
|
+
const filePaths = [join(gsdDir, 'plan.md')];
|
|
35
|
+
try {
|
|
36
|
+
const phaseFiles = await readdir(join(gsdDir, 'phases'));
|
|
37
|
+
for (const f of phaseFiles) {
|
|
38
|
+
if (f.endsWith('.md')) filePaths.push(join(gsdDir, 'phases', f));
|
|
39
|
+
}
|
|
40
|
+
} catch { /* no phases dir */ }
|
|
32
41
|
const hashes = {};
|
|
33
42
|
for (const filePath of filePaths) {
|
|
34
43
|
try {
|
|
@@ -115,8 +124,9 @@ export async function init({ project, phases, research, force = false, basePath
|
|
|
115
124
|
// Date.toISOString() truncates to milliseconds. Without ceil, the stored timestamp
|
|
116
125
|
// can be slightly less than the file's actual mtime, causing false plan-drift detection.
|
|
117
126
|
state.context.last_session = new Date(Math.ceil(Math.max(...mtimes))).toISOString();
|
|
118
|
-
//
|
|
119
|
-
|
|
127
|
+
// plan_hashes left null — computed lazily on first orchestrator-resume
|
|
128
|
+
// after the agent writes actual plan.md / phases/*.md content (avoids
|
|
129
|
+
// false drift detection from hashing placeholder files).
|
|
120
130
|
await writeJson(statePath, state);
|
|
121
131
|
|
|
122
132
|
return {
|
|
@@ -325,6 +335,16 @@ export async function update({ updates, basePath = process.cwd(), expectedVersio
|
|
|
325
335
|
}
|
|
326
336
|
}
|
|
327
337
|
|
|
338
|
+
// Auto-refresh plan hashes when leaving replan_required — establishes a new
|
|
339
|
+
// baseline so the next resume doesn't re-trigger drift for already-acknowledged changes.
|
|
340
|
+
if (state.workflow_mode === 'replan_required'
|
|
341
|
+
&& updates.workflow_mode && updates.workflow_mode !== 'replan_required') {
|
|
342
|
+
const freshHashes = await computePlanHashes(basePath);
|
|
343
|
+
if (Object.keys(freshHashes).length > 0) {
|
|
344
|
+
merged.context = { ...(merged.context || {}), plan_hashes: freshHashes };
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
328
348
|
// Auto-prune evidence when entries exceed limit
|
|
329
349
|
if (merged.evidence && Object.keys(merged.evidence).length > MAX_EVIDENCE_ENTRIES) {
|
|
330
350
|
const gsdDir = dirname(statePath);
|
package/src/tools/state/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// State module — re-exports all public API
|
|
2
2
|
|
|
3
3
|
export { ERROR_CODES, setLockPath } from './constants.js';
|
|
4
|
-
export { init, read, update, phaseComplete, addEvidence, pruneEvidence, patchPlan } from './crud.js';
|
|
4
|
+
export { init, read, update, phaseComplete, addEvidence, pruneEvidence, patchPlan, computePlanHashes } from './crud.js';
|
|
5
5
|
export { selectRunnableTask, propagateInvalidation, buildExecutorContext, reclassifyReviewLevel, matchDecisionForBlocker, applyResearchRefresh, storeResearch } from './logic.js';
|
|
@@ -129,12 +129,47 @@
|
|
|
129
129
|
|
|
130
130
|
**自动执行循环:** 进入执行后,持续循环直到遇到终止条件:
|
|
131
131
|
1. 调用 `orchestrator-resume` 获取 action
|
|
132
|
-
2. 按 action
|
|
133
|
-
3.
|
|
134
|
-
4.
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
132
|
+
2. 按 action 执行对应操作 (见下方 action 处理表)
|
|
133
|
+
3. 操作完成后回到步骤 1
|
|
134
|
+
4. 终止: action ∈ {idle, awaiting_user, completed, failed, await_manual_intervention}
|
|
135
|
+
|
|
136
|
+
不要在循环中间停下来等用户确认 — 让编排器驱动。
|
|
137
|
+
|
|
138
|
+
**Action 处理表:**
|
|
139
|
+
|
|
140
|
+
| action | 操作 |
|
|
141
|
+
|--------|------|
|
|
142
|
+
| `dispatch_executor` | 派发 `executor` 子代理执行 task → 结果调用 `orchestrator-handle-executor-result` |
|
|
143
|
+
| `dispatch_reviewer` | 派发 `reviewer` 子代理审查 → 结果调用 `orchestrator-handle-reviewer-result` |
|
|
144
|
+
| `dispatch_debugger` | 派发 `debugger` 子代理调试 → 结果调用 `orchestrator-handle-debugger-result` |
|
|
145
|
+
| `dispatch_researcher` | 派发 `researcher` 子代理研究 → 结果调用 `orchestrator-handle-researcher-result` |
|
|
146
|
+
| `retry_executor` | 重新派发 executor (带 retry 上下文),同 dispatch_executor |
|
|
147
|
+
| `complete_phase` | 调用 `phase-complete` MCP tool (参数见下方) → 自动推进下一 phase |
|
|
148
|
+
| `rework_required` | 有 task 需要返工 → 继续循环 (resume 会自动选择返工 task) |
|
|
149
|
+
| `review_accepted` | 审查通过 → 继续循环 |
|
|
150
|
+
| `continue_execution` | L0/auto-accept 后 → 继续循环 |
|
|
151
|
+
| `replan_required` | 计划文件被修改。**自动处理:** 确认计划无误后,调用 `state-update({updates: {workflow_mode: "executing_task"}})` → 继续循环 |
|
|
152
|
+
| `reconcile_workspace` | Git HEAD 不一致。检查变更,调用 `state-update({updates: {git_head: "<当前HEAD>", workflow_mode: "executing_task"}})` → 继续循环 |
|
|
153
|
+
| `rollback_to_dirty_phase` | 早期 phase 有失效 task。**自动处理:** 继续循环 (resume 已回滚 current_phase) |
|
|
154
|
+
| `idle` | 当前 phase 无可运行 task。检查 task 状态和依赖关系,必要时向用户报告 |
|
|
155
|
+
| `await_recovery_decision` | 工作流处于 failed 状态。向用户展示失败信息和恢复选项 (retry/skip/replan) |
|
|
156
|
+
|
|
157
|
+
**`phase-complete` 参数:**
|
|
158
|
+
```
|
|
159
|
+
phase-complete({
|
|
160
|
+
phase_id: <当前 phase 编号>,
|
|
161
|
+
run_verify: true, // 自动运行 lint/typecheck/test
|
|
162
|
+
direction_ok: true // 方向校验通过 (如有偏差设为 false)
|
|
163
|
+
})
|
|
164
|
+
```
|
|
165
|
+
如果没有 lint/typecheck/test 工具,可改用 `verification` 参数传入预计算结果:
|
|
166
|
+
```
|
|
167
|
+
phase-complete({
|
|
168
|
+
phase_id: <phase>,
|
|
169
|
+
verification: { lint: {exit_code: 0}, typecheck: {exit_code: 0}, test: {exit_code: 0} },
|
|
170
|
+
direction_ok: true
|
|
171
|
+
})
|
|
172
|
+
```
|
|
138
173
|
</execution_loop>
|
|
139
174
|
|
|
140
175
|
## STEP 12 — 最终报告
|