vigiles 2.6.0 → 4.0.0

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 (205) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/.claude-plugin/plugin.json +11 -2
  3. package/README.md +76 -129
  4. package/action.yml +144 -8
  5. package/dist/action-gate.d.ts +1 -1
  6. package/dist/action-gate.js +1 -1
  7. package/dist/adapter-conformance.d.ts +30 -0
  8. package/dist/adapter-conformance.js +153 -0
  9. package/dist/adapter-registry.d.ts +42 -0
  10. package/dist/adapter-registry.js +55 -0
  11. package/dist/adapter.d.ts +26 -0
  12. package/dist/adapter.js +16 -0
  13. package/dist/adapters/claude-code/adapter.d.ts +3 -0
  14. package/dist/adapters/claude-code/adapter.js +46 -0
  15. package/dist/{agent-result.d.ts → adapters/claude-code/agent-result.d.ts} +1 -1
  16. package/dist/adapters/claude-code/dialect.d.ts +13 -0
  17. package/dist/adapters/claude-code/dialect.js +51 -0
  18. package/dist/adapters/claude-code/egress-entry.d.ts +2 -0
  19. package/dist/adapters/claude-code/egress-entry.js +115 -0
  20. package/dist/adapters/claude-code/egress.d.ts +114 -0
  21. package/dist/adapters/claude-code/egress.js +276 -0
  22. package/dist/{eval-cache.d.ts → adapters/claude-code/eval-cache.d.ts} +1 -1
  23. package/dist/{eval-cache.js → adapters/claude-code/eval-cache.js} +1 -1
  24. package/dist/{eval.d.ts → adapters/claude-code/eval.d.ts} +28 -4
  25. package/dist/{eval.js → adapters/claude-code/eval.js} +61 -25
  26. package/dist/{harness-test.d.ts → adapters/claude-code/harness-test.d.ts} +33 -37
  27. package/dist/{harness-test.js → adapters/claude-code/harness-test.js} +124 -43
  28. package/dist/adapters/claude-code/hook-protocol.d.ts +10 -0
  29. package/dist/adapters/claude-code/hook-protocol.js +10 -0
  30. package/dist/adapters/claude-code/layout.d.ts +8 -0
  31. package/dist/adapters/claude-code/layout.js +18 -0
  32. package/dist/{mock-model.d.ts → adapters/claude-code/mock-model.d.ts} +2 -24
  33. package/dist/adapters/claude-code/model-mock.d.ts +11 -0
  34. package/dist/adapters/claude-code/model-mock.js +10 -0
  35. package/dist/adapters/claude-code/plugin-loader.d.ts +25 -0
  36. package/dist/adapters/claude-code/plugin-loader.js +19 -0
  37. package/dist/{run-hook.d.ts → adapters/claude-code/run-hook.d.ts} +50 -3
  38. package/dist/{run-hook.js → adapters/claude-code/run-hook.js} +178 -18
  39. package/dist/adapters/claude-code/run-scripts.d.ts +52 -0
  40. package/dist/adapters/claude-code/run-scripts.js +150 -0
  41. package/dist/adapters/claude-code/runtime.d.ts +16 -0
  42. package/dist/adapters/claude-code/runtime.js +39 -0
  43. package/dist/{sandbox.d.ts → adapters/claude-code/sandbox.d.ts} +10 -0
  44. package/dist/{sandbox.js → adapters/claude-code/sandbox.js} +5 -3
  45. package/dist/{skill-driver.d.ts → adapters/claude-code/skill-driver.d.ts} +1 -1
  46. package/dist/adapters/codex/adapter.d.ts +3 -0
  47. package/dist/adapters/codex/adapter.js +49 -0
  48. package/dist/adapters/codex/dialect.d.ts +10 -0
  49. package/dist/adapters/codex/dialect.js +30 -0
  50. package/dist/adapters/codex/driver.d.ts +20 -0
  51. package/dist/adapters/codex/driver.js +89 -0
  52. package/dist/adapters/codex/hook-protocol.d.ts +10 -0
  53. package/dist/adapters/codex/hook-protocol.js +18 -0
  54. package/dist/adapters/codex/layout.d.ts +16 -0
  55. package/dist/adapters/codex/layout.js +18 -0
  56. package/dist/adapters/codex/mock-model.d.ts +52 -0
  57. package/dist/adapters/codex/mock-model.js +210 -0
  58. package/dist/adapters/codex/model-mock.d.ts +11 -0
  59. package/dist/adapters/codex/model-mock.js +10 -0
  60. package/dist/adapters/codex/runtime.d.ts +38 -0
  61. package/dist/adapters/codex/runtime.js +62 -0
  62. package/dist/adapters/opencode/adapter.d.ts +3 -0
  63. package/dist/adapters/opencode/adapter.js +48 -0
  64. package/dist/adapters/opencode/dialect.d.ts +10 -0
  65. package/dist/adapters/opencode/dialect.js +36 -0
  66. package/dist/adapters/opencode/layout.d.ts +9 -0
  67. package/dist/adapters/opencode/layout.js +25 -0
  68. package/dist/adapters/opencode/model-mock.d.ts +10 -0
  69. package/dist/adapters/opencode/model-mock.js +10 -0
  70. package/dist/adapters/opencode/runtime.d.ts +9 -0
  71. package/dist/adapters/opencode/runtime.js +21 -0
  72. package/dist/claude-code.d.ts +8 -2
  73. package/dist/claude-code.js +8 -2
  74. package/dist/cli-flags.d.ts +22 -0
  75. package/dist/cli-flags.js +38 -0
  76. package/dist/cli.d.ts +1 -1
  77. package/dist/cli.js +670 -245
  78. package/dist/codex.d.ts +20 -0
  79. package/dist/codex.js +36 -0
  80. package/dist/community-skills.d.ts +1 -1
  81. package/dist/community-skills.js +2 -2
  82. package/dist/core/adapter.d.ts +88 -0
  83. package/dist/core/adapter.js +3 -0
  84. package/dist/{compile.d.ts → core/compile.d.ts} +11 -2
  85. package/dist/{compile.js → core/compile.js} +68 -53
  86. package/dist/core/compose.d.ts +79 -0
  87. package/dist/core/compose.js +145 -0
  88. package/dist/core/dialect.d.ts +51 -0
  89. package/dist/core/dialect.js +3 -0
  90. package/dist/core/harness-driver.d.ts +134 -0
  91. package/dist/core/harness-driver.js +3 -0
  92. package/dist/core/hook-protocol.d.ts +28 -0
  93. package/dist/core/hook-protocol.js +3 -0
  94. package/dist/core/layout.d.ts +43 -0
  95. package/dist/core/layout.js +3 -0
  96. package/dist/core/model-mock.d.ts +27 -0
  97. package/dist/core/model-mock.js +3 -0
  98. package/dist/core/refs.d.ts +62 -0
  99. package/dist/{refs.js → core/refs.js} +49 -23
  100. package/dist/core/runtime.d.ts +38 -0
  101. package/dist/core/runtime.js +3 -0
  102. package/dist/{types.d.ts → core/types.d.ts} +29 -0
  103. package/dist/{validate.d.ts → core/validate.d.ts} +1 -1
  104. package/dist/{validate.js → core/validate.js} +41 -4
  105. package/dist/e2e.d.ts +19 -0
  106. package/dist/e2e.js +39 -0
  107. package/dist/harness-assert.d.ts +29 -14
  108. package/dist/harness-assert.js +37 -10
  109. package/dist/integration.d.ts +16 -0
  110. package/dist/integration.js +32 -0
  111. package/dist/leaderboard.d.ts +33 -0
  112. package/dist/leaderboard.js +107 -0
  113. package/dist/linting.d.ts +2 -2
  114. package/dist/linting.js +2 -2
  115. package/dist/plugin-loader.d.ts +6 -3
  116. package/dist/plugin-loader.js +101 -49
  117. package/dist/scan.d.ts +49 -0
  118. package/dist/scan.js +177 -0
  119. package/dist/setup-plan.d.ts +91 -0
  120. package/dist/setup-plan.js +160 -0
  121. package/dist/skill-test.d.ts +1 -1
  122. package/dist/skill-test.js +1 -1
  123. package/dist/test-coverage.d.ts +71 -0
  124. package/dist/test-coverage.js +228 -0
  125. package/dist/testing.d.ts +3 -3
  126. package/dist/testing.js +3 -3
  127. package/dist/unit.d.ts +17 -0
  128. package/dist/unit.js +36 -0
  129. package/hooks/refs-nudge.sh +24 -0
  130. package/package.json +30 -15
  131. package/skills/edit-spec/SKILL.md +131 -0
  132. package/skills/generate-rule/SKILL.md +64 -0
  133. package/skills/linter-docs/clippy.md +241 -0
  134. package/skills/linter-docs/eslint.md +384 -0
  135. package/skills/linter-docs/pylint.md +288 -0
  136. package/skills/linter-docs/rubocop.md +277 -0
  137. package/skills/linter-docs/ruff.md +187 -0
  138. package/skills/linter-docs/stylelint.md +247 -0
  139. package/skills/migrate-to-spec/SKILL.md +126 -0
  140. package/skills/strengthen/SKILL.md +168 -0
  141. package/skills/test-harness/SKILL.md +157 -0
  142. package/dist/action.d.ts +0 -7
  143. package/dist/action.js +0 -180
  144. package/dist/refs.d.ts +0 -44
  145. package/dist/run-scripts.d.ts +0 -20
  146. package/dist/run-scripts.js +0 -70
  147. /package/dist/{agent-result.js → adapters/claude-code/agent-result.js} +0 -0
  148. /package/dist/{agent-runtime.d.ts → adapters/claude-code/agent-runtime.d.ts} +0 -0
  149. /package/dist/{agent-runtime.js → adapters/claude-code/agent-runtime.js} +0 -0
  150. /package/dist/{egress-proxy.d.ts → adapters/claude-code/egress-proxy.d.ts} +0 -0
  151. /package/dist/{egress-proxy.js → adapters/claude-code/egress-proxy.js} +0 -0
  152. /package/dist/{eval-baseline.d.ts → adapters/claude-code/eval-baseline.d.ts} +0 -0
  153. /package/dist/{eval-baseline.js → adapters/claude-code/eval-baseline.js} +0 -0
  154. /package/dist/{judge.d.ts → adapters/claude-code/judge.d.ts} +0 -0
  155. /package/dist/{judge.js → adapters/claude-code/judge.js} +0 -0
  156. /package/dist/{mock-entry.d.ts → adapters/claude-code/mock-entry.d.ts} +0 -0
  157. /package/dist/{mock-entry.js → adapters/claude-code/mock-entry.js} +0 -0
  158. /package/dist/{mock-model.js → adapters/claude-code/mock-model.js} +0 -0
  159. /package/dist/{skill-driver.js → adapters/claude-code/skill-driver.js} +0 -0
  160. /package/dist/{skill-runtime.d.ts → adapters/claude-code/skill-runtime.d.ts} +0 -0
  161. /package/dist/{skill-runtime.js → adapters/claude-code/skill-runtime.js} +0 -0
  162. /package/dist/{stats.d.ts → adapters/claude-code/stats.d.ts} +0 -0
  163. /package/dist/{stats.js → adapters/claude-code/stats.js} +0 -0
  164. /package/dist/{compile-generator.d.ts → core/compile-generator.d.ts} +0 -0
  165. /package/dist/{compile-generator.js → core/compile-generator.js} +0 -0
  166. /package/dist/{coverage.d.ts → core/coverage.d.ts} +0 -0
  167. /package/dist/{coverage.js → core/coverage.js} +0 -0
  168. /package/dist/{doc-refs.d.ts → core/doc-refs.d.ts} +0 -0
  169. /package/dist/{doc-refs.js → core/doc-refs.js} +0 -0
  170. /package/dist/{evolve.d.ts → core/evolve.d.ts} +0 -0
  171. /package/dist/{evolve.js → core/evolve.js} +0 -0
  172. /package/dist/{frontmatter.d.ts → core/frontmatter.d.ts} +0 -0
  173. /package/dist/{frontmatter.js → core/frontmatter.js} +0 -0
  174. /package/dist/{generate-schema.d.ts → core/generate-schema.d.ts} +0 -0
  175. /package/dist/{generate-schema.js → core/generate-schema.js} +0 -0
  176. /package/dist/{generate-types.d.ts → core/generate-types.d.ts} +0 -0
  177. /package/dist/{generate-types.js → core/generate-types.js} +0 -0
  178. /package/dist/{hash.d.ts → core/hash.d.ts} +0 -0
  179. /package/dist/{hash.js → core/hash.js} +0 -0
  180. /package/dist/{inline.d.ts → core/inline.d.ts} +0 -0
  181. /package/dist/{inline.js → core/inline.js} +0 -0
  182. /package/dist/{integrity.d.ts → core/integrity.d.ts} +0 -0
  183. /package/dist/{integrity.js → core/integrity.js} +0 -0
  184. /package/dist/{linters.d.ts → core/linters.d.ts} +0 -0
  185. /package/dist/{linters.js → core/linters.js} +0 -0
  186. /package/dist/{mcp.d.ts → core/mcp.d.ts} +0 -0
  187. /package/dist/{mcp.js → core/mcp.js} +0 -0
  188. /package/dist/{orphans.d.ts → core/orphans.d.ts} +0 -0
  189. /package/dist/{orphans.js → core/orphans.js} +0 -0
  190. /package/dist/{proofs.d.ts → core/proofs.d.ts} +0 -0
  191. /package/dist/{proofs.js → core/proofs.js} +0 -0
  192. /package/dist/{session.d.ts → core/session.d.ts} +0 -0
  193. /package/dist/{session.js → core/session.js} +0 -0
  194. /package/dist/{sidecar.d.ts → core/sidecar.d.ts} +0 -0
  195. /package/dist/{sidecar.js → core/sidecar.js} +0 -0
  196. /package/dist/{spec.d.ts → core/spec.d.ts} +0 -0
  197. /package/dist/{spec.js → core/spec.js} +0 -0
  198. /package/dist/{symbols.d.ts → core/symbols.d.ts} +0 -0
  199. /package/dist/{symbols.js → core/symbols.js} +0 -0
  200. /package/dist/{test-utils.d.ts → core/test-utils.d.ts} +0 -0
  201. /package/dist/{test-utils.js → core/test-utils.js} +0 -0
  202. /package/dist/{types.js → core/types.js} +0 -0
  203. /package/{.claude-plugin/hooks → hooks}/post-edit.sh +0 -0
  204. /package/{.claude-plugin/hooks → hooks}/pre-edit.sh +0 -0
  205. /package/{.claude-plugin/hooks → hooks}/session-start.sh +0 -0
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.parseHookOutput = parseHookOutput;
4
4
  exports.decideHook = decideHook;
