blun-king-cli 9.1.587 → 9.1.589

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 (436) hide show
  1. package/CHANGELOG.md +11 -185
  2. package/LIESMICH.txt +51 -13
  3. package/README.md +44 -47
  4. package/agent-spine-plugin/.codex-plugin/plugin.json +16 -4
  5. package/agent-spine-plugin/CHANGELOG.md +37 -5
  6. package/agent-spine-plugin/README.md +3 -3
  7. package/agent-spine-plugin/blun.plugin.json +45 -10
  8. package/agent-spine-plugin/docs/artifact-evaluation.md +93 -0
  9. package/agent-spine-plugin/docs/host-integration.md +42 -27
  10. package/agent-spine-plugin/docs/preflight-recall.md +4 -2
  11. package/agent-spine-plugin/docs/session-timeline.md +97 -236
  12. package/agent-spine-plugin/docs/world-model.md +25 -0
  13. package/agent-spine-plugin/hooks/codex.json +1 -1
  14. package/agent-spine-plugin/hooks/hooks.json +1 -1
  15. package/agent-spine-plugin/package.json +1 -3
  16. package/agent-spine-plugin/scripts/check-hosts.js +3 -3
  17. package/agent-spine-plugin/scripts/release-check.js +10 -5
  18. package/agent-spine-plugin/scripts/run-checks.js +4 -1
  19. package/agent-spine-plugin/scripts/run-tests-hermetic.js +32 -6
  20. package/agent-spine-plugin/src/cli-learning.js +15 -0
  21. package/agent-spine-plugin/src/cli.js +2 -0
  22. package/agent-spine-plugin/src/hook.js +32 -32
  23. package/agent-spine-plugin/src/lib/action-lesson-recall.js +73 -8
  24. package/agent-spine-plugin/src/lib/briefing.js +146 -36
  25. package/agent-spine-plugin/src/lib/channel-continuity.js +19 -0
  26. package/agent-spine-plugin/src/lib/delivery-agent-usage.js +14 -7
  27. package/agent-spine-plugin/src/lib/gateway-group-response.js +128 -0
  28. package/agent-spine-plugin/src/lib/gateway-runs.js +24 -15
  29. package/agent-spine-plugin/src/lib/hook-briefing-use.js +13 -3
  30. package/agent-spine-plugin/src/lib/hook-context.js +16 -3
  31. package/agent-spine-plugin/src/lib/hook-output.js +129 -5
  32. package/agent-spine-plugin/src/lib/hook-timeline.js +5 -3
  33. package/agent-spine-plugin/src/lib/indexed-memory.js +2 -2
  34. package/agent-spine-plugin/src/lib/learning-artifact-evaluator.js +114 -0
  35. package/agent-spine-plugin/src/lib/learning-context.js +11 -4
  36. package/agent-spine-plugin/src/lib/learning-measurements.js +2 -2
  37. package/agent-spine-plugin/src/lib/mcp-runtime.js +89 -3
  38. package/agent-spine-plugin/src/lib/mcp-source-context.js +12 -2
  39. package/agent-spine-plugin/src/lib/mcp-timeline-tools.js +91 -8
  40. package/agent-spine-plugin/src/lib/mcp-world-tools.js +2 -2
  41. package/agent-spine-plugin/src/lib/owned-file-lock.js +20 -1
  42. package/agent-spine-plugin/src/lib/persona-runtime.js +2 -2
  43. package/agent-spine-plugin/src/lib/preflight-delivery-id.js +27 -0
  44. package/agent-spine-plugin/src/lib/preflight.js +4 -4
  45. package/agent-spine-plugin/src/lib/session-timeline-codex.js +15 -0
  46. package/agent-spine-plugin/src/lib/session-timeline-contract.js +12 -4
  47. package/agent-spine-plugin/src/lib/session-timeline-event-extract.js +36 -7
  48. package/agent-spine-plugin/src/lib/session-timeline-host-origin.js +13 -10
  49. package/agent-spine-plugin/src/lib/session-timeline-invocation.js +1 -1
  50. package/agent-spine-plugin/src/lib/session-timeline-king.js +14 -0
  51. package/agent-spine-plugin/src/lib/session-timeline-prior.js +18 -12
  52. package/agent-spine-plugin/src/lib/session-timeline-provider.js +5 -0
  53. package/agent-spine-plugin/src/lib/session-timeline-query.js +2 -0
  54. package/agent-spine-plugin/src/lib/session-timeline-results.js +35 -10
  55. package/agent-spine-plugin/src/lib/session-timeline-source-open.js +30 -0
  56. package/agent-spine-plugin/src/lib/session-timeline.js +122 -75
  57. package/agent-spine-plugin/src/lib/source-roots.js +3 -2
  58. package/agent-spine-plugin/src/lib/task-knowledge-context.js +22 -1
  59. package/agent-spine-plugin/src/lib/timeline-continuation-update.js +100 -0
  60. package/agent-spine-plugin/src/lib/timeline-tool-guard.js +30 -7
  61. package/agent-spine-plugin/src/lib/timeline-user-feedback.js +217 -0
  62. package/agent-spine-plugin/src/lib/timeline-world-capture.js +233 -0
  63. package/agent-spine-plugin/src/lib/world-knowledge.js +59 -2
  64. package/agent-spine-plugin/src/lib/world-model.js +64 -9
  65. package/agent-spine-plugin/src/worker.js +13 -1
  66. package/bin/blun.js +43 -28
  67. package/bin/core-bootstrap.js +5 -4
  68. package/bin/king.js +43 -28
  69. package/bin/launcher-mode.js +1 -10
  70. package/bin/launcher-runtime.js +128 -295
  71. package/bin/managed-node.js +0 -0
  72. package/bin/managed-plugin-selection.cjs +0 -1
  73. package/bin/native-module-repair.js +0 -0
  74. package/bin/node-runtime.js +0 -0
  75. package/bin/node-version.js +0 -0
  76. package/bin/plugin-bootstrap.js +56 -120
  77. package/bin/private-paths.js +11 -34
  78. package/bin/standard-tools-bootstrap.js +34 -114
  79. package/bin/turn-thinking-policy.cjs +3 -11
  80. package/bin/update-copy.js +200 -0
  81. package/bin/update-lease.js +0 -0
  82. package/bin/update-notice.js +155 -274
  83. package/bin/verify-agent-behavior.cjs +122 -0
  84. package/bin/verify-agent-components.cjs +104 -0
  85. package/bin/verify-bundled-agent-sources.cjs +57 -0
  86. package/blun.mjs +143076 -135288
  87. package/bundled-agent-sources.json +701 -0
  88. package/package.json +12 -15
  89. package/standard-skills/translate-native/README.md +1293 -0
  90. package/standard-skills/translate-native/SKILL.md +172 -22
  91. package/standard-skills/translate-native/VERSION +1 -1
  92. package/standard-skills/translate-native/agents/openai.yaml +18 -0
  93. package/standard-skills/translate-native/assets/icon.svg +8 -0
  94. package/standard-skills/translate-native/docs/BLUN_CODE_INTEGRATION.md +76 -0
  95. package/standard-skills/translate-native/docs/PREMORTEM.md +489 -0
  96. package/standard-skills/translate-native/docs/WEBSITE_LOCALIZATION.md +2035 -0
  97. package/standard-skills/translate-native/docs/WEBSITE_LOCALIZATION_API.md +1302 -0
  98. package/standard-skills/translate-native/docs/WEBSITE_LOCALIZATION_EVIDENCE_HTTP.md +136 -0
  99. package/standard-skills/translate-native/docs/WEBSITE_LOCALIZATION_HEALTH_HTTP.md +130 -0
  100. package/standard-skills/translate-native/docs/WEBSITE_LOCALIZATION_HTTP_PROVIDER.md +175 -0
  101. package/standard-skills/translate-native/docs/WEBSITE_LOCALIZATION_RECEIPT_VERIFIER_HTTP.md +86 -0
  102. package/standard-skills/translate-native/integrations/AGENT_RULES.md +32 -0
  103. package/standard-skills/translate-native/integrations/adapters/blun-code-language-guard.js +514 -0
  104. package/standard-skills/translate-native/integrations/adapters/node-language-guard.js +230 -0
  105. package/standard-skills/translate-native/integrations/audit_log.py +327 -0
  106. package/standard-skills/translate-native/integrations/claude_language_hook.js +1536 -0
  107. package/standard-skills/translate-native/integrations/commercial_localization_profile.py +42 -0
  108. package/standard-skills/translate-native/integrations/delivery-policy.example.json +28 -0
  109. package/standard-skills/translate-native/integrations/enforced_delivery.py +543 -0
  110. package/standard-skills/translate-native/integrations/guard_service.py +435 -0
  111. package/standard-skills/translate-native/integrations/language_gateway.py +67 -0
  112. package/standard-skills/translate-native/integrations/mcp_auth_headers.py +198 -0
  113. package/standard-skills/translate-native/integrations/mcp_http_gateway.py +429 -0
  114. package/standard-skills/translate-native/integrations/non_language_html_entities.js +1485 -0
  115. package/standard-skills/translate-native/integrations/pre_output_guard.py +65 -0
  116. package/standard-skills/translate-native/integrations/task_router.py +101 -0
  117. package/standard-skills/translate-native/integrations/website_localization.py +401 -0
  118. package/standard-skills/translate-native/integrations/website_localization_api.py +581 -0
  119. package/standard-skills/translate-native/integrations/website_localization_benchmark.py +1885 -0
  120. package/standard-skills/translate-native/integrations/website_localization_benchmark_campaign.py +1772 -0
  121. package/standard-skills/translate-native/integrations/website_localization_benchmark_candidate.py +506 -0
  122. package/standard-skills/translate-native/integrations/website_localization_benchmark_http.py +400 -0
  123. package/standard-skills/translate-native/integrations/website_localization_benchmark_review_store.py +781 -0
  124. package/standard-skills/translate-native/integrations/website_localization_benchmark_reviewer_http.py +500 -0
  125. package/standard-skills/translate-native/integrations/website_localization_benchmark_runtime.py +1107 -0
  126. package/standard-skills/translate-native/integrations/website_localization_benchmark_suite.py +463 -0
  127. package/standard-skills/translate-native/integrations/website_localization_cms.py +2835 -0
  128. package/standard-skills/translate-native/integrations/website_localization_cms_client.py +875 -0
  129. package/standard-skills/translate-native/integrations/website_localization_cms_dispatch.py +805 -0
  130. package/standard-skills/translate-native/integrations/website_localization_cms_http.py +588 -0
  131. package/standard-skills/translate-native/integrations/website_localization_cms_lifecycle_monitor.py +991 -0
  132. package/standard-skills/translate-native/integrations/website_localization_cms_receiver.py +1441 -0
  133. package/standard-skills/translate-native/integrations/website_localization_cms_receiver_runtime.py +414 -0
  134. package/standard-skills/translate-native/integrations/website_localization_cms_receiver_store.py +1073 -0
  135. package/standard-skills/translate-native/integrations/website_localization_cms_removal_dispatch.py +865 -0
  136. package/standard-skills/translate-native/integrations/website_localization_cms_source_client.py +583 -0
  137. package/standard-skills/translate-native/integrations/website_localization_cms_source_delivery.py +964 -0
  138. package/standard-skills/translate-native/integrations/website_localization_cms_source_delivery_runtime.py +665 -0
  139. package/standard-skills/translate-native/integrations/website_localization_cms_source_http.py +1153 -0
  140. package/standard-skills/translate-native/integrations/website_localization_cms_source_runtime.py +675 -0
  141. package/standard-skills/translate-native/integrations/website_localization_cms_source_service.py +1125 -0
  142. package/standard-skills/translate-native/integrations/website_localization_cms_terminal_notification.py +674 -0
  143. package/standard-skills/translate-native/integrations/website_localization_cms_terminal_notification_http.py +444 -0
  144. package/standard-skills/translate-native/integrations/website_localization_cms_terminal_notification_receiver.py +1469 -0
  145. package/standard-skills/translate-native/integrations/website_localization_cms_terminal_notification_receiver_runtime.py +1142 -0
  146. package/standard-skills/translate-native/integrations/website_localization_cms_terminal_processing_monitor.py +634 -0
  147. package/standard-skills/translate-native/integrations/website_localization_cms_terminal_receiver_client.py +804 -0
  148. package/standard-skills/translate-native/integrations/website_localization_deepl_baseline.py +922 -0
  149. package/standard-skills/translate-native/integrations/website_localization_evidence_http.py +482 -0
  150. package/standard-skills/translate-native/integrations/website_localization_health.py +1541 -0
  151. package/standard-skills/translate-native/integrations/website_localization_health_http.py +372 -0
  152. package/standard-skills/translate-native/integrations/website_localization_http_provider.py +297 -0
  153. package/standard-skills/translate-native/integrations/website_localization_native_reference_http.py +479 -0
  154. package/standard-skills/translate-native/integrations/website_localization_native_reference_intake.py +363 -0
  155. package/standard-skills/translate-native/integrations/website_localization_native_reference_queue.py +1449 -0
  156. package/standard-skills/translate-native/integrations/website_localization_native_reference_store.py +420 -0
  157. package/standard-skills/translate-native/integrations/website_localization_quality_profiles.py +235 -0
  158. package/standard-skills/translate-native/integrations/website_localization_queue.py +671 -0
  159. package/standard-skills/translate-native/integrations/website_localization_receipt_verifier_http.py +516 -0
  160. package/standard-skills/translate-native/integrations/website_localization_release.py +928 -0
  161. package/standard-skills/translate-native/integrations/website_localization_release_coordinator.py +1008 -0
  162. package/standard-skills/translate-native/integrations/website_localization_runner.py +276 -0
  163. package/standard-skills/translate-native/integrations/website_localization_runtime.py +862 -0
  164. package/standard-skills/translate-native/integrations/website_localization_service.py +350 -0
  165. package/standard-skills/translate-native/integrations/website_localization_supervisor.py +511 -0
  166. package/standard-skills/translate-native/integrations/website_localization_worker.py +663 -0
  167. package/standard-skills/translate-native/provenance.json +3 -4
  168. package/standard-skills/translate-native/references/commercial-localization.md +177 -0
  169. package/standard-skills/translate-native/scripts/blun_language_guard.py +7 -1
  170. package/standard-skills/translate-native/scripts/check_commercial_review.py +80 -0
  171. package/standard-skills/translate-native/scripts/commercial_localization_profile.py +333 -0
  172. package/standard-tools/language-guard/LICENSE +21 -0
  173. package/standard-tools/language-guard/VERSION +1 -0
  174. package/standard-tools/language-guard/blun_language_guard.py +7 -1
  175. package/standard-tools/language-guard/check_commercial_review.py +80 -0
  176. package/standard-tools/language-guard/commercial_localization_profile.py +333 -0
  177. package/standard-tools/language-guard/language_gateway.py +62 -0
  178. package/standard-tools/language-guard/pre_output_guard.py +64 -0
  179. package/standard-tools/language-guard/provenance.json +4 -11
  180. package/standard-tools/manifest.json +34 -11
  181. package/telegram-plugin/commands/access.md +2 -10
  182. package/telegram-plugin/dist/bridge.mjs +64041 -687
  183. package/telegram-plugin/dist/mcp-server.mjs +72810 -9027
  184. package/telegram-plugin/dist/noise.mjs +28 -63511
  185. package/agent-spine-plugin/CONTRIBUTING.md +0 -52
  186. package/agent-spine-plugin/SECURITY.md +0 -47
  187. package/agent-spine-plugin/docs/assignment-continuation.md +0 -48
  188. package/agent-spine-plugin/docs/releasing.md +0 -85
  189. package/agent-spine-plugin/docs/structured-completion.md +0 -67
  190. package/bin/abort-listener-policy.cjs +0 -43
  191. package/bin/active-steer-priority-policy.cjs +0 -24
  192. package/bin/agent-api-http-adapter.mjs +0 -446
  193. package/bin/agent-api-private-http-server.mjs +0 -288
  194. package/bin/agent-api-runtime.mjs +0 -252
  195. package/bin/agent-api-service-environment.mjs +0 -236
  196. package/bin/agent-api-service-host.mjs +0 -209
  197. package/bin/agent-api-service-process.mjs +0 -171
  198. package/bin/agent-api-session-registry.mjs +0 -428
  199. package/bin/agent-api-tool-broker.cjs +0 -248
  200. package/bin/agent-api-turn-controller.mjs +0 -461
  201. package/bin/agent-api-usage-journal.cjs +0 -259
  202. package/bin/agent-resume-snapshot.cjs +0 -241
  203. package/bin/agentspine-king-goal-inbox.mjs +0 -111
  204. package/bin/agentspine-king-goal-intake.mjs +0 -106
  205. package/bin/approval-rejection-stop.cjs +0 -15
  206. package/bin/assistant-message-offload-policy.cjs +0 -284
  207. package/bin/baseline-skill-performance-policy.cjs +0 -39
  208. package/bin/bash-search-scope-policy.cjs +0 -49
  209. package/bin/codebase-search-runtime.cjs +0 -23
  210. package/bin/cognitive-action-checkpoint.cjs +0 -1104
  211. package/bin/cognitive-attention-delivery.cjs +0 -76
  212. package/bin/cognitive-attention-policy.cjs +0 -143
  213. package/bin/cognitive-attention-runtime.cjs +0 -91
  214. package/bin/cognitive-context-projection.cjs +0 -73
  215. package/bin/cognitive-cross-portal-acceptance.cjs +0 -443
  216. package/bin/cognitive-effective-view.cjs +0 -77
  217. package/bin/cognitive-focus-projection.cjs +0 -206
  218. package/bin/cognitive-focus-scope.cjs +0 -37
  219. package/bin/cognitive-goal-autostart-policy.cjs +0 -72
  220. package/bin/cognitive-goal-time-trigger-controller.cjs +0 -146
  221. package/bin/cognitive-memory-adapter.cjs +0 -282
  222. package/bin/cognitive-memory-command.cjs +0 -293
  223. package/bin/cognitive-memory-provider.cjs +0 -92
  224. package/bin/cognitive-salience-policy.cjs +0 -159
  225. package/bin/cognitive-state-store.cjs +0 -508
  226. package/bin/cognitive-turn-lifecycle.cjs +0 -624
  227. package/bin/cognitive-work-focus.cjs +0 -180
  228. package/bin/compaction-history-archive.cjs +0 -166
  229. package/bin/compaction-history-startup.cjs +0 -50
  230. package/bin/compaction-model-policy.cjs +0 -31
  231. package/bin/compaction-stage-policy.cjs +0 -21
  232. package/bin/compaction-transaction-policy.cjs +0 -122
  233. package/bin/config-write-dedup-policy.cjs +0 -27
  234. package/bin/context-budget-ledger.cjs +0 -31
  235. package/bin/context-doctor-policy.cjs +0 -70
  236. package/bin/context-insight-policy.cjs +0 -36
  237. package/bin/context-performance-policy.cjs +0 -19
  238. package/bin/context-pressure-policy.cjs +0 -20
  239. package/bin/cron-run-output.cjs +0 -45
  240. package/bin/cron-run-store.cjs +0 -145
  241. package/bin/curiosity-scout-policy.cjs +0 -49
  242. package/bin/default-model-output-budget-policy.cjs +0 -28
  243. package/bin/durable-task-resume-policy.cjs +0 -130
  244. package/bin/durable-task-resume-runtime.cjs +0 -117
  245. package/bin/durable-task-resume-store.cjs +0 -88
  246. package/bin/editable-tool-approval-policy.cjs +0 -540
  247. package/bin/editable-tool-approval-runtime.cjs +0 -99
  248. package/bin/effective-system-prompt-cache-policy.cjs +0 -33
  249. package/bin/error-memory-performance-policy.cjs +0 -113
  250. package/bin/file-observation-policy.cjs +0 -133
  251. package/bin/foreground-output-capture-policy.cjs +0 -41
  252. package/bin/generated-source-health.cjs +0 -142
  253. package/bin/glob-pattern-policy.cjs +0 -13
  254. package/bin/goal-completion-evidence-policy.cjs +0 -120
  255. package/bin/grep-output-limit-policy.cjs +0 -39
  256. package/bin/historical-media-projection-policy.cjs +0 -48
  257. package/bin/history-offload-pressure-policy.cjs +0 -33
  258. package/bin/html-to-research-markdown.cjs +0 -147
  259. package/bin/identity-context-policy.cjs +0 -764
  260. package/bin/identity-journal-policy.cjs +0 -107
  261. package/bin/input-draft-persistence.cjs +0 -77
  262. package/bin/king-tui-function-contract.json +0 -33
  263. package/bin/launcher-restart-policy.cjs +0 -150
  264. package/bin/live-response-repetition-guard.cjs +0 -196
  265. package/bin/llm-config-log-dedup-policy.cjs +0 -76
  266. package/bin/loop-event-record-policy.cjs +0 -174
  267. package/bin/managed-context-startup-policy.cjs +0 -27
  268. package/bin/media-activity-layout-policy.cjs +0 -34
  269. package/bin/media-auto-retrieval-policy.cjs +0 -90
  270. package/bin/media-result-policy.cjs +0 -59
  271. package/bin/micro-compaction-policy.cjs +0 -145
  272. package/bin/mistake-relevance-policy.cjs +0 -319
  273. package/bin/model-retry-progress-policy.cjs +0 -46
  274. package/bin/native-large-file-io.cjs +0 -42
  275. package/bin/native-runtime-cache.cjs +0 -76
  276. package/bin/natural-presence-policy.cjs +0 -28
  277. package/bin/noninteractive-shell-env-policy.cjs +0 -19
  278. package/bin/observer-hooks.cjs +0 -14
  279. package/bin/outbound-claim-provenance.cjs +0 -150
  280. package/bin/oversized-context-offload-policy.cjs +0 -86
  281. package/bin/pending-media-policy.cjs +0 -182
  282. package/bin/pending-token-estimate-policy.cjs +0 -41
  283. package/bin/personal-memory-consent-policy.cjs +0 -72
  284. package/bin/personal-memory-performance-policy.cjs +0 -12
  285. package/bin/personality-choice-policy.cjs +0 -101
  286. package/bin/personality-memory-adapter.cjs +0 -379
  287. package/bin/personality-mode.cjs +0 -46
  288. package/bin/personality-setup-policy.cjs +0 -197
  289. package/bin/proactive-compaction-policy.cjs +0 -25
  290. package/bin/profile-identity-resolution.cjs +0 -136
  291. package/bin/profile-runtime.cjs +0 -318
  292. package/bin/profile-tool-exclusion-policy.cjs +0 -37
  293. package/bin/programmatic-context-isolation.cjs +0 -25
  294. package/bin/programmatic-tool-runtime.mjs +0 -627
  295. package/bin/provider-idle-timeout-policy.cjs +0 -14
  296. package/bin/provider-model-refresh-deadline.cjs +0 -53
  297. package/bin/provider-model-refresh-policy.cjs +0 -107
  298. package/bin/rate-limit-recovery-policy.cjs +0 -47
  299. package/bin/read-batch-policy.cjs +0 -32
  300. package/bin/read-continuation-policy.cjs +0 -59
  301. package/bin/recurring-cron-history-policy.cjs +0 -124
  302. package/bin/relationship-continuity-policy.cjs +0 -143
  303. package/bin/relationship-curiosity-policy.cjs +0 -107
  304. package/bin/relationship-learning-policy.cjs +0 -168
  305. package/bin/release-artifact-freeze-policy.cjs +0 -30
  306. package/bin/reload-plugin-bootstrap.cjs +0 -18
  307. package/bin/reload-queue-policy.cjs +0 -38
  308. package/bin/repeated-assistant-response-policy.cjs +0 -232
  309. package/bin/repeated-injection-projection.cjs +0 -107
  310. package/bin/repeated-user-message-projection.cjs +0 -8
  311. package/bin/research-page-result.cjs +0 -74
  312. package/bin/retry-checkpoint-policy.cjs +0 -13
  313. package/bin/runtime-exit-ledger.cjs +0 -144
  314. package/bin/scoped-cron-run-policy.cjs +0 -358
  315. package/bin/session-checkpoint-policy.cjs +0 -25
  316. package/bin/session-compaction-policy.cjs +0 -84
  317. package/bin/session-replay-policy.cjs +0 -20
  318. package/bin/session-replay-window-policy.cjs +0 -40
  319. package/bin/session-resume-checkpoint.cjs +0 -254
  320. package/bin/session-scrollback-archive.cjs +0 -229
  321. package/bin/skill-activation-performance-policy.cjs +0 -69
  322. package/bin/skill-listing-performance-policy.cjs +0 -92
  323. package/bin/soul-organization-policy.cjs +0 -78
  324. package/bin/soul-preservation-policy.cjs +0 -20
  325. package/bin/startup-preferences.cjs +0 -131
  326. package/bin/streaming-flush-performance-policy.cjs +0 -28
  327. package/bin/structured-agent-swarm-output.cjs +0 -325
  328. package/bin/structured-subagent-output.cjs +0 -252
  329. package/bin/subagent-context-fork-policy.cjs +0 -155
  330. package/bin/subagent-max-tokens-handoff-policy.cjs +0 -69
  331. package/bin/subagent-parent-responsiveness.cjs +0 -19
  332. package/bin/subagent-skill-policy.cjs +0 -206
  333. package/bin/subagent-timeout-policy.cjs +0 -182
  334. package/bin/subagent-tool-policy.cjs +0 -60
  335. package/bin/subagent-usage-rollup-policy.cjs +0 -29
  336. package/bin/system-prompt-context-policy.cjs +0 -124
  337. package/bin/system-prompt-token-cache-policy.cjs +0 -60
  338. package/bin/telegram-addressed-focus.cjs +0 -55
  339. package/bin/telegram-addressed-priority.cjs +0 -12
  340. package/bin/telegram-approval-relay.cjs +0 -290
  341. package/bin/telegram-bot-priority.cjs +0 -17
  342. package/bin/telegram-console-status-policy.cjs +0 -174
  343. package/bin/telegram-context-projection-policy.cjs +0 -141
  344. package/bin/telegram-delivery-lifecycle.cjs +0 -125
  345. package/bin/telegram-direct-focus-policy.cjs +0 -273
  346. package/bin/telegram-mcp-compatibility.cjs +0 -49
  347. package/bin/telegram-media-delivery-policy.cjs +0 -42
  348. package/bin/telegram-private-conversation-policy.cjs +0 -185
  349. package/bin/telegram-queue-handoff-policy.cjs +0 -73
  350. package/bin/telegram-remote-status-policy.cjs +0 -120
  351. package/bin/telegram-session-queue-runtime.mjs +0 -306
  352. package/bin/telegram-text-chunk-policy.cjs +0 -63
  353. package/bin/telegram-truncated-reply-policy.cjs +0 -37
  354. package/bin/telegram-urgent-policy.cjs +0 -45
  355. package/bin/telemetry-spool-policy.cjs +0 -57
  356. package/bin/thinking-activity-status-policy.cjs +0 -132
  357. package/bin/thinking-only-guard.cjs +0 -80
  358. package/bin/todo-list-turn-policy.cjs +0 -131
  359. package/bin/tool-call-loop-policy.cjs +0 -51
  360. package/bin/tool-file-persistence.cjs +0 -141
  361. package/bin/tool-result-offload-policy.cjs +0 -359
  362. package/bin/tool-result-offload-telemetry.cjs +0 -12
  363. package/bin/tool-schema-token-cache-policy.cjs +0 -41
  364. package/bin/tool-stream-preview-policy.cjs +0 -9
  365. package/bin/tui-functional-contract.cjs +0 -55
  366. package/bin/turn-tool-performance-policy.cjs +0 -486
  367. package/bin/usage-cache-efficiency-policy.cjs +0 -26
  368. package/bin/user-home-path-policy.cjs +0 -13
  369. package/bin/user-message-offload-policy.cjs +0 -103
  370. package/bin/user-prompt-hook-origin-policy.cjs +0 -34
  371. package/bin/user-tool-record-policy.cjs +0 -7
  372. package/bin/validated-learning-insight-policy.cjs +0 -58
  373. package/bin/validated-learning-outcome-trace.cjs +0 -107
  374. package/bin/validated-learning-performance-policy.cjs +0 -53
  375. package/bin/validated-learning-signal.cjs +0 -463
  376. package/bin/windows-bash-dialect-policy.cjs +0 -25
  377. package/bin/windows-node-crash-dump.cjs +0 -110
  378. package/bin/write-continuation-policy.cjs +0 -69
  379. package/codebase-index/README.md +0 -82
  380. package/codebase-index/codebase_index.py +0 -470
  381. package/standard-skills/agent-browser/SKILL.md +0 -19
  382. package/standard-skills/agent-browser/references/runtime.md +0 -8
  383. package/standard-skills/blun-session-inspector/SKILL.md +0 -41
  384. package/standard-skills/blun-session-inspector/scripts/inspect-session.cjs +0 -437
  385. package/standard-skills/design-taste-frontend/SKILL.md +0 -1206
  386. package/standard-skills/full-output-enforcement/SKILL.md +0 -49
  387. package/standard-skills/high-end-visual-design/SKILL.md +0 -98
  388. package/standard-skills/image-to-code/SKILL.md +0 -1228
  389. package/standard-skills/industrial-brutalist-ui/SKILL.md +0 -92
  390. package/standard-skills/minimalist-ui/SKILL.md +0 -85
  391. package/standard-skills/motion-design-taste/SKILL.md +0 -74
  392. package/standard-skills/playwright-testing/SKILL.md +0 -19
  393. package/standard-skills/playwright-testing/references/runtime.md +0 -7
  394. package/standard-skills/premortem/SKILL.md +0 -148
  395. package/standard-skills/redesign-existing-projects/SKILL.md +0 -178
  396. package/standard-skills/research-evidence/SKILL.md +0 -39
  397. package/standard-skills/research-evidence/references/evidence-format.md +0 -104
  398. package/standard-skills/research-evidence/scripts/evidence-collection.cjs +0 -260
  399. package/standard-skills/research-evidence/scripts/score-report.cjs +0 -130
  400. package/standard-skills/screenshot-lesen/SKILL.md +0 -52
  401. package/standard-skills/stitch-design-taste/DESIGN.md +0 -121
  402. package/standard-skills/stitch-design-taste/SKILL.md +0 -184
  403. package/standard-skills/telegram-channel/SKILL.md +0 -18
  404. package/standard-skills/telegram-channel/references/runtime.md +0 -7
  405. package/standard-skills/venture-flywheel/SKILL.md +0 -32
  406. package/standard-skills/venture-flywheel/identity/project-identity.cjs +0 -146
  407. package/standard-skills/venture-flywheel/policy/capability-engine.cjs +0 -114
  408. package/standard-skills/venture-flywheel/policy/repository-trust.cjs +0 -229
  409. package/standard-skills/venture-flywheel/references/BEISPIELE-phase0.md +0 -146
  410. package/standard-skills/venture-flywheel/references/CAPABILITY-MAP.md +0 -34
  411. package/standard-skills/venture-flywheel/references/SPEC-phase0-identity-trust.md +0 -77
  412. package/standard-skills/venture-flywheel/references/SPEC-phase0-state-events.md +0 -93
  413. package/standard-skills/venture-flywheel/schemas/capability-decision.schema.json +0 -13
  414. package/standard-skills/venture-flywheel/schemas/execution-event.schema.json +0 -44
  415. package/standard-skills/venture-flywheel/schemas/project-identity.schema.json +0 -32
  416. package/standard-skills/venture-flywheel/schemas/repository-trust.schema.json +0 -57
  417. package/standard-skills/venture-flywheel/schemas/run-transition.schema.json +0 -59
  418. package/standard-skills/venture-flywheel/state/execution-event.cjs +0 -191
  419. package/standard-skills/venture-flywheel/state/task-state-machine.cjs +0 -190
  420. package/standard-skills/web-lesen/SKILL.md +0 -73
  421. package/standard-skills/web-lesen/scripts/crawl_public.py +0 -379
  422. package/standard-skills/windows-mcp/SKILL.md +0 -19
  423. package/standard-skills/windows-mcp/references/runtime.md +0 -9
  424. package/telegram-plugin/DELIVERY.md +0 -36
  425. package/telegram-plugin/bin/telegram-approval-relay.cjs +0 -290
  426. package/telegram-plugin/bin/telegram-console-status-policy.cjs +0 -175
  427. package/telegram-plugin/bin/telegram-delivery-lifecycle.cjs +0 -125
  428. package/telegram-plugin/bin/telegram-direct-reply-policy.cjs +0 -48
  429. package/telegram-plugin/bin/telegram-launcher-status-queue.cjs +0 -122
  430. package/telegram-plugin/bin/telegram-private-conversation-policy.cjs +0 -186
  431. package/telegram-plugin/bin/telegram-remote-status-policy.cjs +0 -121
  432. package/telegram-plugin/bin/telegram-reply-parts.cjs +0 -149
  433. package/telegram-plugin/bin/telegram-text-chunk-policy.cjs +0 -63
  434. package/telegram-plugin/bin/telegram-typing-keepalive.cjs +0 -89
  435. package/telegram-plugin/compat/mcp-server-fa511cd1.mjs +0 -73825
  436. /package/{bin → scripts}/fix-node-pty-perms.js +0 -0
