@geraldmaron/construct 1.0.21 → 1.0.23

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 (117) hide show
  1. package/README.md +23 -5
  2. package/bin/construct +191 -13
  3. package/bin/construct-postinstall.mjs +25 -15
  4. package/lib/acp/server.mjs +113 -0
  5. package/lib/agent-instructions/inject.mjs +94 -0
  6. package/lib/auto-docs.mjs +10 -2
  7. package/lib/cli-commands.mjs +43 -15
  8. package/lib/comment-lint.mjs +115 -0
  9. package/lib/completions.mjs +7 -1
  10. package/lib/config/schema.mjs +4 -0
  11. package/lib/decisions/enforced-baseline.json +2 -0
  12. package/lib/docs-verify.mjs +15 -18
  13. package/lib/doctor/cli.mjs +8 -1
  14. package/lib/document-export.mjs +124 -0
  15. package/lib/embed/daemon.mjs +1 -1
  16. package/lib/embed/inbox.mjs +25 -7
  17. package/lib/features.mjs +11 -11
  18. package/lib/git-hooks-path.mjs +61 -0
  19. package/lib/home-namespace.mjs +60 -0
  20. package/lib/hooks/ci-status-check.mjs +62 -40
  21. package/lib/hooks/orchestration-dispatch-guard.mjs +153 -0
  22. package/lib/hooks/pre-push-gate.mjs +15 -6
  23. package/lib/hooks/stop-notify.mjs +32 -17
  24. package/lib/hooks/stop-typecheck.mjs +7 -2
  25. package/lib/host-capabilities.mjs +24 -8
  26. package/lib/host-disposition.mjs +76 -0
  27. package/lib/ingest/provider-extract.mjs +1 -1
  28. package/lib/init-docs.mjs +1 -1
  29. package/lib/init-unified.mjs +320 -219
  30. package/lib/init-update.mjs +4 -84
  31. package/lib/init.mjs +9 -25
  32. package/lib/install/stage-project.mjs +8 -2
  33. package/lib/intent-classifier.mjs +1 -1
  34. package/lib/knowledge/search.mjs +52 -3
  35. package/lib/mcp/server.mjs +57 -14
  36. package/lib/mcp/tools/memory.mjs +2 -2
  37. package/lib/mcp/tools/orchestration-run.mjs +125 -0
  38. package/lib/model-registry.mjs +40 -33
  39. package/lib/observation-store.mjs +6 -2
  40. package/lib/opencode-config.mjs +1 -1
  41. package/lib/orchestration/events.mjs +66 -0
  42. package/lib/orchestration/runtime.mjs +70 -9
  43. package/lib/orchestration/worker.mjs +69 -21
  44. package/lib/orchestration-policy.mjs +27 -3
  45. package/lib/parity.mjs +46 -24
  46. package/lib/policy/unified-gates.mjs +96 -0
  47. package/lib/project-init-shared.mjs +0 -173
  48. package/lib/reconcile/adapter-prune.mjs +105 -0
  49. package/lib/reconcile/agent-instructions-rewrap.mjs +98 -0
  50. package/lib/reconcile/gitignore-coverage.mjs +88 -0
  51. package/lib/reconcile/index.mjs +171 -0
  52. package/lib/reconcile/legacy-doctrine-strip.mjs +139 -0
  53. package/lib/reconcile/legacy-guide-decommit.mjs +67 -0
  54. package/lib/reconcile/legacy-skills-cleanup.mjs +200 -0
  55. package/lib/reconcile/mcp-entry-reconcile.mjs +142 -0
  56. package/lib/reconcile/postgres-namespace.mjs +102 -0
  57. package/lib/runtime/uv-bootstrap.mjs +27 -3
  58. package/lib/schema-infer.mjs +16 -2
  59. package/lib/server/csrf.mjs +14 -2
  60. package/lib/server/index.mjs +95 -0
  61. package/lib/service-manager.mjs +39 -14
  62. package/lib/setup-prompts.mjs +2 -1
  63. package/lib/setup.mjs +165 -141
  64. package/lib/storage/backend.mjs +14 -0
  65. package/lib/storage/unified-storage.mjs +550 -0
  66. package/lib/template-registry.mjs +73 -0
  67. package/lib/term-format.mjs +75 -0
  68. package/lib/uninstall/uninstall.mjs +180 -7
  69. package/package.json +2 -2
  70. package/personas/construct.md +7 -8
  71. package/platforms/claude/settings.template.json +30 -4
  72. package/platforms/opencode/config.template.json +2 -2
  73. package/rules/common/neurodivergent-output.md +66 -0
  74. package/rules/common/tool-invisibility.md +37 -0
  75. package/scripts/sync-specialists.mjs +381 -95
  76. package/skills/operating/orchestration-reference.md +2 -16
  77. package/specialists/policy-inventory.json +14 -0
  78. package/specialists/prompts/cx-accessibility.md +2 -6
  79. package/specialists/prompts/cx-ai-engineer.md +0 -4
  80. package/specialists/prompts/cx-architect.md +3 -5
  81. package/specialists/prompts/cx-business-strategist.md +0 -5
  82. package/specialists/prompts/cx-data-analyst.md +0 -4
  83. package/specialists/prompts/cx-data-engineer.md +0 -4
  84. package/specialists/prompts/cx-debugger.md +2 -6
  85. package/specialists/prompts/cx-designer.md +0 -8
  86. package/specialists/prompts/cx-devil-advocate.md +2 -2
  87. package/specialists/prompts/cx-docs-keeper.md +0 -13
  88. package/specialists/prompts/cx-engineer.md +0 -13
  89. package/specialists/prompts/cx-evaluator.md +2 -2
  90. package/specialists/prompts/cx-explorer.md +4 -5
  91. package/specialists/prompts/cx-legal-compliance.md +4 -5
  92. package/specialists/prompts/cx-operations.md +0 -5
  93. package/specialists/prompts/cx-orchestrator.md +0 -4
  94. package/specialists/prompts/cx-platform-engineer.md +0 -8
  95. package/specialists/prompts/cx-product-manager.md +0 -8
  96. package/specialists/prompts/cx-qa.md +2 -11
  97. package/specialists/prompts/cx-rd-lead.md +0 -5
  98. package/specialists/prompts/cx-release-manager.md +0 -8
  99. package/specialists/prompts/cx-researcher.md +5 -29
  100. package/specialists/prompts/cx-reviewer.md +2 -6
  101. package/specialists/prompts/cx-security.md +2 -11
  102. package/specialists/prompts/cx-sre.md +0 -15
  103. package/specialists/prompts/cx-test-automation.md +0 -4
  104. package/specialists/prompts/cx-trace-reviewer.md +2 -2
  105. package/specialists/prompts/cx-ux-researcher.md +0 -4
  106. package/specialists/registry.json +29 -29
  107. package/templates/distribution/run.mjs +36 -7
  108. package/templates/docs/accessibility-audit.md +56 -0
  109. package/templates/docs/architecture-review.md +59 -0
  110. package/templates/docs/code-review-report.md +46 -0
  111. package/templates/docs/construct_guide.md +14 -14
  112. package/templates/docs/debug-investigation.md +53 -0
  113. package/templates/docs/qa-report.md +48 -0
  114. package/templates/docs/security-audit-report.md +48 -0
  115. package/templates/docs/task-packet.md +49 -0
  116. package/templates/docs/verdict.md +40 -0
  117. package/lib/server/static/index.html +0 -1
