sneakoscope 6.1.0 → 6.2.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 (246) hide show
  1. package/README.md +35 -11
  2. package/crates/sks-core/Cargo.lock +1 -1
  3. package/crates/sks-core/Cargo.toml +1 -1
  4. package/dist/bin/fast-inline.js +18 -9
  5. package/dist/bin/sks-dispatch.js +2 -2
  6. package/dist/cli/args.js +2 -0
  7. package/dist/cli/command-manifest-lite.js +2 -3
  8. package/dist/cli/command-registry.js +3 -4
  9. package/dist/cli/help-fast.js +1 -1
  10. package/dist/cli/install-helpers.js +116 -306
  11. package/dist/cli/install-tool-helpers.js +287 -0
  12. package/dist/cli/router.js +40 -4
  13. package/dist/commands/codex-lb.js +51 -20
  14. package/dist/commands/codex.js +39 -1
  15. package/dist/commands/doctor.js +242 -20
  16. package/dist/commands/tmux.js +5 -1
  17. package/dist/commands/zellij-monitor-pane.js +2 -0
  18. package/dist/commands/zellij-viewport-pane.js +3 -1
  19. package/dist/commands/zellij.js +1 -1
  20. package/dist/config/skills-manifest.json +59 -59
  21. package/dist/core/agent-bridge/agent-manifest.js +48 -0
  22. package/dist/core/agents/agent-command-surface.js +2 -1
  23. package/dist/core/agents/agent-effort-policy.js +38 -35
  24. package/dist/core/agents/agent-plan.js +100 -21
  25. package/dist/core/agents/agent-role-config.js +43 -46
  26. package/dist/core/agents/agent-runner-codex-exec.js +16 -3
  27. package/dist/core/agents/agent-schema.js +3 -2
  28. package/dist/core/agents/native-cli-session-swarm.js +1 -1
  29. package/dist/core/agents/zellij-right-lane-cockpit.js +2 -2
  30. package/dist/core/codex/agent-config-file-repair.js +94 -193
  31. package/dist/core/codex/codex-cli-update.js +723 -0
  32. package/dist/core/codex/codex-config-guard.js +185 -9
  33. package/dist/core/codex/codex-config-readability.js +21 -8
  34. package/dist/core/codex/codex-config-toml.js +14 -11
  35. package/dist/core/codex/codex-project-config-policy.js +3 -6
  36. package/dist/core/codex/codex-startup-config-postcheck.js +52 -42
  37. package/dist/core/codex-adapter.js +35 -22
  38. package/dist/core/codex-app/codex-agent-role-sync.js +13 -54
  39. package/dist/core/codex-app/codex-app-launcher.js +48 -17
  40. package/dist/core/codex-app/codex-app-restart.js +23 -2
  41. package/dist/core/codex-app/mcp-manager.js +679 -0
  42. package/dist/core/codex-app/sks-menubar.js +533 -8
  43. package/dist/core/codex-control/codex-0139-image-path-real-probe.js +15 -4
  44. package/dist/core/codex-control/codex-0139-web-search-probe.js +17 -6
  45. package/dist/core/codex-control/codex-lb-launch-recovery.js +293 -0
  46. package/dist/core/codex-control/codex-reliability-shield.js +89 -29
  47. package/dist/core/codex-control/codex-sdk-adapter.js +44 -8
  48. package/dist/core/codex-control/codex-task-runner.js +62 -9
  49. package/dist/core/codex-control/python-codex-sdk-adapter.js +30 -3
  50. package/dist/core/codex-exec-output-schema.js +35 -6
  51. package/dist/core/codex-lb/codex-lb-env.js +1 -1
  52. package/dist/core/codex-lb/codex-lb-tool-output-recovery.js +291 -0
  53. package/dist/core/codex-native/codex-native-feature-broker.js +9 -16
  54. package/dist/core/codex-native/codex-native-repair-transaction.js +1 -1
  55. package/dist/core/codex-native/core-skill-manifest.js +8 -4
  56. package/dist/core/codex-runtime/codex-desktop-config-policy.js +2 -3
  57. package/dist/core/commands/agent-bridge-command.js +23 -2
  58. package/dist/core/commands/agent-command.js +19 -5
  59. package/dist/core/commands/basic-cli.js +47 -6
  60. package/dist/core/commands/command-utils.js +1 -1
  61. package/dist/core/commands/mad-sks-command.js +76 -10
  62. package/dist/core/commands/menubar-command.js +94 -0
  63. package/dist/core/commands/naruto-command.js +645 -1156
  64. package/dist/core/commands/research-command.js +293 -231
  65. package/dist/core/commands/run-command.js +100 -23
  66. package/dist/core/commands/team-command.js +2 -3
  67. package/dist/core/commands/team-legacy-observe-command.js +94 -359
  68. package/dist/core/commands/wiki-command.js +11 -5
  69. package/dist/core/db-safety.js +2 -2
  70. package/dist/core/decision-lattice.js +6 -6
  71. package/dist/core/doctor/codex-startup-config-repair.js +8 -3
  72. package/dist/core/doctor/doctor-codex-startup-repair.js +6 -141
  73. package/dist/core/feature-fixture-executor.js +71 -7
  74. package/dist/core/feature-fixture-runner.js +53 -12
  75. package/dist/core/feature-fixtures.js +47 -14
  76. package/dist/core/feature-registry.js +28 -27
  77. package/dist/core/fsx.js +1 -0
  78. package/dist/core/harness-conflicts.js +18 -9
  79. package/dist/core/hooks-runtime/code-pack-freshness-preflight.js +14 -8
  80. package/dist/core/hooks-runtime/hook-io.js +8 -4
  81. package/dist/core/hooks-runtime/light-turn.js +70 -0
  82. package/dist/core/hooks-runtime/naruto-decision-gate.js +184 -0
  83. package/dist/core/hooks-runtime/payload-signals.js +270 -0
  84. package/dist/core/hooks-runtime/stop-repeat-guard.js +89 -0
  85. package/dist/core/hooks-runtime/team-digest.js +0 -1
  86. package/dist/core/hooks-runtime/tool-output-quarantine.js +93 -0
  87. package/dist/core/hooks-runtime.js +438 -354
  88. package/dist/core/init/skills.js +16 -30
  89. package/dist/core/init.js +144 -36
  90. package/dist/core/managed-assets/managed-assets-manifest.js +566 -10
  91. package/dist/core/mission.js +24 -1
  92. package/dist/core/pipeline-internals/runtime-core.js +570 -177
  93. package/dist/core/pipeline-internals/runtime-gates.js +174 -48
  94. package/dist/core/preflight/parallel-preflight-engine.js +66 -4
  95. package/dist/core/proof/route-adapter.js +1 -1
  96. package/dist/core/proof/route-proof-gate.js +7 -2
  97. package/dist/core/proof/selftest-proof-fixtures.js +3 -5
  98. package/dist/core/proof-field.js +1 -1
  99. package/dist/core/provider/model-router.js +42 -31
  100. package/dist/core/recallpulse/policy.js +12 -28
  101. package/dist/core/recallpulse.js +11 -6
  102. package/dist/core/release/npm-pack-proof.js +247 -0
  103. package/dist/core/release/package-dist-snapshot.js +151 -0
  104. package/dist/core/release/package-size-budget.js +4 -1
  105. package/dist/core/release/release-authorization-snapshot.js +115 -0
  106. package/dist/core/release/release-gate-affected-selector.js +14 -2
  107. package/dist/core/release/release-gate-cache-v2.js +30 -0
  108. package/dist/core/release/release-gate-contract.js +161 -0
  109. package/dist/core/release/release-gate-dag.js +1 -0
  110. package/dist/core/release/release-real-contract.js +90 -10
  111. package/dist/core/release-parallel-full-coverage.js +31 -143
  112. package/dist/core/research/claim-evidence-matrix.js +41 -6
  113. package/dist/core/research/experiment-plan.js +14 -10
  114. package/dist/core/research/falsification.js +9 -2
  115. package/dist/core/research/implementation-blueprint-densifier.js +82 -60
  116. package/dist/core/research/implementation-blueprint.js +32 -26
  117. package/dist/core/research/mock-result.js +122 -11
  118. package/dist/core/research/replication-pack.js +15 -8
  119. package/dist/core/research/research-adversarial-review.js +1068 -0
  120. package/dist/core/research/research-claim-builder.js +69 -17
  121. package/dist/core/research/research-claim-synthesizer.js +343 -0
  122. package/dist/core/research/research-cycle-runner.js +53 -3
  123. package/dist/core/research/research-falsification-runner.js +176 -0
  124. package/dist/core/research/research-final-reviewer.js +44 -125
  125. package/dist/core/research/research-plan-markdown.js +123 -0
  126. package/dist/core/research/research-realistic-report.js +14 -6
  127. package/dist/core/research/research-review-artifact-digest.js +66 -0
  128. package/dist/core/research/research-source-evidence.js +144 -0
  129. package/dist/core/research/research-source-layer-catalog.js +68 -0
  130. package/dist/core/research/research-source-ledger-merge.js +250 -12
  131. package/dist/core/research/research-source-shards.js +26 -70
  132. package/dist/core/research/research-stage-runner.js +237 -247
  133. package/dist/core/research/research-super-search.js +188 -0
  134. package/dist/core/research/research-synthesis-prompt.js +20 -1
  135. package/dist/core/research/research-synthesis-writer.js +86 -5
  136. package/dist/core/research/research-work-graph.js +25 -18
  137. package/dist/core/research/source-quality-report.js +21 -0
  138. package/dist/core/research.js +424 -390
  139. package/dist/core/retention.js +70 -2
  140. package/dist/core/routes/constants.js +1 -1
  141. package/dist/core/routes/dollar-manifest-lite.js +11 -11
  142. package/dist/core/routes.js +149 -69
  143. package/dist/core/runtime/task-profile.js +66 -0
  144. package/dist/core/runtime/verification-budget.js +12 -0
  145. package/dist/core/security/high-risk-contracts.js +6 -6
  146. package/dist/core/stop-gate/stop-gate-check.js +49 -12
  147. package/dist/core/subagents/agent-catalog.js +287 -0
  148. package/dist/core/subagents/model-policy.js +259 -0
  149. package/dist/core/subagents/naruto-help-contract.js +47 -0
  150. package/dist/core/subagents/official-subagent-config.js +488 -0
  151. package/dist/core/subagents/official-subagent-preparation.js +297 -0
  152. package/dist/core/subagents/official-subagent-prompt.js +159 -0
  153. package/dist/core/subagents/official-subagent-runner.js +129 -0
  154. package/dist/core/subagents/subagent-evidence.js +663 -0
  155. package/dist/core/subagents/terminology.js +16 -0
  156. package/dist/core/subagents/thread-budget.js +21 -0
  157. package/dist/core/subagents/triwiki-attention.js +168 -0
  158. package/dist/core/super-search/runtime-helpers.js +173 -19
  159. package/dist/core/super-search/runtime.js +140 -15
  160. package/dist/core/super-search/source-records.js +49 -8
  161. package/dist/core/team-review-policy.js +15 -0
  162. package/dist/core/triwiki/code-pack-head-freshness.js +291 -0
  163. package/dist/core/triwiki/triwiki-module-card.js +1 -1
  164. package/dist/core/triwiki-wrongness/wrongness-ledger.js +9 -2
  165. package/dist/core/version-manager.js +51 -1
  166. package/dist/core/version.js +1 -1
  167. package/dist/core/work-order-ledger.js +40 -1
  168. package/dist/core/zellij/zellij-fake-adapter.js +3 -1
  169. package/dist/core/zellij/zellij-launcher.js +49 -10
  170. package/dist/core/zellij/zellij-layout-builder.js +14 -5
  171. package/dist/core/zellij/zellij-official-subagent-activity.js +477 -0
  172. package/dist/core/zellij/zellij-official-subagent-telemetry.js +264 -0
  173. package/dist/core/zellij/zellij-pane-proof.js +9 -1
  174. package/dist/core/zellij/zellij-slot-pane-renderer.js +17 -5
  175. package/dist/core/zellij/zellij-slot-telemetry.js +15 -3
  176. package/dist/core/zellij/zellij-ui-mode.js +1 -1
  177. package/dist/core/zellij/zellij-update.js +14 -1
  178. package/dist/core/zellij/zellij-viewport-binder.js +3 -0
  179. package/dist/scripts/agent-role-config-repair-check.js +14 -16
  180. package/dist/scripts/architecture-guard-check.js +8 -1
  181. package/dist/scripts/canonical-test-runner.js +7 -1
  182. package/dist/scripts/check-route-modularity.js +0 -1
  183. package/dist/scripts/check-ts-contracts.js +1 -1
  184. package/dist/scripts/codex-control-all-pipelines-check.js +7 -3
  185. package/dist/scripts/codex-control-tool-output-continuity-audit-check.js +27 -0
  186. package/dist/scripts/codex-lb-fast-mode-truth-check.js +11 -1
  187. package/dist/scripts/codex-lb-fast-ui-preservation-check.js +9 -2
  188. package/dist/scripts/codex-lb-gpt56-fast-profile-check.js +13 -2
  189. package/dist/scripts/codex-native-agent-role-content-check.js +27 -7
  190. package/dist/scripts/codex-native-repair-transaction-check.js +3 -1
  191. package/dist/scripts/codex-sdk-all-pipelines-check.js +7 -4
  192. package/dist/scripts/codex-sdk-backend-router-check.js +2 -0
  193. package/dist/scripts/codex-sdk-research-pipeline-check.js +30 -8
  194. package/dist/scripts/db-route-materialization-check.js +33 -0
  195. package/dist/scripts/docs-truthfulness-check.js +3 -1
  196. package/dist/scripts/doctor-codex-startup-repair-check.js +12 -15
  197. package/dist/scripts/doctor-fix-production-blackbox.js +12 -2
  198. package/dist/scripts/doctor-startup-config-repair-blackbox.js +8 -2
  199. package/dist/scripts/doctor-startup-config-repair-check.js +12 -2
  200. package/dist/scripts/install-update-preserves-config-check.js +6 -1
  201. package/dist/scripts/lib/codex-sdk-gate-lib.js +4 -0
  202. package/dist/scripts/mad-sks-app-ui-no-mutation-check.js +0 -1
  203. package/dist/scripts/managed-role-manifest-parity-check.js +5 -4
  204. package/dist/scripts/naruto-codex-e2e-check.js +14 -7
  205. package/dist/scripts/naruto-shadow-clone-swarm-check.js +4 -201
  206. package/dist/scripts/npm-publish-performance-check.js +20 -12
  207. package/dist/scripts/official-subagent-workflow-check.js +145 -0
  208. package/dist/scripts/package-published-contract-check.js +6 -29
  209. package/dist/scripts/packlist-performance-check.js +18 -21
  210. package/dist/scripts/parallel-verification-engine-check.js +2 -2
  211. package/dist/scripts/prepublish-release-check-or-fast.js +23 -86
  212. package/dist/scripts/python-codex-sdk-all-pipelines-check.js +8 -0
  213. package/dist/scripts/release-affected-selector-check.js +74 -1
  214. package/dist/scripts/release-check-stamp.js +153 -248
  215. package/dist/scripts/release-dag-full-coverage-check.js +7 -15
  216. package/dist/scripts/release-dynamic-presets-check.js +2 -1
  217. package/dist/scripts/release-gate-dag-runner-check.js +0 -1
  218. package/dist/scripts/release-gate-dag-runner.js +12 -1
  219. package/dist/scripts/release-gate-existence-audit.js +1 -2
  220. package/dist/scripts/release-parallel-full-coverage-check.js +12 -6
  221. package/dist/scripts/release-parallel-speed-budget-check.js +18 -2
  222. package/dist/scripts/release-real-check.js +26 -4
  223. package/dist/scripts/release-registry-check.js +61 -16
  224. package/dist/scripts/research-blueprint-densifier-check.js +2 -2
  225. package/dist/scripts/research-real-cycle-no-legacy-final-md-check.js +11 -7
  226. package/dist/scripts/sizecheck.js +2 -2
  227. package/dist/scripts/sks-3-1-4-directive-check-lib.js +8 -2
  228. package/dist/scripts/sks-3-1-5-directive-check-lib.js +3 -2
  229. package/dist/scripts/sks-3-1-6-directive-check-lib.js +5 -3
  230. package/dist/scripts/sks-menubar-install-check.js +14 -1
  231. package/dist/scripts/super-search-provider-interface-check.js +31 -18
  232. package/dist/scripts/trust-fixture-check.js +32 -10
  233. package/dist/scripts/wrongness-fixture-check.js +1 -1
  234. package/dist/scripts/zellij-layout-valid-check.js +5 -5
  235. package/dist/scripts/zellij-spawn-on-demand-layout-check.js +3 -3
  236. package/docs/demo.tape +1 -1
  237. package/infra-harness-gates.json +1486 -0
  238. package/package.json +15 -10
  239. package/release-gates.v2.json +4060 -0
  240. package/runtime-required-scripts.json +9 -0
  241. package/dist/commands/db.js +0 -6
  242. package/dist/core/commands/db-command.js +0 -146
  243. package/dist/core/research/prompt.js +0 -15
  244. package/dist/scripts/codex-0139-feature-probes-check.js +0 -30
  245. package/dist/scripts/codex-0139-marketplace-source-check.js +0 -13
  246. package/dist/scripts/codex-control-tool-call-sequence-repair-check.js +0 -14