package/CHANGELOG.md CHANGED
@@ -1,188 +1,14 @@
1
- ## 9.1.587 - 2026-09-10
1
+ # BLUN King Changelog
2
2
 
3
- - Preserve the active tool catalog across buffered instructions and the following work step. Required tools remain available; retained optional schemas are reselected when the existing schema budget is exceeded.
4
- - Restore earlier automatic context compaction and allow another automatic compaction in the same turn after a successful shrinking summary. Smaller model limits and failure limits remain in force.
5
- - After a thinking-only timeout, use the existing single recovery attempt with thinking disabled so the model can answer or call a tool. Subsequent ordinary steps retain the chosen thinking setting; cancellation, approval checks and timeout bounds remain in force.
6
- - Set BLUN_STABLE_STEER_TOOLS=0 or BLUN_EARLY_COMPACTION=0 before starting King to restore the previous behavior for the respective feature. No existing sessions or configuration files are rewritten by this update.
3
+ ## 9.1.589
7
4
 
8
- ## 9.1.586 - 2026-09-09
5
+ - Bundle reviewed AgentSpine and Translate Native sources with verified update manifests.
6
+ - Preserve the active King profile when loading agent context.
7
+ - Keep required response-review tools available and record generated-response usage even when review rejects the response.
8
+ - Apply mention-required group routing in the managed channel integration.
9
+ - Show compaction activity and effective thresholds in the terminal.
10
+ - Preserve the early-compaction working budget and request-boundary safety margin across updates.
11
+ - Use the selected language throughout the startup update dialog, progress and queued-update messages.
12
+ - Keep technical integration identifiers and licenses intact while neutralizing visible runtime error messages.
9
13
 
