@geraldmaron/construct 1.2.1 → 1.2.2

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 (198) hide show
  1. package/README.md +6 -6
  2. package/bin/construct +41 -67
  3. package/commands/plan/decide.md +1 -1
  4. package/commands/remember/runbook.md +1 -1
  5. package/examples/README.md +1 -1
  6. package/examples/distribution/README.md +1 -1
  7. package/examples/distribution/sources/adr.md +2 -2
  8. package/examples/distribution/sources/deck-one-pager.md +1 -1
  9. package/examples/distribution/sources/prd-platform.md +1 -1
  10. package/examples/distribution/sources/research-brief.md +2 -2
  11. package/examples/distribution/sources/rfc-platform.md +1 -1
  12. package/examples/distribution/sources/runbook.md +2 -2
  13. package/examples/distribution/sources/strategy.md +1 -1
  14. package/lib/agent-instructions/inject.mjs +1 -1
  15. package/lib/artifact-type-from-path.mjs +9 -5
  16. package/lib/audit-specialists.mjs +1 -1
  17. package/lib/audit-trail.mjs +3 -3
  18. package/lib/auto-docs.mjs +10 -10
  19. package/lib/bootstrap/built-ins.mjs +3 -3
  20. package/lib/boundary.mjs +3 -2
  21. package/lib/brand-prose.mjs +1 -1
  22. package/lib/cache-governor.js +4 -4
  23. package/lib/certification/document-io-fixtures.mjs +1 -1
  24. package/lib/chat/config.mjs +2 -2
  25. package/lib/chat/desktop-binary.mjs +5 -3
  26. package/lib/cli-commands.mjs +3 -3
  27. package/lib/cli-service-inventory.mjs +1 -1
  28. package/lib/comment-lint.mjs +9 -5
  29. package/lib/config/alias.mjs +3 -2
  30. package/lib/config/intake-policy.mjs +8 -78
  31. package/lib/config/project-config.mjs +95 -5
  32. package/lib/config/schema.mjs +9 -19
  33. package/lib/config/xdg.mjs +63 -0
  34. package/lib/contracts/violation-log.mjs +2 -2
  35. package/lib/cost-ledger.mjs +4 -3
  36. package/lib/cost.mjs +3 -2
  37. package/lib/decisions/registry.mjs +3 -3
  38. package/lib/distill.mjs +2 -2
  39. package/lib/docs-verify.mjs +2 -0
  40. package/lib/doctor/audit.mjs +4 -3
  41. package/lib/doctor/cli.mjs +0 -1
  42. package/lib/doctor/index.mjs +4 -4
  43. package/lib/doctor/report.mjs +3 -3
  44. package/lib/doctor/watchers/bd-watch.mjs +5 -5
  45. package/lib/doctor/watchers/cost.mjs +4 -4
  46. package/lib/doctor/watchers/disk.mjs +4 -3
  47. package/lib/doctor/watchers/service-health.mjs +5 -5
  48. package/lib/document-export.mjs +1 -1
  49. package/lib/document-extract.mjs +3 -3
  50. package/lib/document-ingest.mjs +13 -3
  51. package/lib/efficiency.mjs +2 -1
  52. package/lib/embed/approval-queue.mjs +3 -2
  53. package/lib/embed/cli.mjs +7 -5
  54. package/lib/embed/config.mjs +6 -5
  55. package/lib/embed/daemon.mjs +6 -5
  56. package/lib/embed/inbox-live-watcher.mjs +1 -1
  57. package/lib/embed/inbox.mjs +52 -37
  58. package/lib/embed/intake-metrics.mjs +3 -2
  59. package/lib/embed/reconcile.mjs +1 -1
  60. package/lib/embed/semantic.mjs +3 -2
  61. package/lib/embed/supervision.mjs +4 -2
  62. package/lib/engine/registry.mjs +3 -3
  63. package/lib/env-config.mjs +34 -12
  64. package/lib/features.mjs +4 -3
  65. package/lib/health-check.mjs +7 -6
  66. package/lib/hook-health.mjs +5 -4
  67. package/lib/hooks/_lib/log.mjs +4 -3
  68. package/lib/hooks/_lib/output-mode.mjs +2 -1
  69. package/lib/hooks/agent-tracker.mjs +3 -4
  70. package/lib/hooks/audit-reads.mjs +2 -2
  71. package/lib/hooks/audit-trail.mjs +2 -2
  72. package/lib/hooks/bash-output-logger.mjs +3 -3
  73. package/lib/hooks/brand-prose-lint.mjs +1 -1
  74. package/lib/hooks/ci-status-check.mjs +3 -2
  75. package/lib/hooks/context-watch.mjs +2 -2
  76. package/lib/hooks/context-window-recovery.mjs +5 -5
  77. package/lib/hooks/dep-audit.mjs +2 -2
  78. package/lib/hooks/doc-coupling-check.mjs +3 -2
  79. package/lib/hooks/edit-accumulator.mjs +3 -2
  80. package/lib/hooks/edit-guard.mjs +3 -3
  81. package/lib/hooks/guard-bash.mjs +2 -2
  82. package/lib/hooks/model-fallback.mjs +2 -1
  83. package/lib/hooks/policy-engine.mjs +4 -3
  84. package/lib/hooks/pre-compact.mjs +7 -7
  85. package/lib/hooks/readme-age-check.mjs +2 -2
  86. package/lib/hooks/session-optimize.mjs +4 -3
  87. package/lib/hooks/session-start.mjs +6 -5
  88. package/lib/hooks/stop-notify.mjs +9 -8
  89. package/lib/hooks/stop-typecheck.mjs +4 -3
  90. package/lib/hooks/test-watch.mjs +2 -2
  91. package/lib/host-disposition.mjs +1 -1
  92. package/lib/ingest/provider-extract.mjs +2 -1
  93. package/lib/init/detect-existing-structure.mjs +2 -2
  94. package/lib/init/doc-lanes.mjs +3 -10
  95. package/lib/init-docs.mjs +12 -54
  96. package/lib/init-unified.mjs +35 -81
  97. package/lib/init.mjs +7 -5
  98. package/lib/install/desktop-binary-download.mjs +5 -2
  99. package/lib/intake/daemon.mjs +31 -8
  100. package/lib/intake/intake-config.mjs +5 -32
  101. package/lib/integrations/intake-integrations.mjs +8 -7
  102. package/lib/knowledge/rag.mjs +2 -2
  103. package/lib/knowledge/search.mjs +15 -15
  104. package/lib/maintenance/cleanup.mjs +14 -10
  105. package/lib/mcp/server.mjs +1 -1
  106. package/lib/mcp/tools/project.mjs +2 -1
  107. package/lib/model-cheapest-provider.mjs +4 -3
  108. package/lib/model-pricing.mjs +3 -2
  109. package/lib/model-router.mjs +4 -3
  110. package/lib/models/catalog.mjs +2 -1
  111. package/lib/models/execution-capability-profile.mjs +2 -1
  112. package/lib/models/provider-poll.mjs +2 -1
  113. package/lib/ollama-manager.mjs +0 -1
  114. package/lib/op-log.mjs +2 -1
  115. package/lib/opencode-runtime-plugin.mjs +3 -2
  116. package/lib/oracle/artifact-gate.mjs +3 -0
  117. package/lib/oracle/cli.mjs +2 -1
  118. package/lib/oracle/execute.mjs +3 -2
  119. package/lib/oracle/index.mjs +2 -1
  120. package/lib/oracle/read-model.mjs +3 -2
  121. package/lib/performance/generate.mjs +4 -3
  122. package/lib/platforms/capabilities.mjs +1 -1
  123. package/lib/plugin-registry.mjs +2 -1
  124. package/lib/profiles/lifecycle.mjs +3 -3
  125. package/lib/project-profile.mjs +2 -1
  126. package/lib/project-root.mjs +9 -7
  127. package/lib/provider-capabilities.js +4 -3
  128. package/lib/providers/auth-manager.mjs +2 -1
  129. package/lib/providers/copilot-auth.mjs +3 -2
  130. package/lib/providers/creds.mjs +3 -2
  131. package/lib/providers/registry.mjs +3 -3
  132. package/lib/providers/secret-resolver.mjs +3 -2
  133. package/lib/read-tracker-store.mjs +2 -1
  134. package/lib/reconcile/mcp-entry-reconcile.mjs +2 -2
  135. package/lib/reflect.mjs +2 -1
  136. package/lib/registry/generate-docs.mjs +2 -2
  137. package/lib/roles/approval-surface.mjs +5 -4
  138. package/lib/roles/event-bus.mjs +0 -1
  139. package/lib/roles/gateway.mjs +6 -2
  140. package/lib/rules-delivery.mjs +1 -1
  141. package/lib/runtime-pressure.mjs +5 -3
  142. package/lib/sandbox.mjs +3 -2
  143. package/lib/scheduler/solo.mjs +6 -4
  144. package/lib/server/auth.mjs +4 -3
  145. package/lib/server/index.mjs +24 -26
  146. package/lib/server/insights.mjs +5 -4
  147. package/lib/server/webhook.mjs +2 -1
  148. package/lib/service-manager.mjs +5 -3
  149. package/lib/setup.mjs +9 -8
  150. package/lib/status.mjs +6 -5
  151. package/lib/storage/embeddings-local.mjs +3 -2
  152. package/lib/storage/sync.mjs +2 -2
  153. package/lib/telemetry/client.mjs +0 -1
  154. package/lib/telemetry/intent-verifications.mjs +6 -6
  155. package/lib/telemetry/model-pricing-catalog.mjs +4 -3
  156. package/lib/telemetry/rule-calls.mjs +3 -3
  157. package/lib/telemetry/skill-calls.mjs +3 -3
  158. package/lib/template-registry.mjs +1 -0
  159. package/lib/templates/visual-requirements.mjs +1 -1
  160. package/lib/test-corpus-inventory.mjs +1 -1
  161. package/lib/uninstall/uninstall.mjs +12 -10
  162. package/package.json +3 -3
  163. package/platforms/claude/settings.template.json +43 -43
  164. package/rules/common/no-fabrication.md +1 -1
  165. package/rules/common/release-gates.md +1 -1
  166. package/rules/common/research.md +1 -1
  167. package/rules/common/review-before-change.md +1 -1
  168. package/scripts/sync-specialists.mjs +11 -8
  169. package/skills/docs/adr-workflow.md +3 -3
  170. package/skills/docs/init-docs.md +9 -9
  171. package/skills/docs/prd-workflow.md +5 -5
  172. package/skills/docs/product-intelligence-review.md +1 -1
  173. package/skills/docs/product-intelligence-workflow.md +2 -2
  174. package/skills/docs/product-signal-workflow.md +1 -1
  175. package/skills/docs/runbook-workflow.md +4 -4
  176. package/skills/exploration/unknown-codebase-onboarding.md +1 -1
  177. package/skills/operating/orchestration-reference.md +1 -1
  178. package/skills/routing.md +3 -3
  179. package/specialists/prompts/cx-architect.md +1 -1
  180. package/specialists/prompts/cx-docs-keeper.md +1 -1
  181. package/specialists/prompts/cx-researcher.md +1 -1
  182. package/specialists/prompts/cx-sre.md +1 -1
  183. package/specialists/role-manifests.json +6 -6
  184. package/templates/docs/README.md +125 -0
  185. package/templates/docs/construct_guide.md +3 -4
  186. package/templates/docs/persona-artifact.md +1 -1
  187. package/templates/docs/prds/README.md +25 -0
  188. package/templates/docs/prds/templates/_template.md +206 -0
  189. package/templates/docs/prds/templates/meta-prd.template.md +177 -0
  190. package/templates/docs/prds/templates/prd-business.template.md +61 -0
  191. package/templates/docs/prds/templates/prd-platform.template.md +81 -0
  192. package/templates/docs/prds/templates/prfaq.template.md +38 -0
  193. package/templates/docs/rfcs/README.md +22 -0
  194. package/templates/docs/rfcs/templates/_template.md +58 -0
  195. package/templates/docs/rfcs/templates/rfc-platform.template.md +72 -0
  196. package/templates/homebrew/construct.rb +1 -1
  197. package/templates/workflows/new-feature.yml +8 -8
  198. package/lib/intake/legacy-paths.mjs +0 -5
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * lib/registry/generate-docs.mjs — generate reference docs from registry/capabilities.json.
3
3
  *