@@ -1,39 +1,39 @@
1
1
  {
2
2
  "schema": "sks.skills-manifest.v1",
3
- "package_version": "6.1.0",
3
+ "package_version": "6.2.0",
4
4
  "skills": [
5
5
  {
6
6
  "canonical_name": "answer",
7
7
  "type": "official",
8
- "content_sha256": "13663d89faecefdd854da38dc60cfa93fa6138d00bb36ce2accdad00863cb1cb",
8
+ "content_sha256": "e13e5788ae576e5bd175a4c4daacc28bcdc73d7aae9f5b1c3ef245c05c581a34",
9
9
  "hash_history": [],
10
10
  "deprecated_aliases": []
11
11
  },
12
12
  {
13
13
  "canonical_name": "autoresearch",
14
14
  "type": "official",
15
- "content_sha256": "49ea6307a809b3a711cdd25aa5594d2afd9987272c082cb1df65f4040144be61",
15
+ "content_sha256": "d78fd1e590ca44760f44ae5b929c0df6934fb58565f88cca5d26486bf5b13e0f",
16
16
  "hash_history": [],
17
17
  "deprecated_aliases": []
18
18
  },
19
19
  {
20
20
  "canonical_name": "autoresearch-loop",
21
21
  "type": "official",
22
- "content_sha256": "8fa64a6cc96c28c39513170146eb13bcf0e078342b6680344290bcbee8d9cc97",
22
+ "content_sha256": "f0e40b29b81540356fe1c1ae9022e83162acc007bc7785079f68a9971314b57b",
23
23
  "hash_history": [],
24
24
  "deprecated_aliases": []
25
25
  },
26
26
  {
27
27
  "canonical_name": "commit",
28
28
  "type": "official",
29
- "content_sha256": "37e6383ae5ec08c13a92b2053f0fe62e8e10c38ef01d5002a8f863e3a92f8baa",
29
+ "content_sha256": "19af0655c510a6e7b34ec3ebef93bbdd9c4334620b89103dd44fa64ebff19b78",
30
30
  "hash_history": [],
31
31
  "deprecated_aliases": []
32
32
  },
33
33
  {
34
34
  "canonical_name": "commit-and-push",
35
35
  "type": "official",
36
- "content_sha256": "b39f923c8e27ce4ca23884d8c67cb30fab8a49470b2ec5589f3bde09e23893d7",
36
+ "content_sha256": "c6fce415488b80e4055704630d7c4e48ca1ad302fe56a4c98d4cd9213103351e",
37
37
  "hash_history": [],
38
38
  "deprecated_aliases": []
39
39
  },
@@ -47,56 +47,56 @@
47
47
  {
48
48
  "canonical_name": "computer-use-fast",
49
49
  "type": "official",
50
- "content_sha256": "ceacefa35316a67d372eb6816bcd667fa23c04f76c5ec103f189af315db15043",
50
+ "content_sha256": "b0cf56b18dbcfac470abeb6d3285e13b7c201a591cbc26d04f5ea396dd379f8b",
51
51
  "hash_history": [],
52
52
  "deprecated_aliases": []
53
53
  },
54
54
  {
55
55
  "canonical_name": "context7-docs",
56
56
  "type": "official",
57
- "content_sha256": "d7d88a43e45511ffcdc8c95f1a62236e8933437ff7c932a1167fab6b8f6806b8",
57
+ "content_sha256": "8bc23dca674fee01d7c1ca3b9b7b36837c88ff5f503d71bf4a4e01a043edf167",
58
58
  "hash_history": [],
59
59
  "deprecated_aliases": []
60
60
  },
61
61
  {
62
62
  "canonical_name": "cu",
63
63
  "type": "official",
64
- "content_sha256": "ac285763d71cd3673e955e0e6358bc2a87bc2bce90bdd4c7177fdaea48393390",
64
+ "content_sha256": "1d5ab07f762d27c5c23e679b5eb38ea2c3730faed89b51f086da5e769b96bdc8",
65
65
  "hash_history": [],
66
66
  "deprecated_aliases": []
67
67
  },
68
68
  {
69
69
  "canonical_name": "db",
70
70
  "type": "official",
71
- "content_sha256": "f22ced32f253fdeec5c196866dfb8ca65ac785748efe956c5b25129567814e49",
71
+ "content_sha256": "af09cf09191a702447aef9724c0d685c67ccfbb0612de37347eef2366c057fec",
72
72
  "hash_history": [],
73
73
  "deprecated_aliases": []
74
74
  },
75
75
  {
76
76
  "canonical_name": "db-safety-guard",
77
77
  "type": "official",
78
- "content_sha256": "921e37b72c5b232eafaf84989f2b852d21e6605af0aa2098733ae2e4decfdb5f",
78
+ "content_sha256": "92b58ef363041a202400c01e83b1870b58cac66523fae87f58c1d4b9db046cb1",
79
79
  "hash_history": [],
80
80
  "deprecated_aliases": []
81
81
  },
82
82
  {
83
83
  "canonical_name": "design-artifact-expert",
84
84
  "type": "official",
85
- "content_sha256": "95627ce3a7a5a1a4ccc47b7214a52091ef47c4f5e90739cb893b33eba1c3a3cb",
85
+ "content_sha256": "9d65ad9564b0457383d0b776f811424dfc1db8d7e1199413f50c4fb59aec5ca8",
86
86
  "hash_history": [],
87
87
  "deprecated_aliases": []
88
88
  },
89
89
  {
90
90
  "canonical_name": "design-system-builder",
91
91
  "type": "official",
92
- "content_sha256": "bdc301ab62baaf1459814e45670897d7ded89d29a9729d76d843ba85fefd1e32",
92
+ "content_sha256": "abf4f17580a44eaf532376d088acb9c8cdf455de300bcfdc09440d6fac4d3f18",
93
93
  "hash_history": [],
94
94
  "deprecated_aliases": []
95
95
  },
96
96
  {
97
97
  "canonical_name": "design-ui-editor",
98
98
  "type": "official",
99
- "content_sha256": "ff9ad5b4c928d40f5d33df4181b7686a7cee551fa590441ce12a3b6da7498c7c",
99
+ "content_sha256": "4e2e7b288bf46c5357e9723d6326dfedba5f5cf9e55dcdac0ee250a68caddcb3",
100
100
  "hash_history": [],
101
101
  "deprecated_aliases": []
102
102
  },
@@ -110,98 +110,98 @@
110
110
  {
111
111
  "canonical_name": "fast-mode",
112
112
  "type": "official",
113
- "content_sha256": "28d9ad441eceb8aae201bff9237244bc20672c6cc1ee07a637969716728b7fd6",
113
+ "content_sha256": "440d5c3323d1192e408f5caa791ab542dcd370d0ca82241edff5687a4e425807",
114
114
  "hash_history": [],
115
115
  "deprecated_aliases": []
116
116
  },
117
117
  {
118
118
  "canonical_name": "fast-off",
119
119
  "type": "official",
120
- "content_sha256": "e3701c52a5608722c842f72e5c88891d4b2a04c3b96739756e56d21651dcb676",
120
+ "content_sha256": "abe2fb6f258df1d117fa041f71c410d616f1e0ccbc103659cb1fa846022ba49d",
121
121
  "hash_history": [],
122
122
  "deprecated_aliases": []
123
123
  },
124
124
  {
125
125
  "canonical_name": "fast-on",
126
126
  "type": "official",
127
- "content_sha256": "6774d89cadc1778b17544249df9b0a3f06e2826e4d75f830ba5f57e97887b925",
127
+ "content_sha256": "4b6e7f7bf2e3898d848a706ccbbbe0e3aeb992ee1ab77cf793ab2f6dfe7e1fb1",
128
128
  "hash_history": [],
129
129
  "deprecated_aliases": []
130
130
  },
131
131
  {
132
132
  "canonical_name": "from-chat-img",
133
133
  "type": "official",
134
- "content_sha256": "6c9607fc9f19f084b0ef2d8dfbcab8944e21e062c96d6b019930f1890ee02162",
134
+ "content_sha256": "7bb7926ba523901db5e101bf3aec90772d7b16c059c01f842b7ff314fd9b45cb",
135
135
  "hash_history": [],
136
136
  "deprecated_aliases": []
137
137
  },
138
138
  {
139
139
  "canonical_name": "getdesign-reference",
140
140
  "type": "official",
141
- "content_sha256": "2c64b7c052073fb8b878aaabe08e6cf85bfb8cb37b3d9111470ede8308ae3c5a",
141
+ "content_sha256": "2604caa31ab865370931bef6f3288bef443a9012b068ec76e5087deeac93dab2",
142
142
  "hash_history": [],
143
143
  "deprecated_aliases": []
144
144
  },
145
145
  {
146
146
  "canonical_name": "goal",
147
147
  "type": "official",
148
- "content_sha256": "7d161e8b142b6b3346ab385fa60510395ae11196b95833f0457df6c1847712a2",
148
+ "content_sha256": "9d498db185cf9a3a15eedf470da93a8a95f3cc44e73057eaa3627a84ed3f020c",
149
149
  "hash_history": [],
150
150
  "deprecated_aliases": []
151
151
  },
152
152
  {
153
153
  "canonical_name": "gx",
154
154
  "type": "official",
155
- "content_sha256": "d16cc781d9d00661573674d503be7b81243d037412923772d47e7de26d2912b7",
155
+ "content_sha256": "dcd314499607222f58418608e10ea8b5d71a3a0940891f980df027999abc47df",
156
156
  "hash_history": [],
157
157
  "deprecated_aliases": []
158
158
  },
159
159
  {
160
160
  "canonical_name": "gx-visual-generate",
161
161
  "type": "official",
162
- "content_sha256": "79877c196cb47d7eda6e93a6b2b2692137bf6a5fb812159938509e9031a3f781",
162
+ "content_sha256": "53b45ac4cb1787d486b0ba73d68f2d9e90dc0ba70ebc34762d69d7e2e8639b96",
163
163
  "hash_history": [],
164
164
  "deprecated_aliases": []
165
165
  },
166
166
  {
167
167
  "canonical_name": "gx-visual-read",
168
168
  "type": "official",
169
- "content_sha256": "8066b78bcc2f1c9e7a5991707c5ac29d99fbc418cb940a45a3789b8eb3c96059",
169
+ "content_sha256": "48895b0411001b56007deca525a7a30f27db7e1ad9616786dd13a85aad4655d1",
170
170
  "hash_history": [],
171
171
  "deprecated_aliases": []
172
172
  },
173
173
  {
174
174
  "canonical_name": "gx-visual-validate",
175
175
  "type": "official",
176
- "content_sha256": "55bf9c801d2b46a1624157b75f88115a59ffd500e1c44938b42bd007540ba73b",
176
+ "content_sha256": "e0544d00d6c39c7f01729066b653e18bd1e28e5bf77b98068787b35f756e82c6",
177
177
  "hash_history": [],
178
178
  "deprecated_aliases": []
179
179
  },
180
180
  {
181
181
  "canonical_name": "help",
182
182
  "type": "official",
183
- "content_sha256": "08252a0da558566282d1059d1f837bd74dd81ffaf445bb6fc21a1e070b31e0a0",
183
+ "content_sha256": "1272751555306fb1d08aa4aa41db3dd0b5395b81c7e2feace84b0464f4a48d76",
184
184
  "hash_history": [],
185
185
  "deprecated_aliases": []
186
186
  },
187
187
  {
188
188
  "canonical_name": "honest-mode",
189
189
  "type": "official",
190
- "content_sha256": "cfe1a4a390b949ebc5f38cc00f229772f7898d1f034a1c800bafc2a15b924eda",
190
+ "content_sha256": "9e260f25b7076b35f094b985a9628c1cb9e37446fe1de4956060a4b472d11e4b",
191
191
  "hash_history": [],
192
192
  "deprecated_aliases": []
193
193
  },
194
194
  {
195
195
  "canonical_name": "hproof-claim-ledger",
196
196
  "type": "official",
197
- "content_sha256": "ac0169c75f1609ec0dacfbe88c3c62b8b06e3b8372fdd9c886bbcb16b5d26551",
197
+ "content_sha256": "8f91617077831ab63673ff2ed81d4ecd54077180a5462e3f34bb37955563c11c",
198
198
  "hash_history": [],
199
199
  "deprecated_aliases": []
200
200
  },
201
201
  {
202
202
  "canonical_name": "hproof-evidence-bind",
203
203
  "type": "official",
204
- "content_sha256": "7e2cf5c4c35946c5628a0bbeb73b09aa18010440d75cd0f8af57662de887a9b9",
204
+ "content_sha256": "b26d1ca0116dca94b8a2131a9c828607b152c312c64e9e563ba810f00454546e",
205
205
  "hash_history": [],
206
206
  "deprecated_aliases": []
207
207
  },
@@ -215,14 +215,14 @@
215
215
  {
216
216
  "canonical_name": "imagegen",
217
217
  "type": "official",
218
- "content_sha256": "b2d7ab3d9db89007ffe433603d9a109c29867f727f8cdd44afd202c9c5162595",
218
+ "content_sha256": "db394d42ea7c7a941f9f1b5a6bf1c6a71b893aa6ac214a43eeef4337eb109ab7",
219
219
  "hash_history": [],
220
220
  "deprecated_aliases": []
221
221
  },
222
222
  {
223
223
  "canonical_name": "imagegen-source-scout",
224
224
  "type": "official",
225
- "content_sha256": "af77841b0bcbee199f907b0e411eb4660ad2b375b0025fde499fa234714a2174",
225
+ "content_sha256": "38026d21c96d464cf69947608c4732318f893251f8b83f127da28fe1a4a06f4f",
226
226
  "hash_history": [],
227
227
  "deprecated_aliases": []
228
228
  },
@@ -236,7 +236,7 @@
236
236
  {
237
237
  "canonical_name": "kage-bunshin",
238
238
  "type": "official",
239
- "content_sha256": "9009e4a9ccf16f942f8898096920bdadb88152b5dee8ab052cd4efb8963a11e5",
239
+ "content_sha256": "4b9349b4a88f2b5100018c95b3a93fbc19090810eb26a7e09b1b9bac20837269",
240
240
  "hash_history": [],
241
241
  "deprecated_aliases": []
242
242
  },
@@ -250,21 +250,21 @@
250
250
  {
251
251
  "canonical_name": "mad-db",
252
252
  "type": "official",
253
- "content_sha256": "427865feaa94f0b6d28b1b024642820adca955b94f6f52072f2527be01dcc7d1",
253
+ "content_sha256": "c0b42c24cb1a621ab2366d05f9cdde222d9fb3b1c4472a7ce4dacf87f30eaadf",
254
254
  "hash_history": [],
255
255
  "deprecated_aliases": []
256
256
  },
257
257
  {
258
258
  "canonical_name": "mad-sks",
259
259
  "type": "official",
260
- "content_sha256": "de73c8bb6bacf097816b93782d6fbc1c62b78f0b63f421e803a18652be43f835",
260
+ "content_sha256": "d8d7ff7c05c10fc2ac4681690c5032622f5986b1a3a6539e420d737917a1ad5f",
261
261
  "hash_history": [],
262
262
  "deprecated_aliases": []
263
263
  },
264
264
  {
265
265
  "canonical_name": "naruto",
266
266
  "type": "core",
267
- "content_sha256": "3d523d19e7886ab0ef9b62572df6da4fd837245bd75e4a2dfef40170c08712b0",
267
+ "content_sha256": "008d843a7836c9c1b55540cb9a6a1f645833142019c334e2bfc5f3627e5794ec",
268
268
  "hash_history": [],
269
269
  "deprecated_aliases": [
270
270
  "shadow-clone-legacy"
@@ -273,35 +273,35 @@
273
273
  {
274
274
  "canonical_name": "performance-evaluator",
275
275
  "type": "official",
276
- "content_sha256": "ff6136e9fb66dbdc3492c983f051cebaa8f78cc9737c201a24a9feed3d1584b5",
276
+ "content_sha256": "97f8c6fab12426c187d051e6cab4da4b0fd42b9de1a1bbc138e6817ca36dde5f",
277
277
  "hash_history": [],
278
278
  "deprecated_aliases": []
279
279
  },
280
280
  {
281
281
  "canonical_name": "pipeline-runner",
282
282
  "type": "official",
283
- "content_sha256": "0414991b5cab61edc3cb4ebc2fdc67f87d6424271a26f8fb93cb6643fd9056e5",
283
+ "content_sha256": "45355dd3a8d90ccfa1e9b304d0320594b3b75de4f33463b30146dd078e182343",
284
284
  "hash_history": [],
285
285
  "deprecated_aliases": []
286
286
  },
287
287
  {
288
288
  "canonical_name": "plan",
289
289
  "type": "official",
290
- "content_sha256": "767f4ce563bd72ddd1fd13760d9c1ee8150fa2d24a73ae571580234d0f72da68",
290
+ "content_sha256": "b30e75ea403549dc4e53f1ce67826642a811d9770ae54ee02b949cb935ee7191",
291
291
  "hash_history": [],
292
292
  "deprecated_aliases": []
293
293
  },
294
294
  {
295
295
  "canonical_name": "ppt",
296
296
  "type": "official",
297
- "content_sha256": "f2406ac978bef0651857a6f89eaaffcabd0133cdf8113bacb9e6ef5b21d2da22",
297
+ "content_sha256": "c830b31729d8b1304590590225bd3a665a3937a7b6012213a1eaf0754001fb19",
298
298
  "hash_history": [],
299
299
  "deprecated_aliases": []
300
300
  },
301
301
  {
302
302
  "canonical_name": "prompt-pipeline",
303
303
  "type": "official",
304
- "content_sha256": "a57be72ced7d318d8a44c87e90ca70634f989ef4c8c59dd77d94f020e4eb896d",
304
+ "content_sha256": "830b32d516e25ac413b4344e574d441a139f62bdd4d1d6a3df776c7592d9c64b",
305
305
  "hash_history": [],
306
306
  "deprecated_aliases": []
307
307
  },
@@ -317,42 +317,42 @@
317
317
  {
318
318
  "canonical_name": "reasoning-router",
319
319
  "type": "official",
320
- "content_sha256": "2c5241817a395a77fc242936cc919db5e3517408bb86e13873686667f1f5e9c7",
320
+ "content_sha256": "be88e83db867637a6cce323dde75ed3ffef0e7d64eb8c07f552a06457699bdd4",
321
321
  "hash_history": [],
322
322
  "deprecated_aliases": []
323
323
  },
324
324
  {
325
325
  "canonical_name": "reflection",
326
326
  "type": "official",
327
- "content_sha256": "2472a526970d921b65852351b3ebe37e2b5236704f6973cf741db26da28ef35f",
327
+ "content_sha256": "5ea87c5f942e2f90a6d18a2a7d4b8d4835a8ed669ceca9d66ac4395e35f8bee4",
328
328
  "hash_history": [],
329
329
  "deprecated_aliases": []
330
330
  },
331
331
  {
332
332
  "canonical_name": "release-review",
333
333
  "type": "official",
334
- "content_sha256": "b41c9d4140ca7ac6bef130af7b14e7efe88f05dc9730718615338baa5dacf433",
334
+ "content_sha256": "28bf42cf9560beaa19c8825a92e417b345a5d922fb12436002ca24ecf0f3f34b",
335
335
  "hash_history": [],
336
336
  "deprecated_aliases": []
337
337
  },
338
338
  {
339
339
  "canonical_name": "research",
340
340
  "type": "core",
341
- "content_sha256": "fd0ede8f92775e17249825f53445980af9317bc1d4c786016d08a711695795ff",
341
+ "content_sha256": "9689a1a20e86ce119942edb0d832346576833625b3c71d8c1ab2eebf0c4653e9",
342
342
  "hash_history": [],
343
343
  "deprecated_aliases": []
344
344
  },
345
345
  {
346
346
  "canonical_name": "research-discovery",
347
347
  "type": "official",
348
- "content_sha256": "4ef5dd865434092707a5dfeaaa216a3177c73a98cf863e644e4b4880c5ac8c46",
348
+ "content_sha256": "6f02a40b24c489bb586d38e23bd064a8d706552d2756b51eb205d27a4f04da18",
349
349
  "hash_history": [],
350
350
  "deprecated_aliases": []
351
351
  },
352
352
  {
353
353
  "canonical_name": "review",
354
354
  "type": "official",
355
- "content_sha256": "72a794485e9b2bdc459f5626027706aa3e5c446a6f4861b5ee646c6ce10ac5d1",
355
+ "content_sha256": "a473c98ef21d1eff1aebc1da5a8e7a7fc856a200ff27c623ff07a266df0233c1",
356
356
  "hash_history": [],
357
357
  "deprecated_aliases": []
358
358
  },
@@ -373,14 +373,14 @@
373
373
  {
374
374
  "canonical_name": "shadow-clone",
375
375
  "type": "official",
376
- "content_sha256": "f644bdb9d72c4d7a98038d99a8cc4dec068b61f146a94da574d03ef3737eb565",
376
+ "content_sha256": "abc2b4c2371bede5dc849d333f10405d672010553403085b4bd073f9243aa99b",
377
377
  "hash_history": [],
378
378
  "deprecated_aliases": []
379
379
  },
380
380
  {
381
381
  "canonical_name": "sks",
382
382
  "type": "official",
383
- "content_sha256": "72cc01e22433d1db489f28a63ee8b70cef773c78a3751744ea380922de274cfb",
383
+ "content_sha256": "16aea96dee0b65017558db61950fa0ab36a4019eb8114fa25680872fca96cdce",
384
384
  "hash_history": [],
385
385
  "deprecated_aliases": [
386
386
  "ralph",
@@ -392,28 +392,28 @@
392
392
  {
393
393
  "canonical_name": "solution-scout",
394
394
  "type": "official",
395
- "content_sha256": "a88fe2e0cf703b2ff6083a436d6baf80c0e564ee07c370024336325d1f495773",
395
+ "content_sha256": "1b19204ea5b65d665c34aff1c4905240176cb1714f135a998f7262acb4791588",
396
396
  "hash_history": [],
397
397
  "deprecated_aliases": []
398
398
  },
399
399
  {
400
400
  "canonical_name": "super-search",
401
401
  "type": "official",
402
- "content_sha256": "bfca7cb8446dc056ae9cc940c9e381b1a6748dc3cde301638a8247dcaef67b26",
402
+ "content_sha256": "fdfe5cd0bf5235a2464aa12db99adfbf5921582d07e0a8a983c38482430a4b07",
403
403
  "hash_history": [],
404
404
  "deprecated_aliases": []
405
405
  },
406
406
  {
407
407
  "canonical_name": "swarm",
408
408
  "type": "official",
409
- "content_sha256": "b7dd3ff26da89578eb0d3f64d6b75a30f287571f45f87aae183184119874e367",
409
+ "content_sha256": "d2a49113d47528f4098cc2375186c3a10df4e25a83a01a9ea88b90dd8080a7f3",
410
410
  "hash_history": [],
411
411
  "deprecated_aliases": []
412
412
  },
413
413
  {
414
414
  "canonical_name": "team",
415
415
  "type": "official",
416
- "content_sha256": "4d6265cef89ab70f19ac73f05ac29d746ac0d2ca6ca59017dade4c57969578f2",
416
+ "content_sha256": "6f6766a7425b607530c39f510caa405ad5e8d388a15ae3389af144e7a5541f05",
417
417
  "hash_history": [],
418
418
  "deprecated_aliases": [
419
419
  "agent-team"
@@ -422,35 +422,35 @@
422
422
  {
423
423
  "canonical_name": "turbo-context-pack",
424
424
  "type": "official",
425
- "content_sha256": "67882585d5589807cb536b721a60bcd02c8f56cb36626b67eaaf1abc13690e0f",
425
+ "content_sha256": "7ec6b7d7c6173f3d8d1057b849dcfac88d1a76cc168920d76e61edce1e29a338",
426
426
  "hash_history": [],
427
427
  "deprecated_aliases": []
428
428
  },
429
429
  {
430
430
  "canonical_name": "ui-ux-review",
431
431
  "type": "official",
432
- "content_sha256": "6a7471656fd45f4c0b6eabfe9e2c0dec1b2f1c960e27fecad294e3ab25d98587",
432
+ "content_sha256": "75e65d0c6ab32e6be5809c8df729c0d82d7dfab037956d15f35ac64a007ee0bb",
433
433
  "hash_history": [],
434
434
  "deprecated_aliases": []
435
435
  },
436
436
  {
437
437
  "canonical_name": "ux-review",
438
438
  "type": "official",
439
- "content_sha256": "7571f1db8904cebd6b87aecd355e6404d401af4002b79705c725ee091d8b9c27",
439
+ "content_sha256": "e9d354ab3f920a830400e5a0c90a1f01a2848194d83e141b25ce66c52796fc5b",
440
440
  "hash_history": [],
441
441
  "deprecated_aliases": []
442
442
  },
443
443
  {
444
444
  "canonical_name": "visual-review",
445
445
  "type": "official",
446
- "content_sha256": "0f74d1216fa4edfeab63245b044bbfc9763849d088749d74029c51e55d3ce591",
446
+ "content_sha256": "abdbf65eb26b56703a73e5f020d068e15af442700ba16f6f4c91741839bc8edd",
447
447
  "hash_history": [],
448
448
  "deprecated_aliases": []
449
449
  },
450
450
  {
451
451
  "canonical_name": "wiki",
452
452
  "type": "official",
453
- "content_sha256": "eaa5415ea2dc52517041532af663228ec1a0c5ed5542aaae0392799fadabb4dc",
453
+ "content_sha256": "509cd66c0ca4ab3dc4030a60d2abe3be7e5e2856da3d0d03d3874ca41d6f3341",
454
454
  "hash_history": [],
455
455
  "deprecated_aliases": [
456
456
  "wiki-refresh",
@@ -460,21 +460,21 @@
460
460
  {
461
461
  "canonical_name": "with-local-llm-off",
462
462
  "type": "official",
463
- "content_sha256": "fa02f75c1778c31377fd0fb84c9627a0f24b11f4c6a247fafa1b512df3207018",
463
+ "content_sha256": "1194933734bdec87f02b3d7338de1c4df10f96d204ef758e111c6b03262c3527",
464
464
  "hash_history": [],
465
465
  "deprecated_aliases": []
466
466
  },
467
467
  {
468
468
  "canonical_name": "with-local-llm-on",
469
469
  "type": "official",
470
- "content_sha256": "737ac31090f94def9f635ec277f9cb8d99b764aadacd9dd223d1f063a5f03331",
470
+ "content_sha256": "db96dbbb17cd5601b491c3adecf68559867046bd1e3c8558dd56b4a3b17a1329",
471
471
  "hash_history": [],
472
472
  "deprecated_aliases": []
473
473
  },
474
474
  {
475
475
  "canonical_name": "work",
476
476
  "type": "official",
477
- "content_sha256": "380a6b42a3c24550fdababe773b7ba55fc802072001869045848e6c754a1779b",
477
+ "content_sha256": "9f3090695883be3909c63d3f881dbc2c359b5bd2dc95e799b1ad7df07c871b54",
478
478
  "hash_history": [],
479
479
  "deprecated_aliases": []
480
480
  }
@@ -61,4 +61,52 @@ export function buildAgentManifest() {
61
61
  tools
62
62
  };
63
63
  }
64
+ export function validateAgentManifest(manifest) {
65
+ const candidate = manifest;
66
+ const expectedNames = Object.keys(COMMANDS).sort();
67
+ const tools = Array.isArray(candidate?.tools) ? candidate.tools : [];
68
+ const observedNames = tools.map((tool) => String(tool?.name || '')).filter(Boolean);
69
+ const observedSet = new Set(observedNames);
70
+ const duplicateNames = [...new Set(observedNames.filter((name, index) => observedNames.indexOf(name) !== index))].sort();
71
+ const missingNames = expectedNames.filter((name) => !observedSet.has(name));
72
+ const unexpectedNames = [...observedSet].filter((name) => !(name in COMMANDS)).sort();
73
+ const sortedNames = [...observedNames].sort();
74
+ const issues = [];
75
+ if (candidate?.schema !== 'sks.agent-manifest.v1')
76
+ issues.push('schema');
77
+ if (!Array.isArray(candidate?.tools))
78
+ issues.push('tools');
79
+ if (duplicateNames.length)
80
+ issues.push(...duplicateNames.map((name) => `duplicate_tool:${name}`));
81
+ if (missingNames.length)
82
+ issues.push(...missingNames.map((name) => `missing_registry_tool:${name}`));
83
+ if (unexpectedNames.length)
84
+ issues.push(...unexpectedNames.map((name) => `unexpected_tool:${name}`));
85
+ if (JSON.stringify(observedNames) !== JSON.stringify(sortedNames))
86
+ issues.push('tool_order');
87
+ for (const tool of tools) {
88
+ const name = String(tool?.name || '');
89
+ if (!name || typeof tool?.description !== 'string')
90
+ issues.push(`invalid_tool_shape:${name || '<missing>'}`);
91
+ if (typeof tool?.read_only !== 'boolean')
92
+ issues.push(`invalid_read_only:${name || '<missing>'}`);
93
+ if (typeof tool?.requires_explicit_opt_in !== 'boolean')
94
+ issues.push(`invalid_opt_in:${name || '<missing>'}`);
95
+ if (typeof tool?.json_output_supported !== 'boolean')
96
+ issues.push(`invalid_json_support:${name || '<missing>'}`);
97
+ if (!['fast', 'normal', 'long'].includes(String(tool?.latency_class || '')))
98
+ issues.push(`invalid_latency_class:${name || '<missing>'}`);
99
+ if (typeof tool?.example_invocation !== 'string' || !tool.example_invocation.startsWith(`sks ${name}`))
100
+ issues.push(`invalid_example:${name || '<missing>'}`);
101
+ }
102
+ return {
103
+ ok: issues.length === 0,
104
+ issues: [...new Set(issues)],
105
+ expected_names: expectedNames,
106
+ observed_names: observedNames,
107
+ missing_names: missingNames,
108
+ unexpected_names: unexpectedNames,
109
+ duplicate_names: duplicateNames
110
+ };
111
+ }
64
112
  //# sourceMappingURL=agent-manifest.js.map
@@ -51,6 +51,7 @@ export function parseAgentCommandArgs(command, args = []) {
51
51
  const graceMs = Number(readOption(args, '--grace-ms', 750));
52
52
  const killEscalation = hasFlag(args, '--kill-escalation') || !hasFlag(args, '--no-kill-escalation');
53
53
  const codexApp = hasFlag(args, '--codex-app');
54
+ const legacyNativeRuntime = hasFlag(args, '--legacy-native-runtime');
54
55
  const positionals = positionalArgs(rest, new Set(['--agents', '--target-active-slots', '--work-items', '--minimum-work-items', '--max-queue-expansion', '--concurrency', '--backend', '--route', '--mission', '--mission-id', '--agent', '--lane', '--stale-ms', '--grace-ms', '--profile', '--write-mode', '--max-write-agents', '--patch-entry-id', '--patch-entry', '--service-tier', '--zellij-session-name', '--worker-placement', '--zellij-visible-pane-cap', '--intake', '--agent-root', '--artifact-dir', '--result-path', '--heartbeat-path', '--patch-envelope-path', '--ollama-model', '--local-model-model', '--ollama-base-url', '--local-model-base-url']));
55
56
  const missionDefault = action === 'run' || action === 'spawn' || action === 'plan' ? '' : 'latest';
56
57
  const positionalMission = action === 'run' || action === 'spawn' || action === 'plan' ? '' : (positionals[0] || '');
@@ -60,7 +61,7 @@ export function parseAgentCommandArgs(command, args = []) {
60
61
  const promptPositionals = positionalMission ? positionals.slice(1) : positionals;
61
62
  const promptExplicit = promptPositionals.length > 0;
62
63
  const prompt = promptPositionals.join(' ').trim() || 'Native agent run';
63
- return { command, action, prompt, promptExplicit, route, agents, targetActiveSlots, desiredWorkItemCount, minimumWorkItems, maxQueueExpansion, concurrency, backend, backendExplicit, mock, real, readonly, profile, writeMode, applyPatches, dryRunPatches, maxWriteAgents, fastMode, serviceTier, noFast, ollamaEnabled: useOllama && !noOllama, noOllama, ollamaModel, ollamaBaseUrl, zellijSessionName, zellijPaneWorker, workerPlacement, zellijVisiblePaneCap, apply, dryRun, drain, staleMs, graceMs, killEscalation, json, missionId, lane, codexApp, patchEntryId };
64
+ return { command, action, prompt, promptExplicit, route, agents, targetActiveSlots, desiredWorkItemCount, minimumWorkItems, maxQueueExpansion, concurrency, backend, backendExplicit, mock, real, readonly, profile, writeMode, applyPatches, dryRunPatches, maxWriteAgents, fastMode, serviceTier, noFast, ollamaEnabled: useOllama && !noOllama, noOllama, ollamaModel, ollamaBaseUrl, zellijSessionName, zellijPaneWorker, workerPlacement, zellijVisiblePaneCap, apply, dryRun, drain, staleMs, graceMs, killEscalation, json, missionId, lane, codexApp, patchEntryId, legacyNativeRuntime };
64
65
  }
65
66
  export function resolveZellijVisiblePaneCap(value = '', explicit = false) {
66
67
  const requested = Number(value);