10
- - Fix Telegram receiver startup on Windows when an old bridge PID has been reused by an unrelated process. Preserve uncertain process ownership and never stop that unrelated process.
11
- - Keep context compaction, model settings, conversation history, and existing Telegram delivery behavior unchanged.
12
-
13
-
14
- ## 9.1.585 - 2026-09-08
15
-
16
- - Managed WebSearch validates result envelopes and source rows even when optional search status metadata is absent.
17
- - Malformed successful HTTP responses no longer appear as empty searches; invalid source rows fail the whole response before results or partial-source notices are returned.
18
- - Valid legacy responses, empty result arrays and empty string excerpts remain supported. Cancellation, request authentication, FetchURL and Telegram behavior are unchanged.
19
-
20
- ## 9.1.584 - 2026-09-08
21
-
22
- - WebSearch forwards caller cancellation through the tool and managed HTTP search request, including response-body reads.
23
- - Already cancelled searches do not start provider work. Cancellation during credential lookup prevents a later search request; late search results are withheld.
24
- - Complete, partial and empty-result handling, citation output and normal authentication fallback remain unchanged. No new timeout or Telegram routing change.
25
-
26
- ## 9.1.583 - 2026-09-08
27
-
28
- - FetchURL now passes caller cancellation through the tool and both fetch providers to the HTTP request.
29
- - An aborted managed fetch no longer starts a local fallback, and a late provider result cannot become source evidence after cancellation.
30
- - Normal fetch failures still allow the existing fallback. No new timeout is introduced; Telegram routing and model requests are unchanged.
31
-
32
-
33
- # 9.1.582 - 2026-09-08
34
-
35
- - Stop oversized local page responses while reading their body, including responses without a reliable Content-Length header. Cancel the stream when received bytes exceed the existing ten MiB limit.
36
- - Apply the limit to the delivered response stream after HTTP decompression and preserve UTF-8 characters split across chunks. Transport buffers and the crossing chunk may already exist; this is not an exact process-memory ceiling.
37
- - Keep the research fixes from 9.1.581. Telegram delivery, incoming addressing and model timing logic are unchanged.
38
-
39
- ## 9.1.581
40
-
41
- - Local HTML fetching now rejects extraction results that are empty after cleanup, instead of presenting a document title alone as page content.
42
- - Short genuine content, visible headings, and plain-text or Markdown responses remain available. The existing extraction error path is preserved.
43
- - Includes the 9.1.580 research fixes and earlier Telegram repairs unchanged. Model latency and incoming message addressing are unchanged.
44
-
45
- ## 9.1.580 - 2026-09-08
46
-
47
- - Research collections reject impossible calendar dates and unparseable date-time
48
- suffixes in optional historical source metadata before saving a new report.
49
- - Recall skips legacy snapshots containing invalid source dates and reports a
50
- diagnostic without rewriting or deleting them. Separate valid snapshots remain
51
- searchable; valid date strings keep their original offset and precision.
52
- - Includes the 9.1.579 research ordering and earlier Telegram repairs unchanged.
53
- This release does not change model latency or incoming message addressing.
54
-
55
- ## 9.1.579 - Research capture ordering
56
-
57
- - Saved research passages with equal relevance are ordered by their actual UTC retrieval time, including mixed second and millisecond timestamp formats.
58
- - Duplicate passages retain the newest capture's provenance. Equal instants retain the existing stable order; relevance still takes priority over time.
59
- - Existing snapshots are not rewritten or called fresh. This is a local research-recall correction, not a search ranking, model latency or Telegram routing change.
60
- - Includes the 9.1.578 Telegram reply repair and bounded thinking-only retry unchanged.
61
-
62
- ## 9.1.578 - 2026-09-08
63
-
64
- - Bound thinking-only recovery to one additional attempt per step. A second thinking-only timeout stops that step instead of repeatedly issuing the same request. The chosen reasoning effort and existing timeout remain unchanged; this is not a promise of faster first-token response times.
65
- - Preserve short Telegram group presence answers when reply_to binds them to a recent same-chat input explicitly addressed to the agent, or a supported German/English presence question beginning with the agent's own configured name. Unsolicited presence and silence-only narration remain filtered; ordinary automatic group fallback stays disabled.
66
- - Include reply_to in outgoing reply and suppression diagnostics. Missing or ambiguous context does not grant a presence exception. This does not add general recipient recognition or prevent turns caused by legacy semantic addressing.
67
- - Apply the outbound repair to two exact known managed Telegram MCP revisions, including the final plugin configuration merge. The legacy sender receives a narrowly changed compatibility copy. Existing incoming bridges, access settings, profiles and registers are not rewritten; unknown/custom senders and explicit overrides are preserved. A newly started King process is required.
68
-
69
-
70
- ## 9.1.577 - 2026-09-07
71
-
72
- - Stop automatically forwarding ordinary assistant turn-end text to Telegram groups, in both the CLI core and the standalone bridge. This prevents the automatic fallback from posting explanations that there is nothing to report or that a message addresses someone else.
73
- - Group replies must be sent deliberately through the Telegram reply tool. Normal input, active steering and standalone group prompts describe the same delivery rule.
74
- - Preserve private-chat replies, explicit reply tools, required goal results, command/status messages and media delivery. Mention rules, access settings and managed-plugin resolution are unchanged.
75
- - This does not guarantee that a model will never make an unnecessary explicit reply, and it does not stop unrelated group input from reaching the model. No AgentSpine or language-guard update is included.
76
- - Running sessions are not restarted. The updated core must be loaded by a new process. Existing user profiles and session history are retained.
77
-
78
- ## 9.1.576 - 2026-09-07
79
-
80
- - Preserve standalone C++ and C# as distinct terms in local research recall,
81
- including case-insensitive queries and ordinary surrounding punctuation.
82
- - Keep existing saved passages, hashes, source guards, Unicode normalization,
83
- collection boundaries and output limits unchanged. No reindexing is required.
84
- - Add a frozen 20-case technical replay and explicit token-boundary regressions.
85
- This is a local recall correction, not a live WebSearch quality or capacity claim.
86
- - Retain all public575 crawler, search, Telegram, resume and updater changes.
87
-
88
- # 9.1.575 - 2026-09-07
89
-
90
- - Cumulative release retaining all public 9.1.574 changes.
91
- - The bundled public-web crawler rejects responses carrying `cf-mitigated: challenge` before reading content, following redirects or treating a missing robots file as permission to continue. Case-insensitive header names, normalized values and repeated headers are checked; the response status is retained in the failure report.
92
- - Unmarked missing robots files and ordinary documentation continue through the existing path. Completed pages remain available when a later page is rejected, with the failure recorded as partial output.
93
- - This is a response-marker safeguard, not general challenge detection or a CAPTCHA bypass. It does not change search providers, authentication, update locking or the CLI core.
94
-
95
-
96
- # 9.1.574 - 2026-09-07
97
-
98
- - Cumulative release retaining every public 9.1.573 payload change.
99
- - Explicit updates now distinguish a blocked update, an unavailable lock check,
100
- an unavailable private directory, an invalid installed version and an
101
- unavailable protected installer instead of reporting them as failed package
102
- verification. German and English messages are covered.
103
- - Update admission, locking, return reasons, exit codes and installer behavior
104
- are unchanged. Running sessions are not stopped automatically.
105
- - Packages pinned to an old internal channel still need an explicit npm
106
- installation after King is closed. This release does not remove that pin.
107
-
108
-
109
- ## 9.1.573
110
-
111
- - Keep the input field visible and focused after the startup goal choice,
112
- including Escape and a failed goal-resume request. Preserve unsent drafts.
113
- - Show a compact with/without-goal choice instead of the entire objective.
114
- - Ctrl+S leaves that choice without approving the goal and reaches the normal
115
- queue shortcut. It also handles pending input while the session is idle.
116
- - Preserve existing Escape behavior: queued work is cleared before a subsequent
117
- Escape cancels the active turn. No automatic deletion of session history.
118
-
119
- The release does not reconstruct acknowledgements lost by an older process
120
- before upgrading. Genuinely pending messages remain attached to their session.
121
-
122
- # Changelog
123
-
124
- ## 9.1.572
125
-
126
- - Research evidence rejects source URLs containing recognized credential parameter
127
- names in queries or parameter-shaped fragments, including nested names and
128
- fragment routes. Rejection applies to failed sources as well as usable sources.
129
- - Previously saved reports with these URLs are withheld during recall with the
130
- existing `partial` / `report-invalid` result. Original snapshots are not modified
131
- or deleted, and source addresses are never silently stripped or rewritten.
132
- - Ordinary documentation queries and anchors retain their exact bytes. This is
133
- a credential-name boundary, not general secret detection or a history cleanup.
134
-
135
-
136
- ## 9.1.571
137
-
138
- - Bind Telegram queue ranges to their owning session. A new session no longer automatically consumes work left pending by an older session; resuming a known session restores only its own pending ranges.
139
- - Pause channel intake across session selection, creation and switching. Preserve messages arriving after the chosen boundary, local editor follow-ups, and late acknowledgements for their original owner.
140
- - Keep queue ownership and out-of-order acknowledgements durable across reattachment and lease handover. Reject corrupt or replaced queue state instead of silently replaying old input.
141
- - Preserve the original inbox and session history. Legacy pending ranges without an identifiable session are parked rather than assigned to an unrelated new session. Automatic recovery of those unowned legacy ranges is not included.
142
-
143
- This change does not diagnose or repair every model timeout, compaction stall or cancelled turn. An explicit paused-work state remains a pause. Older application versions do not understand the new session-queue checkpoint; downgrading is not a queue-migration mechanism.
144
-
145
-
146
- - Apply the group-chatter correction to both the Telegram plugin and the console's independent automatic reply fallback.
147
- - Suppress recognized acknowledgements and narrated silence even when they are longer than 200 characters. Preserve a message whenever it also contains an unrecognized or substantive clause.
148
- - Preserve short useful group warnings. Message length alone no longer suppresses context-only replies in the console fallback.
149
- - Explain that ordinary assistant text can be forwarded automatically. Group turns without a request or useful contribution should produce neither a reply tool call nor an assistant message announcing silence.
150
- - Preserve private replies, group access settings, mention routing, media delivery, and the existing managed-plugin installation mechanism.
151
-
152
- This is a conservative German/English delivery guard plus prompt guidance, not a guarantee that every model understands every group conversation. A new process must load the updated package; running sessions are not restarted by this release.
153
-
154
- Packages pinned to the old internal update channel still require an explicit npm installation with King closed. Windows EBUSY remains a separate installation-lock problem; do not delete the package or stop unrelated processes on assumption.
155
-
156
- All other changes from 9.1.570 remain included. This release does not activate the hosted web-search route or change AgentSpine, billing, authentication, or customer configuration.
157
-
158
- ## 9.1.570
159
-
160
- ### Fixed
161
-
162
- - Give each new prompt delivery a distinct hook correlation ID. Hooks for the same delivery retain the same ID; explicitly supplied IDs are preserved.
163
- - Pass session-specific runtime environment values to hook subprocesses and MCP connections, including reconnects, without rewriting stored plugin configuration.
164
- - Preserve native tool-result correlation across turns, including failed tools and duplicate calls.
165
- - Match canonically equivalent Unicode research queries without conflating different characters. Stored sources, dates, versions and project boundaries are preserved.
166
- - Keep `king --help` and `king --version` from changing Windows crash-dump registry settings.
167
-
168
- ### Added
169
-
170
- - Support negotiated partial web-search results with a visible source-failure notice. Empty or incompatible partial responses remain explicit errors. This client change does not activate or guarantee a hosted search service.
171
- - Add the default-off `BLUN_EXPERIMENTAL_AGENT_SPINE_TIMELINE` transport. When explicitly enabled, it passes the actual persisted session-record path and protocol to the selected AgentSpine plugin, with a separate capability per session and a new capability after resume. This is transport support, not proof of recall or authorization by the receiving plugin.
172
-
173
- ### Preserved
174
-
175
- - Includes the public 9.1.569 Telegram group mention routing, startup, permission persistence, research collection and crawler changes.
176
- - The bundled AgentSpine implementation is unchanged from public 9.1.569. No Mnemo dependency is introduced.
177
- - User profiles, permissions, conversations and plugin settings are not migrated or reset by this release.
178
-
179
- ### Updating
180
-
181
- - Public-channel installations use `king update`.
182
- - Old packages explicitly pinned to the internal update channel do not discover public releases. Close the relevant King sessions, then migrate once with `npm install -g blun-king-cli@9.1.570`.
183
- - A Windows `EBUSY` rename failure means the installation did not complete. Identify the process holding the package before retrying; do not delete the package or terminate unrelated Node processes.
184
-
185
- ## 9.1.569
186
-
187
- - Cumulative public release including Telegram group mention routing, startup and permission fixes, research collection, and crawler tooling.
188
- - Published artifacts are immutable. Later changes ship under a new version.
14
+ Installation does not restart existing sessions. A running session loads the new code on its next start.
package/LIESMICH.txt CHANGED
@@ -1,19 +1,57 @@
1
- BLUN Code 9.1.566
1
+ BLUN King für macOS und Windows
2
+ ===============================
2
3
 