4
- * Writes docs/reference/capabilities.md so the human-readable capability matrix
4
+ * Writes docs/guides/reference/capabilities.md so the human-readable capability matrix
5
5
  * cannot drift from the machine-readable registry.
6
6
  */
7
7
 
@@ -62,7 +62,7 @@ export function generateCapabilitiesDoc({ rootDir = REPO_ROOT, write = true } =
62
62
  }
63
63
 
64
64
  const content = `${lines.join('\n')}\n`;
65
- const out = path.join(rootDir, 'docs', 'reference', 'capabilities.md');
65
+ const out = path.join(rootDir, 'docs', 'guides', 'reference', 'capabilities.md');
66
66
  if (!write) return { out, content, drift: fs.existsSync(out) ? fs.readFileSync(out, 'utf8') !== content : true };
67
67
  fs.mkdirSync(path.dirname(out), { recursive: true });
68
68
  fs.writeFileSync(out, content);
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * When a persona-tagged session hits an action that lands in the fence's
5
5
  * `approvalRequired` bucket (commit, push, out-of-fence edit, etc.), this
6
- * module appends a marker to ~/.cx/approval-pending.jsonl and emits an SSE
6
+ * module appends a marker to <doctorRoot>/approval-pending.jsonl and emits an SSE
7
7
  * toast through the embed notification bus. The user sees a dashboard toast