5
5
  exports.runHookWith = runHookWith;
6
+ exports.egressRoutes = egressRoutes;
6
7
  exports.runHook = runHook;
7
8
  /**
8
9
  * vigiles — the *unit* tier for Claude Code hooks.
@@ -37,6 +38,8 @@ const node_child_process_1 = require("node:child_process");
37
38
  const node_fs_1 = require("node:fs");
38
39
  const node_os_1 = require("node:os");
39
40
  const node_path_1 = require("node:path");
41
+ const hook_protocol_js_1 = require("./hook-protocol.js");
42
+ const egress_js_1 = require("./egress.js");
40
43
  const sandbox_js_1 = require("./sandbox.js");
41
44
  /** Parse stdout as a hook JSON decision (pure, testable without a process). */
42
45
  function parseHookOutput(stdout) {
@@ -54,10 +57,11 @@ function parseHookOutput(stdout) {
54
57
  * Decide whether a hook result blocked, and the normalized decision. Pure, so
55
58
  * the policy is unit-testable independent of spawning anything.
56
59
  */
57
- function decideHook(exitCode, json) {
60
+ function decideHook(exitCode, json, protocol = hook_protocol_js_1.claudeCodeHookProtocol) {
58
61
  const permission = json?.hookSpecificOutput?.permissionDecision;
59
62
  const decision = permission ?? json?.decision;
60
- const blocked = exitCode === 2 || decision === "block" || decision === "deny";
63
+ const blocked = exitCode === protocol.blockExitCode ||
64
+ (decision !== undefined && protocol.denyDecisionValues.includes(decision));
61
65
  return { blocked, decision };
62
66
  }
63
67
  /**
@@ -68,6 +72,41 @@ function decideHook(exitCode, json) {
68
72
  * bwrap. `runHook` is this with the real seams.
69
73
  */
70
74
  function runHookWith(command, input, opts, deps) {
75
+ // Allowlisted egress is its own confined path (bwrap netns + slirp4netns + nft);
76
+ // it can't run unconfined, so it refuses outright when the tooling is absent
77
+ // rather than falling back to a direct run that would ignore the allowlist.
78
+ const res = opts.egress
79
+ ? runEgress(command, input, opts, deps)
80
+ : runConfinedOrDirect(command, input, opts, deps);
81
+ const exitCode = res.status ?? (res.signal ? 1 : 0);
82
+ const stdout = res.stdout ?? "";
83
+ const stderr = res.stderr ?? "";
84
+ const json = parseHookOutput(stdout);
85
+ const { blocked, decision: dec } = decideHook(exitCode, json);
86
+ return {
87
+ exitCode,
88
+ stdout,
89
+ stderr,
90
+ json,
91
+ blocked,
92
+ egress: res.egress ?? [],
93
+ egressDropped: res.egressDropped,
94
+ filesWritten: res.filesWritten ?? [],
95
+ decision: dec,
96
+ };
97
+ }
98
+ /** The allowlisted-egress branch: confine-with-netns, or refuse if unavailable. */
99
+ function runEgress(command, input, opts, deps) {
100
+ if (!deps.egressAvailable) {
101
+ throw new Error("refusing to run egress: { allow } without the allowlist sandbox: it " +
102
+ "needs Linux + bubblewrap (bwrap) + slirp4netns + nft — install them to " +
103
+ "run with a packet-layer egress allowlist, or use recordEgress to record " +
104
+ "and block instead");
105
+ }
106
+ return deps.egress(command, input, opts);
107
+ }
108
+ /** The default branch: pick direct vs. confined via the safe-by-default policy. */
109
+ function runConfinedOrDirect(command, input, opts, deps) {
71
110
  // Confinement follows provenance: a trusted hook (the default) runs directly;
72
111
  // marking a hook untrusted defaults it to "auto" (confine-or-refuse), so
73
112
  // foreign code is never run unconfined by accident. An explicit `sandbox`
@@ -84,24 +123,9 @@ function runHookWith(command, input, opts, deps) {
84
123
  });
85
124
  if (decision.action === "throw")
86
125
  throw new Error(decision.reason);
87
- const res = decision.action === "sandbox"
126
+ return decision.action === "sandbox"
88
127
  ? deps.sandboxed(command, input, opts)
89
128
  : deps.direct(command, input, opts);
90
- const exitCode = res.status ?? (res.signal ? 1 : 0);
91
- const stdout = res.stdout ?? "";
92
- const stderr = res.stderr ?? "";
93
- const json = parseHookOutput(stdout);
94
- const { blocked, decision: dec } = decideHook(exitCode, json);
95
- return {
96
- exitCode,
97
- stdout,
98
- stderr,
99
- json,
100
- blocked,
101
- egress: res.egress ?? [],
102
- filesWritten: res.filesWritten ?? [],
103
- decision: dec,
104
- };
105
129
  }
106
130
  /** Run the hook command directly through a shell (the default, unconfined). */
107
131
  function directSpawn(command, input, opts) {
@@ -238,11 +262,147 @@ function sandboxedSpawn(command, input, opts) {
238
262
  (0, node_fs_1.rmSync)(ioDir, { recursive: true, force: true });
239
263
  }
240
264
  }
265
+ function egressEntry() {
266
+ return ([
267
+ (0, node_path_1.join)(__dirname, "egress-entry.js"),
268
+ (0, node_path_1.join)(__dirname, "..", "dist", "egress-entry.js"),
269
+ ].find((p) => (0, node_fs_1.existsSync)(p)) ?? (0, node_path_1.join)(__dirname, "egress-entry.js"));
270
+ }
271
+ // Runs INSIDE the bwrap netns: block until the parent has attached slirp4netns
272
+ // (the netready file), load the nft allowlist, run the hook with the event on its
273
+ // stdin, then dump the nft counters to a bound file BEFORE exiting — the netns
274
+ // (and its counters) die with this process, so the read-back must happen here.
275
+ const EGRESS_ALLOW_WRAPPER = [
276
+ "i=0",
277
+ 'while [ ! -s "$VIG_NETREADY" ] && [ "$i" -lt 400 ]; do sleep 0.05; i=$((i+1)); done',
278
+ 'nft -f "$VIG_NFT" > "$VIG_IODIR/nfterr" 2>&1',
279
+ 'sh -c "$VIG_HOOK" < "$VIG_EVENT"',
280
+ "code=$?",
281
+ 'nft list chain inet vig output > "$VIG_COUNTERS" 2>/dev/null',
282
+ 'exit "$code"',
283
+ ].join("\n");
284
+ /** Read the orchestrator's result file, or a failed-run default if it's absent. */
285
+ function readEgressResult(resultFile) {
286
+ return (0, node_fs_1.existsSync)(resultFile)
287
+ ? JSON.parse((0, node_fs_1.readFileSync)(resultFile, "utf-8"))
288
+ : { status: 1, signal: null, stdout: "", stderr: "", counters: "" };
289
+ }
290
+ function egressSpawn(command, input, opts) {
291
+ const ioDir = (0, node_fs_1.mkdtempSync)((0, node_path_1.join)((0, node_os_1.tmpdir)(), "vigiles-hook-egr-"));
292
+ const home = (0, node_path_1.join)(ioDir, "home");
293
+ (0, node_fs_1.mkdirSync)(home);
294
+ const work = opts.cwd ?? (0, node_path_1.join)(ioDir, "work");
295
+ (0, node_fs_1.mkdirSync)(work, { recursive: true });
296
+ try {
297
+ // Resolve the allowlist to IPs and the system resolvers, then generate the
298
+ // nft ruleset (pure helpers in src/egress.ts) — the packet-layer wall.
299
+ const files = {
300
+ ioDir,
301
+ netready: (0, node_path_1.join)(ioDir, "netready"),
302
+ nft: (0, node_path_1.join)(ioDir, "rules.nft"),
303
+ event: (0, node_path_1.join)(ioDir, "event.json"),
304
+ counters: (0, node_path_1.join)(ioDir, "counters.txt"),
305
+ };
306
+ const allow = (0, egress_js_1.resolveAllow)(opts.egress?.allow ?? []);
307
+ const resolvers = (0, egress_js_1.parseResolvers)((0, node_fs_1.existsSync)("/etc/resolv.conf")
308
+ ? (0, node_fs_1.readFileSync)("/etc/resolv.conf", "utf-8")
309
+ : "");
310
+ (0, node_fs_1.writeFileSync)(files.nft, (0, egress_js_1.buildEgressNft)({ allow, resolvers }));
311
+ (0, node_fs_1.writeFileSync)(files.event, JSON.stringify(input));
312
+ // The in-netns resolv.conf: only the routable resolvers (the host's may be a
313
+ // 127.0.0.53 stub the netns can't reach). Bound over /etc/resolv.conf below.
314
+ const resolvConf = (0, node_path_1.join)(ioDir, "resolv.conf");
315
+ (0, node_fs_1.writeFileSync)(resolvConf, resolvers.map((r) => `nameserver ${r}`).join("\n") + "\n");
316
+ const bwrapArgv = (0, egress_js_1.buildEgressBwrapArgv)({
317
+ base: (0, sandbox_js_1.bwrapArgs)({
318
+ cwd: work,
319
+ ioDir,
320
+ home,
321
+ path: process.env.PATH ?? "/usr/local/bin:/usr/bin:/bin",
322
+ }),
323
+ setenv: (0, sandbox_js_1.setenvArgs)(opts.env ?? {}),
324
+ files,
325
+ command,
326
+ wrapper: EGRESS_ALLOW_WRAPPER,
327
+ resolvConf,
328
+ });
329
+ const configFile = (0, node_path_1.join)(ioDir, "config.json");
330
+ const resultFile = (0, node_path_1.join)(ioDir, "result.json");
331
+ (0, node_fs_1.writeFileSync)(configFile, JSON.stringify({
332
+ bwrapArgv,
333
+ slirpArgs: ["--configure", "--disable-host-loopback"],
334
+ // --config-net brings up the interface + host-derived routes in the
335
+ // target netns. The connector is slirp4netns by default (proven local);
336
+ // set VIGILES_EGRESS_CONNECTOR=pasta to use pasta (passt), which routes
337
+ // on hosted runners where slirp4netns's tap-attach fails.
338
+ pastaArgs: ["--config-net"],
339
+ connector: process.env.VIGILES_EGRESS_CONNECTOR === "pasta"
340
+ ? "pasta"
341
+ : "slirp4netns",
342
+ infoFile: (0, node_path_1.join)(ioDir, "info.json"),
343
+ readyFile: (0, node_path_1.join)(ioDir, "ready"),
344
+ netreadyFile: files.netready,
345
+ countersFile: files.counters,
346
+ resultFile,
347
+ timeoutMs: opts.timeoutMs ?? 30000,
348
+ }));
349
+ (0, node_child_process_1.spawnSync)("node", [egressEntry(), configFile], {
350
+ encoding: "utf-8",
351
+ timeout: (opts.timeoutMs ?? 30000) + 20000,
352
+ });
353
+ const result = readEgressResult(resultFile);
354
+ const { egress, egressDropped } = (0, egress_js_1.countersToResult)((0, egress_js_1.parseNftCounters)(result.counters), Date.now());
355
+ return {
356
+ status: result.status,
357
+ signal: result.signal,
358
+ stdout: result.stdout,
359
+ stderr: result.stderr,
360
+ egress,
361
+ egressDropped,
362
+ };
363
+ }
364
+ finally {
365
+ (0, node_fs_1.rmSync)(ioDir, { recursive: true, force: true });
366
+ }
367
+ }
241
368
  const REAL_DEPS = {
242
369
  available: (0, sandbox_js_1.sandboxAvailable)(),
370
+ egressAvailable: (0, egress_js_1.egressAvailable)((0, sandbox_js_1.sandboxAvailable)()),
243
371
  direct: directSpawn,
244
372
  sandboxed: sandboxedSpawn,
373
+ egress: egressSpawn,
245
374
  };
375
+ /**
376
+ * Whether allowlisted egress can ACTUALLY route here — not just whether the tools
377
+ * exist. On GitHub-hosted runners bwrap+slirp4netns+nft are all present, yet
378
+ * slirp4netns fails to attach `tap0`: the netns has only `lo`, so nothing leaves
379
+ * and the egress assertions can't be exercised. Run a trivial hook in the egress
380
+ * sandbox and check a non-loopback interface came up; memoized (the capability is
381
+ * fixed per run). Gates the egress e2e tests so they run for real where egress
382
+ * works and SKIP — honestly — where it provably can't, instead of failing red.
383
+ * (slirp4netns → pasta is the fix that makes it route in CI too; see
384
+ * research/egress-sandbox-tooling.md.)
385
+ */
386
+ let egressRoutesMemo;
387
+ function egressRoutes() {
388
+ if (egressRoutesMemo !== undefined)
389
+ return egressRoutesMemo;
390
+ if (!(0, egress_js_1.egressAvailable)((0, sandbox_js_1.sandboxAvailable)()))
391
+ return (egressRoutesMemo = false);
392
+ try {
393
+ // The only reliable signal is the egress path itself: try to reach an
394
+ // allowlisted host and check a packet actually got out. Filesystem probes
395
+ // (/proc/net/dev) and `ip` are unreliable here — bwrap may bind the host
396
+ // /proc (so /proc/net shows host interfaces, a false positive) and `ip` isn't
397
+ // on the sandbox PATH. A real reach is namespace-accurate by construction.
398
+ const r = egressSpawn("curl -s -m 8 -o /dev/null https://example.com/ || true", { hook_event_name: "PreToolUse" }, { egress: { allow: ["example.com"] }, timeoutMs: 20000 });
399
+ egressRoutesMemo = (r.egress ?? []).some((e) => e.host === "example.com" && (e.packets ?? 0) > 0);
400
+ }
401
+ catch {
402
+ egressRoutesMemo = false;
403
+ }
404
+ return egressRoutesMemo;
405
+ }
246
406
  /* v8 ignore stop */
247
407
  /**
248
408
  * Run a hook command, piping `input` as JSON to its stdin, and report the exit
@@ -0,0 +1,52 @@
1
+ export type ScriptStatus = "pass" | "skip" | "fail";
2
+ export interface ScriptRunResult {
3
+ readonly file: string;
4
+ readonly code: number;
5
+ readonly status: ScriptStatus;
6
+ }
7
+ /**
8
+ * Exit code a harness/eval script uses to report itself SKIPPED (e.g. the
9
+ * deterministic tier when `claude` isn't installed) — the autotools convention.
10
+ * The runner surfaces it as a loud `⊘ SKIPPED` instead of a silent `✓`, and a
11
+ * skip never fails the run. Scripts call `skip()` (vigiles/testing) to emit it.
12
+ */
13
+ export declare const SKIP_EXIT_CODE = 77;
14
+ /** Filename extensions accepted for harness/eval scripts (JS and TS). */
15
+ export declare const SCRIPT_EXTS: readonly ["mjs", "cjs", "js", "mts", "cts", "ts"];
16
+ /** Glob suffix matching every accepted script extension, e.g. `harness`. */
17
+ export declare function scriptGlob(kind: "harness" | "eval"): string;
18
+ /** Node runtime capabilities that decide how a TypeScript script is run. */
19
+ export interface NodeCaps {
20
+ /** `tsx` is installed locally (the preferred, version-agnostic TS loader). */
21
+ readonly tsx: boolean;
22
+ /** Node supports `--experimental-strip-types` (>= 22.6). */
23
+ readonly stripTypes: boolean;
24
+ }
25
+ /**
26
+ * The `node` argv (after the binary) to run a single script. Plain JS runs
27
+ * directly; a TypeScript script picks `tsx` when available, else Node's native
28
+ * type stripping. Throws a clear, actionable error when neither is available.
29
+ * Pure — exported for testing.
30
+ */
31
+ export declare function interpreterArgs(file: string, caps: NodeCaps): string[];
32
+ /** Detect TS-running capabilities for a project root. */
33
+ export declare function detectNodeCaps(cwd: string): NodeCaps;
34
+ /**
35
+ * Expand the given path/glob patterns into concrete script files. A pattern
36
+ * that is an existing file passes through unchanged; anything else is treated
37
+ * as a glob. Falls back to `defaultGlob` when no patterns are given. Results
38
+ * are deduped and sorted; `node_modules` and `dist` are always ignored.
39
+ */
40
+ export declare function discoverScripts(patterns: readonly string[], defaultGlob: string, cwd: string): string[];
41
+ /**
42
+ * Run each script as `node <file>`, inheriting stdio so the script's own report
43
+ * streams to the console. `env` is merged over `process.env` for every child
44
+ * (e.g. `VIGILES_TRIALS`). Returns the per-file exit codes.
45
+ */
46
+ export declare function runScripts(files: readonly string[], cwd: string, env?: NodeJS.ProcessEnv): ScriptRunResult[];
47
+ /** Whether any script FAILED (a skip is not a failure). */
48
+ export declare function anyFailed(results: readonly ScriptRunResult[]): boolean;
49
+ /** One line per file + an explicit pass/skip/fail tally. Skips are SHOWN, never
50
+ * folded into "passed" — a `⊘ SKIPPED` is loud, not a silent green. */
51
+ export declare function formatScriptSummary(results: readonly ScriptRunResult[]): string;
52
+ //# sourceMappingURL=run-scripts.d.ts.map
@@ -0,0 +1,150 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SCRIPT_EXTS = exports.SKIP_EXIT_CODE = void 0;
4
+ exports.scriptGlob = scriptGlob;
5
+ exports.interpreterArgs = interpreterArgs;
6
+ exports.detectNodeCaps = detectNodeCaps;
7
+ exports.discoverScripts = discoverScripts;
8
+ exports.runScripts = runScripts;
9
+ exports.anyFailed = anyFailed;
10
+ exports.formatScriptSummary = formatScriptSummary;
11
+ /**
12
+ * vigiles — run harness-test / eval script files via the CLI.
13
+ *
14
+ * `vigiles test` and `vigiles eval` discover `*.harness.*` / `*.eval.*`
15
+ * scripts and run each as a child `node` process, so the two-tier
16
+ * harness-testing API (`src/harness-test.ts`, `src/eval.ts`) works as a CI
17
+ * command, not just `node x.mjs`. Scripts may be authored in **JavaScript**
18
+ * (`.mjs` / `.cjs` / `.js`) **or TypeScript** (`.ts` / `.mts` / `.cts`) — a TS
19
+ * script is run through `tsx` when installed, else Node's built-in type
20
+ * stripping (Node >= 22.6). The scripts import from the built `dist/`, so they
21
+ * also run standalone — the CLI just discovers, runs, and aggregates exit codes.
22
+ */
23
+ const node_child_process_1 = require("node:child_process");
24
+ const node_path_1 = require("node:path");
25
+ const node_fs_1 = require("node:fs");
26
+ const glob_1 = require("glob");
27
+ /**
28
+ * Exit code a harness/eval script uses to report itself SKIPPED (e.g. the
29
+ * deterministic tier when `claude` isn't installed) — the autotools convention.
30
+ * The runner surfaces it as a loud `⊘ SKIPPED` instead of a silent `✓`, and a
31
+ * skip never fails the run. Scripts call `skip()` (vigiles/testing) to emit it.
32
+ */
33
+ exports.SKIP_EXIT_CODE = 77;
34
+ function statusForCode(code) {
35
+ if (code === 0)
36
+ return "pass";
37
+ if (code === exports.SKIP_EXIT_CODE)
38
+ return "skip";
39
+ return "fail";
40
+ }
41
+ /** Filename extensions accepted for harness/eval scripts (JS and TS). */
42
+ exports.SCRIPT_EXTS = ["mjs", "cjs", "js", "mts", "cts", "ts"];
43
+ /** Glob suffix matching every accepted script extension, e.g. `harness`. */
44
+ function scriptGlob(kind) {
45
+ return `**/*.${kind}.{${exports.SCRIPT_EXTS.join(",")}}`;
46
+ }
47
+ const TS_EXT = /\.(?:m|c)?ts$/;
48
+ /**
49
+ * The `node` argv (after the binary) to run a single script. Plain JS runs
50
+ * directly; a TypeScript script picks `tsx` when available, else Node's native
51
+ * type stripping. Throws a clear, actionable error when neither is available.
52
+ * Pure — exported for testing.
53
+ */
54
+ function interpreterArgs(file, caps) {
55
+ if (!TS_EXT.test(file))
56
+ return [file];
57
+ if (caps.tsx)
58
+ return ["--import", "tsx", file];
59
+ if (caps.stripTypes)
60
+ return ["--experimental-strip-types", file];
61
+ throw new Error(`Cannot run TypeScript test script "${file}": install tsx ` +
62
+ `(npm i -D tsx) or use Node >= 22.6, or author it as a .mjs file.`);
63
+ }
64
+ /** Detect TS-running capabilities for a project root. */
65
+ function detectNodeCaps(cwd) {
66
+ const tsx = (0, node_fs_1.existsSync)((0, node_path_1.resolve)(cwd, "node_modules/tsx/package.json")) ||
67
+ (0, node_fs_1.existsSync)((0, node_path_1.resolve)(cwd, "node_modules/.bin/tsx"));
68
+ const stripTypes = process.allowedNodeEnvironmentFlags.has("--experimental-strip-types");
69
+ return { tsx, stripTypes };
70
+ }
71
+ /**
72
+ * Expand the given path/glob patterns into concrete script files. A pattern
73
+ * that is an existing file passes through unchanged; anything else is treated
74
+ * as a glob. Falls back to `defaultGlob` when no patterns are given. Results
75
+ * are deduped and sorted; `node_modules` and `dist` are always ignored.
76
+ */
77
+ function discoverScripts(patterns, defaultGlob, cwd) {
78
+ const globs = patterns.length > 0 ? patterns : [defaultGlob];
79
+ const found = new Set();
80
+ for (const p of globs) {
81
+ if ((0, node_fs_1.existsSync)((0, node_path_1.resolve)(cwd, p))) {
82
+ found.add(p);
83
+ continue;
84
+ }
85
+ for (const m of (0, glob_1.globSync)(p, {
86
+ cwd,
87
+ ignore: ["node_modules/**", "dist/**"],
88
+ })) {
89
+ found.add(m);
90
+ }
91
+ }
92
+ return [...found].sort();
93
+ }
94
+ /**
95
+ * Run each script as `node <file>`, inheriting stdio so the script's own report
96
+ * streams to the console. `env` is merged over `process.env` for every child
97
+ * (e.g. `VIGILES_TRIALS`). Returns the per-file exit codes.
98
+ */
99
+ function runScripts(files, cwd, env = {}) {
100
+ const caps = detectNodeCaps(cwd);
101
+ const results = [];
102
+ for (const file of files) {
103
+ let argv;
104
+ try {
105
+ argv = interpreterArgs(file, caps);
106
+ }
107
+ catch (e) {
108
+ console.error(`✗ ${file}: ${e.message}`);
109
+ results.push({ file, code: 1, status: "fail" });
110
+ continue;
111
+ }
112
+ const res = (0, node_child_process_1.spawnSync)("node", argv, {
113
+ cwd,
114
+ stdio: "inherit",
115
+ env: { ...process.env, ...env },
116
+ });
117
+ const code = res.status ?? 1;
118
+ results.push({ file, code, status: statusForCode(code) });
119
+ }
120
+ return results;
121
+ }
122
+ /** Whether any script FAILED (a skip is not a failure). */
123
+ function anyFailed(results) {
124
+ return results.some((r) => r.status === "fail");
125
+ }
126
+ const MARK = {
127
+ pass: "✓",
128
+ skip: "⊘",
129
+ fail: "✗",
130
+ };
131
+ /** One line per file + an explicit pass/skip/fail tally. Skips are SHOWN, never
132
+ * folded into "passed" — a `⊘ SKIPPED` is loud, not a silent green. */
133
+ function formatScriptSummary(results) {
134
+ const lines = results.map((r) => {
135
+ if (r.status === "skip")
136
+ return ` ⊘ ${r.file} — SKIPPED`;
137
+ if (r.status === "fail")
138
+ return ` ✗ ${r.file} (exit ${String(r.code)})`;
139
+ return ` ${MARK.pass} ${r.file}`;
140
+ });
141
+ const n = (s) => results.filter((r) => r.status === s).length;
142
+ const parts = [`${String(n("pass"))} passed`];
143
+ if (n("skip") > 0)
144
+ parts.push(`${String(n("skip"))} skipped`);
145
+ if (n("fail") > 0)
146
+ parts.push(`${String(n("fail"))} failed`);
147
+ lines.push(`\n${parts.join(", ")}.`);
148
+ return lines.join("\n");
149
+ }
150
+ //# sourceMappingURL=run-scripts.js.map
@@ -0,0 +1,16 @@
1
+ /**
2
+ * claudeCodeRuntime — the Claude Code `HarnessRuntime` (spawn `claude`, reach the
3
+ * mock via `ANTHROPIC_BASE_URL` with a dummy `ANTHROPIC_API_KEY`). The runners
4
+ * (`harness-test.ts`, `eval.ts`) read the binary + env from here instead of
5
+ * hard-coding them; a Codex adapter defines `codexRuntime` and its runner uses it.
6
+ */
7
+ import type { HarnessRuntime } from "../../core/runtime.js";
8
+ export declare const claudeCodeRuntime: HarnessRuntime;
9
+ /**
10
+ * Build the spawn env that points the agent CLI at the mock model: the caller's
11
+ * environment plus the runtime's base-URL var (→ the mock's URL) and a dummy
12
+ * API key. Pure (no spawn), so it's unit-tested directly — the testable seam of
13
+ * the otherwise un-coverable real-subprocess path.
14
+ */
15
+ export declare function mockModelEnv(runtime: HarnessRuntime, baseUrl: string, base?: NodeJS.ProcessEnv): NodeJS.ProcessEnv;
16
+ //# sourceMappingURL=runtime.d.ts.map
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.claudeCodeRuntime = void 0;
4
+ exports.mockModelEnv = mockModelEnv;
5
+ exports.claudeCodeRuntime = {
6
+ name: "claude-code",
7
+ agentBinary: "claude",
8
+ modelBaseUrlEnv: "ANTHROPIC_BASE_URL",
9
+ modelApiKeyEnv: "ANTHROPIC_API_KEY",
10
+ mockApiKey: "sk-vigiles-mock",
11
+ /**
12
+ * Claude Code reaches the mock purely through env (no argv flags): the
13
+ * base-URL var + a dummy key. The returned `env` is the overlay the runner
14
+ * layers over `process.env`, so the spawn env is identical to `mockModelEnv`.
15
+ */
16
+ wireMock(baseUrl) {
17
+ return {
18
+ args: [],
19
+ env: {
20
+ [exports.claudeCodeRuntime.modelBaseUrlEnv]: baseUrl,
21
+ [exports.claudeCodeRuntime.modelApiKeyEnv]: exports.claudeCodeRuntime.mockApiKey,
22
+ },
23
+ };
24
+ },
25
+ };
26
+ /**
27
+ * Build the spawn env that points the agent CLI at the mock model: the caller's
28
+ * environment plus the runtime's base-URL var (→ the mock's URL) and a dummy
29
+ * API key. Pure (no spawn), so it's unit-tested directly — the testable seam of
30
+ * the otherwise un-coverable real-subprocess path.
31
+ */
32
+ function mockModelEnv(runtime, baseUrl, base = process.env) {
33
+ return {
34
+ ...base,
35
+ [runtime.modelBaseUrlEnv]: baseUrl,
36
+ [runtime.modelApiKeyEnv]: runtime.mockApiKey,
37
+ };
38
+ }
39
+ //# sourceMappingURL=runtime.js.map
@@ -79,6 +79,16 @@ export interface EgressAttempt {
79
79
  readonly port: number;
80
80
  /** ms epoch when the attempt was recorded. */
81
81
  readonly ts: number;
82
+ /**
83
+ * Allowlist mode (`egress: { allow }`) only: whether this host was on the
84
+ * allowlist (and so reachable). Undefined for the `recordEgress` proxy, where
85
+ * every attempt is blocked.
86
+ */
87
+ readonly allowed?: boolean;
88
+ /** Allowlist mode: packets the nftables counter recorded for this host. */
89
+ readonly packets?: number;
90
+ /** Allowlist mode: bytes the nftables counter recorded for this host. */
91
+ readonly bytes?: number;
82
92
  }
83
93
  /**
84
94
  * Parse the egress recorder's ndjson log into {@link EgressAttempt}s. Pure, so
@@ -35,6 +35,7 @@ const node_child_process_1 = require("node:child_process");
35
35
  const node_fs_1 = require("node:fs");
36
36
  const node_os_1 = require("node:os");
37
37
  const node_path_1 = require("node:path");
38
+ const runtime_js_1 = require("./runtime.js");
38
39
  let cachedAvailable;
39
40
  /**
40
41
  * Whether this environment can ACTUALLY confine untrusted code under bubblewrap.
@@ -232,9 +233,10 @@ const WRAPPER = [
232
233
  "MOCKPID=$!",
233
234
  "i=0",
234
235
  'while [ ! -s "$VIG_PORT" ] && [ "$i" -lt 200 ]; do sleep 0.05; i=$((i+1)); done',
235
- 'export ANTHROPIC_BASE_URL="http://127.0.0.1:$(cat "$VIG_PORT")"',
236
- "export ANTHROPIC_API_KEY=sk-vigiles-mock",
237
- 'claude "$@"',
236
+ // base-URL / API-key vars + the agent binary come from the runtime port.
237
+ `export ${runtime_js_1.claudeCodeRuntime.modelBaseUrlEnv}="http://127.0.0.1:$(cat "$VIG_PORT")"`,
238
+ `export ${runtime_js_1.claudeCodeRuntime.modelApiKeyEnv}=${runtime_js_1.claudeCodeRuntime.mockApiKey}`,
239
+ `${runtime_js_1.claudeCodeRuntime.agentBinary} "$@"`,
238
240
  "code=$?",
239
241
  'kill "$MOCKPID" 2>/dev/null',
240
242
  'exit "$code"',
@@ -13,7 +13,7 @@
13
13
  * is fed back into the generator). Gates are deterministic and reuse the gate
14
14
  * runtime. This module is the mechanics — fully testable without a live model.
15
15
  */
16
- import type { Gate } from "./spec.js";
16
+ import type { Gate } from "../../core/spec.js";
17
17
  import { type GateOutcome } from "./skill-runtime.js";
18
18
  export type SkillEffect = {
19
19
  readonly kind: "act";
@@ -0,0 +1,3 @@
1
+ import type { HarnessAdapter } from "../../core/adapter.js";
2
+ export declare const codexAdapter: HarnessAdapter;
3
+ //# sourceMappingURL=adapter.d.ts.map
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.codexAdapter = void 0;
4
+ /**
5
+ * codexAdapter — the OpenAI Codex `HarnessAdapter`. Bundles the five Codex ports
6
+ * + a `detect`. SHIPPED: registered in `src/adapter-registry.ts` (the CLI
7
+ * auto-detects a `.codex/config.toml` or `AGENTS.md` repo) and exported as
8
+ * `vigiles/codex`. It passes `assertAdapterConformance`/`assertAdapterLoadsHooks`,
9
+ * drives the compiler + loader against real Codex fixtures (codex.test.ts), and
10
+ * its transport (`mock-model.ts`) is proven against the real `codex` binary.
11
+ *
12
+ * Caveat — pillar 1 (compile) is partial: the instruction/skill *renderers* still
13
+ * emit the Claude-Code shape until the format-axis renderers land
14
+ * (`research/code-adapter-architecture.md`). Pillar 2 (harness testing) is full.
15
+ */
16
+ const node_fs_1 = require("node:fs");
17
+ const node_path_1 = require("node:path");
18
+ const dialect_js_1 = require("./dialect.js");
19
+ const layout_js_1 = require("./layout.js");
20
+ const runtime_js_1 = require("./runtime.js");
21
+ const hook_protocol_js_1 = require("./hook-protocol.js");
22
+ const model_mock_js_1 = require("./model-mock.js");
23
+ const driver_js_1 = require("./driver.js");
24
+ exports.codexAdapter = {
25
+ name: "codex",
26
+ // Full convergence with Claude Code: mockable (Responses SSE) + shell hooks
27
+ // with veto (permissionDecision/exit 2). Both pillars, all tiers.
28
+ capabilities: {
29
+ referenceVerification: true,
30
+ harnessTesting: true,
31
+ shellHooks: true,
32
+ },
33
+ dialect: dialect_js_1.codexDialect,
34
+ layout: layout_js_1.codexLayout,
35
+ runtime: runtime_js_1.codexRuntime,
36
+ hookProtocol: hook_protocol_js_1.codexHookProtocol,
37
+ modelMock: model_mock_js_1.codexModelMock,
38
+ harnessTestDriver: driver_js_1.codexDriver,
39
+ detect(root) {
40
+ // A `.codex/config.toml` is a strong signal; a bare AGENTS.md is weak (many
41
+ // harnesses read it). (Unused while unregistered — kept for symmetry.)
42
+ if ((0, node_fs_1.existsSync)((0, node_path_1.join)(root, ".codex", "config.toml")))
43
+ return 3;
44
+ if ((0, node_fs_1.existsSync)((0, node_path_1.join)(root, layout_js_1.codexLayout.instructionFile)))
45
+ return 1;
46
+ return 0;
47
+ },
48
+ };
49
+ //# sourceMappingURL=adapter.js.map
@@ -0,0 +1,10 @@
1
+ /**
2
+ * codexDialect — EXPERIMENTAL, internal-only. A prototype `HarnessDialect` for
3
+ * OpenAI Codex, built from the mid-2026 research (research/harness-landscape.md)
4
+ * to validate that the format axis actually generalizes beyond Claude Code. NOT
5
+ * exported from `vigiles/*` and NOT registered in the adapter registry — it
6
+ * exists to be run through the conformance kit + real Codex-shaped fixtures.
7
+ */
8
+ import type { HarnessDialect } from "../../core/dialect.js";
9
+ export declare const codexDialect: HarnessDialect;
10
+ //# sourceMappingURL=dialect.d.ts.map
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.codexDialect = void 0;
4
+ exports.codexDialect = {
5
+ name: "codex",
6
+ // Codex model-facing tools (shell/exec, file edits, plan, web), + MCP tools.
7
+ builtinAgentTools: ["shell", "apply_patch", "update_plan", "web_search"],
8
+ // No documented "never available to a subagent" set yet — left empty.
9
+ neverAvailableTools: [],
10
+ mcpToolPattern: /^mcp__[a-z0-9_-]+__[a-z0-9_-]+$/i,
11
+ // Codex hooks (near-1:1 with Claude Code) + its extras.
12
+ hookEvents: [
13
+ "SessionStart",
14
+ "SubagentStart",
15
+ "SubagentStop",
16
+ "PreToolUse",
17
+ "PostToolUse",
18
+ "PermissionRequest",
19
+ "PreCompact",
20
+ "PostCompact",
21
+ "UserPromptSubmit",
22
+ "Stop",
23
+ ],
24
+ instructionTargets: ["AGENTS.md"],
25
+ pluginRootToken: "${PLUGIN_ROOT}",
26
+ // Codex SKILL.md frontmatter is name + description ONLY — the CC-only keys
27
+ // (disable-model-invocation, argument-hint, …) are not part of its format.
28
+ skillFrontmatter: "minimal",
29
+ };
30
+ //# sourceMappingURL=dialect.js.map