3
- Installation:
4
- npm install -g blun-king-cli@9.1.566
4
+ Voraussetzung
5
+ -------------
6
+ Node.js 24.15 oder neuer muss installiert sein.
5
7
 
6
- Start:
7
- blun
8
+ Installation
9
+ ------------
10
+ Die geprüfte Version exakt global installieren:
8
11
 
9
- Start with the configured Telegram channel:
10
- king
12
+ npm install -g blun-king-cli@9.1.36
11
13
 
12
- At the first start, use /login to connect an account. If an update is
13
- available, BLUN Code asks before it prepares or starts the installer.
14
- Automatic installation is disabled by default.
14
+ Start
15
+ -----
15
16
 
16
- Enter /help in the console for the complete command list.
17
+ blun Dieselbe CLI, ohne Telegram automatisch anzubinden
18
+ king Dieselbe CLI, mit automatisch angebundenem Telegram-Kanal
17
19
 
18
- The public package contains no model-selection dialog. /model is retained only
19
- as a compatibility alias for /effort.
20
+ Beide Startbefehle verwenden dieselbe Version, dasselbe Konto, dasselbe Modell
21
+ und dieselben Befehle.
22
+
23
+ Nachweisbare Arbeitsabläufe
24
+ ---------------------------
25
+
26
+ blun proof Prüfergebnisse und Artefakte mit SHA-256 belegen
27
+ blun brief Einen versionierten Projektauftrag anlegen
28
+ blun handoff Eine Sitzung zwischen CLI, Desktop und Web übergeben
29
+ blun replay Einen bereinigten Arbeitsverlauf erzeugen
30
+ blun guard Belegintegrität und aktuelle Artefakte prüfen
31
+ blun demo Eine bereinigte statische Projektdemo erzeugen
32
+ blun workspace Isolierte Git-Arbeitsbereiche verwalten
33
+
34
+ Alle Befehle funktionieren identisch mit `king`.
35
+
36
+ Aktualisieren
37
+ -------------
38
+
39
+ blun update
40
+
41
+ `king update` und `upgrade` sind gleichwertig. Der Updater bleibt im installierten
42
+ Stable- oder Next-Kanal, verhindert Rückstufungen und installiert nur eine zuvor
43
+ aufgelöste exakte Paketversion.
44
+
45
+ Beim ersten Start in der Konsole /login eingeben. Der Browser öffnet den
46
+ BLUN-OAuth-Login.
47
+ Ein API-Schlüssel wird weder abgefragt noch in die Konfiguration geschrieben.
48
+
49
+ Telegram einrichten
50
+ --------------------
51
+ 1. Einen Bot bei BotFather anlegen.
52
+ 2. Den Bot-Token in dieser Datei eintragen:
53
+
54
+ ~/.blun/channels/telegram/.env
55
+
56
+ 3. `king` starten und den angezeigten Pairing-Code mit
57
+ /telegram:access pair CODE bestätigen.
package/README.md CHANGED
@@ -1,65 +1,62 @@
1
- # BLUN Code
1
+ # blun-king-cli — npm-Distribution
2
2
 