8
8
  * instead of having to grep stderr.
9
9
  *
@@ -12,13 +12,14 @@
12
12
  */
13
13
 
14
14
  import { existsSync, appendFileSync, mkdirSync } from 'node:fs';
15
- import { homedir } from 'node:os';
16
15
  import { join } from 'node:path';
17
16
 
18
- const PENDING_PATH = join(homedir(), '.cx', 'approval-pending.jsonl');
17
+ import { doctorRoot } from '../config/xdg.mjs';
18
+
19
+ const PENDING_PATH = join(doctorRoot(), 'approval-pending.jsonl');
19
20
 
20
21
  function ensureDir() {
21
- const dir = join(homedir(), '.cx');
22
+ const dir = doctorRoot();
22
23
  if (!existsSync(dir)) mkdirSync(dir, { recursive: true });
23
24
  }
24
25
 
@@ -14,7 +14,6 @@
14
14
 
15
15
  import { createHash } from 'node:crypto';
16
16
  import { existsSync, readFileSync, appendFileSync, writeFileSync, mkdirSync } from 'node:fs';
17
- import { homedir } from 'node:os';
18
17
  import { dirname, join } from 'node:path';
19
18
  import { resolveProjectScopedPath } from '../project-root.mjs';
20
19
 
@@ -11,15 +11,19 @@
11
11
  */
12
12
 
13
13
  import { existsSync, readFileSync, appendFileSync, writeFileSync, mkdirSync } from 'node:fs';
14
- import { homedir, tmpdir } from 'node:os';
14
+ import { tmpdir } from 'node:os';
15
15
  import { join } from 'node:path';
16
16
 
17
17
  import { emit, _paths } from './event-bus.mjs';
18
18
  import { route as routeEvent } from './router.mjs';
19
19
  import { runBd } from '../beads-client.mjs';
20
+ import { doctorRoot } from '../config/xdg.mjs';
21
+
22
+ // CONSTRUCT_ROLES_ROOT still wins for the roles event ecosystem's test
23
+ // isolation; the literal fallback follows the global doctor root instead of ~/.cx.
20
24
 
21
25
  function rootDir() {
22
- return process.env.CONSTRUCT_ROLES_ROOT || join(homedir(), '.cx');
26
+ return process.env.CONSTRUCT_ROLES_ROOT || doctorRoot();
23
27
  }
