loopx 0.4.8__py3-none-any.whl

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 (811) hide show
  1. loopx/__init__.py +5 -0
  2. loopx/agent_onboarding.py +654 -0
  3. loopx/agent_registry.py +112 -0
  4. loopx/ark_managed_agent_host.py +59 -0
  5. loopx/authority.py +805 -0
  6. loopx/benchmark.py +2875 -0
  7. loopx/benchmark_adapters/__init__.py +1 -0
  8. loopx/benchmark_adapters/agentissue.py +2644 -0
  9. loopx/benchmark_adapters/agents_last_exam.py +3998 -0
  10. loopx/benchmark_adapters/edgebench.py +322 -0
  11. loopx/benchmark_adapters/skillsbench.py +5978 -0
  12. loopx/benchmark_adapters/skillsbench_acp_failure_policy.py +143 -0
  13. loopx/benchmark_adapters/skillsbench_acp_process.py +31 -0
  14. loopx/benchmark_adapters/skillsbench_acp_relay.py +4832 -0
  15. loopx/benchmark_adapters/skillsbench_batch.py +124 -0
  16. loopx/benchmark_adapters/skillsbench_bridge_guard.py +209 -0
  17. loopx/benchmark_adapters/skillsbench_bridge_summary.py +203 -0
  18. loopx/benchmark_adapters/skillsbench_codex_goal_recovery.py +271 -0
  19. loopx/benchmark_adapters/skillsbench_codex_goal_trace.py +81 -0
  20. loopx/benchmark_adapters/skillsbench_codex_runtime.py +339 -0
  21. loopx/benchmark_adapters/skillsbench_dockerfile_runtime.py +467 -0
  22. loopx/benchmark_adapters/skillsbench_failure_signals.py +652 -0
  23. loopx/benchmark_adapters/skillsbench_proxy_runtime.py +327 -0
  24. loopx/benchmark_adapters/skillsbench_remote_bridge.py +402 -0
  25. loopx/benchmark_adapters/skillsbench_result_discovery.py +143 -0
  26. loopx/benchmark_adapters/skillsbench_runner_profile.py +436 -0
  27. loopx/benchmark_adapters/skillsbench_runner_source.py +99 -0
  28. loopx/benchmark_adapters/skillsbench_setup_preflight.py +771 -0
  29. loopx/benchmark_adapters/skillsbench_signals.py +15 -0
  30. loopx/benchmark_adapters/skillsbench_task_source.py +141 -0
  31. loopx/benchmark_adapters/skillsbench_turn_route.py +723 -0
  32. loopx/benchmark_adapters/skillsbench_turn_runtime.py +1069 -0
  33. loopx/benchmark_adapters/skillsbench_typed_repair.py +689 -0
  34. loopx/benchmark_adapters/skillsbench_uv_cache.py +111 -0
  35. loopx/benchmark_adapters/skillsbench_verifier_bootstrap.py +227 -0
  36. loopx/benchmark_adapters/skillsbench_verifier_cache.py +138 -0
  37. loopx/benchmark_adapters/terminal_bench.py +10078 -0
  38. loopx/benchmark_case_analysis.py +1276 -0
  39. loopx/benchmark_case_state.py +1079 -0
  40. loopx/benchmark_core/__init__.py +239 -0
  41. loopx/benchmark_core/adapter.py +84 -0
  42. loopx/benchmark_core/artifacts.py +517 -0
  43. loopx/benchmark_core/attempts.py +199 -0
  44. loopx/benchmark_core/container_exec.py +216 -0
  45. loopx/benchmark_core/io.py +68 -0
  46. loopx/benchmark_core/lifecycle.py +211 -0
  47. loopx/benchmark_core/loop_protocol.py +689 -0
  48. loopx/benchmark_core/observable_handles.py +348 -0
  49. loopx/benchmark_core/parity.py +256 -0
  50. loopx/benchmark_core/remote_closeout.py +482 -0
  51. loopx/benchmark_core/rounds.py +215 -0
  52. loopx/benchmark_core/route_profile.py +509 -0
  53. loopx/benchmark_core/run_permissions.py +206 -0
  54. loopx/benchmark_core/split_control.py +925 -0
  55. loopx/benchmark_core/turn_fidelity.py +326 -0
  56. loopx/benchmark_ledger.py +3793 -0
  57. loopx/benchmark_ledger_countability.py +372 -0
  58. loopx/benchmark_ledger_current.py +724 -0
  59. loopx/benchmark_trajectory.py +405 -0
  60. loopx/benchmarks/__init__.py +1 -0
  61. loopx/benchmarks/qualification/__init__.py +1 -0
  62. loopx/benchmarks/qualification/release_outcome_baseline.py +360 -0
  63. loopx/benchmarks/read_models/__init__.py +1 -0
  64. loopx/benchmarks/read_models/benchmark_attempt_accounting.py +53 -0
  65. loopx/benchmarks/read_models/benchmark_comparison.py +414 -0
  66. loopx/benchmarks/read_models/benchmark_event_timeline.py +113 -0
  67. loopx/benchmarks/read_models/benchmark_experiment_report.py +475 -0
  68. loopx/benchmarks/read_models/benchmark_learning_ledger.py +137 -0
  69. loopx/benchmarks/read_models/benchmark_lifecycle_contracts.py +228 -0
  70. loopx/benchmarks/read_models/benchmark_projection.py +723 -0
  71. loopx/benchmarks/read_models/benchmark_result.py +146 -0
  72. loopx/benchmarks/read_models/benchmark_run_execution_contract.py +116 -0
  73. loopx/benchmarks/read_models/benchmark_run_failure.py +157 -0
  74. loopx/benchmarks/read_models/benchmark_run_metrics.py +213 -0
  75. loopx/benchmarks/read_models/benchmark_run_post_execution.py +635 -0
  76. loopx/benchmarks/read_models/benchmark_run_pre_execution.py +541 -0
  77. loopx/benchmarks/read_models/benchmark_status_compaction.py +1255 -0
  78. loopx/benchmarks/read_models/benchmark_status_runner.py +780 -0
  79. loopx/benchmarks/read_models/goal_start_control_score.py +857 -0
  80. loopx/benchmarks/read_models/skillsbench_post_run_debug.py +746 -0
  81. loopx/benchmarks/read_models/skillsbench_verifier_attribution.py +269 -0
  82. loopx/bootstrap.py +1116 -0
  83. loopx/bootstrap_command_pack.py +2167 -0
  84. loopx/boundary_authority.py +199 -0
  85. loopx/canary/__init__.py +1 -0
  86. loopx/canary/maintainability_ratchet.py +800 -0
  87. loopx/canary/planner.py +1984 -0
  88. loopx/canary/premerge.py +1130 -0
  89. loopx/canary/qualification_profiles.py +309 -0
  90. loopx/canary/quality_surface_catalog.py +838 -0
  91. loopx/canary/release_profiles.py +51 -0
  92. loopx/canary/runner.py +1107 -0
  93. loopx/canary/smoke_health.py +581 -0
  94. loopx/canary/smoke_profiles.py +212 -0
  95. loopx/capabilities/__init__.py +0 -0
  96. loopx/capabilities/agent_turn_recall/__init__.py +17 -0
  97. loopx/capabilities/agent_turn_recall/cli.py +369 -0
  98. loopx/capabilities/agent_turn_recall/core.py +296 -0
  99. loopx/capabilities/auto_research/__init__.py +16 -0
  100. loopx/capabilities/auto_research/bootstrap_contract.py +157 -0
  101. loopx/capabilities/auto_research/cli.py +1468 -0
  102. loopx/capabilities/auto_research/core.py +11 -0
  103. loopx/capabilities/auto_research/defaults.py +79 -0
  104. loopx/capabilities/auto_research/demo_e2e.py +1848 -0
  105. loopx/capabilities/auto_research/demo_supervisor.py +186 -0
  106. loopx/capabilities/auto_research/evidence_packet.py +767 -0
  107. loopx/capabilities/auto_research/human_view.py +794 -0
  108. loopx/capabilities/auto_research/kernel.py +191 -0
  109. loopx/capabilities/auto_research/knn_demo_workspace.py +322 -0
  110. loopx/capabilities/auto_research/live_evidence.py +248 -0
  111. loopx/capabilities/auto_research/preset.py +176 -0
  112. loopx/capabilities/auto_research/research_state.py +1085 -0
  113. loopx/capabilities/auto_research/role_profiles.py +394 -0
  114. loopx/capabilities/auto_research/rollout_append.py +97 -0
  115. loopx/capabilities/auto_research/terminal_result_contract.py +422 -0
  116. loopx/capabilities/auto_research/terminal_result_projection.py +171 -0
  117. loopx/capabilities/auto_research/terminal_result_query.py +233 -0
  118. loopx/capabilities/auto_research/terminal_results.py +349 -0
  119. loopx/capabilities/auto_research/user_contract.py +190 -0
  120. loopx/capabilities/auto_research/worker_loop.py +163 -0
  121. loopx/capabilities/auto_research/worker_runtime.py +777 -0
  122. loopx/capabilities/auto_research/worker_skill/SKILL.md +343 -0
  123. loopx/capabilities/benchmark_toolkit/__init__.py +19 -0
  124. loopx/capabilities/benchmark_toolkit/integrity.py +387 -0
  125. loopx/capabilities/catalog.py +1875 -0
  126. loopx/capabilities/change_quality/__init__.py +19 -0
  127. loopx/capabilities/change_quality/cli.py +171 -0
  128. loopx/capabilities/change_quality/context.py +156 -0
  129. loopx/capabilities/change_quality/oracles.py +269 -0
  130. loopx/capabilities/change_quality/policy.py +34 -0
  131. loopx/capabilities/change_quality/receipt.py +482 -0
  132. loopx/capabilities/change_quality/result.py +493 -0
  133. loopx/capabilities/change_quality/scope.py +171 -0
  134. loopx/capabilities/change_quality/shadow.py +680 -0
  135. loopx/capabilities/content_ops/__init__.py +0 -0
  136. loopx/capabilities/content_ops/cli.py +649 -0
  137. loopx/capabilities/content_ops/connector_packets.py +164 -0
  138. loopx/capabilities/content_ops/item_lifecycle.py +1000 -0
  139. loopx/capabilities/content_ops/layout.py +451 -0
  140. loopx/capabilities/content_ops/markdown.py +456 -0
  141. loopx/capabilities/content_ops/schemas.py +51 -0
  142. loopx/capabilities/content_ops/social_browser_x.py +107 -0
  143. loopx/capabilities/content_ops/surface.py +1956 -0
  144. loopx/capabilities/content_ops/templates/layout-catalog-v0.json +72 -0
  145. loopx/capabilities/context_providers/__init__.py +36 -0
  146. loopx/capabilities/context_providers/base.py +189 -0
  147. loopx/capabilities/context_providers/factory.py +32 -0
  148. loopx/capabilities/context_providers/openviking.py +702 -0
  149. loopx/capabilities/context_providers/service_ownership.py +185 -0
  150. loopx/capabilities/decision_context/__init__.py +129 -0
  151. loopx/capabilities/decision_context/architecture.py +83 -0
  152. loopx/capabilities/decision_context/assembler.py +849 -0
  153. loopx/capabilities/decision_context/catalog_entry.py +195 -0
  154. loopx/capabilities/decision_context/cli.py +310 -0
  155. loopx/capabilities/decision_context/cursor_commit.py +535 -0
  156. loopx/capabilities/decision_context/outcome_feedback.py +352 -0
  157. loopx/capabilities/decision_context/packets.py +654 -0
  158. loopx/capabilities/decision_context/private_state.py +189 -0
  159. loopx/capabilities/decision_context/profile.py +453 -0
  160. loopx/capabilities/decision_context/providers.py +228 -0
  161. loopx/capabilities/decision_context/review_settlement.py +136 -0
  162. loopx/capabilities/decision_context/runtime.py +273 -0
  163. loopx/capabilities/decision_context/sources.py +415 -0
  164. loopx/capabilities/explore/__init__.py +1 -0
  165. loopx/capabilities/explore/activation.py +198 -0
  166. loopx/capabilities/explore/adaptive_replay_planner.py +221 -0
  167. loopx/capabilities/explore/child_replay_runtime.py +463 -0
  168. loopx/capabilities/explore/composition_frontier.py +291 -0
  169. loopx/capabilities/explore/counterfactual_runtime.py +578 -0
  170. loopx/capabilities/explore/episode_runtime.py +647 -0
  171. loopx/capabilities/explore/harness_checkpoint.py +171 -0
  172. loopx/capabilities/explore/harness_gate.py +115 -0
  173. loopx/capabilities/explore/harness_runtime.py +1124 -0
  174. loopx/capabilities/explore/replay_metrics.py +206 -0
  175. loopx/capabilities/explore/replay_runtime.py +1271 -0
  176. loopx/capabilities/explore/resource_portfolio.py +173 -0
  177. loopx/capabilities/explore/result_log.py +974 -0
  178. loopx/capabilities/explore/router_state.py +432 -0
  179. loopx/capabilities/explore/source_history_reconcile.py +255 -0
  180. loopx/capabilities/explore/speculative_scheduler.py +498 -0
  181. loopx/capabilities/explore/todo_branch_plan.py +650 -0
  182. loopx/capabilities/explore/todo_evidence.py +141 -0
  183. loopx/capabilities/explore/trace_runtime.py +284 -0
  184. loopx/capabilities/explore/worker_branch_plan.py +1257 -0
  185. loopx/capabilities/integration_branch/__init__.py +13 -0
  186. loopx/capabilities/integration_branch/cli.py +148 -0
  187. loopx/capabilities/integration_branch/core.py +916 -0
  188. loopx/capabilities/issue_fix/__init__.py +19 -0
  189. loopx/capabilities/issue_fix/acceptance_loop.py +1050 -0
  190. loopx/capabilities/issue_fix/candidate_evidence.py +503 -0
  191. loopx/capabilities/issue_fix/candidate_preflight.py +676 -0
  192. loopx/capabilities/issue_fix/cli.py +1822 -0
  193. loopx/capabilities/issue_fix/cli_input.py +87 -0
  194. loopx/capabilities/issue_fix/content_ops_cli.py +148 -0
  195. loopx/capabilities/issue_fix/discovered_issue_promotion.py +947 -0
  196. loopx/capabilities/issue_fix/explore_projection.py +710 -0
  197. loopx/capabilities/issue_fix/feasibility.py +542 -0
  198. loopx/capabilities/issue_fix/github_public.py +661 -0
  199. loopx/capabilities/issue_fix/intake_surface.py +832 -0
  200. loopx/capabilities/issue_fix/metadata_preview.py +218 -0
  201. loopx/capabilities/issue_fix/metrics_projection.py +1340 -0
  202. loopx/capabilities/issue_fix/metrics_supplement.py +634 -0
  203. loopx/capabilities/issue_fix/metrics_supplement_cli.py +127 -0
  204. loopx/capabilities/issue_fix/outcome_projection.py +1235 -0
  205. loopx/capabilities/issue_fix/periodic_report.py +189 -0
  206. loopx/capabilities/issue_fix/pr_description.py +418 -0
  207. loopx/capabilities/issue_fix/pr_gate_reconcile.py +496 -0
  208. loopx/capabilities/issue_fix/pr_gate_reconcile_cli.py +464 -0
  209. loopx/capabilities/issue_fix/pr_lifecycle.py +1327 -0
  210. loopx/capabilities/issue_fix/pr_lifecycle_rollout.py +85 -0
  211. loopx/capabilities/issue_fix/pr_monitor_materialization.py +257 -0
  212. loopx/capabilities/issue_fix/pr_review_ack.py +439 -0
  213. loopx/capabilities/issue_fix/provider_hooks.py +24 -0
  214. loopx/capabilities/issue_fix/repository_commit_evidence.py +186 -0
  215. loopx/capabilities/issue_fix/repository_context.py +457 -0
  216. loopx/capabilities/issue_fix/repository_memory.py +459 -0
  217. loopx/capabilities/issue_fix/repository_memory_provider.py +1454 -0
  218. loopx/capabilities/issue_fix/repository_snapshot.py +454 -0
  219. loopx/capabilities/issue_fix/reviewer_cli.py +917 -0
  220. loopx/capabilities/issue_fix/reviewer_notification.py +882 -0
  221. loopx/capabilities/issue_fix/reviewer_notification_drain.py +942 -0
  222. loopx/capabilities/issue_fix/reviewer_recommendation.py +1057 -0
  223. loopx/capabilities/issue_fix/reviewer_request.py +1282 -0
  224. loopx/capabilities/issue_fix/reward_memory.py +879 -0
  225. loopx/capabilities/issue_fix/workflow_plan.py +1286 -0
  226. loopx/capabilities/material_lifecycle/__init__.py +161 -0
  227. loopx/capabilities/material_lifecycle/_validation.py +183 -0
  228. loopx/capabilities/material_lifecycle/apply.py +672 -0
  229. loopx/capabilities/material_lifecycle/architecture.py +122 -0
  230. loopx/capabilities/material_lifecycle/cli.py +161 -0
  231. loopx/capabilities/material_lifecycle/decision_planning.py +470 -0
  232. loopx/capabilities/material_lifecycle/explore_execution.py +306 -0
  233. loopx/capabilities/material_lifecycle/intake.py +869 -0
  234. loopx/capabilities/material_lifecycle/inventory.py +147 -0
  235. loopx/capabilities/material_lifecycle/lifecycle.py +98 -0
  236. loopx/capabilities/material_lifecycle/preparation.py +147 -0
  237. loopx/capabilities/material_lifecycle/project_skill.py +83 -0
  238. loopx/capabilities/material_lifecycle/ranking.py +267 -0
  239. loopx/capabilities/material_lifecycle/readable_projection.py +500 -0
  240. loopx/capabilities/material_lifecycle/rebuild.py +480 -0
  241. loopx/capabilities/material_lifecycle/settlement.py +238 -0
  242. loopx/capabilities/periodic_report/__init__.py +71 -0
  243. loopx/capabilities/periodic_report/adapters.py +939 -0
  244. loopx/capabilities/periodic_report/archive.py +422 -0
  245. loopx/capabilities/periodic_report/bindings.py +705 -0
  246. loopx/capabilities/periodic_report/cli.py +277 -0
  247. loopx/capabilities/periodic_report/core.py +691 -0
  248. loopx/capabilities/periodic_report/extension_envelope.py +66 -0
  249. loopx/capabilities/periodic_report/presets.py +103 -0
  250. loopx/capabilities/periodic_report/profile.py +235 -0
  251. loopx/capabilities/periodic_report/project_progress.py +179 -0
  252. loopx/capabilities/periodic_report/triggers.py +452 -0
  253. loopx/capabilities/pr_review_queue/__init__.py +17 -0
  254. loopx/capabilities/pr_review_queue/core.py +506 -0
  255. loopx/capabilities/pr_review_queue/review_contract.py +506 -0
  256. loopx/capabilities/registry.py +192 -0
  257. loopx/capabilities/reward_memory/__init__.py +75 -0
  258. loopx/capabilities/reward_memory/application.py +819 -0
  259. loopx/capabilities/reward_memory/architecture.py +572 -0
  260. loopx/capabilities/reward_memory/candidate_review.py +511 -0
  261. loopx/capabilities/reward_memory/cli.py +469 -0
  262. loopx/capabilities/reward_memory/dogfood.py +574 -0
  263. loopx/capabilities/reward_memory/evaluation.py +296 -0
  264. loopx/capabilities/reward_memory/evaluation_fixtures.py +362 -0
  265. loopx/capabilities/reward_memory/experiment.py +567 -0
  266. loopx/capabilities/reward_memory/health.py +222 -0
  267. loopx/capabilities/reward_memory/ingestion.py +519 -0
  268. loopx/capabilities/reward_memory/registry.py +600 -0
  269. loopx/capabilities/reward_memory/runtime_hooks.py +312 -0
  270. loopx/capabilities/reward_memory/scoped_feedback.py +173 -0
  271. loopx/capabilities/semantic_preference/__init__.py +12 -0
  272. loopx/capabilities/semantic_preference/cli.py +189 -0
  273. loopx/capabilities/semantic_preference/contract.py +592 -0
  274. loopx/capabilities/semantic_preference/reward_memory.py +62 -0
  275. loopx/capabilities/value_connectors/__init__.py +1 -0
  276. loopx/capabilities/value_connectors/cli.py +401 -0
  277. loopx/capabilities/value_connectors/finance_extension_migration.py +108 -0
  278. loopx/capabilities/value_connectors/install_check.py +147 -0
  279. loopx/capabilities/value_connectors/planner.py +733 -0
  280. loopx/capabilities/value_connectors/source_map.py +446 -0
  281. loopx/claude_goal_baseline.py +138 -0
  282. loopx/claude_goal_mode/__init__.py +23 -0
  283. loopx/claude_goal_mode/hooks/goal_policy.py +212 -0
  284. loopx/claude_goal_mode/hooks/goal_state.py +139 -0
  285. loopx/claude_goal_mode/mcp/loopx_mcp.py +167 -0
  286. loopx/claude_goal_mode/scripts/connect.py +103 -0
  287. loopx/claude_goal_mode/scripts/goalmode_cmd.py +241 -0
  288. loopx/claude_goal_mode/scripts/install.py +328 -0
  289. loopx/claude_goal_mode/statusline/goal_status.py +97 -0
  290. loopx/cli.py +836 -0
  291. loopx/cli_commands/__init__.py +334 -0
  292. loopx/cli_commands/_host_thread.py +13 -0
  293. loopx/cli_commands/agentissue_runner_flow.py +447 -0
  294. loopx/cli_commands/agents_last_exam.py +160 -0
  295. loopx/cli_commands/agents_last_exam_baked_input.py +302 -0
  296. loopx/cli_commands/agents_last_exam_host_codex.py +374 -0
  297. loopx/cli_commands/agents_last_exam_launch_dry_run.py +372 -0
  298. loopx/cli_commands/agents_last_exam_local_plan.py +322 -0
  299. loopx/cli_commands/agents_last_exam_runner_source.py +352 -0
  300. loopx/cli_commands/agents_last_exam_task_material.py +335 -0
  301. loopx/cli_commands/agents_last_exam_validation_gate.py +236 -0
  302. loopx/cli_commands/benchmark_boundary.py +499 -0
  303. loopx/cli_commands/benchmark_dispatch.py +161 -0
  304. loopx/cli_commands/benchmark_release_outcome.py +123 -0
  305. loopx/cli_commands/benchmark_review_lifecycle.py +1275 -0
  306. loopx/cli_commands/benchmark_run_ledger.py +763 -0
  307. loopx/cli_commands/benchmark_run_ledger_case_analysis.py +249 -0
  308. loopx/cli_commands/benchmark_run_ledger_classification.py +45 -0
  309. loopx/cli_commands/benchmark_run_ledger_maintenance.py +486 -0
  310. loopx/cli_commands/benchmark_run_ledger_maintenance_registration.py +342 -0
  311. loopx/cli_commands/benchmark_run_ledger_maintenance_rendering.py +233 -0
  312. loopx/cli_commands/benchmark_run_ledger_parity.py +92 -0
  313. loopx/cli_commands/bootstrap_connect.py +238 -0
  314. loopx/cli_commands/canary.py +707 -0
  315. loopx/cli_commands/canary_release_qualification.py +79 -0
  316. loopx/cli_commands/capability.py +96 -0
  317. loopx/cli_commands/doctor.py +43 -0
  318. loopx/cli_commands/dreaming.py +143 -0
  319. loopx/cli_commands/edgebench.py +205 -0
  320. loopx/cli_commands/evidence_log.py +275 -0
  321. loopx/cli_commands/explore.py +989 -0
  322. loopx/cli_commands/explore_planning_commands.py +157 -0
  323. loopx/cli_commands/extension.py +271 -0
  324. loopx/cli_commands/first_run_report.py +73 -0
  325. loopx/cli_commands/goal_channel.py +656 -0
  326. loopx/cli_commands/handoff_mode.py +158 -0
  327. loopx/cli_commands/history.py +622 -0
  328. loopx/cli_commands/host_mode_plan.py +113 -0
  329. loopx/cli_commands/lark_inbox.py +431 -0
  330. loopx/cli_commands/lark_kanban.py +629 -0
  331. loopx/cli_commands/ml_experiment.py +321 -0
  332. loopx/cli_commands/multi_agent.py +211 -0
  333. loopx/cli_commands/opencode2_goal_worker.py +217 -0
  334. loopx/cli_commands/pr_review.py +167 -0
  335. loopx/cli_commands/presentation.py +218 -0
  336. loopx/cli_commands/preset.py +96 -0
  337. loopx/cli_commands/project.py +150 -0
  338. loopx/cli_commands/project_lifecycle.py +915 -0
  339. loopx/cli_commands/quota.py +859 -0
  340. loopx/cli_commands/quota_registration.py +241 -0
  341. loopx/cli_commands/quota_request.py +113 -0
  342. loopx/cli_commands/ready_score.py +110 -0
  343. loopx/cli_commands/registry_admin.py +975 -0
  344. loopx/cli_commands/registry_admin_configure.py +344 -0
  345. loopx/cli_commands/registry_admin_peer.py +84 -0
  346. loopx/cli_commands/registry_authority.py +218 -0
  347. loopx/cli_commands/review_batch.py +146 -0
  348. loopx/cli_commands/slash_commands.py +145 -0
  349. loopx/cli_commands/start_goal.py +251 -0
  350. loopx/cli_commands/starter.py +175 -0
  351. loopx/cli_commands/starter_bootstrap.py +179 -0
  352. loopx/cli_commands/starter_bootstrap_registration.py +198 -0
  353. loopx/cli_commands/starter_runtime_idle.py +107 -0
  354. loopx/cli_commands/starter_scheduler.py +207 -0
  355. loopx/cli_commands/starter_session_runtime.py +152 -0
  356. loopx/cli_commands/starter_visible_common.py +54 -0
  357. loopx/cli_commands/starter_visible_driver.py +161 -0
  358. loopx/cli_commands/starter_visible_pilot.py +278 -0
  359. loopx/cli_commands/status.py +867 -0
  360. loopx/cli_commands/status_registration.py +239 -0
  361. loopx/cli_commands/summary_all.py +222 -0
  362. loopx/cli_commands/support_control.py +809 -0
  363. loopx/cli_commands/support_control_registry.py +68 -0
  364. loopx/cli_commands/support_control_supervisor.py +289 -0
  365. loopx/cli_commands/task_lease.py +306 -0
  366. loopx/cli_commands/terminal_bench_adapter.py +717 -0
  367. loopx/cli_commands/terminal_bench_environment_result.py +1246 -0
  368. loopx/cli_commands/todo.py +940 -0
  369. loopx/cli_commands/todo_argument_validation.py +572 -0
  370. loopx/cli_commands/todo_event.py +114 -0
  371. loopx/cli_commands/turn.py +804 -0
  372. loopx/cli_commands/version.py +46 -0
  373. loopx/cli_commands/worker_bridge.py +659 -0
  374. loopx/cli_rollout.py +314 -0
  375. loopx/codex_cli_goal_tui.py +672 -0
  376. loopx/codex_cli_probe.py +1530 -0
  377. loopx/codex_cli_probe_markdown.py +935 -0
  378. loopx/codex_cli_runtime_probe.py +733 -0
  379. loopx/codex_cli_scheduler.py +564 -0
  380. loopx/codex_goal_baseline.py +620 -0
  381. loopx/configuration_catalog.py +617 -0
  382. loopx/configure_goal.py +1375 -0
  383. loopx/contract.py +996 -0
  384. loopx/control_plane/__init__.py +71 -0
  385. loopx/control_plane/agents/__init__.py +1 -0
  386. loopx/control_plane/agents/agent_lane_recommendation.py +516 -0
  387. loopx/control_plane/agents/agent_scope.py +1578 -0
  388. loopx/control_plane/agents/agent_scope_frontier.py +60 -0
  389. loopx/control_plane/agents/capability_gate.py +531 -0
  390. loopx/control_plane/agents/identity.py +140 -0
  391. loopx/control_plane/agents/legacy_migration.py +169 -0
  392. loopx/control_plane/agents/management_projection.py +658 -0
  393. loopx/control_plane/agents/material_frontier.py +608 -0
  394. loopx/control_plane/agents/material_handoff.py +156 -0
  395. loopx/control_plane/agents/multi_agent/__init__.py +1 -0
  396. loopx/control_plane/agents/multi_agent/codex_executable.py +207 -0
  397. loopx/control_plane/agents/multi_agent/collective_round_ledger.py +387 -0
  398. loopx/control_plane/agents/multi_agent/contract.py +474 -0
  399. loopx/control_plane/agents/multi_agent/recipe.py +110 -0
  400. loopx/control_plane/agents/multi_agent/role_successor.py +297 -0
  401. loopx/control_plane/agents/multi_agent/runtime_scripts.py +426 -0
  402. loopx/control_plane/agents/multi_agent/visible_launch_policy.py +149 -0
  403. loopx/control_plane/agents/multi_agent/visible_wake_scheduler.py +392 -0
  404. loopx/control_plane/agents/profile.py +216 -0
  405. loopx/control_plane/agents/runtime_model.py +73 -0
  406. loopx/control_plane/agents/subagent_activity.py +164 -0
  407. loopx/control_plane/agents/supervisor.py +544 -0
  408. loopx/control_plane/agents/supervisor_events.py +462 -0
  409. loopx/control_plane/agents/supervisor_inject.py +204 -0
  410. loopx/control_plane/agents/work_mode.py +56 -0
  411. loopx/control_plane/agents/workspace_guard.py +364 -0
  412. loopx/control_plane/effect_program.py +644 -0
  413. loopx/control_plane/goals/__init__.py +1 -0
  414. loopx/control_plane/goals/active_state_event_projection.py +103 -0
  415. loopx/control_plane/goals/active_state_metadata.py +47 -0
  416. loopx/control_plane/goals/active_state_sections.py +58 -0
  417. loopx/control_plane/goals/configure_goal_service.py +354 -0
  418. loopx/control_plane/goals/contract_health.py +132 -0
  419. loopx/control_plane/goals/dreaming.py +152 -0
  420. loopx/control_plane/goals/global_registry_health.py +199 -0
  421. loopx/control_plane/goals/global_registry_shadow.py +33 -0
  422. loopx/control_plane/goals/goal_channel.py +34 -0
  423. loopx/control_plane/goals/goal_channel_projection.py +560 -0
  424. loopx/control_plane/goals/goal_frontier/__init__.py +1917 -0
  425. loopx/control_plane/goals/goal_frontier/ack_policy.py +149 -0
  426. loopx/control_plane/goals/goal_frontier/outcome_continuity.py +437 -0
  427. loopx/control_plane/goals/goal_frontier/replan_rules.py +210 -0
  428. loopx/control_plane/goals/goal_frontier/semantic_history.py +314 -0
  429. loopx/control_plane/goals/goal_frontier/terminal.py +180 -0
  430. loopx/control_plane/goals/goal_vision.py +443 -0
  431. loopx/control_plane/goals/goal_vision_policy.py +36 -0
  432. loopx/control_plane/goals/goal_vision_state.py +62 -0
  433. loopx/control_plane/goals/goal_vision_wait.py +290 -0
  434. loopx/control_plane/goals/path_resolution.py +20 -0
  435. loopx/control_plane/goals/start_contract.py +206 -0
  436. loopx/control_plane/goals/vision_checkpoint.py +92 -0
  437. loopx/control_plane/handoff/__init__.py +1 -0
  438. loopx/control_plane/handoff/cross_runtime_impl_review.py +311 -0
  439. loopx/control_plane/handoff/delivery_contract.py +161 -0
  440. loopx/control_plane/handoff/handoff_runs.py +71 -0
  441. loopx/control_plane/handoff/project_handoff.py +155 -0
  442. loopx/control_plane/handoff/review_batch.py +463 -0
  443. loopx/control_plane/handoff/review_packet_context.py +216 -0
  444. loopx/control_plane/heartbeat/agent.py +173 -0
  445. loopx/control_plane/heartbeat/budget.py +66 -0
  446. loopx/control_plane/heartbeat/builder.py +501 -0
  447. loopx/control_plane/heartbeat/host.py +64 -0
  448. loopx/control_plane/heartbeat/rules.py +68 -0
  449. loopx/control_plane/heartbeat/task_body.py +759 -0
  450. loopx/control_plane/heartbeat/visible_goal.py +86 -0
  451. loopx/control_plane/projects/__init__.py +1 -0
  452. loopx/control_plane/projects/contract.py +25 -0
  453. loopx/control_plane/projects/registry.py +663 -0
  454. loopx/control_plane/quota/__init__.py +1 -0
  455. loopx/control_plane/quota/cli_projection.py +704 -0
  456. loopx/control_plane/quota/decision_summary.py +431 -0
  457. loopx/control_plane/quota/effect_program.py +152 -0
  458. loopx/control_plane/quota/error_codes.py +19 -0
  459. loopx/control_plane/quota/goal_boundary.py +464 -0
  460. loopx/control_plane/quota/heartbeat_receipt.py +277 -0
  461. loopx/control_plane/quota/heartbeat_recommendation.py +718 -0
  462. loopx/control_plane/quota/host_poll_receipts.py +162 -0
  463. loopx/control_plane/quota/live_decision.py +142 -0
  464. loopx/control_plane/quota/monitor_poll.py +786 -0
  465. loopx/control_plane/quota/policy_constants.py +40 -0
  466. loopx/control_plane/quota/projection_repair.py +262 -0
  467. loopx/control_plane/quota/recent_runs.py +210 -0
  468. loopx/control_plane/quota/scheduler_ack.py +490 -0
  469. loopx/control_plane/quota/selected_todo_projection.py +139 -0
  470. loopx/control_plane/quota/settlement.py +437 -0
  471. loopx/control_plane/quota/settlement_cli.py +246 -0
  472. loopx/control_plane/quota/settlement_validation.py +64 -0
  473. loopx/control_plane/quota/settlement_workspace_causality.py +180 -0
  474. loopx/control_plane/quota/should_run.py +249 -0
  475. loopx/control_plane/quota/should_run_packet.py +1165 -0
  476. loopx/control_plane/quota/should_run_prepare.py +675 -0
  477. loopx/control_plane/quota/slot_accounting.py +1123 -0
  478. loopx/control_plane/quota/spend_sources.py +11 -0
  479. loopx/control_plane/quota/stall_repair.py +397 -0
  480. loopx/control_plane/quota/states.py +29 -0
  481. loopx/control_plane/quota/task_orchestration.py +448 -0
  482. loopx/control_plane/quota/task_orchestration_admission.py +497 -0
  483. loopx/control_plane/quota/turn_envelope.py +889 -0
  484. loopx/control_plane/quota/usage_summary.py +140 -0
  485. loopx/control_plane/reward_memory.py +43 -0
  486. loopx/control_plane/runtime/__init__.py +2 -0
  487. loopx/control_plane/runtime/active_user_assisted_pilot.py +275 -0
  488. loopx/control_plane/runtime/agent_scoped_evidence_log.py +435 -0
  489. loopx/control_plane/runtime/decision_freshness.py +203 -0
  490. loopx/control_plane/runtime/event_ledger.py +197 -0
  491. loopx/control_plane/runtime/event_store_migration_bridge.py +196 -0
  492. loopx/control_plane/runtime/goal_project_route.py +70 -0
  493. loopx/control_plane/runtime/local_state_write_correctness.py +242 -0
  494. loopx/control_plane/runtime/promotion_readiness.py +152 -0
  495. loopx/control_plane/runtime/public_safety.py +120 -0
  496. loopx/control_plane/runtime/run_artifacts.py +78 -0
  497. loopx/control_plane/runtime/run_compaction.py +397 -0
  498. loopx/control_plane/runtime/run_context_retention.py +241 -0
  499. loopx/control_plane/runtime/run_history.py +132 -0
  500. loopx/control_plane/runtime/run_index_duplicates.py +205 -0
  501. loopx/control_plane/runtime/run_index_rebuild.py +263 -0
  502. loopx/control_plane/runtime/run_ingest_health.py +336 -0
  503. loopx/control_plane/runtime/runtime_projection_route.py +624 -0
  504. loopx/control_plane/runtime/runtime_projection_writer.py +98 -0
  505. loopx/control_plane/runtime/session_runtime.py +339 -0
  506. loopx/control_plane/runtime/shared_runtime_material_projection.py +332 -0
  507. loopx/control_plane/runtime/shared_runtime_refresh_projection.py +183 -0
  508. loopx/control_plane/runtime/stale_latest_run.py +90 -0
  509. loopx/control_plane/runtime/status_classifications.py +49 -0
  510. loopx/control_plane/runtime/status_projection_cache.py +235 -0
  511. loopx/control_plane/runtime/stride_observation.py +144 -0
  512. loopx/control_plane/runtime/time.py +39 -0
  513. loopx/control_plane/runtime/trajectory_hygiene.py +149 -0
  514. loopx/control_plane/runtime/validation_command.py +69 -0
  515. loopx/control_plane/scheduler/__init__.py +1 -0
  516. loopx/control_plane/scheduler/ack.py +329 -0
  517. loopx/control_plane/scheduler/arbitration.py +188 -0
  518. loopx/control_plane/scheduler/automation_liveness.py +183 -0
  519. loopx/control_plane/scheduler/execution_context.py +555 -0
  520. loopx/control_plane/scheduler/external_evidence_observation.py +428 -0
  521. loopx/control_plane/scheduler/monitor_display.py +143 -0
  522. loopx/control_plane/scheduler/monitor_poll_policy.py +161 -0
  523. loopx/control_plane/scheduler/monitor_poll_writeback.py +351 -0
  524. loopx/control_plane/scheduler/monitor_target.py +64 -0
  525. loopx/control_plane/scheduler/monitor_todo.py +146 -0
  526. loopx/control_plane/scheduler/monitor_wait.py +237 -0
  527. loopx/control_plane/scheduler/scheduler_hint.py +1284 -0
  528. loopx/control_plane/scheduler/state.py +354 -0
  529. loopx/control_plane/scheduler/state_transition_rules.py +179 -0
  530. loopx/control_plane/scheduler/time.py +10 -0
  531. loopx/control_plane/settlement_driver.py +293 -0
  532. loopx/control_plane/status/__init__.py +6 -0
  533. loopx/control_plane/status/active_state_projection.py +105 -0
  534. loopx/control_plane/status/agent_lane_projection.py +375 -0
  535. loopx/control_plane/status/attention_projection.py +74 -0
  536. loopx/control_plane/status/autonomous_replan_projection.py +103 -0
  537. loopx/control_plane/status/collection.py +140 -0
  538. loopx/control_plane/status/contract_projection.py +31 -0
  539. loopx/control_plane/status/dreaming_projection.py +52 -0
  540. loopx/control_plane/status/goal_attention_projection.py +157 -0
  541. loopx/control_plane/status/lifecycle_projection.py +110 -0
  542. loopx/control_plane/status/monitor_display_projection.py +69 -0
  543. loopx/control_plane/status/registry_health_projection.py +75 -0
  544. loopx/control_plane/status/run_projection.py +70 -0
  545. loopx/control_plane/status/runtime_summaries.py +161 -0
  546. loopx/control_plane/testing/__init__.py +1 -0
  547. loopx/control_plane/testing/actual_default_model_behavior_portfolio.py +1371 -0
  548. loopx/control_plane/testing/canary_harness.py +182 -0
  549. loopx/control_plane/testing/capability_monitor_repair_tool_behavior.py +674 -0
  550. loopx/control_plane/testing/cli_output_budget.py +807 -0
  551. loopx/control_plane/testing/cli_output_differential.py +250 -0
  552. loopx/control_plane/testing/cli_output_semantics.py +87 -0
  553. loopx/control_plane/testing/control_plane_composition_scenarios.py +225 -0
  554. loopx/control_plane/testing/decision_replay.py +268 -0
  555. loopx/control_plane/testing/doubao_model_behavior_actor.py +559 -0
  556. loopx/control_plane/testing/model_behavior_corpus.py +344 -0
  557. loopx/control_plane/testing/model_behavior_qualification.py +769 -0
  558. loopx/control_plane/testing/model_behavior_retained_cases.py +235 -0
  559. loopx/control_plane/testing/model_tool_behavior.py +536 -0
  560. loopx/control_plane/testing/onboarding_model_behavior_qualification.py +642 -0
  561. loopx/control_plane/testing/quota_fixtures.py +208 -0
  562. loopx/control_plane/testing/quota_should_run_parity.py +57 -0
  563. loopx/control_plane/testing/release_commit_qualification.py +671 -0
  564. loopx/control_plane/testing/replan_semantic_action_behavior.py +1302 -0
  565. loopx/control_plane/testing/scoped_gate_successor_tool_behavior.py +527 -0
  566. loopx/control_plane/testing/selected_todo_tool_behavior.py +1002 -0
  567. loopx/control_plane/testing/terminal_settlement_tool_behavior.py +656 -0
  568. loopx/control_plane/todos/__init__.py +1 -0
  569. loopx/control_plane/todos/active_state_editing.py +296 -0
  570. loopx/control_plane/todos/active_state_todo_parser.py +138 -0
  571. loopx/control_plane/todos/active_state_todos.py +175 -0
  572. loopx/control_plane/todos/addition.py +103 -0
  573. loopx/control_plane/todos/claim_visibility.py +253 -0
  574. loopx/control_plane/todos/completed_archive.py +139 -0
  575. loopx/control_plane/todos/completion_fence.py +49 -0
  576. loopx/control_plane/todos/completion_policy.py +153 -0
  577. loopx/control_plane/todos/completion_validation.py +248 -0
  578. loopx/control_plane/todos/completion_validation_accountability.py +27 -0
  579. loopx/control_plane/todos/completion_validation_projection.py +57 -0
  580. loopx/control_plane/todos/contract.py +1476 -0
  581. loopx/control_plane/todos/decision_scope.py +554 -0
  582. loopx/control_plane/todos/deferred_resume.py +546 -0
  583. loopx/control_plane/todos/durable_completion.py +201 -0
  584. loopx/control_plane/todos/event_writeback.py +484 -0
  585. loopx/control_plane/todos/frontier_deadline.py +132 -0
  586. loopx/control_plane/todos/handoff_gate.py +283 -0
  587. loopx/control_plane/todos/handoff_mode.py +444 -0
  588. loopx/control_plane/todos/handoff_note.py +202 -0
  589. loopx/control_plane/todos/line_update.py +361 -0
  590. loopx/control_plane/todos/list_projection.py +205 -0
  591. loopx/control_plane/todos/markdown.py +199 -0
  592. loopx/control_plane/todos/monitor_metadata.py +88 -0
  593. loopx/control_plane/todos/mutation_authority.py +299 -0
  594. loopx/control_plane/todos/projection.py +655 -0
  595. loopx/control_plane/todos/quota_summary.py +1138 -0
  596. loopx/control_plane/todos/route_continuation.py +267 -0
  597. loopx/control_plane/todos/succession_warning.py +174 -0
  598. loopx/control_plane/todos/summary_item.py +223 -0
  599. loopx/control_plane/todos/text.py +30 -0
  600. loopx/control_plane/todos/todo_index.py +226 -0
  601. loopx/control_plane/todos/todo_summary.py +1458 -0
  602. loopx/control_plane/todos/unblock_resume.py +326 -0
  603. loopx/control_plane/todos/user_gate.py +263 -0
  604. loopx/control_plane/todos/write_hint.py +63 -0
  605. loopx/control_plane/todos/write_policy.py +135 -0
  606. loopx/control_plane/turn_driver/__init__.py +85 -0
  607. loopx/control_plane/turn_driver/codex_cli.py +502 -0
  608. loopx/control_plane/turn_driver/driver.py +355 -0
  609. loopx/control_plane/turn_driver/executor.py +1468 -0
  610. loopx/control_plane/turn_driver/loop_controller.py +669 -0
  611. loopx/control_plane/turn_driver/settlement.py +318 -0
  612. loopx/control_plane/turn_driver/transaction.py +375 -0
  613. loopx/control_plane/work_items/__init__.py +1 -0
  614. loopx/control_plane/work_items/attention_fields.py +56 -0
  615. loopx/control_plane/work_items/attention_item.py +77 -0
  616. loopx/control_plane/work_items/attention_queue.py +322 -0
  617. loopx/control_plane/work_items/attention_routing.py +213 -0
  618. loopx/control_plane/work_items/autonomous_candidates.py +135 -0
  619. loopx/control_plane/work_items/autonomous_replan_ack.py +276 -0
  620. loopx/control_plane/work_items/autonomous_replan_obligation.py +786 -0
  621. loopx/control_plane/work_items/backlog_hygiene.py +59 -0
  622. loopx/control_plane/work_items/capability_monitor_fallback.py +221 -0
  623. loopx/control_plane/work_items/delivery_batch_scale.py +66 -0
  624. loopx/control_plane/work_items/delivery_outcome.py +152 -0
  625. loopx/control_plane/work_items/delivery_signals.py +113 -0
  626. loopx/control_plane/work_items/execution_obligation.py +235 -0
  627. loopx/control_plane/work_items/goal_route_hint.py +320 -0
  628. loopx/control_plane/work_items/interaction_contract.py +1540 -0
  629. loopx/control_plane/work_items/issue_meta_surface.py +159 -0
  630. loopx/control_plane/work_items/lifecycle.py +139 -0
  631. loopx/control_plane/work_items/operator_inbox.py +266 -0
  632. loopx/control_plane/work_items/outcome_followthrough.py +69 -0
  633. loopx/control_plane/work_items/primary_action.py +326 -0
  634. loopx/control_plane/work_items/progress_observation.py +630 -0
  635. loopx/control_plane/work_items/project_asset.py +675 -0
  636. loopx/control_plane/work_items/repair_delta.py +693 -0
  637. loopx/control_plane/work_items/runtime_capability_reentry.py +168 -0
  638. loopx/control_plane/work_items/semantic_replan_writeback.py +177 -0
  639. loopx/control_plane/work_items/status_contract.py +49 -0
  640. loopx/control_plane/work_items/task_graph.py +1046 -0
  641. loopx/control_plane/work_items/task_lease.py +1254 -0
  642. loopx/control_plane/work_items/task_lease_settlement.py +422 -0
  643. loopx/control_plane/work_items/work_lane.py +510 -0
  644. loopx/control_plane/work_items/work_lane_context.py +161 -0
  645. loopx/demo.py +247 -0
  646. loopx/diagnose.py +633 -0
  647. loopx/doctor.py +1251 -0
  648. loopx/domain_packs/__init__.py +1 -0
  649. loopx/domain_packs/issue_fix.py +571 -0
  650. loopx/domain_packs/ml_experiment.py +854 -0
  651. loopx/domain_state.py +137 -0
  652. loopx/dreaming.py +706 -0
  653. loopx/entrypoint.py +16 -0
  654. loopx/event_sourced_state.py +981 -0
  655. loopx/execution_profile.py +286 -0
  656. loopx/experiments/__init__.py +1 -0
  657. loopx/experiments/planner_worker/__init__.py +1 -0
  658. loopx/experiments/planner_worker/contract.py +523 -0
  659. loopx/experiments/planner_worker/runtime.py +391 -0
  660. loopx/experiments/planner_worker/traex.py +461 -0
  661. loopx/explore_graph.py +11 -0
  662. loopx/extensions/__init__.py +1 -0
  663. loopx/extensions/bundled.py +28 -0
  664. loopx/extensions/execution_envelope.py +126 -0
  665. loopx/extensions/lark/__init__.py +11 -0
  666. loopx/extensions/lark/event_collector.py +478 -0
  667. loopx/extensions/lark/event_collector_runtime.py +506 -0
  668. loopx/extensions/lark/event_inbox.py +454 -0
  669. loopx/extensions/lark/extension.toml +88 -0
  670. loopx/extensions/lark/goal_channel.py +44 -0
  671. loopx/extensions/lark/goal_channel_contracts.py +388 -0
  672. loopx/extensions/lark/goal_channel_lifecycle.py +218 -0
  673. loopx/extensions/lark/goal_channel_runtime.py +792 -0
  674. loopx/extensions/lark/goal_channel_setup.py +805 -0
  675. loopx/extensions/lark/goal_channel_targets.py +215 -0
  676. loopx/extensions/lark/goal_channel_transport.py +281 -0
  677. loopx/extensions/lark/inbox_reactions.py +650 -0
  678. loopx/extensions/lark/inbox_reply.py +430 -0
  679. loopx/extensions/lark/presentation/__init__.py +11 -0
  680. loopx/extensions/lark/presentation/explore_results.py +2276 -0
  681. loopx/extensions/lark/presentation/explore_singleflight.py +127 -0
  682. loopx/extensions/lark/presentation/explore_source_guard.py +121 -0
  683. loopx/extensions/lark/presentation/explore_stage_document.py +703 -0
  684. loopx/extensions/lark/presentation/explore_visual_integrity.py +122 -0
  685. loopx/extensions/lark/presentation/explore_visual_readback.py +452 -0
  686. loopx/extensions/lark/presentation/explore_visual_styles.py +156 -0
  687. loopx/extensions/lark/presentation/issue_fix_surface.py +612 -0
  688. loopx/extensions/lark/presentation/kanban.py +2791 -0
  689. loopx/extensions/lark/presentation/message_card.py +112 -0
  690. loopx/extensions/lark/presentation/periodic_report.py +261 -0
  691. loopx/extensions/lark/presentation/projection_rows.py +600 -0
  692. loopx/extensions/lark/presentation/record_io.py +95 -0
  693. loopx/extensions/lark/presentation/sync_receipt.py +145 -0
  694. loopx/extensions/lark/private_json.py +40 -0
  695. loopx/extensions/lark/provider.py +86 -0
  696. loopx/extensions/lark/reviewer_notification.py +604 -0
  697. loopx/extensions/manifest.py +385 -0
  698. loopx/extensions/openviking_periodic_report/__init__.py +17 -0
  699. loopx/extensions/openviking_periodic_report/activation.py +173 -0
  700. loopx/extensions/openviking_periodic_report/extension.toml +17 -0
  701. loopx/extensions/openviking_periodic_report/provider.py +355 -0
  702. loopx/extensions/openviking_periodic_report/sink.py +117 -0
  703. loopx/extensions/openviking_semantic_preference/__init__.py +5 -0
  704. loopx/extensions/openviking_semantic_preference/extension.toml +16 -0
  705. loopx/extensions/openviking_semantic_preference/history_export.py +484 -0
  706. loopx/extensions/openviking_semantic_preference/project_peer.py +68 -0
  707. loopx/extensions/openviking_semantic_preference/provider.py +312 -0
  708. loopx/extensions/presentation.py +979 -0
  709. loopx/extensions/process_runtime.py +204 -0
  710. loopx/extensions/readiness.py +168 -0
  711. loopx/extensions/runtime.py +931 -0
  712. loopx/extensions/scaffold.py +335 -0
  713. loopx/feedback.py +581 -0
  714. loopx/file_lock.py +382 -0
  715. loopx/global_registry.py +842 -0
  716. loopx/global_risks.py +970 -0
  717. loopx/global_todos.py +568 -0
  718. loopx/handoff_budget.py +28 -0
  719. loopx/heartbeat_prequota.py +80 -0
  720. loopx/heartbeat_prompt.py +159 -0
  721. loopx/help_surface.py +516 -0
  722. loopx/history.py +1507 -0
  723. loopx/host_loop_activation.py +1311 -0
  724. loopx/host_mode_planner.py +991 -0
  725. loopx/install_contract.py +1 -0
  726. loopx/interface_budget.py +196 -0
  727. loopx/long_task_cadence.py +208 -0
  728. loopx/materials.py +185 -0
  729. loopx/ml_experiment.py +3 -0
  730. loopx/onboarding.py +214 -0
  731. loopx/opencode2_goal_mode/README.md +81 -0
  732. loopx/opencode2_goal_mode/__init__.py +9 -0
  733. loopx/opencode2_goal_mode/opencode2-goal-worker.mjs +1018 -0
  734. loopx/opencode_goal_mode/README.md +99 -0
  735. loopx/opencode_goal_mode/__init__.py +13 -0
  736. loopx/opencode_goal_mode/goal-bridge-runtime.mjs +858 -0
  737. loopx/opencode_goal_mode/loopx-goal.js +8 -0
  738. loopx/operator_gate.py +420 -0
  739. loopx/orchestration.py +127 -0
  740. loopx/paths.py +59 -0
  741. loopx/pi_goal_mode/README.md +67 -0
  742. loopx/pi_goal_mode/__init__.py +13 -0
  743. loopx/pi_goal_mode/loopx-goal.ts +254 -0
  744. loopx/pi_goal_mode/pi-goal-loop-runtime.mjs +574 -0
  745. loopx/pr_review.py +1206 -0
  746. loopx/presentation/__init__.py +1 -0
  747. loopx/presentation/explore_views.py +1334 -0
  748. loopx/presentation/markdown.py +61 -0
  749. loopx/presentation/projection_source_reconcile.py +140 -0
  750. loopx/presentation/public_safety.py +42 -0
  751. loopx/presentation/renderers/__init__.py +17 -0
  752. loopx/presentation/renderers/goal_channel_html.py +269 -0
  753. loopx/presentation/renderers/periodic_report_html.py +786 -0
  754. loopx/presentation/renderers/periodic_report_markdown.py +184 -0
  755. loopx/presentation/renderers/quota_event_markdown.py +116 -0
  756. loopx/presentation/renderers/quota_markdown.py +1112 -0
  757. loopx/presentation/renderers/status_markdown.py +1570 -0
  758. loopx/presentation/renderers/trajectory_hygiene_markdown.py +39 -0
  759. loopx/presentation/renderers/turn_envelope_markdown.py +33 -0
  760. loopx/presentation/sinks/__init__.py +5 -0
  761. loopx/presentation/sinks/openviking_periodic_report.py +7 -0
  762. loopx/presentation/static_site.py +691 -0
  763. loopx/presets.py +369 -0
  764. loopx/project_alias.py +217 -0
  765. loopx/project_map.py +589 -0
  766. loopx/project_prompt.py +1153 -0
  767. loopx/project_skill_cli.py +125 -0
  768. loopx/project_skill_delivery.py +470 -0
  769. loopx/project_uninstall.py +462 -0
  770. loopx/promotion_gate.py +197 -0
  771. loopx/quota.py +1197 -0
  772. loopx/ready_score.py +413 -0
  773. loopx/registry.py +621 -0
  774. loopx/registry_writability.py +64 -0
  775. loopx/release_candidate.py +148 -0
  776. loopx/release_manifest.py +316 -0
  777. loopx/repository_identity.py +100 -0
  778. loopx/review_packet.py +1024 -0
  779. loopx/rollout_event_log.py +505 -0
  780. loopx/runtime.py +112 -0
  781. loopx/self_update.py +750 -0
  782. loopx/session_runtime.py +418 -0
  783. loopx/skill_install_readback.py +500 -0
  784. loopx/slash_command_install.py +1393 -0
  785. loopx/slash_commands.py +264 -0
  786. loopx/state_backup.py +573 -0
  787. loopx/state_migration.py +350 -0
  788. loopx/state_projection.py +809 -0
  789. loopx/state_refresh.py +1416 -0
  790. loopx/status.py +1383 -0
  791. loopx/status_server.py +935 -0
  792. loopx/summary_all.py +725 -0
  793. loopx/terminal_bench_agent.py +2056 -0
  794. loopx/thread_agent_binding.py +408 -0
  795. loopx/todo_followups.py +168 -0
  796. loopx/todo_suggestion_prompt.py +204 -0
  797. loopx/todos.py +2229 -0
  798. loopx/turn_identity.py +17 -0
  799. loopx/upgrade.py +1083 -0
  800. loopx/visible_governance.py +667 -0
  801. loopx/visible_multi_agent_launcher.py +1253 -0
  802. loopx/visible_multi_agent_tmux.py +429 -0
  803. loopx/worker_bridge.py +1574 -0
  804. loopx-0.4.8.dist-info/METADATA +708 -0
  805. loopx-0.4.8.dist-info/RECORD +811 -0
  806. loopx-0.4.8.dist-info/WHEEL +5 -0
  807. loopx-0.4.8.dist-info/entry_points.txt +5 -0
  808. loopx-0.4.8.dist-info/licenses/LICENSE +202 -0
  809. loopx-0.4.8.dist-info/licenses/LICENSE-MIT +21 -0
  810. loopx-0.4.8.dist-info/licenses/NOTICE +6 -0
  811. loopx-0.4.8.dist-info/top_level.txt +1 -0