3
- BLUN Code is an interactive command-line agent for working with files, shells,
4
- web tools, MCP servers, and an optional Telegram channel.
3
+ Dieses Verzeichnis ist das Gerüst des öffentlichen npm-Pakets `blun-king-cli`
4
+ (Erstveröffentlichung 8.0.0, 06.07.2026, Account `blunking`).
5
5
 
6
- ## Requirements
6
+ ## Installation
7
7
 
8
- - Node.js 24.15.0 or newer
9
- - Windows, macOS, or Linux on x64 or arm64
8
+ Voraussetzung ist Node.js 24.15 oder neuer. Die geprüfte Version wird exakt
9
+ installiert:
10
10
 
11
- ## Install
12
-
13
- ```sh
14
- npm install -g blun-king-cli@9.1.566
15
- ```
16
-
17
- Start the local console with:
18
-
19
- ```sh
20
- blun
11
+ ```powershell
12
+ npm install -g blun-king-cli@9.1.36
21
13
  ```
22
14
 
23
- Use `king` to start the same console with the configured Telegram channel
24
- attached. On first use, `/login` opens the account sign-in flow.
15
+ ## Reproduzierbares Staging und Packen
25
16
 
26
- ## Updates
17
+ Der Schritt baut nichts, installiert nichts und veröffentlicht nichts. Vorher müssen
18
+ `apps/blun-king/dist/main.mjs`, `dist-web`, die Darwin- und Windows-Natives sowie
19
+ `plugins/telegram/dist` bereits frisch gebaut sein.
27
20
 
28
- When an update is available, BLUN Code asks what to do before preparing or
29
- starting an installer. Choose one of these actions:
21
+ Das Staging landet standardmäßig
22
+ unter `.stage/package`, das Tarball unter `.stage/artifacts`.
23
+ `BLUN_NPM_STAGE_DIR` und `BLUN_NPM_ARTIFACT_DIR` können beide Ziele überschreiben;
24
+ beim direkten Skriptaufruf stehen zusätzlich `--output` und `--artifacts` bereit.
30
25
 
31
- - Update now
32
- - Skip this start
33
- - Wait for the next release
34
-
35
- Unattended updates are opt-in. They can be enabled in `tui.toml`:
36
-
37
- ```toml
38
- [upgrade]
39
- auto_install = true
40
- ```
26
+ Der Schritt validiert alle Pflichtartefakte vor dem Leeren des alten Stagings. Er
27
+ kopiert nur die Paket-Hülle, `blun.mjs`, `dist-web`, `native`, Telegrams
28
+ `dist`/Manifest/Commands und die Repo-Skills.
41
29
 
42
- ## Commands
30
+ ## Startmodi
43
31
 
44
- Enter `/help` in the console to see the available commands. Common commands
45
- include `/login`, `/usage`, `/mcp`, `/telegram:access`, and `/effort`.
32
+ `blun` startet die lokale Konsole, ohne Telegram automatisch anzubinden. `king`
33
+ startet dieselbe Konsole und bindet den eingerichteten Telegram-Kanal automatisch
34
+ an. Version, Konto, Modell und Befehle sind ansonsten identisch. Der Unterschied
35
+ gilt nur für den laufenden Prozess; die gespeicherte
36
+ Plugin-Konfiguration wird nicht umgeschrieben.
46
37
 
47
- `/model` remains a compatibility alias for `/effort`; the public package does
48
- not expose a model-selection dialog.
38
+ Beim ersten Start werden das Telegram-Plugin und die mitgelieferten Skills
39
+ eingerichtet. Die Anmeldung erfolgt anschließend in der
40
+ Konsole mit `/login` über den BLUN-OAuth-Server. Das Paket erzeugt keine
41
+ statische Anbieter- oder API-Key-Konfiguration.
49
42
 
50
- ## Telegram
43
+ ## Nachweisbare Arbeitsabläufe
51
44
 
52
- Run `/telegram:access connect` in the console to create a short-lived pairing
53
- code. Send `/connect CODE` in the intended private chat or group. Pairing codes
54
- expire after ten minutes and can be used once.
45
+ Version 9.1.0 enthält sieben zusätzliche, getrennt nutzbare Befehlsgruppen:
55
46
 
56
- ## MCP servers
47
+ - `proof` belegt Prüfungen und Artefakte mit SHA-256.
48
+ - `brief` erstellt einen versionierten Projektauftrag.
49
+ - `handoff` übergibt eine Sitzung zwischen CLI, Desktop und Web.
50
+ - `replay` erzeugt einen bereinigten Arbeitsverlauf.
51
+ - `guard` prüft Belegintegrität und aktuelle Artefakte.
52
+ - `demo` erzeugt eine bereinigte statische Projektdemo.
53
+ - `workspace` verwaltet isolierte Git-Arbeitsbereiche.
57
54
 
58
- Use `/mcp` to inspect connected servers. Command-line management is available
59
- through `blun tools list`, `blun tools enable NAME`, and
60
- `blun tools disable NAME`.
55
+ Sie stehen unter `blun` und `king` identisch zur Verfügung.
61
56
 
62
- ## Privacy
57
+ ## Aktualisieren
63
58
 
64
- The package contains no account credentials or private channel identifiers.
65
- Local profiles, sessions, and configuration remain in the user's BLUN home.
59
+ `blun update`, `king update` und die jeweilige Variante `upgrade` verwenden
60
+ denselben abgesicherten Updater. Er bleibt im installierten Stable- oder
61
+ Next-Kanal, verhindert Rückstufungen und übergibt npm ausschließlich eine zuvor
62
+ aufgelöste exakte Paketversion.
@@ -9,22 +9,34 @@
9
9
  "homepage": "https://github.com/Maykbiletti/AgentSpine",
10
10
  "repository": "https://github.com/Maykbiletti/AgentSpine",
11
11
  "license": "Apache-2.0",
12
- "keywords": ["identity", "memory", "mcp", "agents"],
12
+ "keywords": [
13
+ "identity",
14
+ "memory",
15
+ "mcp",
16
+ "agents"
17
+ ],
13
18
  "skills": "./skills/",
14
19
  "hooks": "./hooks/codex.json",
15
20
  "mcpServers": {
16
21
  "agent-spine": {
17
22
  "command": "node",
18
- "args": ["${PLUGIN_ROOT}/src/mcp.js"]
23
+ "args": [
24
+ "${PLUGIN_ROOT}/src/mcp.js"
25
+ ]
19
26
  }
20
27
  },
21
28
  "interface": {
22
29
  "displayName": "AgentSpine",
23
30
  "shortDescription": "Identity and memory without rewriting your files.",
24
31
  "longDescription": "Maps existing rules, soul, memory, and linked Markdown into a verifiable context spine while preserving every source byte.",
25
- "developerName": "Mayk Biletti",
32
+ "developerName": "BLUN",
26
33
  "category": "Developer Tools",
27
- "capabilities": ["Read", "MCP", "Hooks", "Worker"],
34
+ "capabilities": [
35
+ "Read",
36
+ "MCP",
37
+ "Hooks",
38
+ "Worker"
39
+ ],
28
40
  "websiteURL": "https://github.com/Maykbiletti/AgentSpine",
29
41
  "defaultPrompt": [
30
42
  "Map this project's existing agent identity.",
@@ -6,6 +6,17 @@ All notable changes to AgentSpine will be documented here. The project follows [
6
6
 
7
7
  ### Added
8
8
 
9
+ - Added provider-native pre-answer delivery binding. Codex receipts use its supported string `turn_id` and bind any accompanying exact event ID; hosts without a supported turn ID receive a process-local hook-invocation capability, so identical legitimate prompts are distinct without reviving the old prompt-digest replay collision. Unsupported numeric turn claims remain rejected.
10
+ - Added source-verified objective-result continuation advancement for one exact private task/thread. A pre-existing source-bound outcome contract fixes the measured step and success transition; failures update only the last verified step without retrying, successes apply only the contracted successor or completion, and stale/postdated/conflicting contracts or newer user corrections prevent automatic advancement.
11
+ - Development only: one source-bound interpretation or exact-set clarification for two to three natural user messages survives restart/compaction. Multi-session ambiguity reopens each source and binds provider, session, message and digests. Pre-answer envelopes omit redundant absolute paths so fixed budgets remain platform-neutral. Candidates stay `model-suggestion` assumptions with `completionVerified:false`; continuation, authority, completion and semantic acceptance are unchanged. A real new-session model acceptance is still required.
12
+ - Added a source-verified timeline correction path for an existing task continuation. Only an enrolled native user message with the exact `Correction: next step:` or `Korrektur: nächster Schritt:` prefix can replace the next step, and only inside the authenticated portal/thread route; ordinary chat and model text remain excluded.
13
+ - Added an explicit timeline-to-world capture path. One exact objective event from a bound search is reopened, byte-verified and recorded in the existing world model with host-derived task, portal/thread, source, message and time provenance; archived chat and caller interpretations are never promoted to facts.
14
+ - Extended the authenticated opaque portal/thread binding from session-timeline recall through the existing structured knowledge and task-continuation path. The exact current thread now receives its confirmed correction, last verified step, and next step across restart and compaction; deliberately portable project knowledge remains portable.
15
+ - Added an authenticated, opaque portal/thread continuity binding to the existing session-timeline lifecycle. Prior-session hints and evidence searches now stay inside the exact channel route that created the enrollment; unbound historical records remain valid but cannot enter a route-bound search.
16
+ - Added an explicit group-response contract to the gateway worker: silent completion creates no outbox or delivery claim, and scoped exact-content contribution deduplication survives restart. Direct answers and legacy host replies remain compatible; live King addressing and adoption are not implied.
17
+ - Added action-time recall for currently valid, outcome-gated behavior learning whose stored task scope exactly matches the authenticated runtime task. Claude, Codex and King-compatible lifecycle hooks receive the bounded context before tool use without creating permissions or a second application receipt.
18
+ - Added a local, command-free artifact evaluator that derives pass rates and blocking defects from at most sixteen precommitted file checks and submits actual observations to the existing learning-measurement contract. It is one evaluator principal, not a source of independent aliases, authorization, completion or automatic promotion.
19
+ - Added a disabled-by-default cross-provider objective-evidence handoff across separately enrolled Claude, Codex and King sources. It requires a protected local host capability plus an explicit prior-provider search, ranks the bounded index first, opens at most one immutable snapshot and returns provider/session/message provenance.
9
20
  - Added a native King agent-wire history adapter with an explicit protected source/protocol mapping, provider-separated lifecycle binding, bounded objective `tool.result` extraction, and stable session/message references. It never scans `BLUN_HOME`, reuses Codex rollout parsing, or changes King permissions.
10
21
  - Added an explicitly enrolled native Codex rollout adapter for bounded same-task historical tool-result recall, with project/session header verification, native message references, unchanged source bytes and independent provider contracts. Live-host acceptance remains open.
11
22
 
@@ -18,6 +29,12 @@ All notable changes to AgentSpine will be documented here. The project follows [
18
29
 
19
30
  ### Security
20
31
 
32
+ - Explicit next-step corrections preserve the existing objective, status, open questions and last verified step, retain superseded history, reject completed/conflicting/missing or newer continuations, and use an active-set compare-and-swap so concurrent different corrections cannot fork the current checkpoint. The sidecar stores no correction text or content-derived search terms; they remain context-only and grant no action or send authority.
33
+ - Timeline capture has its own one-use `PreToolUse` invocation and derives the assertion ID, subject, predicate, evidence class, evidence digest, source references and private route scope internally. Direct MCP, replay, foreign/group scope, wrong event IDs, changed sources and caller-supplied provenance write nothing; contradictory measurements remain uncertainty instead of becoming a selected fact.
34
+ - Task-subject knowledge written or read through a portal-bound MCP process takes project, group, task, portal, and thread from authenticated gateway context. Tool-supplied route claims, partial pairs, foreign task reads, and cross-thread supersession fail closed; unbound readers cannot see route-bound task knowledge.
35
+ - Portal and thread references are derived inside the gateway from the authenticated provider, tenant, account, binding, chat, thread, session, agent and project route. Raw route IDs are not stored in timeline state; model-supplied route claims, partial bindings and foreign threads return no recall and create no authority.
36
+ - Action-time learning excludes generic, foreign-task, foreign-tenant, group, stale, revoked and rolled-back candidates. Learning-state failures degrade this advisory recall without blocking normal host work, while existing source lessons remain separately bounded and user-owned source bytes stay unchanged.
37
+ - Cross-provider recall requires exact private entity, user, tenant, project, task and compatible-goal continuity. The current provider keeps its own transport binding while the selected source is revalidated with its original signed provider enrollment and profile root; missing opt-in, foreign/group scope, expiry, mutation and replay return no content or authority.
21
38
  - Task recall opens no source, grants no authority, excludes unsafe state, and returns at most six entries.
22
39
  - Task continuation is context-only and derived only from current, confirmed, conflict-free, exactly scoped checkpoints. Proposed, stale, conflicting, foreign and malformed checkpoints are never resumable; completed checkpoints require a passed verified step and no remaining work.
23
40
  - Structured knowledge remains context-only: repeated model suggestions stay assumptions, unresolved conflicting values cannot enter facts, foreign project/group/private records remain excluded, and secret-shaped values or rationales fail both ingestion and persisted-state validation.
@@ -26,6 +43,13 @@ All notable changes to AgentSpine will be documented here. The project follows [
26
43
 
27
44
  ### Tests
28
45
 
46
+ - Native Claude hook processes now accept two identical prompt submissions (1/2 before, 2/2 after); Codex accepts two distinct native turns and rejects reuse of one turn. Cross-turn receipt verification, copied-input reconstruction, unsupported numeric IDs, restart state, and instruction-source byte preservation are covered. These are lifecycle tests, not model application.
47
+ - A three-provider parser probe admits only strictly prefixed native user corrections and excludes assistant claims, ordinary chat, multiline content, secrets and instruction overrides. A real Claude hook/MCP multi-session comparison changes the same-thread next step from the obsolete plan to the explicit correction, keeps a foreign thread empty, rejects a stale correction, deduplicates a concurrent capture across fresh processes and preserves source bytes; no model or token benefit is claimed.
48
+ - A multi-session Claude Before/After starts with zero structured entries despite a verified historical `FAIL 0/15`, then records exactly one source-derived entry visible after an MCP restart only in the same BLUN thread. Concurrent capture, duplicate restart, conflict preservation, direct calls, wrong events, source mutation, group/route isolation and source bytes are covered; native Codex and King histories exercise the same capture tool without implying live-host or model performance.
49
+ - A two-thread continuation comparison holds user, tenant, project, and task constant: the prior unbound view yields zero resumable checkpoints because the states conflict, while the authenticated view yields exactly one current correction and next step. MCP write/read, `SessionStart`, `PostCompact`, a fresh process, terminal foreign work, portable project learning, race, tamper, service failure, source bytes, and the 9,500-byte hook budget are covered; model/token improvement is not claimed.
50
+ - Product and documentation growth before this release-evidence line measured 1,953 packed and 6,913 unpacked bytes. The finite ceilings move by 2 KiB packed and 7 KiB unpacked; file-count, required-file, forbidden-source and safety checks are unchanged.
51
+ - A three-session portal comparison fixes the task, user, tenant and project while varying only the thread: the legacy binding admits two prior candidates, whereas the authenticated route admits exactly one and retrieves its sourced FAIL 0/15. Restart, compaction, self-claims, partial routes, transcript bytes and route-boundary changes are covered; no model or token improvement is claimed.
52
+ - A synthetic Claude-to-Codex Before/After proves that provider history is absent by default and exactly one measured `FAIL 0/15` becomes available after both opt-ins and restart/compaction. Provider provenance, source bytes, invocation replay, scope/group isolation and changed-source rejection are covered.
29
53
  - Synthetic King sessions A/B prove measured `FAIL 0/15` recall after restart and compaction while exact gateway binding, wrong protocol/path/scope/provider, replay/race, source mutation, unknown records, and source-byte preservation remain enforced.
30
54
  - A CSS-archive Before/After restores its sourced backup lesson after restart and `PostCompact`; boundary tests remain green.
31
55
  - Synthetic Before/After probes show that a legacy task-state cannot reconstruct work, while the structured checkpoint restores exactly one sourced next step after a separate-process restart and `PostCompact`. Correction, completion, MCP, scope, conflict, proposal, tamper, bounds and source-byte tests prevent false continuation.
@@ -34,6 +58,8 @@ All notable changes to AgentSpine will be documented here. The project follows [
34
58
 
35
59
  ### Fixed
36
60
 
61
+ - The portal/thread lifecycle probe that starts a fresh process now runs outside the shared Windows I/O pool. Its existing assertions and process deadlines are unchanged.
62
+ - The hermetic runner isolates the real host-origin source-attestation probe from concurrent Windows filesystem pressure, preserving its existing fail-closed result and timing boundaries without increasing a timeout.
37
63
  - Reuse host-verified, assignment-bound briefing observations in MCP delivery preparation without a second content fetch; keep missing proof advisory and document provider-specific history limits.
38
64
 
39
65
  - Integrated the preserved attention refactoring: six modules (each below 500 lines), unchanged function bodies and public API, and removal of its legacy line-budget exception. Package allowance grows by 4 KiB for explicit module boundaries.
@@ -41,8 +67,14 @@ All notable changes to AgentSpine will be documented here. The project follows [
41
67
 
42
68
  ### Evidence limits
43
69
 
44
- - The King repository adapter is pinned to public BLUN Code `1.0.109` commit `fbb97459` and vendored King SDK `0.12.1` format evidence. Fredrik's actual source/protocol mapping, installed format, live A/B recall, and host block enforcement remain unverified; no live configuration was changed.
45
- - Public BLUN Code 1.0.109 naming evidence and synthetic hook/MCP tests establish the repository contract only. The separate King host bug that ignores a returned `{decision:"block"}` and Fredrik's live installation remain unverified external boundaries.
70
+ - Product and documentation growth for explicit next-step correction measured about 2.6 KiB packed and 11.6 KiB unpacked. Existing headroom plus an 11 KiB unpacked-ceiling increase contains the change; packed, file-count, required-file, forbidden-source, timeout and safety gates are unchanged.
71
+ - Product and documentation growth for timeline-to-world capture measured 2,901 packed and 13,132 unpacked bytes. The finite ceilings move by 4 KiB packed and 13 KiB unpacked; file-count, required-file, forbidden-source, timeout and safety checks are unchanged, and the new production module is now required in the package.
72
+ - Product and documentation growth before this release-evidence note measured 2,070 packed and 8,682 unpacked bytes. The finite ceilings move by 3 KiB packed and 9 KiB unpacked; file-count, required-file, forbidden-source, timeout, and safety checks are unchanged.
73
+ - The pre-adjustment dry run exceeded the prior ceiling by 616 packed bytes and 1,492 unpacked bytes. The finite ceilings grow by 2 KiB packed and 3 KiB unpacked; file-count, required-file and forbidden-source gates are unchanged.
74
+ - MemPalace `v3.9.0` commit `d9f05907` (MIT) and Claude-Mem commit `3939fbb2` (Apache-2.0), inspected 2026-09-06, informed only the separate-adapter and progressive-retrieval architecture. No external code or script was copied or executed. Repository tests do not establish an ExampleOperator or ExampleAgent live handoff.
75
+ - The finite release ceiling grows by 4 KiB packed and 8 KiB unpacked for the provider-handoff implementation, provenance fields and contract; file-count and forbidden-source gates are unchanged.
76
+ - The King repository adapter is pinned to public BLUN Code `1.0.109` commit `fbb97459` and vendored King SDK `0.12.1` format evidence. ExampleAgent's actual source/protocol mapping, installed format, live A/B recall, and host block enforcement remain unverified; no live configuration was changed.
77
+ - Public BLUN Code 1.0.109 naming evidence and synthetic hook/MCP tests establish the repository contract only. The separate King host bug that ignores a returned `{decision:"block"}` and ExampleAgent's live installation remain unverified external boundaries.
46
78
 
47
79
  ## [0.73.0] - 2026-09-05
48
80
 
@@ -70,7 +102,7 @@ All notable changes to AgentSpine will be documented here. The project follows [
70
102
  ### Security and evidence limits
71
103
 
72
104
  - Synthetic install/update/restart verifies exact skill bytes, four listed tools, a real source read, existing-session continuity and bound briefing/knowledge/premortem calls. Foreign skills, foreign Codex configuration, project sources and unknown external state remain byte-identical.
73
- - Unmanaged skill directories, symlinked destinations, tampering, staged crashes and parallel updates are rejected or recovered without clearing state. Repository checks do not prove native `skills/list`, `mcpServerStatus/list`, host trust or an Otto restart; no live profile or CodexLink configuration was changed.
105
+ - Unmanaged skill directories, symlinked destinations, tampering, staged crashes and parallel updates are rejected or recovered without clearing state. Repository checks do not prove native `skills/list`, `mcpServerStatus/list`, host trust or an ExampleOperator restart; no live profile or CodexLink configuration was changed.
74
106
 
75
107
  ## [0.72.6] - 2026-09-05
76
108
 
@@ -82,7 +114,7 @@ All notable changes to AgentSpine will be documented here. The project follows [
82
114
  ### Security and evidence limits
83
115
 
84
116
  - Synthetic install/update/restart exercises a 0.72.5 cache followed by 0.72.6, removes the old cache, lists tools, reads an existing session source and performs the bound briefing, knowledge and premortem calls. A wrong `PLUGIN_ROOT` is ignored; foreign Codex configuration, unknown external state and source bytes remain unchanged.
85
- - Unmanaged duplicate registrations, malformed managed blocks, symlinked homes/configuration/package roots, tampered registrations, staged crashes and parallel updates are rejected or recovered without deleting state. This is repository evidence only: no live Codex profile, Otto session, trust decision or CodexLink configuration was changed.
117
+ - Unmanaged duplicate registrations, malformed managed blocks, symlinked homes/configuration/package roots, tampered registrations, staged crashes and parallel updates are rejected or recovered without deleting state. This is repository evidence only: no live Codex profile, ExampleOperator session, trust decision or CodexLink configuration was changed.
86
118
 
87
119
  ## [0.72.5] - 2026-09-05
88
120
 
@@ -93,7 +125,7 @@ All notable changes to AgentSpine will be documented here. The project follows [
93
125
 
94
126
  ### Evidence limits
95
127
 
96
- - The probes reproduce the documented Codex hook wire contract and measured Work tool result shape. They do not claim a live Otto restart, installation or state migration. CodexLink remains outside AgentSpine.
128
+ - The probes reproduce the documented Codex hook wire contract and measured Work tool result shape. They do not claim a live ExampleOperator restart, installation or state migration. CodexLink remains outside AgentSpine.
97
129
 
98
130
  ## [0.72.4] - 2026-09-05
99
131
 
@@ -92,9 +92,9 @@ claude --plugin-dir .
92
92
 
93
93
  Claude Code discovers the bundled skill, hooks, and MCP server. Review and trust executable components when the host asks.
94
94
 
95
- Version `0.73.0` keeps the managed common Codex skill, stable reader verification, assignment continuation and structured completion from `0.72.2`–`0.72.7`, and adds bounded long-session evidence recall without duplicating a host transcript. Claude, Codex, and King use separate deny-by-default source/format adapters; matching tool names never substitute for native provider evidence. A verified `UserPromptSubmit` creates an opaque receipt; only a local owner can consume it with `timeline-enroll --receipt … --confirm-local-timeline` for one immutable private snapshot. Groups stay excluded. After compaction, an agent asks only for one exact UTC time or at least two concrete terms through `session_timeline_search`; `includePriorSessions` can select an already indexed immutable snapshot from the exact same private task after restart. The sidecar is ranked before at most one source is opened, and every returned card carries stable session/message references. A matching real `PreToolUse` provides the one-use binding, so raw MCP, reuse, changed scope, or a changed source returns no history. Redacted results are untrusted context and grant no authority. See [bounded session timeline](docs/session-timeline.md).
95
+ Version `0.73.0` keeps the managed common Codex skill, stable reader verification, assignment continuation and structured completion from `0.72.2`–`0.72.7`, and adds bounded long-session evidence recall without duplicating a host transcript. Claude, Codex, and King use separate deny-by-default source/format adapters; matching tool names never substitute for native provider evidence. A verified `UserPromptSubmit` creates an opaque receipt; only a local owner can consume it with `timeline-enroll --receipt … --confirm-local-timeline` for one immutable private snapshot. Groups stay excluded. After compaction, an agent asks only for one exact UTC time or at least two concrete terms through `session_timeline_search`; `includePriorSessions` can select an already indexed immutable snapshot from the exact same private task after restart. Provider mixing stays off unless the local host sets `AGENTSPINE_TIMELINE_CROSS_PROVIDER=1` and the bounded call also sets `includePriorProviders: true`; every selected snapshot is revalidated with its own provider enrollment and returned with provider provenance. The sidecar is ranked before at most one source is opened, and every returned card carries stable session/message references. A matching real `PreToolUse` provides the one-use binding, so raw MCP, reuse, changed scope, or a changed source returns no history. `session_timeline_capture` can then reverify one exact returned objective result and mechanically place only its measured fields in the existing thread-bound world model. It can also apply a native user message beginning exactly with `Correction: next step:` or `Korrektur: nächster Schritt:` to an existing same-thread continuation; ordinary chat, model text and caller interpretations are ignored. Redacted results and captured knowledge remain context-only and grant no authority. See [bounded session timeline](docs/session-timeline.md).
96
96
 
97
- The current structured world view also supports a bounded normal-task continuation checkpoint. It restores the exact confirmed objective, last verified step, open questions and next step after restart or compaction, with source references and without loading transcript history. Proposed, conflicting, foreign and completed work is never presented as resumable. See [provenance-bound world model](docs/world-model.md).
97
+ The current structured world view also supports a bounded normal-task continuation checkpoint. It restores the exact confirmed objective, last verified step, open questions and next step after restart or compaction, with source references and without loading transcript history. In an authenticated portal task, the checkpoint and task-subject corrections additionally stay on the exact opaque portal/thread route; another thread with the same task ID cannot read or supersede them. Proposed, conflicting, foreign and completed work is never presented as resumable. See [provenance-bound world model](docs/world-model.md).
98
98
 
99
99
  Version `0.72.0` keeps the durable provenance-bound world model and decomposes the complete outcome-bound learning runtime into bounded contract domains. The current unreleased world view additionally separates facts, user preferences, decisions with rationale, task state, and error lessons. Every typed entry retains evidence, time, scope and optional session/message references; model suggestions remain assumptions, conflicts withhold facts, and explicit corrections preserve superseded history without bloating briefing.
100
100
 
@@ -349,7 +349,7 @@ flowchart LR
349
349
  - `shared_context` reads only locally reviewed shared memory. MCP intentionally cannot initialize adapters, publish, pull, inspect the pending inbox, review imports, roll back, or delete.
350
350
  - `record_delivery_premortem` records the exact three context-only failure checks for one hook-issued requirement before mutation. Its sealed receipt is bound to the session and active goal step and grants no permissions or tool access.
351
351
  - `record_world_assertion` stores one immutable measured, explicitly user-confirmed, or model-proposed assertion outside source files; optional typed knowledge distinguishes facts, user preferences, decisions, task state, and error lessons. `world_context` returns only unexpired, non-conflicting established facts while exposing assumptions, stale evidence, contradictions, and opt-in correction history separately. An exact resumable task adds at most six matching confirmed entries with source references.
352
- - `session_timeline_index` and `session_timeline_search` provide explicitly enrolled, scope-bound bounded indexing and time-or-two-term recall of redacted structured transcript evidence. An explicit same-task prior-session query ranks only the signed sidecar before verifying one immutable source and returns stable session/message references. The tools never register arbitrary paths, return raw transcript bytes, or add authority. See [bounded session timeline](docs/session-timeline.md).
352
+ - `session_timeline_index`, `session_timeline_search`, and `session_timeline_capture` provide explicitly enrolled, scope-bound bounded indexing, time-or-two-term recall, and explicit structured capture of one reverified objective result or strictly prefixed native user next-step correction. An explicit same-task prior-session query ranks only the signed sidecar before verifying one immutable source and returns stable session/message references. Capture derives provenance and exact portal/thread/task scope from that source and the authenticated host rather than tool claims. The tools never register arbitrary paths, return raw transcript bytes, infer ordinary chat as facts, or add authority. See [bounded session timeline](docs/session-timeline.md).
353
353
  - `audit` runs the same ten gates available through the CLI.
354
354
 
355
355
  Relationship updates supersede the active view but retain the previous observation in append-only graph history. Permission-like and credential-like attributes are rejected recursively. See [relationships and learning](docs/relationships.md).