24
28
  function pendingPath() {
25
29
  return join(rootDir(), 'role-pending.jsonl');
@@ -10,7 +10,7 @@
10
10
  * carry the `construct-` prefix and are swept when their rule stops matching, so
11
11
  * user-authored .mdc files are never touched (ADR-0027 ownership contract).
12
12
  * Claude/Codex/OpenCode have no per-rule glob mechanism; for them rules remain
13
- * reference-delivered (cited by path in prose) — see docs/concepts/rules-delivery.md.
13
+ * reference-delivered (cited by path in prose) — see docs/guides/concepts/rules-delivery.md.
14
14
  */
15
15
  import fs from 'node:fs';
16
16
  import path from 'node:path';
@@ -10,6 +10,8 @@ import os from 'node:os';
10
10
  import path from 'node:path';
11
11
  import { spawnSync } from 'node:child_process';
12
12
 
13
+ import { stateDir } from './config/xdg.mjs';
14
+
13
15
  const DEFAULTS = Object.freeze({
14
16
  enabled: '1',
15
17
  intervalSeconds: '300',
@@ -115,7 +117,7 @@ function summarizeTermination(entries) {
115
117
 
116
118
  function warningStatePath(env = process.env) {
117
119
  const homeDir = env.HOME || os.homedir();
118
- return path.join(homeDir, '.construct', 'runtime', 'process-pressure-warnings.json');
120
+ return path.join(stateDir(homeDir), 'runtime', 'process-pressure-warnings.json');
119
121
  }
120
122
 
121
123
  function readWarningState(env = process.env) {
@@ -374,9 +376,9 @@ ${programArgs.map((arg) => ` <string>${plistEscape(arg)}</string>`).join('\
374
376
  <key>StartInterval</key>
375
377
  <integer>${intervalSeconds}</integer>
376
378
  <key>StandardOutPath</key>
377
- <string>${plistEscape(path.join(homeDir, '.construct', 'runtime', 'pressure-release.log'))}</string>
379
+ <string>${plistEscape(path.join(stateDir(homeDir), 'runtime', 'pressure-release.log'))}</string>
378
380
  <key>StandardErrorPath</key>
379
- <string>${plistEscape(path.join(homeDir, '.construct', 'runtime', 'pressure-release.log'))}</string>
381
+ <string>${plistEscape(path.join(stateDir(homeDir), 'runtime', 'pressure-release.log'))}</string>
380
382
  </dict>
381
383
  </plist>
382
384
  `;
package/lib/sandbox.mjs CHANGED
@@ -18,11 +18,12 @@
18
18
  * lives under `~/.cx/sandboxes/<id>/` so they survive across CLI sessions.
19
19
  */
20
20
  import fs from 'node:fs';
21
- import os from 'node:os';
22
21
  import path from 'node:path';
23
22
  import { spawnSync } from 'node:child_process';
24
23
 
25
- const ROOT = path.join(os.homedir(), '.cx', 'sandboxes');
24
+ import { doctorRoot } from './config/xdg.mjs';
25
+
26
+ const ROOT = path.join(doctorRoot(), 'sandboxes');
26
27
 
27
28
  function ensureRoot() {
28
29
  fs.mkdirSync(ROOT, { recursive: true });
@@ -20,6 +20,8 @@ import fs from 'node:fs';
20
20
  import path from 'node:path';
21
21
  import os from 'node:os';
22
22
 
23
+ import { doctorRoot } from '../config/xdg.mjs';
24
+
23
25
  // ---------------------------------------------------------------------------
24
26
  // Cron parsing helpers — minimal support for standard 5-field cron
25
27
  // ---------------------------------------------------------------------------
@@ -82,9 +84,9 @@ function writeLaunchdPlist(id, schedule, cwd) {
82
84
  ${calendarEntries}
83
85
  </dict>
84
86
  <key>StandardOutPath</key>
85
- <string>${path.join(os.homedir(), '.cx', 'scheduler', 'logs', `${id}.stdout.log`)}</string>
87
+ <string>${path.join(doctorRoot(), 'scheduler', 'logs', `${id}.stdout.log`)}</string>
86
88
  <key>StandardErrorPath</key>
87
- <string>${path.join(os.homedir(), '.cx', 'scheduler', 'logs', `${id}.stderr.log`)}</string>
89
+ <string>${path.join(doctorRoot(), 'scheduler', 'logs', `${id}.stderr.log`)}</string>
88
90
  <key>RunAtLoad</key>
89
91
  <false/>
90
92
  </dict>
@@ -120,8 +122,8 @@ Description=Construct job: ${id}
120
122
  Type=oneshot
121
123
  WorkingDirectory=${cwd}
122
124
  ExecStart=${constructBin} scheduler run ${id}
123
- StandardOutput=append:${path.join(os.homedir(), '.cx', 'scheduler', 'logs', `${id}.stdout.log`)}
124
- StandardError=append:${path.join(os.homedir(), '.cx', 'scheduler', 'logs', `${id}.stderr.log`)}
125
+ StandardOutput=append:${path.join(doctorRoot(), 'scheduler', 'logs', `${id}.stdout.log`)}
126
+ StandardError=append:${path.join(doctorRoot(), 'scheduler', 'logs', `${id}.stderr.log`)}
125
127
  `;
126
128
 
127
129
  fs.mkdirSync(unitDir, { recursive: true });
@@ -2,7 +2,7 @@
2
2
  * lib/server/auth.mjs — Dashboard authentication middleware.
3
3
  *
4
4
  * Token-based auth for the Construct dashboard. A single shared bearer token
5
- * is stored at ~/.construct/config.env under CONSTRUCT_DASHBOARD_TOKEN. If no
5
+ * is stored at config.env in the XDG config dir under CONSTRUCT_DASHBOARD_TOKEN. If no
6
6
  * token is configured the dashboard runs open (localhost-only by design). The
7
7
  * browser receives a short-lived session cookie on successful token exchange so
8
8
  * subsequent requests don't need to re-send the Authorization header.
@@ -16,9 +16,10 @@ import { randomBytes, timingSafeEqual } from 'crypto';
16
16
  import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'fs';
17
17
  import { join } from 'path';
18
18
  import { homedir } from 'os';
19
+ import { configDir } from '../config/xdg.mjs';
19
20
 
20
21
  const HOME = homedir();
21
- const CONFIG_ENV = join(HOME, '.construct', 'config.env');
22
+ const CONFIG_ENV = join(configDir(HOME), 'config.env');
22
23
  const SESSION_COOKIE = 'cx_session';
23
24
  const SESSION_TTL_MS = 8 * 60 * 60 * 1000; // 8 hours
24
25
  const SUPPORTED_OAUTH_PROVIDERS = new Set(['github', 'google']);
@@ -46,7 +47,7 @@ export function getDashboardToken() {
46
47
  }
47
48
 
48
49
  export function setDashboardToken(token) {
49
- mkdirSync(join(HOME, '.construct'), { recursive: true });
50
+ mkdirSync(configDir(HOME), { recursive: true });
50
51
  const env = existsSync(CONFIG_ENV) ? readFileSync(CONFIG_ENV, 'utf8') : '';
51
52
  const lines = env.split('\n').filter(l => !l.startsWith('CONSTRUCT_DASHBOARD_TOKEN='));
52
53
  lines.push(`CONSTRUCT_DASHBOARD_TOKEN=${token}`);
@@ -20,6 +20,7 @@ import { generateArtifact, listArtifacts } from '../embed/artifact.mjs';
20
20
  import { ApprovalQueue } from '../embed/approval-queue.mjs';
21
21
  import { resolveEmbedStatus } from '../embed/cli.mjs';
22
22
  import { loadConstructEnv, prepareConstructEnv } from '../runtime-env.mjs';
23
+ import { configDir, doctorRoot } from '../config/xdg.mjs';
23
24
  import {
24
25
  isAuthConfigured, isAuthenticated, rejectUnauthorized,
25
26
  validateToken, createSession, sessionCookieHeader, clearSessionCookieHeader,
@@ -71,15 +72,15 @@ function assertSafeBind() {
71
72
 
72
73
  const STATIC_DIR = join(__dirname, 'static');
73
74
  const REGISTRY_FILE = join(ROOT_DIR, 'specialists', 'registry.json');
74
- const FEATURES_FILE = join(HOME, '.construct', 'features.json');
75
+ const FEATURES_FILE = join(configDir(HOME), 'features.json');
75
76
  const WORKFLOW_FILE = join(ROOT_DIR, 'plan.md');
76
77
  const SKILLS_DIR = join(ROOT_DIR, 'skills');
77
78
  const COMMANDS_DIR = join(ROOT_DIR, 'commands');
78
- const SNAPSHOTS_FILE = join(HOME, '.cx', 'snapshots.jsonl');
79
- const APPROVAL_QUEUE_FILE = join(HOME, '.cx', 'approval-queue.jsonl');
80
- const CONFIG_ENV_FILE = join(HOME, '.construct', 'config.env');
81
- const EMBED_YAML_FILE = join(HOME, '.construct', 'embed.yaml');
82
- const CREDENTIAL_AUDIT_FILE = join(HOME, '.cx', 'credential-audit.jsonl');
79
+ const SNAPSHOTS_FILE = join(doctorRoot(), 'snapshots.jsonl');
80
+ const APPROVAL_QUEUE_FILE = join(doctorRoot(), 'approval-queue.jsonl');
81
+ const CONFIG_ENV_FILE = join(configDir(HOME), 'config.env');
82
+ const EMBED_YAML_FILE = join(configDir(HOME), 'embed.yaml');
83
+ const CREDENTIAL_AUDIT_FILE = join(doctorRoot(), 'credential-audit.jsonl');
83
84
 
84
85
  // Provider → expected env vars. Source of truth for the credentials surface,
85
86
  // the per-provider health classification ("not configured" vs "unhealthy"),
@@ -97,7 +98,7 @@ const BUILTIN_CREDENTIAL_MAP = [
97
98
  { provider: 'salesforce', label: 'Salesforce', kind: 'integration', envVars: ['SALESFORCE_INSTANCE_URL', 'SALESFORCE_ACCESS_TOKEN'] },
98
99
  ];
99
100
 
100
- const CUSTOM_CREDENTIALS_FILE = join(HOME, '.construct', 'custom-credentials.json');
101
+ const CUSTOM_CREDENTIALS_FILE = join(configDir(HOME), 'custom-credentials.json');
101
102
 
102
103
  // Env-var name validator: must match POSIX shell variable syntax and avoid
103
104
  // stomping built-in entries. Refusing $PATH / $HOME / OS-special prefixes
@@ -182,7 +183,7 @@ function resolveCredential(varName, env) {
182
183
  } catch { /* not available */ }
183
184
  }
184
185
 
185
- const paths = [join(homeDir, '.construct', 'config.env'), join(homeDir, '.env')];
186
+ const paths = [join(configDir(homeDir), 'config.env'), join(homeDir, '.env')];
186
187
  for (const p of paths) {
187
188
  try {
188
189
  if (existsSync(p)) {
@@ -588,7 +589,7 @@ function handleConfig(req, res) {
588
589
  const { type, content } = JSON.parse(body || '{}');
589
590
  if (type !== 'env' && type !== 'embed') throw new Error('type must be env or embed');
590
591
  if (typeof content !== 'string') throw new Error('content must be a string');
591
- mkdirSync(join(HOME, '.construct'), { recursive: true });
592
+ mkdirSync(configDir(HOME), { recursive: true });
592
593
  const target = type === 'env' ? CONFIG_ENV_FILE : EMBED_YAML_FILE;
593
594
  writeFileSync(target, content, 'utf8');
594
595
  res.writeHead(200, { 'Content-Type': 'application/json' });
@@ -1200,7 +1201,7 @@ const server = createServer(async (req, res) => {
1200
1201
 
1201
1202
  if (url.pathname === '/api/performance/reviews' && req.method === 'GET') {
1202
1203
  try {
1203
- const dir = join(HOME, '.cx', 'performance-reviews');
1204
+ const dir = join(doctorRoot(), 'performance-reviews');
1204
1205
  if (!existsSync(dir)) {
1205
1206
  res.writeHead(200, { 'Content-Type': 'application/json' });
1206
1207
  res.end(JSON.stringify({ reviews: [], total: 0, mockFiltered: 0, generatorImplemented: false }));
@@ -1327,7 +1328,7 @@ const server = createServer(async (req, res) => {
1327
1328
  if (url.pathname === '/api/mode' && req.method === 'GET') {
1328
1329
  try {
1329
1330
  const env = loadConstructEnv();
1330
- const embedYamlPath = join(HOME, '.construct', 'embed.yaml');
1331
+ const embedYamlPath = join(configDir(HOME), 'embed.yaml');
1331
1332
  const embedStatus = resolveEmbedStatus(env);
1332
1333
 
1333
1334
  // Determine mode based on embed status and configuration
@@ -1374,7 +1375,7 @@ const server = createServer(async (req, res) => {
1374
1375
  parentUrl,
1375
1376
  isEmbedded,
1376
1377
  embedStatus: embedStatus.level,
1377
- embedConfigExists: existsSync(join(HOME, '.construct', 'embed.yaml')),
1378
+ embedConfigExists: existsSync(join(configDir(HOME), 'embed.yaml')),
1378
1379
  capabilities: {
1379
1380
  modeDetection: true,
1380
1381
  snapshotStatus: true,
@@ -1620,7 +1621,7 @@ const server = createServer(async (req, res) => {
1620
1621
  rootDir: ROOT_DIR,
1621
1622
  guidance: INTAKE_DEPTH_GUIDANCE,
1622
1623
  hardMaxDepth: INTAKE_HARD_MAX_DEPTH,
1623
- defaults: { projectInbox: '.cx/inbox', docsIntake: 'docs/intake', rootInbox: 'inbox/' },
1624
+ defaults: { rootInbox: 'inbox/' },
1624
1625
  label: rebrand.intakeQueueLabel,
1625
1626
  itemNoun: rebrand.signalNoun,
1626
1627
  }));
@@ -1780,7 +1781,7 @@ const server = createServer(async (req, res) => {
1780
1781
 
1781
1782
  if (url.pathname === '/api/providers/subscriptions' && req.method === 'GET') {
1782
1783
  try {
1783
- const file = join(HOME, '.construct', 'provider-subscriptions.json');
1784
+ const file = join(configDir(HOME), 'provider-subscriptions.json');
1784
1785
  let data = { subscriptions: [] };
1785
1786
  if (existsSync(file)) {
1786
1787
  try { data = JSON.parse(readFileSync(file, 'utf8')); } catch { /* fall back to empty */ }
@@ -1810,7 +1811,7 @@ const server = createServer(async (req, res) => {
1810
1811
  res.writeHead(200, { 'Content-Type': 'application/json' });
1811
1812
  res.end(JSON.stringify({
1812
1813
  envPath: CONFIG_ENV_FILE,
1813
- overridesPath: join(HOME, '.construct', 'providers.json'),
1814
+ overridesPath: join(configDir(HOME), 'providers.json'),
1814
1815
  }));
1815
1816
  return;
1816
1817
  }
@@ -2298,7 +2299,7 @@ const server = createServer(async (req, res) => {
2298
2299
  if (!resolved) throw new Error('op read returned an empty value');
2299
2300
 
2300
2301
  const { writeEnvValues, loadConstructEnv } = await import('../env-config.mjs');
2301
- mkdirSync(join(HOME, '.construct'), { recursive: true });
2302
+ mkdirSync(configDir(HOME), { recursive: true });
2302
2303
  writeEnvValues(CONFIG_ENV_FILE, { [envVar]: resolved });
2303
2304
  process.env[envVar] = resolved;
2304
2305
  try { chmodSync(CONFIG_ENV_FILE, 0o600); } catch { /* perms best-effort */ }
@@ -2310,7 +2311,7 @@ const server = createServer(async (req, res) => {
2310
2311
  }
2311
2312
 
2312
2313
  try {
2313
- mkdirSync(join(HOME, '.cx'), { recursive: true });
2314
+ mkdirSync(doctorRoot(), { recursive: true });
2314
2315
  appendFileSync(CREDENTIAL_AUDIT_FILE, JSON.stringify({ ts: new Date().toISOString(), action: 'set', envVar, source: '1password', opRef }) + '\n');
2315
2316
  } catch { /* audit best-effort */ }
2316
2317
 
@@ -2367,9 +2368,6 @@ const server = createServer(async (req, res) => {
2367
2368
  const next = saveIntakeConfig(ROOT_DIR, {
2368
2369
  parentDirs: Array.isArray(data.parentDirs) ? data.parentDirs : undefined,
2369
2370
  maxDepth: data.maxDepth,
2370
- includeProjectInbox: data.includeProjectInbox,
2371
- includeDocsIntake: data.includeDocsIntake,
2372
- includeRootInbox: data.includeRootInbox ?? data.includeArchetypeInbox,
2373
2371
  });
2374
2372
  res.writeHead(200, { 'Content-Type': 'application/json' });
2375
2373
  res.end(JSON.stringify({ success: true, config: next }));
@@ -2406,7 +2404,7 @@ const server = createServer(async (req, res) => {
2406
2404
  }
2407
2405
  } else if (url.pathname === '/api/providers/registry') {
2408
2406
  const { BUILT_INS } = await import('../providers/registry.mjs');
2409
- const overridesPath = join(HOME, '.construct', 'providers.json');
2407
+ const overridesPath = join(configDir(HOME), 'providers.json');
2410
2408
  const { action, id, package: pkg, options } = data;
2411
2409
  if (!id || typeof id !== 'string' || !/^[\w-]+$/.test(id)) throw new Error('Invalid provider id');
2412
2410
  if (BUILT_INS.includes(id)) throw new Error(`cannot override built-in provider '${id}'`);
@@ -2432,7 +2430,7 @@ const server = createServer(async (req, res) => {
2432
2430
  throw new Error('action must be save or delete');
2433
2431
  }
2434
2432
 
2435
- mkdirSync(join(HOME, '.construct'), { recursive: true });
2433
+ mkdirSync(configDir(HOME), { recursive: true });
2436
2434
  const tmp = overridesPath + '.tmp';
2437
2435
  writeFileSync(tmp, JSON.stringify(current, null, 2) + '\n');
2438
2436
  renameSync(tmp, overridesPath);
@@ -2460,7 +2458,7 @@ const server = createServer(async (req, res) => {
2460
2458
  if (value !== '' && typeof value !== 'string') throw new Error('value must be a string');
2461
2459
 
2462
2460
  const { writeEnvValues, parseEnvFile, loadConstructEnv } = await import('../env-config.mjs');
2463
- mkdirSync(join(HOME, '.construct'), { recursive: true });
2461
+ mkdirSync(configDir(HOME), { recursive: true });
2464
2462
  const action = value === '' ? 'unset' : 'set';
2465
2463
 
2466
2464
  if (action === 'unset') {
@@ -2480,7 +2478,7 @@ const server = createServer(async (req, res) => {
2480
2478
  }
2481
2479
 
2482
2480
  try {
2483
- mkdirSync(join(HOME, '.cx'), { recursive: true });
2481
+ mkdirSync(doctorRoot(), { recursive: true });
2484
2482
  appendFileSync(CREDENTIAL_AUDIT_FILE, JSON.stringify({ ts: new Date().toISOString(), action, envVar }) + '\n');
2485
2483
  } catch { /* audit append best-effort */ }
2486
2484
 
@@ -2488,7 +2486,7 @@ const server = createServer(async (req, res) => {
2488
2486
  res.end(JSON.stringify({ success: true }));
2489
2487
  notifyClients();
2490
2488
  } else if (url.pathname === '/api/providers/subscriptions') {
2491
- const subsPath = join(HOME, '.construct', 'provider-subscriptions.json');
2489
+ const subsPath = join(configDir(HOME), 'provider-subscriptions.json');
2492
2490
  const { action, id, provider, name, config } = data;
2493
2491
  if (!id || typeof id !== 'string' || !/^[\w.-]+$/.test(id)) throw new Error('Invalid subscription id');
2494
2492
 
@@ -2509,7 +2507,7 @@ const server = createServer(async (req, res) => {
2509
2507
  throw new Error('action must be save or delete');
2510
2508
  }
2511
2509
 
2512
- mkdirSync(join(HOME, '.construct'), { recursive: true });
2510
+ mkdirSync(configDir(HOME), { recursive: true });
2513
2511
  const tmp = subsPath + '.tmp';
2514
2512
  writeFileSync(tmp, JSON.stringify(current, null, 2) + '\n');
2515
2513
  renameSync(tmp, subsPath);
@@ -15,6 +15,7 @@ import path from 'node:path';
15
15
  import { spawnSync } from 'node:child_process';
16
16
  import { readCostLog, summarizeCostData } from '../cost.mjs';
17
17
  import { getRebrand } from '../profiles/rebrand.mjs';
18
+ import { configDir, doctorRoot } from '../config/xdg.mjs';
18
19
 
19
20
  const TELEMETRY_TIMEOUT_MS = 3500;
20
21
 
@@ -82,7 +83,7 @@ async function fetchTelemetrySummary(env, { limit = 100 } = {}) {
82
83
  // Fallback: read from local .cx/traces/ when Telemetry is unreachable or not configured.
83
84
  // The daemon always writes heartbeat, lifecycle, and probe events to local JSONL files.
84
85
  try {
85
- const traceDir = path.join(os.homedir(), '.cx', 'traces');
86
+ const traceDir = path.join(doctorRoot(), 'traces');
86
87
  if (!fs.existsSync(traceDir)) return { state: 'empty', message: 'No local traces. Start the daemon with `construct dev`.' };
87
88
  const files = fs.readdirSync(traceDir).filter(f => f.endsWith('.jsonl')).sort().reverse();
88
89
  if (!files.length) return { state: 'empty', message: 'No local trace files.' };
@@ -412,7 +413,7 @@ function resolveModelCredential(primaryKey, altKey) {
412
413
  } catch { /* not available */ }
413
414
  }
414
415
 
415
- const paths = [path.join(homeDir, '.construct', 'config.env'), path.join(homeDir, '.env')];
416
+ const paths = [path.join(configDir(homeDir), 'config.env'), path.join(homeDir, '.env')];
416
417
  for (const p of paths) {
417
418
  try {
418
419
  if (!fs.existsSync(p)) continue;
@@ -619,7 +620,7 @@ async function summarizeTelemetryLatency(env, { days = 7, limit = 50 } = {}) {
619
620
 
620
621
  function summarizeRetrievalEval(homeDir = os.homedir()) {
621
622
  try {
622
- const cachePath = path.join(homeDir, '.cx', 'evals', 'retrieval-latest.json');
623
+ const cachePath = path.join(doctorRoot(homeDir), 'evals', 'retrieval-latest.json');
623
624
  if (!fs.existsSync(cachePath)) {
624
625
  return {
625
626
  state: 'empty',
@@ -630,7 +631,7 @@ function summarizeRetrievalEval(homeDir = os.homedir()) {
630
631
  const r = cached.report?.summary || cached.report || {};
631
632
  let history = [];
632
633
  try {
633
- const historyPath = path.join(homeDir, '.cx', 'evals', 'retrieval-history.jsonl');
634
+ const historyPath = path.join(doctorRoot(homeDir), 'evals', 'retrieval-history.jsonl');
634
635
  if (fs.existsSync(historyPath)) {
635
636
  const lines = fs.readFileSync(historyPath, 'utf8').split('\n').filter(Boolean);
636
637
  history = lines.slice(-30).map((l) => { try { return JSON.parse(l); } catch { return null; } }).filter(Boolean);
@@ -38,6 +38,7 @@ import { existsSync, readFileSync } from 'fs';
38
38
  import { join } from 'path';
39
39
  import { fileURLToPath } from 'url';
40
40
  import { homedir as osHomedir } from 'os';
41
+ import { configDir } from '../config/xdg.mjs';
41
42
 
42
43
  const __dirname = fileURLToPath(new URL('.', import.meta.url));
43
44
  const ROOT_DIR = join(__dirname, '..', '..');
@@ -282,7 +283,7 @@ async function postSlackMessage(responseUrl, text, botToken) {
282
283
  * Load config.env values as an object.
283
284
  */
284
285
  function loadConfigEnv() {
285
- const envFile = join(HOME, '.construct', 'config.env');
286
+ const envFile = join(configDir(HOME), 'config.env');
286
287
  if (!existsSync(envFile)) return {};
287
288
  const lines = readFileSync(envFile, 'utf8').split('\n');
288
289
  const out = {};
@@ -20,13 +20,15 @@ import { resolveTraceBackend, telemetryProviderLabel } from './telemetry/client.
20
20
  import { memoryPort as derivedMemoryPort } from './home-namespace.mjs';
21
21
  import { readHeartbeat } from './daemons/contract.mjs';
22
22
  import { heartbeatPath } from './oracle/index.mjs';
23
+ import { stateDir } from './config/xdg.mjs';
24
+ import { doctorRoot } from './config/xdg.mjs';
23
25
 
24
26
  const DASHBOARD_STATE_FILE = 'dashboard.json';
25
27
 
26
28
  const INSTALL_ROOT = path.join(path.dirname(fileURLToPath(import.meta.url)), '..');
27
29
 
28
30
  function runtimeStateDir(homeDir = os.homedir()) {
29
- return path.join(homeDir, '.construct', 'runtime');
31
+ return path.join(stateDir(homeDir), 'runtime');
30
32
  }
31
33
 
32
34
  function dashboardStatePath(homeDir = os.homedir()) {
@@ -84,7 +86,7 @@ export function buildRuntimeRecoverySummary({ rootDir, homeDir = os.homedir(), r
84
86
  latestHandoff: relativeOrNull(rootDir, latestHandoffPath(rootDir)),
85
87
  beads: fs.existsSync(path.join(rootDir, '.beads', 'metadata.json')) ? '.beads/metadata.json' : null,
86
88
  userConfig: fs.existsSync(getUserEnvPath(homeDir)) ? getUserEnvPath(homeDir) : null,
87
- userDataRoot: env.CX_DATA_DIR || path.join(homeDir, '.cx'),
89
+ userDataRoot: env.CX_DATA_DIR || doctorRoot(homeDir),
88
90
  };
89
91
 
90
92
  return {
@@ -215,7 +217,7 @@ export function stopDashboard(homeDir = os.homedir()) {
215
217
  }
216
218
 
217
219
  function doctorStatePath(homeDir) {
218
- return path.join(homeDir, '.construct', 'doctor.json');
220
+ return path.join(stateDir(homeDir), 'doctor.json');
219
221
  }
220
222
 
221
223
  export function readDoctorState(homeDir = os.homedir()) {
package/lib/setup.mjs CHANGED
@@ -22,6 +22,7 @@ import path from 'node:path';
22
22
  import { spawn, spawnSync } from 'node:child_process';
23
23
 
24
24
  import { ensureUserConfigDir, getUserEnvPath, writeEnvValues } from './env-config.mjs';
25
+ import { configDir, stateDir, doctorRoot } from './config/xdg.mjs';
25
26
  import { DEFAULT_WORKSPACE_PATH, WORKSPACE_DOCS_LANES } from './embed/config.mjs';
26
27
  import {
27
28
  DEFAULT_DEPLOYMENT_MODE,
@@ -97,7 +98,7 @@ function findCommand(command) {
97
98
 
98
99
  export function defaultVectorIndexPath(homeDir = HOME) {
99
100
  // LanceDB storage path
100
- return path.join(homeDir, '.construct', 'vector', 'lancedb');
101
+ return path.join(stateDir(homeDir), 'vector', 'lancedb');
101
102
  }
102
103
 
103
104
  export async function buildManagedSetupValues({ homeDir = HOME, env = process.env } = {}) {
@@ -266,7 +267,7 @@ function ensureOpenCodeConfig() {
266
267
  export { ensureGitHooksPath } from './git-hooks-path.mjs';
267
268
 
268
269
  export function ensureLibSymlink({ homeDir = HOME, rootDir = ROOT_DIR } = {}) {
269
- const target = path.join(homeDir, '.construct', 'lib');
270
+ const target = path.join(configDir(homeDir), 'lib');
270
271
  const source = path.join(rootDir, 'lib');
271
272
  fs.mkdirSync(path.dirname(target), { recursive: true });
272
273
  let stat = null;
@@ -348,12 +349,12 @@ function printInstallPlan({ scope, homeDir, withDocling, noLaunchAgent, cleanupL
348
349
  console.log('\nWould write:');
349
350
  console.log(` · ${getUserEnvPath(homeDir)} (user config, managed defaults)`);
350
351
  console.log(` · ${getCanonicalOpenCodeConfigPath(homeDir)} (OpenCode config)`);
351
- console.log(` · ${path.join(homeDir, '.construct', 'lib')} → ${path.join(ROOT_DIR, 'lib')} (hook lib symlink)`);
352
- console.log(` · ${path.join(homeDir, '.construct', 'workspace')} (workspace docs scaffold)`);
352
+ console.log(` · ${path.join(configDir(homeDir), 'lib')} → ${path.join(ROOT_DIR, 'lib')} (hook lib symlink)`);
353
+ console.log(` · ${path.join(stateDir(homeDir), 'workspace')} (workspace docs scaffold)`);
353
354
  console.log(` · ${path.dirname(defaultVectorIndexPath(homeDir))} (LanceDB vector store dir)`);
354
355
  console.log('\nWould check / install runtime tooling:');
355
356
  console.log(' · cm (memory CLI) and cass (session search) when available on PATH');
356
- console.log(' · construct-chat desktop binary (from GitHub releases → ~/.construct/bin/)');
357
+ console.log(` · construct-chat desktop binary (from GitHub releases → ${path.join(stateDir(homeDir), 'bin')})`);
357
358
  console.log('\nWould reach the network / external services:');
358
359
  console.log(' · embedding model warmup (loads from local cache; offline-safe, no download)');
359
360
  if (withDocling) console.log(' · docling Python venv provisioning via uv (~10 min)');
@@ -587,7 +588,7 @@ export async function runSetup({ rootDir = ROOT_DIR, args = [], homeDir = HOME }
587
588
  runConstruct(['doctor']);
588
589
 
589
590
  const setupTs = new Date().toISOString().slice(0, 19).replace(/[:.]/g, '-');
590
- const setupLogPath = path.join(HOME, '.cx', `setup-${setupTs}.log`);
591
+ const setupLogPath = path.join(doctorRoot(), `setup-${setupTs}.log`);
591
592
  try {
592
593
  fs.mkdirSync(path.dirname(setupLogPath), { recursive: true });
593
594
  const logLines = [
@@ -605,7 +606,7 @@ export async function runSetup({ rootDir = ROOT_DIR, args = [], homeDir = HOME }
605
606
  console.log(' Traces: local JSONL (.cx/traces)');
606
607
  console.log(` Vector: LanceDB (embedded)`);
607
608
  console.log(` ${managedValues.CONSTRUCT_LANCEDB_PATH}`);
608
- console.log(' Credentials are saved to ~/.construct/config.env for later reference.');
609
+ console.log(` Credentials are saved to ${getUserEnvPath(homeDir)} for later reference.`);
609
610
 
610
611
  console.log('\nNext steps:');
611
612
  console.log(' construct provider add github # Connect GitHub repository data');
@@ -621,7 +622,7 @@ function ensureUserConfig(homeDir = HOME) {
621
622
  }
622
623
 
623
624
  export function ensureWorkspace(homeDir = HOME) {
624
- const wsPath = path.join(homeDir, '.construct', 'workspace');
625
+ const wsPath = path.join(stateDir(homeDir), 'workspace');
625
626
  const docsPath = path.join(wsPath, 'docs');
626
627
  for (const lane of WORKSPACE_DOCS_LANES) {
627
628
  fs.mkdirSync(path.join(docsPath, lane), { recursive: true });
package/lib/status.mjs CHANGED
@@ -22,6 +22,7 @@ import { readCostLog, summarizeCostData, normalizeCostEntry } from './cost.mjs';
22
22
  import { readEfficiencyLog, summarizeEfficiencyData } from './efficiency.mjs';
23
23
  import { triggerAutoBackfillIfSparse } from './telemetry/backfill.mjs';
24
24
  import { resolveTraceBackend, telemetryProviderLabel } from './telemetry/client.mjs';
25
+ import { doctorRoot } from './config/xdg.mjs';
25
26
  const TOTAL_BYTES_WARNING_THRESHOLD = 750_000;
26
27
 
27
28
  function readJSON(path) {
@@ -35,7 +36,7 @@ function readJSON(path) {
35
36
 
36
37
 
37
38
  function readSessionEfficiency(homeDir) {
38
- const stats = readJSON(join(homeDir, '.cx', 'session-efficiency.json'));
39
+ const stats = readJSON(join(doctorRoot(homeDir), 'session-efficiency.json'));
39
40
  if (!stats) return null;
40
41
 
41
42
  const readCount = Number(stats.readCount || 0);
@@ -85,7 +86,7 @@ function readSessionEfficiency(homeDir) {
85
86
  }
86
87
 
87
88
  function readTelemetryRichness(homeDir) {
88
- const stats = readJSON(join(homeDir, '.cx', 'session-telemetry.json'));
89
+ const stats = readJSON(join(doctorRoot(homeDir), 'session-telemetry.json'));
89
90
  if (!stats) return null;
90
91
 
91
92
  const total = Number(stats.total || 0);
@@ -134,7 +135,7 @@ export function readSessionUsage(homeDir) {
134
135
  totalCostUsd: 0,
135
136
  summary: 'No token usage recorded yet',
136
137
  lastInteraction: null,
137
- source: join(homeDir, '.cx', 'session-cost.jsonl'),
138
+ source: join(doctorRoot(homeDir), 'session-cost.jsonl'),
138
139
  lastUpdatedAt: null,
139
140
  };
140
141
  }
@@ -180,7 +181,7 @@ export function readSessionUsage(homeDir) {
180
181
  totalCostUsd: data.totalCostUsd,
181
182
  summary: `${data.interactions} interaction${data.interactions === 1 ? '' : 's'} · ${data.providerTotalTokens.toLocaleString()} provider · ${billed.toLocaleString()} billed (${cacheReadPct}% cache read · ${cacheWritePct}% cache write · ${freshPct}% fresh)`,
182
183
  lastInteraction,
183
- source: join(homeDir, '.cx', 'session-cost.jsonl'),
184
+ source: join(doctorRoot(homeDir), 'session-cost.jsonl'),
184
185
  lastUpdatedAt: lastInteraction.timestamp,
185
186
  };
186
187
  }
@@ -577,7 +578,7 @@ function buildSelfCheck() {
577
578
 
578
579
  // Embed daemon state
579
580
  try {
580
- const stateFile = join(homedir(), '.cx', 'runtime', 'embed-daemon.json');
581
+ const stateFile = join(doctorRoot(), 'runtime', 'embed-daemon.json');
581
582
  if (existsSync(stateFile)) {
582
583
  const state = JSON.parse(readFileSync(stateFile, 'utf8'));
583
584
  if (state.status === 'running' && state.pid) {
@@ -10,9 +10,10 @@
10
10
  * Model: Xenova/all-MiniLM-L6-v2 (384 dimensions, quantized)
11
11
  */
12
12
  import { join } from 'node:path';
13
- import { homedir } from 'node:os';
14
13
  import { mkdirSync, existsSync } from 'node:fs';
15
14
 
15
+ import { cacheDir as xdgCacheDir } from '../config/xdg.mjs';
16
+
16
17
  let modelPromise = null;
17
18
  let extractor = null;
18
19
 
@@ -23,7 +24,7 @@ async function getExtractor(cacheDir) {
23
24
  if (extractor) return extractor;
24
25
  if (modelPromise) return modelPromise;
25
26
 
26
- const cachePath = cacheDir || join(homedir(), '.construct', 'cache', 'embeddings');
27
+ const cachePath = cacheDir || join(xdgCacheDir(), 'embeddings');
27
28
  if (!existsSync(cachePath)) {
28
29
  mkdirSync(cachePath, { recursive: true });
29
30
  }
@@ -40,7 +40,7 @@ function toDocumentRows(rootDir, snapshot, project = 'construct') {
40
40
  title: 'Architecture docs',
41
41
  summary: body.slice(0, 240),
42
42
  body,
43
- source_path: 'docs/concepts/architecture.md',
43
+ source_path: 'docs/guides/concepts/architecture.md',
44
44
  tags: ['architecture', 'docs'],
45
45
  content_hash: hashContent(body),
46
46
  });
@@ -64,7 +64,7 @@ function toDocumentRows(rootDir, snapshot, project = 'construct') {
64
64
  for (const doc of snapshot.productIntelDocs ?? []) {
65
65
  const body = doc.body;
66
66
  const rel = doc.path;
67
- const kind = rel.startsWith('docs/prd/')
67
+ const kind = rel.startsWith('docs/specs/prd/')
68
68
  ? 'prd'
69
69
  : rel.startsWith('docs/meta-prd/')
70
70
  ? 'meta-prd'