loopx/upgrade.py ADDED
@@ -0,0 +1,1083 @@
1
+ from __future__ import annotations
2
+
3
+ import hashlib
4
+ import json
5
+ import os
6
+ import re
7
+ from pathlib import Path
8
+ from typing import Any
9
+
10
+ from .agent_registry import (
11
+ agent_profile_for_goal,
12
+ registered_agent_ids_for_goal,
13
+ )
14
+ from .heartbeat_prompt import build_heartbeat_prompt
15
+ from .history import load_registry
16
+ from .paths import DEFAULT_RUNTIME_ROOT, global_registry_path, resolve_runtime_root
17
+ from .registry import registry_goals, resolve_state_file
18
+ from .control_plane.agents.legacy_migration import (
19
+ completed_peer_agent_runtime_migration,
20
+ legacy_agent_hierarchy_present,
21
+ peer_agent_runtime_migration_completed,
22
+ peer_agent_runtime_migration_id,
23
+ )
24
+ from .control_plane.todos.contract import normalize_required_capabilities
25
+
26
+
27
+ DEFAULT_UPGRADE_MODES = ("thin",)
28
+ SHOULD_RUN_FALSE_RE = re.compile(
29
+ r"should[_\s-]*run`?\s*(?:=|is|:)?\s*`?false",
30
+ re.IGNORECASE,
31
+ )
32
+ SAFE_BYPASS_RE = re.compile(
33
+ r"safe[_\s-]*bypass|outcome[_\s-]*floor[_\s-]*recovery|recovery[_\s-]*delivery[_\s-]*allowed",
34
+ re.IGNORECASE,
35
+ )
36
+ SHOULD_RUN_FALSE_HARD_STOP_RE = re.compile(
37
+ r"no\s+(?:implementation|work|delivery|spend)|"
38
+ r"do\s+not\s+(?:run|do|execute|append|spend|work)|"
39
+ r"quiet(?:ly)?\s+(?:skip|no-op)|"
40
+ r"skip\s+(?:delivery|work|compute)",
41
+ re.IGNORECASE,
42
+ )
43
+ PROJECT_POLICY_MARKERS = (
44
+ "Current controller policy:",
45
+ "Primary stability objective:",
46
+ "Current controller policy",
47
+ )
48
+ AVAILABLE_CAPABILITY_PATTERN = re.compile(
49
+ r"--available-capability(?:=|\s+)([A-Za-z][A-Za-z0-9_:-]{0,63})"
50
+ )
51
+ STAGE_DEFERRED_ATTENTION_STATUSES = {
52
+ "stage_deferred_not_installed",
53
+ }
54
+ STAGE_DEFERRED_ADAPTER_STATUSES = {
55
+ "planned",
56
+ }
57
+
58
+
59
+ def prompt_digest(text: str) -> str:
60
+ return hashlib.sha256(text.encode("utf-8")).hexdigest()
61
+
62
+
63
+ def prompt_summary(prompt: dict[str, Any], mode: str) -> dict[str, Any]:
64
+ task_body = str(prompt.get("task_body") or "")
65
+ if mode == "full":
66
+ command = prompt.get("expanded_prompt_command")
67
+ else:
68
+ command = prompt.get(f"{mode}_prompt_command")
69
+ interface_budget = prompt.get("interface_budget") if isinstance(prompt.get("interface_budget"), dict) else {}
70
+ return {
71
+ "mode": mode,
72
+ "sha256": prompt_digest(task_body),
73
+ "char_count": len(task_body),
74
+ "line_count": len(task_body.splitlines()),
75
+ "interface_budget": interface_budget,
76
+ "within_interface_budget": interface_budget.get("within_budget"),
77
+ "interface_budget_char_count": interface_budget.get("budget_char_count"),
78
+ "interface_budget_max_chars": interface_budget.get("max_chars"),
79
+ "command": command,
80
+ }
81
+
82
+
83
+ def prompt_policy_audit(prompt: str | None) -> dict[str, Any]:
84
+ if not isinstance(prompt, str) or not prompt.strip():
85
+ return {
86
+ "available": False,
87
+ "status": "unavailable",
88
+ "warning_count": 0,
89
+ "warnings": [],
90
+ "reason": "installed prompt body is unavailable",
91
+ }
92
+
93
+ warnings: list[dict[str, str]] = []
94
+ should_run_match = SHOULD_RUN_FALSE_RE.search(prompt)
95
+ safe_bypass_match = SAFE_BYPASS_RE.search(prompt)
96
+ if should_run_match and (safe_bypass_match is None or should_run_match.start() < safe_bypass_match.start()):
97
+ window_end = safe_bypass_match.start() if safe_bypass_match else min(len(prompt), should_run_match.start() + 900)
98
+ window = prompt[should_run_match.start():window_end]
99
+ if SHOULD_RUN_FALSE_HARD_STOP_RE.search(window):
100
+ warnings.append(
101
+ {
102
+ "kind": "should_run_false_before_safe_bypass",
103
+ "severity": "warning",
104
+ "recommended_action": "regenerate the installed heartbeat prompt so recovery/safe-bypass handling precedes generic should_run=false skip handling",
105
+ }
106
+ )
107
+
108
+ if any(marker in prompt for marker in PROJECT_POLICY_MARKERS):
109
+ warnings.append(
110
+ {
111
+ "kind": "embedded_project_policy",
112
+ "severity": "warning",
113
+ "recommended_action": "move project-specific policy into registry, active state, status, or review-packet payloads and reinstall a thin generated heartbeat prompt",
114
+ }
115
+ )
116
+
117
+ if "--active-state" in prompt:
118
+ warnings.append(
119
+ {
120
+ "kind": "pinned_active_state_argument",
121
+ "severity": "warning",
122
+ "recommended_action": "omit --active-state for connected goals so the installed heartbeat resolves the active state from the registry",
123
+ }
124
+ )
125
+
126
+ return {
127
+ "available": True,
128
+ "status": "warning" if warnings else "clean",
129
+ "warning_count": len(warnings),
130
+ "warnings": warnings,
131
+ }
132
+
133
+
134
+ def installed_prompt_policy_audit(entry: dict[str, Any] | None) -> dict[str, Any]:
135
+ if not entry:
136
+ return {
137
+ "available": False,
138
+ "status": "unavailable",
139
+ "warning_count": 0,
140
+ "warnings": [],
141
+ "reason": "installed prompt entry is unavailable",
142
+ }
143
+ audit = entry.get("prompt_policy_audit")
144
+ if isinstance(audit, dict):
145
+ return audit
146
+ task_body = entry.get("task_body")
147
+ return prompt_policy_audit(task_body if isinstance(task_body, str) else None)
148
+
149
+
150
+ def load_installed_manifest(path: Path | None) -> dict[str, Any]:
151
+ if path is None:
152
+ return load_codex_app_automation_manifest()
153
+ if not path.exists():
154
+ return {
155
+ "available": False,
156
+ "path": str(path),
157
+ "entries": [],
158
+ "reason": "installed automation manifest does not exist",
159
+ }
160
+ raw = json.loads(path.read_text(encoding="utf-8"))
161
+ if isinstance(raw, list):
162
+ entries = raw
163
+ elif isinstance(raw, dict):
164
+ entries = raw.get("automations") or raw.get("entries") or []
165
+ else:
166
+ entries = []
167
+ return {
168
+ "available": True,
169
+ "path": str(path),
170
+ "entries": [entry for entry in entries if isinstance(entry, dict)],
171
+ }
172
+
173
+
174
+ def codex_home() -> Path:
175
+ return Path(os.environ.get("CODEX_HOME") or Path.home() / ".codex").expanduser()
176
+
177
+
178
+ def parse_automation_toml(path: Path) -> dict[str, Any]:
179
+ values: dict[str, Any] = {}
180
+ for raw_line in path.read_text(encoding="utf-8").splitlines():
181
+ line = raw_line.strip()
182
+ if not line or line.startswith("#") or "=" not in line:
183
+ continue
184
+ key, raw_value = line.split("=", 1)
185
+ key = key.strip()
186
+ value = raw_value.strip()
187
+ if value.startswith('"') and value.endswith('"'):
188
+ try:
189
+ values[key] = json.loads(value)
190
+ except json.JSONDecodeError:
191
+ values[key] = value[1:-1]
192
+ elif value in {"true", "false"}:
193
+ values[key] = value == "true"
194
+ else:
195
+ try:
196
+ values[key] = int(value)
197
+ except ValueError:
198
+ values[key] = value
199
+ return values
200
+
201
+
202
+ def infer_goal_id_from_prompt(prompt: str) -> str | None:
203
+ patterns = (
204
+ r"Advance\s+`([^`]+)`\s+from\b",
205
+ r"Advance\s+`([^`]+)`\s+using\b",
206
+ r"--goal-id\s+([A-Za-z0-9_.:-]+)",
207
+ r"goal_id:\s*`([^`]+)`",
208
+ )
209
+ for pattern in patterns:
210
+ match = re.search(pattern, prompt)
211
+ if match:
212
+ return match.group(1)
213
+ return None
214
+
215
+
216
+ def infer_agent_id_from_prompt(prompt: str) -> str | None:
217
+ patterns = (
218
+ r"Agent:\s*`([^`]+)`",
219
+ r"--agent-id\s+([A-Za-z0-9_.:-]+)",
220
+ )
221
+ for pattern in patterns:
222
+ match = re.search(pattern, prompt)
223
+ if match:
224
+ return match.group(1)
225
+ return None
226
+
227
+
228
+ def infer_prompt_mode(prompt: str) -> str:
229
+ if "compact LoopX heartbeat body" in prompt:
230
+ return "compact"
231
+ if "Brief installed LoopX heartbeat" in prompt:
232
+ return "brief"
233
+ if "Keep the heartbeat thin." in prompt or "from the registry-declared active state" in prompt:
234
+ return "thin"
235
+ return DEFAULT_UPGRADE_MODES[0]
236
+
237
+
238
+ def infer_available_capabilities_from_prompt(prompt: str) -> list[str]:
239
+ return normalize_required_capabilities(
240
+ AVAILABLE_CAPABILITY_PATTERN.findall(prompt)
241
+ )
242
+
243
+
244
+ def load_codex_app_automation_manifest(root: Path | None = None) -> dict[str, Any]:
245
+ home = root or codex_home()
246
+ automations_root = home / "automations"
247
+ if not automations_root.exists():
248
+ return {
249
+ "available": False,
250
+ "path": str(automations_root),
251
+ "entries": [],
252
+ "reason": "no installed automation manifest provided and Codex App automations directory does not exist",
253
+ "source": "codex_app_automations",
254
+ }
255
+
256
+ entries: list[dict[str, Any]] = []
257
+ for path in sorted(automations_root.glob("*/automation.toml")):
258
+ try:
259
+ automation = parse_automation_toml(path)
260
+ except OSError:
261
+ continue
262
+ if automation.get("kind") != "heartbeat":
263
+ continue
264
+ prompt = automation.get("prompt")
265
+ if not isinstance(prompt, str) or not prompt.strip():
266
+ continue
267
+ goal_id = infer_goal_id_from_prompt(prompt)
268
+ if not goal_id:
269
+ continue
270
+ agent_id = infer_agent_id_from_prompt(prompt)
271
+ status = str(automation.get("status") or "ACTIVE")
272
+ entries.append(
273
+ {
274
+ "automation_id": str(automation.get("id") or path.parent.name),
275
+ "goal_id": goal_id,
276
+ "agent_id": agent_id,
277
+ "mode": infer_prompt_mode(prompt),
278
+ "prompt_sha256": prompt_digest(prompt),
279
+ "char_count": len(prompt),
280
+ "line_count": len(prompt.splitlines()),
281
+ "prompt_policy_audit": prompt_policy_audit(prompt),
282
+ "available_capabilities": infer_available_capabilities_from_prompt(
283
+ prompt
284
+ ),
285
+ "rrule": str(automation.get("rrule") or "").strip(),
286
+ "target_thread_id": str(
287
+ automation.get("target_thread_id") or ""
288
+ ).strip(),
289
+ "status": status,
290
+ "installed": status.upper() != "DELETED",
291
+ "source": "codex_app_automation_toml",
292
+ "path": str(path),
293
+ }
294
+ )
295
+
296
+ return {
297
+ "available": True,
298
+ "path": str(automations_root),
299
+ "entries": entries,
300
+ "source": "codex_app_automations",
301
+ "reason": None if entries else "no LoopX heartbeat automations discovered",
302
+ }
303
+
304
+
305
+ def resolve_codex_app_automation_rrule(
306
+ *,
307
+ goal_id: str,
308
+ agent_id: str | None = None,
309
+ thread_id: str | None = None,
310
+ root: Path | None = None,
311
+ ) -> dict[str, Any]:
312
+ """Resolve one active Codex App heartbeat RRULE without exposing its body."""
313
+
314
+ manifest = load_codex_app_automation_manifest(root)
315
+ if not manifest.get("available"):
316
+ return {"available": False, "reason": manifest.get("reason")}
317
+ safe_goal_id = str(goal_id or "").strip()
318
+ safe_agent_id = str(agent_id or "").strip()
319
+ safe_thread_id = str(thread_id or os.environ.get("CODEX_THREAD_ID") or "").strip()
320
+ candidates = [
321
+ entry
322
+ for entry in manifest.get("entries", [])
323
+ if isinstance(entry, dict)
324
+ and entry.get("installed") is True
325
+ and str(entry.get("goal_id") or "") == safe_goal_id
326
+ and (not safe_agent_id or str(entry.get("agent_id") or "") == safe_agent_id)
327
+ and (
328
+ not safe_thread_id
329
+ or str(entry.get("target_thread_id") or "") == safe_thread_id
330
+ )
331
+ and str(entry.get("rrule") or "").strip()
332
+ ]
333
+ if len(candidates) != 1:
334
+ return {
335
+ "available": False,
336
+ "reason": (
337
+ "Codex App heartbeat RRULE is ambiguous"
338
+ if candidates
339
+ else "no matching active Codex App heartbeat RRULE"
340
+ ),
341
+ "candidate_count": len(candidates),
342
+ }
343
+ entry = candidates[0]
344
+ return {
345
+ "available": True,
346
+ "rrule": entry["rrule"],
347
+ "automation_id": str(entry.get("automation_id") or "").strip(),
348
+ "source": "codex_app_automation_manifest",
349
+ }
350
+
351
+
352
+ def installed_entry_digest(entry: dict[str, Any]) -> str | None:
353
+ for key in ("prompt_sha256", "task_body_sha256", "sha256"):
354
+ value = entry.get(key)
355
+ if value:
356
+ return str(value)
357
+ task_body = entry.get("task_body")
358
+ if isinstance(task_body, str):
359
+ return prompt_digest(task_body)
360
+ return None
361
+
362
+
363
+ def installed_entry_available_capabilities(
364
+ entry: dict[str, Any] | None,
365
+ ) -> list[str]:
366
+ if not entry:
367
+ return []
368
+ explicit = normalize_required_capabilities(entry.get("available_capabilities"))
369
+ if explicit:
370
+ return explicit
371
+ task_body = entry.get("task_body")
372
+ if isinstance(task_body, str):
373
+ return infer_available_capabilities_from_prompt(task_body)
374
+ return []
375
+
376
+
377
+ def entry_declares_not_installed(entry: dict[str, Any] | None) -> bool:
378
+ if not entry:
379
+ return False
380
+ status = str(entry.get("status") or "").replace("-", "_").lower()
381
+ if status in {"not_installed", "no_automation", "uninstalled"}:
382
+ return True
383
+ installed = entry.get("installed")
384
+ return installed is False
385
+
386
+
387
+ def entry_key(entry: dict[str, Any]) -> tuple[str, str, str]:
388
+ return (
389
+ str(entry.get("goal_id") or ""),
390
+ str(entry.get("mode") or DEFAULT_UPGRADE_MODES[0]),
391
+ str(entry.get("agent_id") or ""),
392
+ )
393
+
394
+
395
+ def index_installed_entries(entries: list[dict[str, Any]]) -> dict[tuple[str, str, str], dict[str, Any]]:
396
+ indexed: dict[tuple[str, str, str], dict[str, Any]] = {}
397
+ for entry in entries:
398
+ goal_id, mode, agent_id = entry_key(entry)
399
+ if goal_id:
400
+ indexed[(goal_id, mode, agent_id)] = entry
401
+ return indexed
402
+
403
+
404
+ def prompt_target_key(mode: str, agent_id: str | None) -> str:
405
+ return f"{mode}:{agent_id}" if agent_id else mode
406
+
407
+
408
+ def peer_runtime_upgrade_migration(
409
+ goal: dict[str, Any],
410
+ *,
411
+ goal_id: str,
412
+ installed: dict[str, dict[str, Any]],
413
+ generated_prompts: dict[str, dict[str, Any]],
414
+ ) -> dict[str, Any]:
415
+ if peer_agent_runtime_migration_completed(goal):
416
+ completed = completed_peer_agent_runtime_migration(goal) or {}
417
+ return {
418
+ "schema_version": "peer_runtime_automation_migration_v1",
419
+ "required": False,
420
+ "status": "completed",
421
+ "migration_id": completed.get("migration_id"),
422
+ }
423
+ if not legacy_agent_hierarchy_present(goal):
424
+ return {
425
+ "schema_version": "peer_runtime_automation_migration_v1",
426
+ "required": False,
427
+ "status": "not_required",
428
+ }
429
+ migration_id = peer_agent_runtime_migration_id(goal_id, goal)
430
+ host_updates = []
431
+ for target, prompt_status in installed.items():
432
+ if not (
433
+ prompt_status.get("installed") is True
434
+ and prompt_status.get("requires_update") is True
435
+ ):
436
+ continue
437
+ generated = generated_prompts.get(target) or {}
438
+ host_updates.append(
439
+ {
440
+ "prompt_target": target,
441
+ "agent_id": prompt_status.get("agent_id"),
442
+ "automation_id": prompt_status.get("automation_id"),
443
+ "prompt_command": generated.get("command"),
444
+ "idempotency_key": migration_id,
445
+ }
446
+ )
447
+ completion_command = (
448
+ "loopx configure-goal "
449
+ f"--goal-id {goal_id} "
450
+ f"--ack-automation-prompt-migration {migration_id} --execute"
451
+ )
452
+ return {
453
+ "schema_version": "peer_runtime_automation_migration_v1",
454
+ "required": True,
455
+ "status": "pending",
456
+ "migration_id": migration_id,
457
+ "delivery_semantics": "stable_idempotent_until_ack",
458
+ "host_update_required_once": bool(host_updates),
459
+ "host_updates": host_updates,
460
+ "completion_command": completion_command,
461
+ "ordered_steps": [
462
+ "update each discovered host automation whose prompt is stale, using the "
463
+ "stable migration_id as the idempotency key",
464
+ "run completion_command once; it atomically records completion and removes "
465
+ "legacy hierarchy fields",
466
+ "rerun quota should-run with the same registered agent id",
467
+ ],
468
+ }
469
+
470
+
471
+ def build_loop_activation_summary(
472
+ *,
473
+ installed: dict[str, dict[str, Any]],
474
+ ) -> dict[str, Any]:
475
+ current_targets = [key for key, value in installed.items() if value.get("status") == "current"]
476
+ stale_targets = [key for key, value in installed.items() if value.get("status") == "stale"]
477
+ missing_targets = [key for key, value in installed.items() if value.get("status") == "unknown"]
478
+ not_installed_targets = [key for key, value in installed.items() if value.get("status") == "not_installed"]
479
+ target_count = len(installed)
480
+ if target_count and len(current_targets) == target_count:
481
+ status = "current"
482
+ elif target_count and len(not_installed_targets) == target_count:
483
+ status = "explicitly_not_installed"
484
+ elif current_targets and (stale_targets or missing_targets or not_installed_targets):
485
+ status = "partial"
486
+ elif stale_targets:
487
+ status = "stale"
488
+ elif missing_targets:
489
+ status = "missing"
490
+ elif not_installed_targets:
491
+ status = "explicitly_not_installed"
492
+ else:
493
+ status = "unknown"
494
+ activated = status == "current"
495
+ return {
496
+ "schema_version": "loopx_host_loop_activation_v0",
497
+ "host_surface": "codex_app_heartbeat",
498
+ "status": status,
499
+ "activated": activated,
500
+ "target_count": target_count,
501
+ "current_count": len(current_targets),
502
+ "stale_count": len(stale_targets),
503
+ "missing_count": len(missing_targets),
504
+ "not_installed_count": len(not_installed_targets),
505
+ "current_targets": current_targets,
506
+ "stale_targets": stale_targets,
507
+ "missing_targets": missing_targets,
508
+ "not_installed_targets": not_installed_targets,
509
+ "recommended_action": (
510
+ "loop surface is active"
511
+ if activated
512
+ else "for Codex App, create or update the heartbeat automation from the generated scoped heartbeat-prompt; "
513
+ "for Codex CLI TUI or Claude Code, verify their own host loop surface instead; "
514
+ "do not claim LoopX setup complete until the active host surface is proven or a concrete host-tool gate is reported"
515
+ ),
516
+ }
517
+
518
+
519
+ HOST_LOOP_UPDATE_STATUSES = {"missing", "partial", "stale", "unknown", "error", "unavailable"}
520
+
521
+
522
+ def goal_adapter(goal: dict[str, Any]) -> dict[str, Any]:
523
+ adapter = goal.get("adapter")
524
+ return adapter if isinstance(adapter, dict) else {}
525
+
526
+
527
+ def goal_adapter_status(goal: dict[str, Any]) -> str:
528
+ return str(goal_adapter(goal).get("status") or "")
529
+
530
+
531
+ def goal_adapter_kind(goal: dict[str, Any]) -> str | None:
532
+ kind = goal_adapter(goal).get("kind")
533
+ return str(kind) if kind else None
534
+
535
+
536
+ def goal_is_stage_deferred(goal: dict[str, Any]) -> bool:
537
+ attention_status = str(goal.get("attention_status") or "").replace("-", "_").lower()
538
+ if attention_status in STAGE_DEFERRED_ATTENTION_STATUSES:
539
+ return True
540
+ adapter_status = goal_adapter_status(goal).replace("-", "_").lower()
541
+ return adapter_status in STAGE_DEFERRED_ADAPTER_STATUSES
542
+
543
+
544
+ def stage_deferred_goal_summary(goal: dict[str, Any], state_file: Path | None) -> dict[str, Any]:
545
+ return {
546
+ "goal_id": str(goal.get("id") or ""),
547
+ "adapter_kind": goal_adapter_kind(goal),
548
+ "adapter_status": goal_adapter_status(goal) or None,
549
+ "status": goal.get("status"),
550
+ "attention_status": goal.get("attention_status"),
551
+ "repo": str(Path(str(goal.get("repo") or ".")).expanduser()),
552
+ "state_file": str(state_file) if state_file else None,
553
+ "state_file_exists": bool(state_file and state_file.exists()),
554
+ "requires_update": False,
555
+ "deferred_reason": "stage_deferred_until_operator_authorizes_heartbeat",
556
+ "recommended_action": goal.get("recommended_action")
557
+ or "do not install or update this heartbeat until the operator authorizes the stage",
558
+ }
559
+
560
+
561
+ def managed_default_upgrade_target(goal: dict[str, Any]) -> dict[str, Any]:
562
+ installed = goal.get("installed_prompts") if isinstance(goal.get("installed_prompts"), dict) else {}
563
+ mode_summaries: list[dict[str, Any]] = []
564
+ statuses: set[str] = set()
565
+ policy_warning_count = 0
566
+ for mode, prompt_status in installed.items():
567
+ if not isinstance(prompt_status, dict):
568
+ continue
569
+ status = str(prompt_status.get("status") or "unknown")
570
+ statuses.add(status)
571
+ audit = (
572
+ prompt_status.get("prompt_policy_audit")
573
+ if isinstance(prompt_status.get("prompt_policy_audit"), dict)
574
+ else {}
575
+ )
576
+ warning_count = int(audit.get("warning_count") or 0)
577
+ policy_warning_count += warning_count
578
+ mode_summaries.append(
579
+ {
580
+ "mode": mode,
581
+ "status": status,
582
+ "requires_update": bool(prompt_status.get("requires_update")),
583
+ "automation_id": prompt_status.get("automation_id"),
584
+ "policy_warning_count": warning_count,
585
+ }
586
+ )
587
+
588
+ requires_update = bool(goal.get("requires_update"))
589
+ if requires_update:
590
+ action = "regenerate_installed_prompt"
591
+ if policy_warning_count:
592
+ reason = "installed prompt policy warnings must be cleared before default promotion"
593
+ elif "unknown" in statuses:
594
+ reason = "installed prompt is missing from the manifest"
595
+ elif "stale" in statuses:
596
+ reason = "installed prompt digest differs from the generated default"
597
+ else:
598
+ reason = "installed prompt requires refresh before default promotion"
599
+ elif "not_installed" in statuses:
600
+ action = "not_installed_noop"
601
+ reason = "heartbeat is explicitly not installed; default promotion must not install it"
602
+ elif "current" in statuses:
603
+ action = "current"
604
+ reason = "installed heartbeat prompt is already current"
605
+ else:
606
+ action = "noop"
607
+ reason = "no installed heartbeat work is required"
608
+
609
+ return {
610
+ "goal_id": goal.get("goal_id"),
611
+ "action": action,
612
+ "requires_update": requires_update,
613
+ "reason": reason,
614
+ "prompt_modes": mode_summaries,
615
+ }
616
+
617
+
618
+ def build_default_upgrade_propagation(
619
+ *,
620
+ summary: dict[str, Any],
621
+ managed: list[dict[str, Any]],
622
+ deferred: list[dict[str, Any]],
623
+ recommended_action: str,
624
+ ) -> dict[str, Any]:
625
+ managed_targets = [managed_default_upgrade_target(goal) for goal in managed]
626
+ stage_deferred_targets = [
627
+ {
628
+ "goal_id": goal.get("goal_id"),
629
+ "action": "skip_stage_deferred",
630
+ "requires_update": False,
631
+ "deferred_reason": goal.get("deferred_reason"),
632
+ "recommended_action": goal.get("recommended_action"),
633
+ }
634
+ for goal in deferred
635
+ ]
636
+ return {
637
+ "schema_version": "default_upgrade_propagation_v0",
638
+ "ready_for_default_promotion": summary.get("ready_for_default_promotion"),
639
+ "managed_target_count": len(managed_targets),
640
+ "deferred_target_count": len(stage_deferred_targets),
641
+ "update_count": sum(1 for target in managed_targets if target["requires_update"]),
642
+ "current_count": summary.get("current_prompt_count"),
643
+ "not_installed_noop_count": sum(1 for target in managed_targets if target["action"] == "not_installed_noop"),
644
+ "stale_count": summary.get("stale_prompt_count"),
645
+ "unknown_count": summary.get("unknown_prompt_count"),
646
+ "policy_warning_count": summary.get("installed_prompt_policy_warning_count"),
647
+ "deferred_install_count": 0,
648
+ "managed_targets": managed_targets,
649
+ "stage_deferred_targets": stage_deferred_targets,
650
+ "recommended_action": recommended_action,
651
+ }
652
+
653
+
654
+ def build_upgrade_plan(
655
+ *,
656
+ registry_path: Path,
657
+ runtime_root_override: str | None = None,
658
+ installed_manifest: Path | None = None,
659
+ cli_bin: str = "loopx",
660
+ modes: list[str] | tuple[str, ...] | None = None,
661
+ goal_ids: list[str] | tuple[str, ...] | None = None,
662
+ ) -> dict[str, Any]:
663
+ registry = load_registry(registry_path)
664
+ runtime_root = resolve_runtime_root(registry, runtime_root_override)
665
+ if not registry_path.exists():
666
+ fallback = global_registry_path(runtime_root or DEFAULT_RUNTIME_ROOT)
667
+ if fallback.exists():
668
+ registry_path = fallback
669
+ registry = load_registry(registry_path)
670
+ runtime_root = resolve_runtime_root(registry, runtime_root_override)
671
+
672
+ selected_modes = tuple(modes or DEFAULT_UPGRADE_MODES)
673
+ selected_goal_ids = set(goal_ids or [])
674
+ manifest = load_installed_manifest(installed_manifest)
675
+ manifest_entries = manifest["entries"]
676
+ manifest_task_body_count = sum(1 for entry in manifest_entries if isinstance(entry, dict) and "task_body" in entry)
677
+ installed_by_key = index_installed_entries(manifest["entries"])
678
+ managed: list[dict[str, Any]] = []
679
+ deferred: list[dict[str, Any]] = []
680
+
681
+ for goal in registry_goals(registry):
682
+ goal_id = str(goal.get("id") or "")
683
+ if selected_goal_ids and goal_id not in selected_goal_ids:
684
+ continue
685
+ repo = Path(str(goal.get("repo") or ".")).expanduser()
686
+ state_file = resolve_state_file(repo, goal.get("state_file"))
687
+ if goal_is_stage_deferred(goal):
688
+ deferred.append(stage_deferred_goal_summary(goal, state_file))
689
+ continue
690
+ registered_agents = registered_agent_ids_for_goal(goal)
691
+ prompt_summaries: dict[str, dict[str, Any]] = {}
692
+ installed: dict[str, dict[str, Any]] = {}
693
+ prompt_targets = [
694
+ (mode, agent_id)
695
+ for mode in selected_modes
696
+ for agent_id in (registered_agents or [None])
697
+ ]
698
+ for mode, agent_id in prompt_targets:
699
+ key = prompt_target_key(mode, agent_id)
700
+ entry = installed_by_key.get((goal_id, mode, agent_id or ""))
701
+ legacy_unscoped = False
702
+ if entry is None and agent_id:
703
+ entry = installed_by_key.get((goal_id, mode, ""))
704
+ legacy_unscoped = entry is not None
705
+ available_capabilities = installed_entry_available_capabilities(entry)
706
+ agent_profile = agent_profile_for_goal(goal, agent_id)
707
+ prompt = build_heartbeat_prompt(
708
+ goal_id=goal_id,
709
+ active_state=None,
710
+ active_state_source="registry",
711
+ resolved_active_state=state_file,
712
+ compact=mode == "compact",
713
+ brief=mode == "brief",
714
+ thin=mode == "thin",
715
+ cli_bin=cli_bin,
716
+ agent_id=agent_id,
717
+ agent_profile=agent_profile,
718
+ registered_agents=registered_agents or None,
719
+ available_capabilities=available_capabilities,
720
+ runtime_profile="codex_app_heartbeat",
721
+ )
722
+ summary = prompt_summary(prompt, mode)
723
+ summary["agent_id"] = agent_id
724
+ summary["prompt_target"] = key
725
+ prompt_summaries[key] = summary
726
+ expected_digest = str(summary.get("sha256") or "")
727
+ not_installed = entry_declares_not_installed(entry)
728
+ actual_digest = None if not_installed else installed_entry_digest(entry) if entry else None
729
+ status = "unknown"
730
+ if not_installed:
731
+ status = "not_installed"
732
+ elif entry:
733
+ status = "current" if actual_digest == expected_digest else "stale"
734
+ policy_audit = (
735
+ {
736
+ "available": False,
737
+ "status": "not_applicable",
738
+ "warning_count": 0,
739
+ "warnings": [],
740
+ "reason": "heartbeat is explicitly not installed",
741
+ }
742
+ if not_installed
743
+ else installed_prompt_policy_audit(entry)
744
+ )
745
+ warnings = (
746
+ policy_audit.get("warnings")
747
+ if isinstance(policy_audit.get("warnings"), list)
748
+ else []
749
+ )
750
+ if legacy_unscoped:
751
+ warnings = [
752
+ *warnings,
753
+ {
754
+ "kind": "legacy_unscoped_prompt_for_registered_agent",
755
+ "severity": "warning",
756
+ "recommended_action": (
757
+ "replace this heartbeat with a scoped prompt generated with "
758
+ f"--agent-id {agent_id}"
759
+ ),
760
+ },
761
+ ]
762
+ policy_audit = {
763
+ **policy_audit,
764
+ "status": "warning",
765
+ "warning_count": len(warnings),
766
+ "warnings": warnings,
767
+ }
768
+ policy_warning_count = int(policy_audit.get("warning_count") or 0)
769
+ installed[key] = {
770
+ "status": status,
771
+ "requires_update": status in {"unknown", "stale"} or policy_warning_count > 0,
772
+ "automation_id": entry.get("automation_id") if entry else None,
773
+ "installed": False if not_installed else bool(entry),
774
+ "agent_id": agent_id,
775
+ "prompt_target": key,
776
+ "legacy_unscoped_match": legacy_unscoped,
777
+ "prompt_sha256": actual_digest,
778
+ "expected_sha256": expected_digest,
779
+ "available_capabilities": available_capabilities,
780
+ "prompt_policy_audit": policy_audit,
781
+ }
782
+ loop_activation = build_loop_activation_summary(installed=installed)
783
+ runtime_migration = peer_runtime_upgrade_migration(
784
+ goal,
785
+ goal_id=goal_id,
786
+ installed=installed,
787
+ generated_prompts=prompt_summaries,
788
+ )
789
+
790
+ managed.append(
791
+ {
792
+ "goal_id": goal_id,
793
+ "adapter_kind": goal_adapter_kind(goal),
794
+ "adapter_status": goal_adapter_status(goal) or None,
795
+ "registered_agents": registered_agents,
796
+ "agent_model": "peer_v1",
797
+ "repo": str(repo),
798
+ "state_file": str(state_file) if state_file else None,
799
+ "state_file_exists": bool(state_file and state_file.exists()),
800
+ "generated_prompts": prompt_summaries,
801
+ "installed_prompts": installed,
802
+ "host_loop_activation": loop_activation,
803
+ "peer_runtime_automation_migration": runtime_migration,
804
+ "requires_update": any(item["requires_update"] for item in installed.values())
805
+ or loop_activation.get("status") in HOST_LOOP_UPDATE_STATUSES
806
+ or runtime_migration.get("required") is True,
807
+ }
808
+ )
809
+
810
+ unknown = sum(
811
+ 1
812
+ for goal in managed
813
+ for installed in goal["installed_prompts"].values()
814
+ if installed["status"] == "unknown"
815
+ )
816
+ stale = sum(
817
+ 1
818
+ for goal in managed
819
+ for installed in goal["installed_prompts"].values()
820
+ if installed["status"] == "stale"
821
+ )
822
+ current = sum(
823
+ 1
824
+ for goal in managed
825
+ for installed in goal["installed_prompts"].values()
826
+ if installed["status"] == "current"
827
+ )
828
+ not_installed = sum(
829
+ 1
830
+ for goal in managed
831
+ for installed in goal["installed_prompts"].values()
832
+ if installed["status"] == "not_installed"
833
+ )
834
+ policy_warning_count = sum(
835
+ int(installed.get("prompt_policy_audit", {}).get("warning_count") or 0)
836
+ for goal in managed
837
+ for installed in goal["installed_prompts"].values()
838
+ if isinstance(installed, dict)
839
+ )
840
+ policy_warning_prompt_count = sum(
841
+ 1
842
+ for goal in managed
843
+ for installed in goal["installed_prompts"].values()
844
+ if int(installed.get("prompt_policy_audit", {}).get("warning_count") or 0) > 0
845
+ )
846
+ host_loop_activated = sum(
847
+ 1
848
+ for goal in managed
849
+ if isinstance(goal.get("host_loop_activation"), dict)
850
+ and goal["host_loop_activation"].get("activated") is True
851
+ )
852
+ host_loop_missing = sum(
853
+ 1
854
+ for goal in managed
855
+ if isinstance(goal.get("host_loop_activation"), dict)
856
+ and goal["host_loop_activation"].get("status") in HOST_LOOP_UPDATE_STATUSES
857
+ )
858
+ peer_runtime_migration_count = sum(
859
+ 1
860
+ for goal in managed
861
+ if isinstance(goal.get("peer_runtime_automation_migration"), dict)
862
+ and goal["peer_runtime_automation_migration"].get("required") is True
863
+ )
864
+ ready = (
865
+ bool(managed)
866
+ and unknown == 0
867
+ and stale == 0
868
+ and policy_warning_count == 0
869
+ and host_loop_missing == 0
870
+ and peer_runtime_migration_count == 0
871
+ )
872
+ if ready:
873
+ recommended_action = "promotion propagation is complete"
874
+ elif peer_runtime_migration_count > 0:
875
+ recommended_action = (
876
+ "complete each peer runtime automation migration in the projected order; "
877
+ "stable migration ids make host updates idempotent and each completion ack "
878
+ "removes the prompt exactly once"
879
+ )
880
+ elif host_loop_missing > 0:
881
+ recommended_action = "activate missing host loops from generated scoped heartbeat prompts before claiming autonomous setup"
882
+ elif policy_warning_count > 0:
883
+ recommended_action = "regenerate installed heartbeat automations with prompt policy warnings before default promotion"
884
+ elif managed:
885
+ recommended_action = "refresh installed heartbeat automations/controller clients before default promotion"
886
+ elif deferred:
887
+ recommended_action = "selected heartbeats are stage-deferred; do not install until the operator authorizes that stage"
888
+ else:
889
+ recommended_action = "no registry-managed heartbeats matched the upgrade plan selection"
890
+ summary = {
891
+ "managed_goal_count": len(managed),
892
+ "current_prompt_count": current,
893
+ "stale_prompt_count": stale,
894
+ "unknown_prompt_count": unknown,
895
+ "not_installed_prompt_count": not_installed,
896
+ "stage_deferred_goal_count": len(deferred),
897
+ "ready_for_default_promotion": ready,
898
+ "installed_manifest_available": manifest.get("available"),
899
+ "installed_manifest_source": manifest.get("source"),
900
+ "installed_manifest_entry_count": len(manifest_entries),
901
+ "installed_manifest_task_body_count": manifest_task_body_count,
902
+ "installed_manifest_has_task_body": manifest_task_body_count > 0,
903
+ "installed_prompt_policy_warning_count": policy_warning_count,
904
+ "installed_prompt_policy_warning_prompt_count": policy_warning_prompt_count,
905
+ "host_loop_activated_goal_count": host_loop_activated,
906
+ "host_loop_missing_goal_count": host_loop_missing,
907
+ "peer_runtime_automation_migration_count": peer_runtime_migration_count,
908
+ }
909
+ default_upgrade_propagation = build_default_upgrade_propagation(
910
+ summary=summary,
911
+ managed=managed,
912
+ deferred=deferred,
913
+ recommended_action=recommended_action,
914
+ )
915
+ return {
916
+ "ok": True,
917
+ "mode": "upgrade-plan",
918
+ "registry": str(registry_path),
919
+ "runtime_root": str(runtime_root),
920
+ "cli_bin": cli_bin,
921
+ "prompt_modes": list(selected_modes),
922
+ "installed_manifest": manifest,
923
+ "summary": summary,
924
+ "managed_heartbeats": managed,
925
+ "stage_deferred_heartbeats": deferred,
926
+ "default_upgrade_propagation": default_upgrade_propagation,
927
+ "recommended_action": recommended_action,
928
+ }
929
+
930
+
931
+ def render_upgrade_plan_markdown(payload: dict[str, Any]) -> str:
932
+ summary = payload.get("summary") if isinstance(payload.get("summary"), dict) else {}
933
+ lines = [
934
+ "# LoopX Upgrade Plan",
935
+ "",
936
+ f"- ok: `{payload.get('ok')}`",
937
+ f"- registry: `{payload.get('registry')}`",
938
+ f"- runtime_root: `{payload.get('runtime_root')}`",
939
+ f"- cli_bin: `{payload.get('cli_bin')}`",
940
+ f"- prompt_modes: `{', '.join(payload.get('prompt_modes') or [])}`",
941
+ f"- ready_for_default_promotion: `{summary.get('ready_for_default_promotion')}`",
942
+ f"- managed_goal_count: `{summary.get('managed_goal_count')}`",
943
+ f"- current_prompt_count: `{summary.get('current_prompt_count')}`",
944
+ f"- stale_prompt_count: `{summary.get('stale_prompt_count')}`",
945
+ f"- unknown_prompt_count: `{summary.get('unknown_prompt_count')}`",
946
+ f"- not_installed_prompt_count: `{summary.get('not_installed_prompt_count')}`",
947
+ f"- stage_deferred_goal_count: `{summary.get('stage_deferred_goal_count')}`",
948
+ f"- installed_manifest_source: `{summary.get('installed_manifest_source')}`",
949
+ f"- installed_manifest_entry_count: `{summary.get('installed_manifest_entry_count')}`",
950
+ f"- installed_manifest_has_task_body: `{summary.get('installed_manifest_has_task_body')}`",
951
+ f"- installed_prompt_policy_warning_count: `{summary.get('installed_prompt_policy_warning_count')}`",
952
+ f"- installed_prompt_policy_warning_prompt_count: `{summary.get('installed_prompt_policy_warning_prompt_count')}`",
953
+ f"- host_loop_activated_goal_count: `{summary.get('host_loop_activated_goal_count')}`",
954
+ f"- host_loop_missing_goal_count: `{summary.get('host_loop_missing_goal_count')}`",
955
+ f"- peer_runtime_automation_migration_count: `{summary.get('peer_runtime_automation_migration_count')}`",
956
+ f"- recommended_action: `{payload.get('recommended_action')}`",
957
+ ]
958
+ manifest = payload.get("installed_manifest") if isinstance(payload.get("installed_manifest"), dict) else {}
959
+ lines.extend(
960
+ [
961
+ "",
962
+ "## Installed Manifest",
963
+ "",
964
+ f"- available: `{manifest.get('available')}`",
965
+ f"- path: `{manifest.get('path')}`",
966
+ f"- reason: `{manifest.get('reason')}`",
967
+ ]
968
+ )
969
+ propagation = (
970
+ payload.get("default_upgrade_propagation")
971
+ if isinstance(payload.get("default_upgrade_propagation"), dict)
972
+ else {}
973
+ )
974
+ lines.extend(
975
+ [
976
+ "",
977
+ "## Default Upgrade Propagation",
978
+ "",
979
+ f"- schema_version: `{propagation.get('schema_version')}`",
980
+ f"- ready_for_default_promotion: `{propagation.get('ready_for_default_promotion')}`",
981
+ f"- managed_target_count: `{propagation.get('managed_target_count')}`",
982
+ f"- deferred_target_count: `{propagation.get('deferred_target_count')}`",
983
+ f"- update_count: `{propagation.get('update_count')}`",
984
+ f"- deferred_install_count: `{propagation.get('deferred_install_count')}`",
985
+ f"- recommended_action: `{propagation.get('recommended_action')}`",
986
+ ]
987
+ )
988
+ managed_targets = (
989
+ propagation.get("managed_targets") if isinstance(propagation.get("managed_targets"), list) else []
990
+ )
991
+ for target in managed_targets:
992
+ if not isinstance(target, dict):
993
+ continue
994
+ lines.append(
995
+ f"- managed `{target.get('goal_id')}` action=`{target.get('action')}` "
996
+ f"requires_update=`{target.get('requires_update')}` reason=`{target.get('reason')}`"
997
+ )
998
+ for goal in payload.get("managed_heartbeats") or []:
999
+ if not isinstance(goal, dict):
1000
+ continue
1001
+ migration = goal.get("peer_runtime_automation_migration")
1002
+ if not isinstance(migration, dict) or migration.get("required") is not True:
1003
+ continue
1004
+ lines.extend(
1005
+ [
1006
+ "",
1007
+ f"## Peer Runtime Migration: {goal.get('goal_id')}",
1008
+ "",
1009
+ f"- migration_id: `{migration.get('migration_id')}`",
1010
+ f"- delivery_semantics: `{migration.get('delivery_semantics')}`",
1011
+ f"- host_update_required_once: `{migration.get('host_update_required_once')}`",
1012
+ f"- completion_command: `{migration.get('completion_command')}`",
1013
+ ]
1014
+ )
1015
+ deferred_targets = (
1016
+ propagation.get("stage_deferred_targets")
1017
+ if isinstance(propagation.get("stage_deferred_targets"), list)
1018
+ else []
1019
+ )
1020
+ for target in deferred_targets:
1021
+ if not isinstance(target, dict):
1022
+ continue
1023
+ lines.append(
1024
+ f"- deferred `{target.get('goal_id')}` action=`{target.get('action')}` "
1025
+ f"requires_update=`{target.get('requires_update')}`"
1026
+ )
1027
+ lines.extend(["", "## Managed Heartbeats", ""])
1028
+ for goal in payload.get("managed_heartbeats") or []:
1029
+ installed = goal.get("installed_prompts") if isinstance(goal.get("installed_prompts"), dict) else {}
1030
+ generated = goal.get("generated_prompts") if isinstance(goal.get("generated_prompts"), dict) else {}
1031
+ activation = (
1032
+ goal.get("host_loop_activation")
1033
+ if isinstance(goal.get("host_loop_activation"), dict)
1034
+ else {}
1035
+ )
1036
+ status_parts = []
1037
+ for mode, status in installed.items():
1038
+ if isinstance(status, dict):
1039
+ audit = status.get("prompt_policy_audit") if isinstance(status.get("prompt_policy_audit"), dict) else {}
1040
+ audit_warning_count = int(audit.get("warning_count") or 0)
1041
+ audit_suffix = f",audit_warnings={audit_warning_count}" if audit_warning_count else ""
1042
+ status_parts.append(f"{mode}={status.get('status')}{audit_suffix}")
1043
+ prompt_parts = []
1044
+ for mode, prompt in generated.items():
1045
+ if isinstance(prompt, dict):
1046
+ prompt_parts.append(
1047
+ f"{mode}:sha={str(prompt.get('sha256') or '')[:12]} chars={prompt.get('char_count')}"
1048
+ )
1049
+ lines.extend(
1050
+ [
1051
+ f"- `{goal.get('goal_id')}` state_file_exists=`{goal.get('state_file_exists')}` "
1052
+ f"requires_update=`{goal.get('requires_update')}` installed=`{', '.join(status_parts)}`",
1053
+ f" host_loop_activation: surface=`{activation.get('host_surface')}` "
1054
+ f"status=`{activation.get('status')}` "
1055
+ f"activated=`{activation.get('activated')}` current=`{activation.get('current_count')}` "
1056
+ f"missing=`{activation.get('missing_count')}` stale=`{activation.get('stale_count')}`",
1057
+ f" prompts: `{'; '.join(prompt_parts)}`",
1058
+ ]
1059
+ )
1060
+ for mode, status in installed.items():
1061
+ if not isinstance(status, dict):
1062
+ continue
1063
+ audit = status.get("prompt_policy_audit") if isinstance(status.get("prompt_policy_audit"), dict) else {}
1064
+ warnings = audit.get("warnings") if isinstance(audit.get("warnings"), list) else []
1065
+ if not warnings:
1066
+ continue
1067
+ kinds = ", ".join(
1068
+ str(warning.get("kind"))
1069
+ for warning in warnings
1070
+ if isinstance(warning, dict) and warning.get("kind")
1071
+ )
1072
+ lines.append(f" prompt_policy_warnings[{mode}]: `{kinds}`")
1073
+ deferred = payload.get("stage_deferred_heartbeats") or []
1074
+ if deferred:
1075
+ lines.extend(["", "## Stage Deferred Heartbeats", ""])
1076
+ for goal in deferred:
1077
+ if not isinstance(goal, dict):
1078
+ continue
1079
+ lines.append(
1080
+ f"- `{goal.get('goal_id')}` adapter=`{goal.get('adapter_kind')}:{goal.get('adapter_status')}` "
1081
+ f"attention_status=`{goal.get('attention_status')}` requires_update=`{goal.get('requires_update')}`"
1082
+ )
1083
+ return "\n".join(lines) + "\n"