package/lib/parity.mjs CHANGED
@@ -18,7 +18,7 @@
18
18
  * opencode ~/.config/opencode/opencode.json (agent table)
19
19
  * codex ~/.codex/agents/*.toml
20
20
  * copilot ~/.github/prompts/*.prompt.md
21
- * vscode VS Code user settings (github.copilot.mcpServers)
21
+ * vscode VS Code user mcp.json (servers)
22
22
  * cursor ~/.cursor/mcp.json
23
23
  */
24
24
 
@@ -122,41 +122,45 @@ function checkFileSurface({ surface, kind, dir, extension, expected }) {
122
122
  };
123
123
  }
124
124
 
125
- function getVSCodeSettingsPaths(homeDir) {
125
+ function getVSCodeUserMcpPaths(homeDir) {
126
126
  const platform = os.platform();
127
127
  if (platform === 'darwin') {
128
128
  return [
129
- path.join(homeDir, 'Library', 'Application Support', 'Code', 'User', 'settings.json'),
130
- path.join(homeDir, 'Library', 'Application Support', 'Code - Insiders', 'User', 'settings.json'),
129
+ path.join(homeDir, 'Library', 'Application Support', 'Code', 'User', 'mcp.json'),
130
+ path.join(homeDir, 'Library', 'Application Support', 'Code - Insiders', 'User', 'mcp.json'),
131
131
  ];
132
132
  }
133
133
  if (platform === 'linux') {
134
134
  return [
135
- path.join(homeDir, '.config', 'Code', 'User', 'settings.json'),
136
- path.join(homeDir, '.config', 'Code - Insiders', 'User', 'settings.json'),
135
+ path.join(homeDir, '.config', 'Code', 'User', 'mcp.json'),
136
+ path.join(homeDir, '.config', 'Code - Insiders', 'User', 'mcp.json'),
137
137
  ];
138
138
  }
139
139
  if (platform === 'win32') {
140
140
  const appData = process.env.APPDATA ?? path.join(homeDir, 'AppData', 'Roaming');
141
141
  return [
142
- path.join(appData, 'Code', 'User', 'settings.json'),
143
- path.join(appData, 'Code - Insiders', 'User', 'settings.json'),
142
+ path.join(appData, 'Code', 'User', 'mcp.json'),
143
+ path.join(appData, 'Code - Insiders', 'User', 'mcp.json'),
144
144
  ];
145
145
  }
146
146
  return [];
147
147
  }
148
148
 
149
149
  function checkClaude(registry, { homeDir = os.homedir() } = {}) {
150
- const expected = entriesForSurface(registry, 'claude');
150
+ // Global ~/.claude/agents ships no agent — the project orchestrator is the
151
+ // front door, and a global agent doubles in editors that read both scopes
152
+ // (VS Code). The expected user-scope set is therefore empty.
151
153
  return checkFileSurface({
152
154
  surface: 'claude',
153
155
  kind: 'agents',
154
156
  dir: path.join(homeDir, '.claude', 'agents'),
155
157
  extension: '.md',
156
- expected,
158
+ expected: [],
157
159
  });
158
160
  }
159
161
 
162
+ const OPENCODE_BUILTIN_AGENTS = new Set(['title', 'summary', 'compaction']);
163
+
160
164
  function checkOpenCode(registry, { homeDir = os.homedir() } = {}) {
161
165
  const file = path.join(homeDir, '.config', 'opencode', 'opencode.json');
162
166
  if (!fs.existsSync(file)) return { surface: 'opencode', kind: 'agents', status: 'absent', file };
@@ -167,12 +171,19 @@ function checkOpenCode(registry, { homeDir = os.homedir() } = {}) {
167
171
  return { surface: 'opencode', kind: 'agents', status: 'unreadable', file, error: err.message };
168
172
  }
169
173
  const expected = entriesForSurface(registry, 'opencode');
170
- const actual = Object.keys(config.agent || config.agents || {});
174
+ const actual = Object.keys(config.agent || config.agents || {})
175
+ .filter((id) => !OPENCODE_BUILTIN_AGENTS.has(id));
171
176
  const { missing, extra } = diffSets(expected, actual);
177
+
178
+ // OpenCode's own system agents (title/summary/compaction) are filtered from
179
+ // `actual` above, so any remaining extra is real drift here. checkParity then
180
+ // reclassifies drift → legacy-install when every extra is a registry cx-*
181
+ // specialist (a soft upgrade state), via reclassifyLegacy.
182
+
172
183
  return {
173
184
  surface: 'opencode',
174
185
  kind: 'agents',
175
- status: missing.length === 0 && extra.length === 0 ? 'ok' : 'drift',
186
+ status: (missing.length === 0 && extra.length === 0) ? 'ok' : 'drift',
176
187
  file,
177
188
  expectedCount: expected.length,
178
189
  actualCount: actual.length,
@@ -209,19 +220,27 @@ function checkCopilot(registry, { homeDir = os.homedir() } = {}) {
209
220
  }
210
221
 
211
222
  function checkVSCode(registry, { homeDir = os.homedir() } = {}) {
212
- const paths = getVSCodeSettingsPaths(homeDir).filter((settingsPath) => fs.existsSync(settingsPath));
213
- if (paths.length === 0) return { surface: 'vscode', kind: 'mcps', status: 'absent', paths };
214
223
  const expected = Object.keys(registry.mcpServers ?? {}).filter((id) => id !== 'memory');
215
224
  const actualSet = new Set();
216
- for (const settingsPath of paths) {
217
- try {
218
- const settings = readJsoncFile(settingsPath);
219
- for (const id of Object.keys(settings['github.copilot.mcpServers'] ?? {})) actualSet.add(id);
220
- } catch (err) {
221
- return { surface: 'vscode', kind: 'mcps', status: 'unreadable', file: settingsPath, error: err.message };
222
- }
225
+ const paths = [];
226
+
227
+ // An empty or hand-malformed user `mcp.json` is a normal VS Code state (a
228
+ // 0-byte file is common) global Construct MCP is opt-in there, so an
229
+ // unparseable file counts as "not configured", not a hard parity failure.
230
+
231
+ for (const mcpPath of getVSCodeUserMcpPaths(homeDir)) {
232
+ if (!fs.existsSync(mcpPath)) continue;
233
+ if (!fs.readFileSync(mcpPath, 'utf8').trim()) continue;
234
+ let config;
235
+ try { config = readJsoncFile(mcpPath); } catch { continue; }
236
+ paths.push(mcpPath);
237
+ for (const id of Object.keys(config.servers ?? {})) actualSet.add(id);
223
238
  }
224
- const actual = [...actualSet].sort();
239
+ if (paths.length === 0) return { surface: 'vscode', kind: 'mcps', status: 'absent', paths };
240
+
241
+ // `memory` is the optional local cm bridge — sync writes it, but it is not
242
+ // required (excluded from `expected`), so it must not count as drift-extra.
243
+ const actual = [...actualSet].filter((id) => id !== 'memory').sort();
225
244
  const { missing, extra } = diffSets(expected, actual);
226
245
  return {
227
246
  surface: 'vscode',
@@ -245,7 +264,7 @@ function checkCursor(registry, { homeDir = os.homedir() } = {}) {
245
264
  return { surface: 'cursor', kind: 'mcps', status: 'unreadable', file, error: err.message };
246
265
  }
247
266
  const expected = Object.keys(registry.mcpServers ?? {}).filter((id) => id !== 'memory');
248
- const actual = Object.keys(config.mcpServers ?? {});
267
+ const actual = Object.keys(config.mcpServers ?? {}).filter((id) => id !== 'memory');
249
268
  const { missing, extra } = diffSets(expected, actual);
250
269
  return {
251
270
  surface: 'cursor',
@@ -267,7 +286,10 @@ function checkCursor(registry, { homeDir = os.homedir() } = {}) {
267
286
  function legacyUserScopeRoster(registry) {
268
287
  const prefix = registry.prefix || 'cx';
269
288
  const specialists = (registry.specialists || []).map((s) => `${prefix}-${s.name}`);
270
- return new Set(specialists);
289
+ // The front-door agent is project-scoped too now, so a leftover `construct.md`
290
+ // in user-scope `.claude/agents` is a soft upgrade state, not real drift.
291
+ const frontDoor = registry.orchestrator?.name ? [registry.orchestrator.name] : [];
292
+ return new Set([...specialists, ...frontDoor]);
271
293
  }
272
294
 
273
295
  /**
@@ -0,0 +1,96 @@
1
+ // lib/policy/unified-gates.mjs
2
+ // Single policy declaration for all enforcement layers
3
+
4
+ export const POLICIES = {
5
+ commentStyle: {
6
+ id: 'comment-style',
7
+ description: 'Comments must follow project standards',
8
+ layers: ['write', 'commit', 'ci'],
9
+ bypass: 'CONSTRUCT_SKIP_COMMENT_STYLE',
10
+ critical: false,
11
+ },
12
+ docCoupling: {
13
+ id: 'doc-coupling',
14
+ description: 'Code changes require documentation updates',
15
+ layers: ['commit', 'push'],
16
+ bypass: 'CONSTRUCT_SKIP_DOCS',
17
+ critical: false,
18
+ },
19
+ secretScan: {
20
+ id: 'secret-scan',
21
+ description: 'No secrets in committed code',
22
+ layers: ['commit', 'push', 'ci'],
23
+ bypass: 'CONSTRUCT_SKIP_SECRET_SCAN',
24
+ critical: true,
25
+ },
26
+ ciStatus: {
27
+ id: 'ci-status',
28
+ description: 'CI must be green before push',
29
+ layers: ['push', 'session-end'],
30
+ bypass: 'CONSTRUCT_SKIP_CI_CHECK',
31
+ critical: true,
32
+ },
33
+ };
34
+
35
+ export class UnifiedGateEngine {
36
+ constructor(options = {}) {
37
+ this.env = options.env || process.env;
38
+ }
39
+
40
+ isBypassed(policyId) {
41
+ const policy = POLICIES[policyId];
42
+ if (!policy) return { bypassed: false };
43
+
44
+ if (policy.bypass && this.env[policy.bypass] === '1') {
45
+ return { bypassed: true, envVar: policy.bypass };
46
+ }
47
+
48
+ if (this.env.CONSTRUCT_SKIP_ALL_GATES === '1') {
49
+ return { bypassed: true, envVar: 'CONSTRUCT_SKIP_ALL_GATES' };
50
+ }
51
+
52
+ return { bypassed: false };
53
+ }
54
+
55
+ async evaluateLayer(layer, context = {}) {
56
+ const results = [];
57
+
58
+ for (const [id, policy] of Object.entries(POLICIES)) {
59
+ if (policy.layers.includes(layer)) {
60
+ const bypass = this.isBypassed(id);
61
+ results.push({
62
+ policy: id,
63
+ passed: bypass.bypassed || true,
64
+ bypassed: bypass.bypassed,
65
+ bypassEnvVar: bypass.envVar,
66
+ critical: policy.critical,
67
+ });
68
+ }
69
+ }
70
+
71
+ const failed = results.filter(r => !r.passed && r.critical);
72
+
73
+ return {
74
+ layer,
75
+ passed: failed.length === 0,
76
+ canProceed: failed.length === 0,
77
+ results,
78
+ summary: `${results.filter(r => r.passed).length}/${results.length} passed`,
79
+ };
80
+ }
81
+ }
82
+
83
+ export async function checkGates(layer, context = {}, options = {}) {
84
+ const engine = new UnifiedGateEngine(options);
85
+ return await engine.evaluateLayer(layer, context);
86
+ }
87
+
88
+ export function listPolicies() {
89
+ return Object.entries(POLICIES).map(([id, policy]) => ({
90
+ id,
91
+ description: policy.description,
92
+ layers: policy.layers,
93
+ bypass: policy.bypass,
94
+ critical: policy.critical,
95
+ }));
96
+ }
@@ -25,179 +25,6 @@ export function writeStampedIfMissing({ targetRoot, created, skipped, filePath,
25
25
  return true;
26
26
  }
27
27
 
28
- export function buildAgentsGuide(projectName) {
29
- return `<!--
30
- AGENTS.md — canonical operating contract for AI agents working in this repository.
31
-
32
- Generated by \`construct init\`. Keep this file concise, current, and pruned:
33
- - update it when workflow rules, tracker hierarchy, or required tools change
34
- - remove stale sections instead of preserving historical guidance here
35
- - avoid duplicating deeper docs when a canonical source already exists elsewhere
36
- -->
37
-
38
- # ${projectName} Agent Guide
39
-
40
- ## Operating hierarchy
41
-
42
- - Use Beads (\`bd\`) as the canonical durable tracker. All non-trivial work must have a Beads issue before implementation begins.
43
- - Use \`plan.md\` as the human-readable implementation plan tied to the active Beads issue set.
44
- - Use cass-memory through the MCP \`memory\` server for cross-session and cross-tool recall, not for task tracking.
45
-
46
- ## Start-of-session rules
47
-
48
- - Read \`AGENTS.md\`, \`plan.md\`, \`.cx/context.md\`, and any canonical docs that exist before planning or coding.
49
- - Treat \`construct up\` as runtime hydration only. If services are unavailable, resume from durable state: \`plan.md\`, \`.cx/context.md\`, the latest \`.cx/handoffs/\` file, Beads, docs, and git.
50
- - Run \`bd ready\` to see unblocked work available to claim.
51
- - Run \`bd show <id>\` for the active issue to see its full context, dependencies, and notes.
52
- - Check \`.cx/handoffs/\` for the most recent handoff — if another session was active, read the latest handoff to understand what was in progress.
53
- - Carry tracker ids into plans, workflow entries, handoffs, and verification notes.
54
- - Use the single-writer rule: if two agent or harness sessions would touch the same file, one session owns the edit and the other reviews, researches, or waits for handoff.
55
-
56
- ## Maintenance rules
57
-
58
- - Update \`plan.md\`, \`.cx/context.md\`, and \`.cx/context.json\` when work changes project reality.
59
- - Do not rely on dashboard chat history, running services, or an agent session as the source of truth. Persist recovery context in repo files, Beads, docs, and git before ending work.
60
- - Prune stale sections from managed docs as soon as they stop matching the repo.
61
- - Prefer updating an existing canonical file over creating a new top-level markdown file.
62
-
63
- ## End-of-session rules
64
-
65
- - Before calling work done, update \`plan.md\` to reflect completed tasks: mark items \`done\`, add new phases or rows for work that was not previously tracked, and remove or correct rows that no longer match reality.
66
- - Session-level todo lists (OpenCode, Claude Code, etc.) are ephemeral. Any task that represents a durable change to the project must be reflected in \`plan.md\` before the session closes — not just in the todo tracker.
67
- - Write a handoff to \`.cx/handoffs/{date}-{slug}.md\` covering: current state, recent decisions, next actions, risks, do-not-touch files, and which Beads issue id(s) were in scope. Use \`bd note <id>\` to attach a summary to the tracker issue.
68
- - Do not close a session with a working-tree change that has no corresponding \`plan.md\` entry or Beads issue.
69
- - Check CI status after every push. Do not call work complete if CI is failing — either fix the failure or explicitly flag it as a known infrastructure issue (e.g. billing, secrets) that is outside the scope of the change.
70
- - Wait for CI to reach a terminal state (success or failure) before declaring done. "Queued" or "in progress" is not done. Run \`gh run list --limit 3\` and confirm the relevant workflow shows \`completed success\`.
71
-
72
- ## Parallel agent coordination
73
-
74
- - **Embedded dolt lock contention**: Parallel \`bd\` commands fail because beads uses an embedded dolt database with a single writer lock. Always serialize beads operations.
75
- - **Use \`construct beads\`**: Instead of direct \`bd\` commands, use \`construct beads <command>\` for lock‑aware serialized execution.
76
- - **Merge‑slot coordination**: For batch operations like \`bd dolt push\` that need exclusive database access, check \`construct‑6uo\` (Merge slot coordination bead) using \`bd merge-slot check/acquire/release\`.
77
- - **Lock visibility**: Run \`construct beads status\` to see who holds the lock, pending queue, and stale lock cleanup.
78
- - **Queueing**: If lock is held, requests are queued in \`.beads/queue.jsonl\` and processed FIFO.
79
- - **Stale lock cleanup**: Run \`construct beads cleanup\` to remove locks from dead processes.
80
-
81
- ### New workflow for beads operations
82
-
83
- 1. **Check status**: \`construct beads status\` (or \`construct beads status --json\`)
84
- 2. **Run commands**: \`construct beads ready\`, \`construct beads show construct-xxx\`, \`construct beads update construct-xxx --claim\`
85
- 3. **Clean up**: \`construct beads cleanup\` if operations are stuck
86
- 4. **View queue**: \`construct beads queue\` to see pending requests
87
- 5. **Batch operations**: Before \`bd dolt push\`, check merge‑slot availability
88
-
89
- ## Documentation System
90
-
91
- ### README.md Maintenance
92
- - Update README.md when architecture changes
93
- - README.md must reflect current project capabilities
94
- - Documentation updates belong in same PR as code changes
95
- - README.md should link to AGENTS.md, plan.md, and docs/
96
-
97
- ### Documentation Quality Gates
98
- - Run \`construct docs:verify\` before calling work complete
99
- - CI will fail if critical docs are missing or stale
100
- - Documentation drift must be addressed within one sprint
101
-
102
- ### Documentation Lifecycle
103
- - Use \`construct init --docs-preset=product\` to establish documentation lanes
104
- - ADRs for architectural decisions, RFCs for proposals, PRDs for products
105
- - Documentation should be linked to beads issues in plan.md
106
-
107
- ### Update Mechanism
108
- - Run \`construct init:update\` quarterly to adopt new standards
109
- - Check \`.cx/context.json\` version matches current template
110
- - Review and apply migration scripts when prompted
111
-
112
- ## CI Enforcement
113
-
114
- ### Documentation Validation
115
- - \`construct docs:verify\` runs on every PR
116
- - Missing README.md, AGENTS.md, or plan.md fails CI
117
- - Stale plan.md (>7 days) or .cx/context.md (>7 days) fails CI
118
- - README.md missing basic sections warns but doesn't fail
119
-
120
- ### Quality Gates
121
- - All local tests must pass before pushing
122
- - CI must be green after pushing
123
- - Documentation validation must pass
124
- - Comment policy must be enforced
125
-
126
- ## Verification rules
127
-
128
- - Record verification evidence in the Beads issue (\`bd note <id>\`) or \`plan.md\`, or the relevant durable doc before calling work done.
129
- - If architecture, contracts, or operating rules change, update the relevant canonical docs in the same change.
130
- - All local tests must pass (\`npm test\`) before pushing. CI must be green after pushing before the task is considered done.
131
- - Push Beads changes alongside code: \`bd dolt push\` must succeed before the session closes.
132
-
133
- <!-- BEGIN BEADS INTEGRATION v:1 profile:minimal hash:placeholder -->
134
- ## Beads Issue Tracker
135
-
136
- This project uses **bd (beads)** for issue tracking. Run \`bd prime\` to see full workflow context and commands.
137
-
138
- ### Quick Reference
139
-
140
- \`\`\`bash
141
- bd ready # Find available work
142
- bd show <id> # View issue details
143
- bd update <id> --claim # Claim work
144
- bd close <id> # Complete work
145
-
146
- # New: lock‑aware execution
147
- construct beads ready # Run bd ready with lock management
148
- construct beads status # Show lock and queue status
149
- construct beads cleanup # Remove stale locks
150
- construct beads queue # Show pending requests
151
- \`\`\`
152
-
153
- ### Rules
154
-
155
- - Use \`bd\` for ALL task tracking — do NOT use TodoWrite, TaskCreate, or markdown TODO lists
156
- - **IMPORTANT**: For parallel agent safety, prefer \`construct beads <command>\` over direct \`bd\` calls
157
- - Run \`bd prime\` for detailed command reference and session close protocol
158
- - Use \`bd remember\` for persistent knowledge — do NOT use MEMORY.md files
159
- - Acquire the merge slot (\`bd merge-slot acquire\`) before batch operations like \`bd dolt push\`
160
- - **Beads hygiene is a project contract.** Read \`rules/common/beads-hygiene.md\` once per session — it defines when to claim, close, supersede, and prune beads. Stale tracker state is treated as broken work.
161
-
162
- ## Session Completion
163
-
164
- **When ending a work session**, you MUST complete ALL steps below. Work is NOT complete until \`git push\` succeeds.
165
-
166
- **MANDATORY WORKFLOW:**
167
-
168
- 1. **File issues for remaining work** - Create issues for anything that needs follow-up
169
- 2. **Run quality gates** (if code changed) - Tests, linters, builds
170
- 3. **Update issue status** - Close finished work, update in-progress items
171
- 4. **PUSH TO REMOTE** - This is MANDATORY:
172
- \`\`\`bash
173
- git pull --rebase
174
- # Check merge‑slot before dolt push
175
- construct beads dolt push
176
- git push
177
- git status # MUST show "up to date with origin"
178
- \`\`\`
179
- 5. **Run end‑of‑session automation**:
180
- \`\`\`bash
181
- # Sync plan.md with bead statuses
182
- node -e "import('./lib/beads-automation.mjs').then(m => m.syncPlanWithBeads({ cwd: process.cwd() }))"
183
-
184
- # Create handoff
185
- node -e "import('./lib/beads-automation.mjs').then(m => m.endOfSessionHook({ actor: process.env.USER, cwd: process.cwd() }))"
186
- \`\`\`
187
- 6. **Clean up** - Clear stashes, prune remote branches
188
- 7. **Verify** - All changes committed AND pushed
189
- 8. **Hand off** - Provide context for next session
190
-
191
- **CRITICAL RULES:**
192
- - Work is NOT complete until \`git push\` succeeds
193
- - NEVER stop before pushing - that leaves work stranded locally
194
- - NEVER say "ready to push when you are" - YOU must push
195
- - If push fails, resolve and retry until it succeeds
196
- - ALWAYS use \`construct beads\` for beads operations in multi‑agent sessions
197
- - Clean up stale locks with \`construct beads cleanup\` if operations hang
198
- <!-- END BEADS INTEGRATION -->`;
199
- }
200
-
201
28
  export function buildPlanTemplate() {
202
29
  return `<!--
203
30
  plan.md — current implementation plan for this repository.
@@ -0,0 +1,105 @@
1
+ /**
2
+ * lib/reconcile/adapter-prune.mjs — report and remove adapter directories for
3
+ * hosts not installed on this machine (ADR-0027 §1).
4
+ *
5
+ * `construct sync` writes adapter sets for the hosts it detects. A project
6
+ * synced where more hosts were installed, then opened on a leaner machine,
7
+ * carries adapter dirs for hosts absent from the current machine. Each adapter
8
+ * dir is sync-regenerated machine-specific state, so pruning the dirs for
9
+ * undetected hosts is safe — a later sync recreates whatever the current
10
+ * machine actually has.
11
+ *
12
+ * `.claude` stays untouched: it is the baseline set that VS Code reads
13
+ * natively, so its presence carries no implication about Claude Code. `.github`
14
+ * (Copilot prompts / instructions) is out of scope entirely.
15
+ *
16
+ * Safety: `ask`. Deleting generated directories runs only on explicit consent
17
+ * (`construct sync --reconcile=adapter-prune`), and the auto runner skips ask
18
+ * tasks. detect() reads only; apply() is idempotent because a removed dir drops
19
+ * out of the present set.
20
+ */
21
+
22
+ import fs from 'node:fs';
23
+ import path from 'node:path';
24
+
25
+ import { ADAPTER_DIRS } from '../host-disposition.mjs';
26
+ import { detectHostCapabilities } from '../host-capabilities.mjs';
27
+
28
+ const HOST_TO_DIR = {
29
+ 'Claude Code': '.claude',
30
+ OpenCode: '.opencode',
31
+ Codex: '.codex',
32
+ 'VS Code': '.vscode',
33
+ Cursor: '.cursor',
34
+ };
35
+
36
+ const PROTECTED_DIRS = new Set(['.claude']);
37
+
38
+ function isConstructProject(dir) {
39
+ return fs.existsSync(path.join(dir, '.cx')) || fs.existsSync(path.join(dir, '.construct'));
40
+ }
41
+
42
+ function detectedDirSet() {
43
+ const dirs = new Set();
44
+ for (const host of detectHostCapabilities()) {
45
+ if (host.availability !== 'installed') continue;
46
+ const dir = HOST_TO_DIR[host.host];
47
+ if (dir) dirs.add(dir);
48
+ }
49
+ return dirs;
50
+ }
51
+
52
+ // A candidate is a present adapter dir whose host is not installed, excluding
53
+ // the protected baseline `.claude` that VS Code consumes natively.
54
+
55
+ function prunableDirs(projectDir) {
56
+ const detected = detectedDirSet();
57
+ const out = [];
58
+ for (const dir of ADAPTER_DIRS) {
59
+ if (PROTECTED_DIRS.has(dir)) continue;
60
+ if (detected.has(dir)) continue;
61
+ if (fs.existsSync(path.join(projectDir, dir))) out.push(dir);
62
+ }
63
+ return out;
64
+ }
65
+
66
+ async function detect() {
67
+ const dir = process.cwd();
68
+ if (!isConstructProject(dir)) {
69
+ return { needsRepair: false, summary: 'Not a Construct project directory.' };
70
+ }
71
+ const prunable = prunableDirs(dir);
72
+ if (prunable.length === 0) {
73
+ return { needsRepair: false, summary: 'No adapter directories for uninstalled hosts.' };
74
+ }
75
+ return {
76
+ needsRepair: true,
77
+ summary: `${prunable.length} adapter director${prunable.length === 1 ? 'y' : 'ies'} for uninstalled hosts: ${prunable.join(', ')}.`,
78
+ details: { prunable },
79
+ };
80
+ }
81
+
82
+ async function apply() {
83
+ const dir = process.cwd();
84
+ const prunable = prunableDirs(dir);
85
+ const removed = [];
86
+ for (const adapter of prunable) {
87
+ const full = path.join(dir, adapter);
88
+ try {
89
+ fs.rmSync(full, { recursive: true, force: true });
90
+ removed.push(adapter);
91
+ } catch {
92
+ continue;
93
+ }
94
+ }
95
+ if (removed.length === 0) return { summary: 'Nothing to prune.' };
96
+ return { summary: `Removed ${removed.length} adapter director${removed.length === 1 ? 'y' : 'ies'} for uninstalled hosts: ${removed.join(', ')}.` };
97
+ }
98
+
99
+ export default {
100
+ id: 'adapter-prune',
101
+ description: 'Remove adapter directories for hosts not installed on this machine (never .claude or .github).',
102
+ safety: 'ask',
103
+ detect,
104
+ apply,
105
+ };
@@ -0,0 +1,98 @@
1
+ /**
2
+ * lib/reconcile/agent-instructions-rewrap.mjs — keep the CONSTRUCT INTEGRATION
3
+ * block current inside existing AGENTS.md / CLAUDE.md files (ADR-0027 §2).
4
+ *
5
+ * The integration block is versioned and hash-stamped. A changed managed body
6
+ * or version leaves files written by an earlier init carrying a stale block.
7
+ * Re-injection rewrites the current block into files that already contain one,
8
+ * replacing only the marker region and preserving every byte outside it.
9
+ *
10
+ * Scope is deliberately narrow: a file is touched only when it EXISTS in cwd
11
+ * and already carries a CONSTRUCT INTEGRATION marker. Files without a block are
12
+ * left for init to create — backward-repair never authors a block into a file
13
+ * the user never opted into. Safety: `auto`. detect() reads only; apply() is
14
+ * idempotent because injectIntoAgentFile returns `unchanged` once the stamp
15
+ * matches.
16
+ */
17
+
18
+ import fs from 'node:fs';
19
+ import path from 'node:path';
20
+
21
+ import {
22
+ injectIntoAgentFile,
23
+ injectConstructBlock,
24
+ buildConstructIntegrationBody,
25
+ CONSTRUCT_INTEGRATION_VERSION,
26
+ } from '../agent-instructions/inject.mjs';
27
+
28
+ const AGENT_FILES = ['AGENTS.md', 'CLAUDE.md'];
29
+ const BEGIN_MARKER = '<!-- BEGIN CONSTRUCT INTEGRATION';
30
+ const BEADS_BLOCK_RE = /<!-- BEGIN BEADS INTEGRATION/;
31
+
32
+ function hasIntegrationBlock(content) {
33
+ return content.includes(BEGIN_MARKER);
34
+ }
35
+
36
+ // Re-injection that would change the file maps to a stale block. The body
37
+ // dedups against a sibling Beads block, so the comparison rebuilds the body
38
+ // the same way injectIntoAgentFile does before hashing.
39
+
40
+ function wouldChange(content) {
41
+ const body = buildConstructIntegrationBody({ hasBeadsBlock: BEADS_BLOCK_RE.test(content) });
42
+ const { action } = injectConstructBlock(content, body, CONSTRUCT_INTEGRATION_VERSION);
43
+ return action !== 'unchanged';
44
+ }
45
+
46
+ function candidateFiles() {
47
+ const dir = process.cwd();
48
+ const out = [];
49
+ for (const name of AGENT_FILES) {
50
+ const full = path.join(dir, name);
51
+ if (!fs.existsSync(full)) continue;
52
+ let content = '';
53
+ try {
54
+ content = fs.readFileSync(full, 'utf8');
55
+ } catch {
56
+ continue;
57
+ }
58
+ if (!hasIntegrationBlock(content)) continue;
59
+ out.push({ name, full, content });
60
+ }
61
+ return out;
62
+ }
63
+
64
+ async function detect() {
65
+ const candidates = candidateFiles();
66
+ if (candidates.length === 0) {
67
+ return { needsRepair: false, summary: 'No agent file carries a CONSTRUCT INTEGRATION block.' };
68
+ }
69
+ const stale = candidates.filter((c) => wouldChange(c.content)).map((c) => c.name);
70
+ if (stale.length === 0) {
71
+ return { needsRepair: false, summary: 'CONSTRUCT INTEGRATION blocks are current.' };
72
+ }
73
+ return {
74
+ needsRepair: true,
75
+ summary: `Stale CONSTRUCT INTEGRATION block in ${stale.join(', ')}.`,
76
+ details: { stale },
77
+ };
78
+ }
79
+
80
+ async function apply() {
81
+ const candidates = candidateFiles();
82
+ const rewrapped = [];
83
+ for (const c of candidates) {
84
+ if (!wouldChange(c.content)) continue;
85
+ const result = injectIntoAgentFile(c.full, { version: CONSTRUCT_INTEGRATION_VERSION });
86
+ if (result.changed) rewrapped.push(c.name);
87
+ }
88
+ if (rewrapped.length === 0) return { summary: 'Already current.' };
89
+ return { summary: `Rewrapped CONSTRUCT INTEGRATION block in ${rewrapped.join(', ')}.` };
90
+ }
91
+
92
+ export default {
93
+ id: 'agent-instructions-rewrap',
94
+ description: 'Refresh stale CONSTRUCT INTEGRATION blocks in existing AGENTS.md / CLAUDE.md files.',
95
+ safety: 'auto',
96
+ detect,
97
+ apply,
98
+ };