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.
- loopx/__init__.py +5 -0
- loopx/agent_onboarding.py +654 -0
- loopx/agent_registry.py +112 -0
- loopx/ark_managed_agent_host.py +59 -0
- loopx/authority.py +805 -0
- loopx/benchmark.py +2875 -0
- loopx/benchmark_adapters/__init__.py +1 -0
- loopx/benchmark_adapters/agentissue.py +2644 -0
- loopx/benchmark_adapters/agents_last_exam.py +3998 -0
- loopx/benchmark_adapters/edgebench.py +322 -0
- loopx/benchmark_adapters/skillsbench.py +5978 -0
- loopx/benchmark_adapters/skillsbench_acp_failure_policy.py +143 -0
- loopx/benchmark_adapters/skillsbench_acp_process.py +31 -0
- loopx/benchmark_adapters/skillsbench_acp_relay.py +4832 -0
- loopx/benchmark_adapters/skillsbench_batch.py +124 -0
- loopx/benchmark_adapters/skillsbench_bridge_guard.py +209 -0
- loopx/benchmark_adapters/skillsbench_bridge_summary.py +203 -0
- loopx/benchmark_adapters/skillsbench_codex_goal_recovery.py +271 -0
- loopx/benchmark_adapters/skillsbench_codex_goal_trace.py +81 -0
- loopx/benchmark_adapters/skillsbench_codex_runtime.py +339 -0
- loopx/benchmark_adapters/skillsbench_dockerfile_runtime.py +467 -0
- loopx/benchmark_adapters/skillsbench_failure_signals.py +652 -0
- loopx/benchmark_adapters/skillsbench_proxy_runtime.py +327 -0
- loopx/benchmark_adapters/skillsbench_remote_bridge.py +402 -0
- loopx/benchmark_adapters/skillsbench_result_discovery.py +143 -0
- loopx/benchmark_adapters/skillsbench_runner_profile.py +436 -0
- loopx/benchmark_adapters/skillsbench_runner_source.py +99 -0
- loopx/benchmark_adapters/skillsbench_setup_preflight.py +771 -0
- loopx/benchmark_adapters/skillsbench_signals.py +15 -0
- loopx/benchmark_adapters/skillsbench_task_source.py +141 -0
- loopx/benchmark_adapters/skillsbench_turn_route.py +723 -0
- loopx/benchmark_adapters/skillsbench_turn_runtime.py +1069 -0
- loopx/benchmark_adapters/skillsbench_typed_repair.py +689 -0
- loopx/benchmark_adapters/skillsbench_uv_cache.py +111 -0
- loopx/benchmark_adapters/skillsbench_verifier_bootstrap.py +227 -0
- loopx/benchmark_adapters/skillsbench_verifier_cache.py +138 -0
- loopx/benchmark_adapters/terminal_bench.py +10078 -0
- loopx/benchmark_case_analysis.py +1276 -0
- loopx/benchmark_case_state.py +1079 -0
- loopx/benchmark_core/__init__.py +239 -0
- loopx/benchmark_core/adapter.py +84 -0
- loopx/benchmark_core/artifacts.py +517 -0
- loopx/benchmark_core/attempts.py +199 -0
- loopx/benchmark_core/container_exec.py +216 -0
- loopx/benchmark_core/io.py +68 -0
- loopx/benchmark_core/lifecycle.py +211 -0
- loopx/benchmark_core/loop_protocol.py +689 -0
- loopx/benchmark_core/observable_handles.py +348 -0
- loopx/benchmark_core/parity.py +256 -0
- loopx/benchmark_core/remote_closeout.py +482 -0
- loopx/benchmark_core/rounds.py +215 -0
- loopx/benchmark_core/route_profile.py +509 -0
- loopx/benchmark_core/run_permissions.py +206 -0
- loopx/benchmark_core/split_control.py +925 -0
- loopx/benchmark_core/turn_fidelity.py +326 -0
- loopx/benchmark_ledger.py +3793 -0
- loopx/benchmark_ledger_countability.py +372 -0
- loopx/benchmark_ledger_current.py +724 -0
- loopx/benchmark_trajectory.py +405 -0
- loopx/benchmarks/__init__.py +1 -0
- loopx/benchmarks/qualification/__init__.py +1 -0
- loopx/benchmarks/qualification/release_outcome_baseline.py +360 -0
- loopx/benchmarks/read_models/__init__.py +1 -0
- loopx/benchmarks/read_models/benchmark_attempt_accounting.py +53 -0
- loopx/benchmarks/read_models/benchmark_comparison.py +414 -0
- loopx/benchmarks/read_models/benchmark_event_timeline.py +113 -0
- loopx/benchmarks/read_models/benchmark_experiment_report.py +475 -0
- loopx/benchmarks/read_models/benchmark_learning_ledger.py +137 -0
- loopx/benchmarks/read_models/benchmark_lifecycle_contracts.py +228 -0
- loopx/benchmarks/read_models/benchmark_projection.py +723 -0
- loopx/benchmarks/read_models/benchmark_result.py +146 -0
- loopx/benchmarks/read_models/benchmark_run_execution_contract.py +116 -0
- loopx/benchmarks/read_models/benchmark_run_failure.py +157 -0
- loopx/benchmarks/read_models/benchmark_run_metrics.py +213 -0
- loopx/benchmarks/read_models/benchmark_run_post_execution.py +635 -0
- loopx/benchmarks/read_models/benchmark_run_pre_execution.py +541 -0
- loopx/benchmarks/read_models/benchmark_status_compaction.py +1255 -0
- loopx/benchmarks/read_models/benchmark_status_runner.py +780 -0
- loopx/benchmarks/read_models/goal_start_control_score.py +857 -0
- loopx/benchmarks/read_models/skillsbench_post_run_debug.py +746 -0
- loopx/benchmarks/read_models/skillsbench_verifier_attribution.py +269 -0
- loopx/bootstrap.py +1116 -0
- loopx/bootstrap_command_pack.py +2167 -0
- loopx/boundary_authority.py +199 -0
- loopx/canary/__init__.py +1 -0
- loopx/canary/maintainability_ratchet.py +800 -0
- loopx/canary/planner.py +1984 -0
- loopx/canary/premerge.py +1130 -0
- loopx/canary/qualification_profiles.py +309 -0
- loopx/canary/quality_surface_catalog.py +838 -0
- loopx/canary/release_profiles.py +51 -0
- loopx/canary/runner.py +1107 -0
- loopx/canary/smoke_health.py +581 -0
- loopx/canary/smoke_profiles.py +212 -0
- loopx/capabilities/__init__.py +0 -0
- loopx/capabilities/agent_turn_recall/__init__.py +17 -0
- loopx/capabilities/agent_turn_recall/cli.py +369 -0
- loopx/capabilities/agent_turn_recall/core.py +296 -0
- loopx/capabilities/auto_research/__init__.py +16 -0
- loopx/capabilities/auto_research/bootstrap_contract.py +157 -0
- loopx/capabilities/auto_research/cli.py +1468 -0
- loopx/capabilities/auto_research/core.py +11 -0
- loopx/capabilities/auto_research/defaults.py +79 -0
- loopx/capabilities/auto_research/demo_e2e.py +1848 -0
- loopx/capabilities/auto_research/demo_supervisor.py +186 -0
- loopx/capabilities/auto_research/evidence_packet.py +767 -0
- loopx/capabilities/auto_research/human_view.py +794 -0
- loopx/capabilities/auto_research/kernel.py +191 -0
- loopx/capabilities/auto_research/knn_demo_workspace.py +322 -0
- loopx/capabilities/auto_research/live_evidence.py +248 -0
- loopx/capabilities/auto_research/preset.py +176 -0
- loopx/capabilities/auto_research/research_state.py +1085 -0
- loopx/capabilities/auto_research/role_profiles.py +394 -0
- loopx/capabilities/auto_research/rollout_append.py +97 -0
- loopx/capabilities/auto_research/terminal_result_contract.py +422 -0
- loopx/capabilities/auto_research/terminal_result_projection.py +171 -0
- loopx/capabilities/auto_research/terminal_result_query.py +233 -0
- loopx/capabilities/auto_research/terminal_results.py +349 -0
- loopx/capabilities/auto_research/user_contract.py +190 -0
- loopx/capabilities/auto_research/worker_loop.py +163 -0
- loopx/capabilities/auto_research/worker_runtime.py +777 -0
- loopx/capabilities/auto_research/worker_skill/SKILL.md +343 -0
- loopx/capabilities/benchmark_toolkit/__init__.py +19 -0
- loopx/capabilities/benchmark_toolkit/integrity.py +387 -0
- loopx/capabilities/catalog.py +1875 -0
- loopx/capabilities/change_quality/__init__.py +19 -0
- loopx/capabilities/change_quality/cli.py +171 -0
- loopx/capabilities/change_quality/context.py +156 -0
- loopx/capabilities/change_quality/oracles.py +269 -0
- loopx/capabilities/change_quality/policy.py +34 -0
- loopx/capabilities/change_quality/receipt.py +482 -0
- loopx/capabilities/change_quality/result.py +493 -0
- loopx/capabilities/change_quality/scope.py +171 -0
- loopx/capabilities/change_quality/shadow.py +680 -0
- loopx/capabilities/content_ops/__init__.py +0 -0
- loopx/capabilities/content_ops/cli.py +649 -0
- loopx/capabilities/content_ops/connector_packets.py +164 -0
- loopx/capabilities/content_ops/item_lifecycle.py +1000 -0
- loopx/capabilities/content_ops/layout.py +451 -0
- loopx/capabilities/content_ops/markdown.py +456 -0
- loopx/capabilities/content_ops/schemas.py +51 -0
- loopx/capabilities/content_ops/social_browser_x.py +107 -0
- loopx/capabilities/content_ops/surface.py +1956 -0
- loopx/capabilities/content_ops/templates/layout-catalog-v0.json +72 -0
- loopx/capabilities/context_providers/__init__.py +36 -0
- loopx/capabilities/context_providers/base.py +189 -0
- loopx/capabilities/context_providers/factory.py +32 -0
- loopx/capabilities/context_providers/openviking.py +702 -0
- loopx/capabilities/context_providers/service_ownership.py +185 -0
- loopx/capabilities/decision_context/__init__.py +129 -0
- loopx/capabilities/decision_context/architecture.py +83 -0
- loopx/capabilities/decision_context/assembler.py +849 -0
- loopx/capabilities/decision_context/catalog_entry.py +195 -0
- loopx/capabilities/decision_context/cli.py +310 -0
- loopx/capabilities/decision_context/cursor_commit.py +535 -0
- loopx/capabilities/decision_context/outcome_feedback.py +352 -0
- loopx/capabilities/decision_context/packets.py +654 -0
- loopx/capabilities/decision_context/private_state.py +189 -0
- loopx/capabilities/decision_context/profile.py +453 -0
- loopx/capabilities/decision_context/providers.py +228 -0
- loopx/capabilities/decision_context/review_settlement.py +136 -0
- loopx/capabilities/decision_context/runtime.py +273 -0
- loopx/capabilities/decision_context/sources.py +415 -0
- loopx/capabilities/explore/__init__.py +1 -0
- loopx/capabilities/explore/activation.py +198 -0
- loopx/capabilities/explore/adaptive_replay_planner.py +221 -0
- loopx/capabilities/explore/child_replay_runtime.py +463 -0
- loopx/capabilities/explore/composition_frontier.py +291 -0
- loopx/capabilities/explore/counterfactual_runtime.py +578 -0
- loopx/capabilities/explore/episode_runtime.py +647 -0
- loopx/capabilities/explore/harness_checkpoint.py +171 -0
- loopx/capabilities/explore/harness_gate.py +115 -0
- loopx/capabilities/explore/harness_runtime.py +1124 -0
- loopx/capabilities/explore/replay_metrics.py +206 -0
- loopx/capabilities/explore/replay_runtime.py +1271 -0
- loopx/capabilities/explore/resource_portfolio.py +173 -0
- loopx/capabilities/explore/result_log.py +974 -0
- loopx/capabilities/explore/router_state.py +432 -0
- loopx/capabilities/explore/source_history_reconcile.py +255 -0
- loopx/capabilities/explore/speculative_scheduler.py +498 -0
- loopx/capabilities/explore/todo_branch_plan.py +650 -0
- loopx/capabilities/explore/todo_evidence.py +141 -0
- loopx/capabilities/explore/trace_runtime.py +284 -0
- loopx/capabilities/explore/worker_branch_plan.py +1257 -0
- loopx/capabilities/integration_branch/__init__.py +13 -0
- loopx/capabilities/integration_branch/cli.py +148 -0
- loopx/capabilities/integration_branch/core.py +916 -0
- loopx/capabilities/issue_fix/__init__.py +19 -0
- loopx/capabilities/issue_fix/acceptance_loop.py +1050 -0
- loopx/capabilities/issue_fix/candidate_evidence.py +503 -0
- loopx/capabilities/issue_fix/candidate_preflight.py +676 -0
- loopx/capabilities/issue_fix/cli.py +1822 -0
- loopx/capabilities/issue_fix/cli_input.py +87 -0
- loopx/capabilities/issue_fix/content_ops_cli.py +148 -0
- loopx/capabilities/issue_fix/discovered_issue_promotion.py +947 -0
- loopx/capabilities/issue_fix/explore_projection.py +710 -0
- loopx/capabilities/issue_fix/feasibility.py +542 -0
- loopx/capabilities/issue_fix/github_public.py +661 -0
- loopx/capabilities/issue_fix/intake_surface.py +832 -0
- loopx/capabilities/issue_fix/metadata_preview.py +218 -0
- loopx/capabilities/issue_fix/metrics_projection.py +1340 -0
- loopx/capabilities/issue_fix/metrics_supplement.py +634 -0
- loopx/capabilities/issue_fix/metrics_supplement_cli.py +127 -0
- loopx/capabilities/issue_fix/outcome_projection.py +1235 -0
- loopx/capabilities/issue_fix/periodic_report.py +189 -0
- loopx/capabilities/issue_fix/pr_description.py +418 -0
- loopx/capabilities/issue_fix/pr_gate_reconcile.py +496 -0
- loopx/capabilities/issue_fix/pr_gate_reconcile_cli.py +464 -0
- loopx/capabilities/issue_fix/pr_lifecycle.py +1327 -0
- loopx/capabilities/issue_fix/pr_lifecycle_rollout.py +85 -0
- loopx/capabilities/issue_fix/pr_monitor_materialization.py +257 -0
- loopx/capabilities/issue_fix/pr_review_ack.py +439 -0
- loopx/capabilities/issue_fix/provider_hooks.py +24 -0
- loopx/capabilities/issue_fix/repository_commit_evidence.py +186 -0
- loopx/capabilities/issue_fix/repository_context.py +457 -0
- loopx/capabilities/issue_fix/repository_memory.py +459 -0
- loopx/capabilities/issue_fix/repository_memory_provider.py +1454 -0
- loopx/capabilities/issue_fix/repository_snapshot.py +454 -0
- loopx/capabilities/issue_fix/reviewer_cli.py +917 -0
- loopx/capabilities/issue_fix/reviewer_notification.py +882 -0
- loopx/capabilities/issue_fix/reviewer_notification_drain.py +942 -0
- loopx/capabilities/issue_fix/reviewer_recommendation.py +1057 -0
- loopx/capabilities/issue_fix/reviewer_request.py +1282 -0
- loopx/capabilities/issue_fix/reward_memory.py +879 -0
- loopx/capabilities/issue_fix/workflow_plan.py +1286 -0
- loopx/capabilities/material_lifecycle/__init__.py +161 -0
- loopx/capabilities/material_lifecycle/_validation.py +183 -0
- loopx/capabilities/material_lifecycle/apply.py +672 -0
- loopx/capabilities/material_lifecycle/architecture.py +122 -0
- loopx/capabilities/material_lifecycle/cli.py +161 -0
- loopx/capabilities/material_lifecycle/decision_planning.py +470 -0
- loopx/capabilities/material_lifecycle/explore_execution.py +306 -0
- loopx/capabilities/material_lifecycle/intake.py +869 -0
- loopx/capabilities/material_lifecycle/inventory.py +147 -0
- loopx/capabilities/material_lifecycle/lifecycle.py +98 -0
- loopx/capabilities/material_lifecycle/preparation.py +147 -0
- loopx/capabilities/material_lifecycle/project_skill.py +83 -0
- loopx/capabilities/material_lifecycle/ranking.py +267 -0
- loopx/capabilities/material_lifecycle/readable_projection.py +500 -0
- loopx/capabilities/material_lifecycle/rebuild.py +480 -0
- loopx/capabilities/material_lifecycle/settlement.py +238 -0
- loopx/capabilities/periodic_report/__init__.py +71 -0
- loopx/capabilities/periodic_report/adapters.py +939 -0
- loopx/capabilities/periodic_report/archive.py +422 -0
- loopx/capabilities/periodic_report/bindings.py +705 -0
- loopx/capabilities/periodic_report/cli.py +277 -0
- loopx/capabilities/periodic_report/core.py +691 -0
- loopx/capabilities/periodic_report/extension_envelope.py +66 -0
- loopx/capabilities/periodic_report/presets.py +103 -0
- loopx/capabilities/periodic_report/profile.py +235 -0
- loopx/capabilities/periodic_report/project_progress.py +179 -0
- loopx/capabilities/periodic_report/triggers.py +452 -0
- loopx/capabilities/pr_review_queue/__init__.py +17 -0
- loopx/capabilities/pr_review_queue/core.py +506 -0
- loopx/capabilities/pr_review_queue/review_contract.py +506 -0
- loopx/capabilities/registry.py +192 -0
- loopx/capabilities/reward_memory/__init__.py +75 -0
- loopx/capabilities/reward_memory/application.py +819 -0
- loopx/capabilities/reward_memory/architecture.py +572 -0
- loopx/capabilities/reward_memory/candidate_review.py +511 -0
- loopx/capabilities/reward_memory/cli.py +469 -0
- loopx/capabilities/reward_memory/dogfood.py +574 -0
- loopx/capabilities/reward_memory/evaluation.py +296 -0
- loopx/capabilities/reward_memory/evaluation_fixtures.py +362 -0
- loopx/capabilities/reward_memory/experiment.py +567 -0
- loopx/capabilities/reward_memory/health.py +222 -0
- loopx/capabilities/reward_memory/ingestion.py +519 -0
- loopx/capabilities/reward_memory/registry.py +600 -0
- loopx/capabilities/reward_memory/runtime_hooks.py +312 -0
- loopx/capabilities/reward_memory/scoped_feedback.py +173 -0
- loopx/capabilities/semantic_preference/__init__.py +12 -0
- loopx/capabilities/semantic_preference/cli.py +189 -0
- loopx/capabilities/semantic_preference/contract.py +592 -0
- loopx/capabilities/semantic_preference/reward_memory.py +62 -0
- loopx/capabilities/value_connectors/__init__.py +1 -0
- loopx/capabilities/value_connectors/cli.py +401 -0
- loopx/capabilities/value_connectors/finance_extension_migration.py +108 -0
- loopx/capabilities/value_connectors/install_check.py +147 -0
- loopx/capabilities/value_connectors/planner.py +733 -0
- loopx/capabilities/value_connectors/source_map.py +446 -0
- loopx/claude_goal_baseline.py +138 -0
- loopx/claude_goal_mode/__init__.py +23 -0
- loopx/claude_goal_mode/hooks/goal_policy.py +212 -0
- loopx/claude_goal_mode/hooks/goal_state.py +139 -0
- loopx/claude_goal_mode/mcp/loopx_mcp.py +167 -0
- loopx/claude_goal_mode/scripts/connect.py +103 -0
- loopx/claude_goal_mode/scripts/goalmode_cmd.py +241 -0
- loopx/claude_goal_mode/scripts/install.py +328 -0
- loopx/claude_goal_mode/statusline/goal_status.py +97 -0
- loopx/cli.py +836 -0
- loopx/cli_commands/__init__.py +334 -0
- loopx/cli_commands/_host_thread.py +13 -0
- loopx/cli_commands/agentissue_runner_flow.py +447 -0
- loopx/cli_commands/agents_last_exam.py +160 -0
- loopx/cli_commands/agents_last_exam_baked_input.py +302 -0
- loopx/cli_commands/agents_last_exam_host_codex.py +374 -0
- loopx/cli_commands/agents_last_exam_launch_dry_run.py +372 -0
- loopx/cli_commands/agents_last_exam_local_plan.py +322 -0
- loopx/cli_commands/agents_last_exam_runner_source.py +352 -0
- loopx/cli_commands/agents_last_exam_task_material.py +335 -0
- loopx/cli_commands/agents_last_exam_validation_gate.py +236 -0
- loopx/cli_commands/benchmark_boundary.py +499 -0
- loopx/cli_commands/benchmark_dispatch.py +161 -0
- loopx/cli_commands/benchmark_release_outcome.py +123 -0
- loopx/cli_commands/benchmark_review_lifecycle.py +1275 -0
- loopx/cli_commands/benchmark_run_ledger.py +763 -0
- loopx/cli_commands/benchmark_run_ledger_case_analysis.py +249 -0
- loopx/cli_commands/benchmark_run_ledger_classification.py +45 -0
- loopx/cli_commands/benchmark_run_ledger_maintenance.py +486 -0
- loopx/cli_commands/benchmark_run_ledger_maintenance_registration.py +342 -0
- loopx/cli_commands/benchmark_run_ledger_maintenance_rendering.py +233 -0
- loopx/cli_commands/benchmark_run_ledger_parity.py +92 -0
- loopx/cli_commands/bootstrap_connect.py +238 -0
- loopx/cli_commands/canary.py +707 -0
- loopx/cli_commands/canary_release_qualification.py +79 -0
- loopx/cli_commands/capability.py +96 -0
- loopx/cli_commands/doctor.py +43 -0
- loopx/cli_commands/dreaming.py +143 -0
- loopx/cli_commands/edgebench.py +205 -0
- loopx/cli_commands/evidence_log.py +275 -0
- loopx/cli_commands/explore.py +989 -0
- loopx/cli_commands/explore_planning_commands.py +157 -0
- loopx/cli_commands/extension.py +271 -0
- loopx/cli_commands/first_run_report.py +73 -0
- loopx/cli_commands/goal_channel.py +656 -0
- loopx/cli_commands/handoff_mode.py +158 -0
- loopx/cli_commands/history.py +622 -0
- loopx/cli_commands/host_mode_plan.py +113 -0
- loopx/cli_commands/lark_inbox.py +431 -0
- loopx/cli_commands/lark_kanban.py +629 -0
- loopx/cli_commands/ml_experiment.py +321 -0
- loopx/cli_commands/multi_agent.py +211 -0
- loopx/cli_commands/opencode2_goal_worker.py +217 -0
- loopx/cli_commands/pr_review.py +167 -0
- loopx/cli_commands/presentation.py +218 -0
- loopx/cli_commands/preset.py +96 -0
- loopx/cli_commands/project.py +150 -0
- loopx/cli_commands/project_lifecycle.py +915 -0
- loopx/cli_commands/quota.py +859 -0
- loopx/cli_commands/quota_registration.py +241 -0
- loopx/cli_commands/quota_request.py +113 -0
- loopx/cli_commands/ready_score.py +110 -0
- loopx/cli_commands/registry_admin.py +975 -0
- loopx/cli_commands/registry_admin_configure.py +344 -0
- loopx/cli_commands/registry_admin_peer.py +84 -0
- loopx/cli_commands/registry_authority.py +218 -0
- loopx/cli_commands/review_batch.py +146 -0
- loopx/cli_commands/slash_commands.py +145 -0
- loopx/cli_commands/start_goal.py +251 -0
- loopx/cli_commands/starter.py +175 -0
- loopx/cli_commands/starter_bootstrap.py +179 -0
- loopx/cli_commands/starter_bootstrap_registration.py +198 -0
- loopx/cli_commands/starter_runtime_idle.py +107 -0
- loopx/cli_commands/starter_scheduler.py +207 -0
- loopx/cli_commands/starter_session_runtime.py +152 -0
- loopx/cli_commands/starter_visible_common.py +54 -0
- loopx/cli_commands/starter_visible_driver.py +161 -0
- loopx/cli_commands/starter_visible_pilot.py +278 -0
- loopx/cli_commands/status.py +867 -0
- loopx/cli_commands/status_registration.py +239 -0
- loopx/cli_commands/summary_all.py +222 -0
- loopx/cli_commands/support_control.py +809 -0
- loopx/cli_commands/support_control_registry.py +68 -0
- loopx/cli_commands/support_control_supervisor.py +289 -0
- loopx/cli_commands/task_lease.py +306 -0
- loopx/cli_commands/terminal_bench_adapter.py +717 -0
- loopx/cli_commands/terminal_bench_environment_result.py +1246 -0
- loopx/cli_commands/todo.py +940 -0
- loopx/cli_commands/todo_argument_validation.py +572 -0
- loopx/cli_commands/todo_event.py +114 -0
- loopx/cli_commands/turn.py +804 -0
- loopx/cli_commands/version.py +46 -0
- loopx/cli_commands/worker_bridge.py +659 -0
- loopx/cli_rollout.py +314 -0
- loopx/codex_cli_goal_tui.py +672 -0
- loopx/codex_cli_probe.py +1530 -0
- loopx/codex_cli_probe_markdown.py +935 -0
- loopx/codex_cli_runtime_probe.py +733 -0
- loopx/codex_cli_scheduler.py +564 -0
- loopx/codex_goal_baseline.py +620 -0
- loopx/configuration_catalog.py +617 -0
- loopx/configure_goal.py +1375 -0
- loopx/contract.py +996 -0
- loopx/control_plane/__init__.py +71 -0
- loopx/control_plane/agents/__init__.py +1 -0
- loopx/control_plane/agents/agent_lane_recommendation.py +516 -0
- loopx/control_plane/agents/agent_scope.py +1578 -0
- loopx/control_plane/agents/agent_scope_frontier.py +60 -0
- loopx/control_plane/agents/capability_gate.py +531 -0
- loopx/control_plane/agents/identity.py +140 -0
- loopx/control_plane/agents/legacy_migration.py +169 -0
- loopx/control_plane/agents/management_projection.py +658 -0
- loopx/control_plane/agents/material_frontier.py +608 -0
- loopx/control_plane/agents/material_handoff.py +156 -0
- loopx/control_plane/agents/multi_agent/__init__.py +1 -0
- loopx/control_plane/agents/multi_agent/codex_executable.py +207 -0
- loopx/control_plane/agents/multi_agent/collective_round_ledger.py +387 -0
- loopx/control_plane/agents/multi_agent/contract.py +474 -0
- loopx/control_plane/agents/multi_agent/recipe.py +110 -0
- loopx/control_plane/agents/multi_agent/role_successor.py +297 -0
- loopx/control_plane/agents/multi_agent/runtime_scripts.py +426 -0
- loopx/control_plane/agents/multi_agent/visible_launch_policy.py +149 -0
- loopx/control_plane/agents/multi_agent/visible_wake_scheduler.py +392 -0
- loopx/control_plane/agents/profile.py +216 -0
- loopx/control_plane/agents/runtime_model.py +73 -0
- loopx/control_plane/agents/subagent_activity.py +164 -0
- loopx/control_plane/agents/supervisor.py +544 -0
- loopx/control_plane/agents/supervisor_events.py +462 -0
- loopx/control_plane/agents/supervisor_inject.py +204 -0
- loopx/control_plane/agents/work_mode.py +56 -0
- loopx/control_plane/agents/workspace_guard.py +364 -0
- loopx/control_plane/effect_program.py +644 -0
- loopx/control_plane/goals/__init__.py +1 -0
- loopx/control_plane/goals/active_state_event_projection.py +103 -0
- loopx/control_plane/goals/active_state_metadata.py +47 -0
- loopx/control_plane/goals/active_state_sections.py +58 -0
- loopx/control_plane/goals/configure_goal_service.py +354 -0
- loopx/control_plane/goals/contract_health.py +132 -0
- loopx/control_plane/goals/dreaming.py +152 -0
- loopx/control_plane/goals/global_registry_health.py +199 -0
- loopx/control_plane/goals/global_registry_shadow.py +33 -0
- loopx/control_plane/goals/goal_channel.py +34 -0
- loopx/control_plane/goals/goal_channel_projection.py +560 -0
- loopx/control_plane/goals/goal_frontier/__init__.py +1917 -0
- loopx/control_plane/goals/goal_frontier/ack_policy.py +149 -0
- loopx/control_plane/goals/goal_frontier/outcome_continuity.py +437 -0
- loopx/control_plane/goals/goal_frontier/replan_rules.py +210 -0
- loopx/control_plane/goals/goal_frontier/semantic_history.py +314 -0
- loopx/control_plane/goals/goal_frontier/terminal.py +180 -0
- loopx/control_plane/goals/goal_vision.py +443 -0
- loopx/control_plane/goals/goal_vision_policy.py +36 -0
- loopx/control_plane/goals/goal_vision_state.py +62 -0
- loopx/control_plane/goals/goal_vision_wait.py +290 -0
- loopx/control_plane/goals/path_resolution.py +20 -0
- loopx/control_plane/goals/start_contract.py +206 -0
- loopx/control_plane/goals/vision_checkpoint.py +92 -0
- loopx/control_plane/handoff/__init__.py +1 -0
- loopx/control_plane/handoff/cross_runtime_impl_review.py +311 -0
- loopx/control_plane/handoff/delivery_contract.py +161 -0
- loopx/control_plane/handoff/handoff_runs.py +71 -0
- loopx/control_plane/handoff/project_handoff.py +155 -0
- loopx/control_plane/handoff/review_batch.py +463 -0
- loopx/control_plane/handoff/review_packet_context.py +216 -0
- loopx/control_plane/heartbeat/agent.py +173 -0
- loopx/control_plane/heartbeat/budget.py +66 -0
- loopx/control_plane/heartbeat/builder.py +501 -0
- loopx/control_plane/heartbeat/host.py +64 -0
- loopx/control_plane/heartbeat/rules.py +68 -0
- loopx/control_plane/heartbeat/task_body.py +759 -0
- loopx/control_plane/heartbeat/visible_goal.py +86 -0
- loopx/control_plane/projects/__init__.py +1 -0
- loopx/control_plane/projects/contract.py +25 -0
- loopx/control_plane/projects/registry.py +663 -0
- loopx/control_plane/quota/__init__.py +1 -0
- loopx/control_plane/quota/cli_projection.py +704 -0
- loopx/control_plane/quota/decision_summary.py +431 -0
- loopx/control_plane/quota/effect_program.py +152 -0
- loopx/control_plane/quota/error_codes.py +19 -0
- loopx/control_plane/quota/goal_boundary.py +464 -0
- loopx/control_plane/quota/heartbeat_receipt.py +277 -0
- loopx/control_plane/quota/heartbeat_recommendation.py +718 -0
- loopx/control_plane/quota/host_poll_receipts.py +162 -0
- loopx/control_plane/quota/live_decision.py +142 -0
- loopx/control_plane/quota/monitor_poll.py +786 -0
- loopx/control_plane/quota/policy_constants.py +40 -0
- loopx/control_plane/quota/projection_repair.py +262 -0
- loopx/control_plane/quota/recent_runs.py +210 -0
- loopx/control_plane/quota/scheduler_ack.py +490 -0
- loopx/control_plane/quota/selected_todo_projection.py +139 -0
- loopx/control_plane/quota/settlement.py +437 -0
- loopx/control_plane/quota/settlement_cli.py +246 -0
- loopx/control_plane/quota/settlement_validation.py +64 -0
- loopx/control_plane/quota/settlement_workspace_causality.py +180 -0
- loopx/control_plane/quota/should_run.py +249 -0
- loopx/control_plane/quota/should_run_packet.py +1165 -0
- loopx/control_plane/quota/should_run_prepare.py +675 -0
- loopx/control_plane/quota/slot_accounting.py +1123 -0
- loopx/control_plane/quota/spend_sources.py +11 -0
- loopx/control_plane/quota/stall_repair.py +397 -0
- loopx/control_plane/quota/states.py +29 -0
- loopx/control_plane/quota/task_orchestration.py +448 -0
- loopx/control_plane/quota/task_orchestration_admission.py +497 -0
- loopx/control_plane/quota/turn_envelope.py +889 -0
- loopx/control_plane/quota/usage_summary.py +140 -0
- loopx/control_plane/reward_memory.py +43 -0
- loopx/control_plane/runtime/__init__.py +2 -0
- loopx/control_plane/runtime/active_user_assisted_pilot.py +275 -0
- loopx/control_plane/runtime/agent_scoped_evidence_log.py +435 -0
- loopx/control_plane/runtime/decision_freshness.py +203 -0
- loopx/control_plane/runtime/event_ledger.py +197 -0
- loopx/control_plane/runtime/event_store_migration_bridge.py +196 -0
- loopx/control_plane/runtime/goal_project_route.py +70 -0
- loopx/control_plane/runtime/local_state_write_correctness.py +242 -0
- loopx/control_plane/runtime/promotion_readiness.py +152 -0
- loopx/control_plane/runtime/public_safety.py +120 -0
- loopx/control_plane/runtime/run_artifacts.py +78 -0
- loopx/control_plane/runtime/run_compaction.py +397 -0
- loopx/control_plane/runtime/run_context_retention.py +241 -0
- loopx/control_plane/runtime/run_history.py +132 -0
- loopx/control_plane/runtime/run_index_duplicates.py +205 -0
- loopx/control_plane/runtime/run_index_rebuild.py +263 -0
- loopx/control_plane/runtime/run_ingest_health.py +336 -0
- loopx/control_plane/runtime/runtime_projection_route.py +624 -0
- loopx/control_plane/runtime/runtime_projection_writer.py +98 -0
- loopx/control_plane/runtime/session_runtime.py +339 -0
- loopx/control_plane/runtime/shared_runtime_material_projection.py +332 -0
- loopx/control_plane/runtime/shared_runtime_refresh_projection.py +183 -0
- loopx/control_plane/runtime/stale_latest_run.py +90 -0
- loopx/control_plane/runtime/status_classifications.py +49 -0
- loopx/control_plane/runtime/status_projection_cache.py +235 -0
- loopx/control_plane/runtime/stride_observation.py +144 -0
- loopx/control_plane/runtime/time.py +39 -0
- loopx/control_plane/runtime/trajectory_hygiene.py +149 -0
- loopx/control_plane/runtime/validation_command.py +69 -0
- loopx/control_plane/scheduler/__init__.py +1 -0
- loopx/control_plane/scheduler/ack.py +329 -0
- loopx/control_plane/scheduler/arbitration.py +188 -0
- loopx/control_plane/scheduler/automation_liveness.py +183 -0
- loopx/control_plane/scheduler/execution_context.py +555 -0
- loopx/control_plane/scheduler/external_evidence_observation.py +428 -0
- loopx/control_plane/scheduler/monitor_display.py +143 -0
- loopx/control_plane/scheduler/monitor_poll_policy.py +161 -0
- loopx/control_plane/scheduler/monitor_poll_writeback.py +351 -0
- loopx/control_plane/scheduler/monitor_target.py +64 -0
- loopx/control_plane/scheduler/monitor_todo.py +146 -0
- loopx/control_plane/scheduler/monitor_wait.py +237 -0
- loopx/control_plane/scheduler/scheduler_hint.py +1284 -0
- loopx/control_plane/scheduler/state.py +354 -0
- loopx/control_plane/scheduler/state_transition_rules.py +179 -0
- loopx/control_plane/scheduler/time.py +10 -0
- loopx/control_plane/settlement_driver.py +293 -0
- loopx/control_plane/status/__init__.py +6 -0
- loopx/control_plane/status/active_state_projection.py +105 -0
- loopx/control_plane/status/agent_lane_projection.py +375 -0
- loopx/control_plane/status/attention_projection.py +74 -0
- loopx/control_plane/status/autonomous_replan_projection.py +103 -0
- loopx/control_plane/status/collection.py +140 -0
- loopx/control_plane/status/contract_projection.py +31 -0
- loopx/control_plane/status/dreaming_projection.py +52 -0
- loopx/control_plane/status/goal_attention_projection.py +157 -0
- loopx/control_plane/status/lifecycle_projection.py +110 -0
- loopx/control_plane/status/monitor_display_projection.py +69 -0
- loopx/control_plane/status/registry_health_projection.py +75 -0
- loopx/control_plane/status/run_projection.py +70 -0
- loopx/control_plane/status/runtime_summaries.py +161 -0
- loopx/control_plane/testing/__init__.py +1 -0
- loopx/control_plane/testing/actual_default_model_behavior_portfolio.py +1371 -0
- loopx/control_plane/testing/canary_harness.py +182 -0
- loopx/control_plane/testing/capability_monitor_repair_tool_behavior.py +674 -0
- loopx/control_plane/testing/cli_output_budget.py +807 -0
- loopx/control_plane/testing/cli_output_differential.py +250 -0
- loopx/control_plane/testing/cli_output_semantics.py +87 -0
- loopx/control_plane/testing/control_plane_composition_scenarios.py +225 -0
- loopx/control_plane/testing/decision_replay.py +268 -0
- loopx/control_plane/testing/doubao_model_behavior_actor.py +559 -0
- loopx/control_plane/testing/model_behavior_corpus.py +344 -0
- loopx/control_plane/testing/model_behavior_qualification.py +769 -0
- loopx/control_plane/testing/model_behavior_retained_cases.py +235 -0
- loopx/control_plane/testing/model_tool_behavior.py +536 -0
- loopx/control_plane/testing/onboarding_model_behavior_qualification.py +642 -0
- loopx/control_plane/testing/quota_fixtures.py +208 -0
- loopx/control_plane/testing/quota_should_run_parity.py +57 -0
- loopx/control_plane/testing/release_commit_qualification.py +671 -0
- loopx/control_plane/testing/replan_semantic_action_behavior.py +1302 -0
- loopx/control_plane/testing/scoped_gate_successor_tool_behavior.py +527 -0
- loopx/control_plane/testing/selected_todo_tool_behavior.py +1002 -0
- loopx/control_plane/testing/terminal_settlement_tool_behavior.py +656 -0
- loopx/control_plane/todos/__init__.py +1 -0
- loopx/control_plane/todos/active_state_editing.py +296 -0
- loopx/control_plane/todos/active_state_todo_parser.py +138 -0
- loopx/control_plane/todos/active_state_todos.py +175 -0
- loopx/control_plane/todos/addition.py +103 -0
- loopx/control_plane/todos/claim_visibility.py +253 -0
- loopx/control_plane/todos/completed_archive.py +139 -0
- loopx/control_plane/todos/completion_fence.py +49 -0
- loopx/control_plane/todos/completion_policy.py +153 -0
- loopx/control_plane/todos/completion_validation.py +248 -0
- loopx/control_plane/todos/completion_validation_accountability.py +27 -0
- loopx/control_plane/todos/completion_validation_projection.py +57 -0
- loopx/control_plane/todos/contract.py +1476 -0
- loopx/control_plane/todos/decision_scope.py +554 -0
- loopx/control_plane/todos/deferred_resume.py +546 -0
- loopx/control_plane/todos/durable_completion.py +201 -0
- loopx/control_plane/todos/event_writeback.py +484 -0
- loopx/control_plane/todos/frontier_deadline.py +132 -0
- loopx/control_plane/todos/handoff_gate.py +283 -0
- loopx/control_plane/todos/handoff_mode.py +444 -0
- loopx/control_plane/todos/handoff_note.py +202 -0
- loopx/control_plane/todos/line_update.py +361 -0
- loopx/control_plane/todos/list_projection.py +205 -0
- loopx/control_plane/todos/markdown.py +199 -0
- loopx/control_plane/todos/monitor_metadata.py +88 -0
- loopx/control_plane/todos/mutation_authority.py +299 -0
- loopx/control_plane/todos/projection.py +655 -0
- loopx/control_plane/todos/quota_summary.py +1138 -0
- loopx/control_plane/todos/route_continuation.py +267 -0
- loopx/control_plane/todos/succession_warning.py +174 -0
- loopx/control_plane/todos/summary_item.py +223 -0
- loopx/control_plane/todos/text.py +30 -0
- loopx/control_plane/todos/todo_index.py +226 -0
- loopx/control_plane/todos/todo_summary.py +1458 -0
- loopx/control_plane/todos/unblock_resume.py +326 -0
- loopx/control_plane/todos/user_gate.py +263 -0
- loopx/control_plane/todos/write_hint.py +63 -0
- loopx/control_plane/todos/write_policy.py +135 -0
- loopx/control_plane/turn_driver/__init__.py +85 -0
- loopx/control_plane/turn_driver/codex_cli.py +502 -0
- loopx/control_plane/turn_driver/driver.py +355 -0
- loopx/control_plane/turn_driver/executor.py +1468 -0
- loopx/control_plane/turn_driver/loop_controller.py +669 -0
- loopx/control_plane/turn_driver/settlement.py +318 -0
- loopx/control_plane/turn_driver/transaction.py +375 -0
- loopx/control_plane/work_items/__init__.py +1 -0
- loopx/control_plane/work_items/attention_fields.py +56 -0
- loopx/control_plane/work_items/attention_item.py +77 -0
- loopx/control_plane/work_items/attention_queue.py +322 -0
- loopx/control_plane/work_items/attention_routing.py +213 -0
- loopx/control_plane/work_items/autonomous_candidates.py +135 -0
- loopx/control_plane/work_items/autonomous_replan_ack.py +276 -0
- loopx/control_plane/work_items/autonomous_replan_obligation.py +786 -0
- loopx/control_plane/work_items/backlog_hygiene.py +59 -0
- loopx/control_plane/work_items/capability_monitor_fallback.py +221 -0
- loopx/control_plane/work_items/delivery_batch_scale.py +66 -0
- loopx/control_plane/work_items/delivery_outcome.py +152 -0
- loopx/control_plane/work_items/delivery_signals.py +113 -0
- loopx/control_plane/work_items/execution_obligation.py +235 -0
- loopx/control_plane/work_items/goal_route_hint.py +320 -0
- loopx/control_plane/work_items/interaction_contract.py +1540 -0
- loopx/control_plane/work_items/issue_meta_surface.py +159 -0
- loopx/control_plane/work_items/lifecycle.py +139 -0
- loopx/control_plane/work_items/operator_inbox.py +266 -0
- loopx/control_plane/work_items/outcome_followthrough.py +69 -0
- loopx/control_plane/work_items/primary_action.py +326 -0
- loopx/control_plane/work_items/progress_observation.py +630 -0
- loopx/control_plane/work_items/project_asset.py +675 -0
- loopx/control_plane/work_items/repair_delta.py +693 -0
- loopx/control_plane/work_items/runtime_capability_reentry.py +168 -0
- loopx/control_plane/work_items/semantic_replan_writeback.py +177 -0
- loopx/control_plane/work_items/status_contract.py +49 -0
- loopx/control_plane/work_items/task_graph.py +1046 -0
- loopx/control_plane/work_items/task_lease.py +1254 -0
- loopx/control_plane/work_items/task_lease_settlement.py +422 -0
- loopx/control_plane/work_items/work_lane.py +510 -0
- loopx/control_plane/work_items/work_lane_context.py +161 -0
- loopx/demo.py +247 -0
- loopx/diagnose.py +633 -0
- loopx/doctor.py +1251 -0
- loopx/domain_packs/__init__.py +1 -0
- loopx/domain_packs/issue_fix.py +571 -0
- loopx/domain_packs/ml_experiment.py +854 -0
- loopx/domain_state.py +137 -0
- loopx/dreaming.py +706 -0
- loopx/entrypoint.py +16 -0
- loopx/event_sourced_state.py +981 -0
- loopx/execution_profile.py +286 -0
- loopx/experiments/__init__.py +1 -0
- loopx/experiments/planner_worker/__init__.py +1 -0
- loopx/experiments/planner_worker/contract.py +523 -0
- loopx/experiments/planner_worker/runtime.py +391 -0
- loopx/experiments/planner_worker/traex.py +461 -0
- loopx/explore_graph.py +11 -0
- loopx/extensions/__init__.py +1 -0
- loopx/extensions/bundled.py +28 -0
- loopx/extensions/execution_envelope.py +126 -0
- loopx/extensions/lark/__init__.py +11 -0
- loopx/extensions/lark/event_collector.py +478 -0
- loopx/extensions/lark/event_collector_runtime.py +506 -0
- loopx/extensions/lark/event_inbox.py +454 -0
- loopx/extensions/lark/extension.toml +88 -0
- loopx/extensions/lark/goal_channel.py +44 -0
- loopx/extensions/lark/goal_channel_contracts.py +388 -0
- loopx/extensions/lark/goal_channel_lifecycle.py +218 -0
- loopx/extensions/lark/goal_channel_runtime.py +792 -0
- loopx/extensions/lark/goal_channel_setup.py +805 -0
- loopx/extensions/lark/goal_channel_targets.py +215 -0
- loopx/extensions/lark/goal_channel_transport.py +281 -0
- loopx/extensions/lark/inbox_reactions.py +650 -0
- loopx/extensions/lark/inbox_reply.py +430 -0
- loopx/extensions/lark/presentation/__init__.py +11 -0
- loopx/extensions/lark/presentation/explore_results.py +2276 -0
- loopx/extensions/lark/presentation/explore_singleflight.py +127 -0
- loopx/extensions/lark/presentation/explore_source_guard.py +121 -0
- loopx/extensions/lark/presentation/explore_stage_document.py +703 -0
- loopx/extensions/lark/presentation/explore_visual_integrity.py +122 -0
- loopx/extensions/lark/presentation/explore_visual_readback.py +452 -0
- loopx/extensions/lark/presentation/explore_visual_styles.py +156 -0
- loopx/extensions/lark/presentation/issue_fix_surface.py +612 -0
- loopx/extensions/lark/presentation/kanban.py +2791 -0
- loopx/extensions/lark/presentation/message_card.py +112 -0
- loopx/extensions/lark/presentation/periodic_report.py +261 -0
- loopx/extensions/lark/presentation/projection_rows.py +600 -0
- loopx/extensions/lark/presentation/record_io.py +95 -0
- loopx/extensions/lark/presentation/sync_receipt.py +145 -0
- loopx/extensions/lark/private_json.py +40 -0
- loopx/extensions/lark/provider.py +86 -0
- loopx/extensions/lark/reviewer_notification.py +604 -0
- loopx/extensions/manifest.py +385 -0
- loopx/extensions/openviking_periodic_report/__init__.py +17 -0
- loopx/extensions/openviking_periodic_report/activation.py +173 -0
- loopx/extensions/openviking_periodic_report/extension.toml +17 -0
- loopx/extensions/openviking_periodic_report/provider.py +355 -0
- loopx/extensions/openviking_periodic_report/sink.py +117 -0
- loopx/extensions/openviking_semantic_preference/__init__.py +5 -0
- loopx/extensions/openviking_semantic_preference/extension.toml +16 -0
- loopx/extensions/openviking_semantic_preference/history_export.py +484 -0
- loopx/extensions/openviking_semantic_preference/project_peer.py +68 -0
- loopx/extensions/openviking_semantic_preference/provider.py +312 -0
- loopx/extensions/presentation.py +979 -0
- loopx/extensions/process_runtime.py +204 -0
- loopx/extensions/readiness.py +168 -0
- loopx/extensions/runtime.py +931 -0
- loopx/extensions/scaffold.py +335 -0
- loopx/feedback.py +581 -0
- loopx/file_lock.py +382 -0
- loopx/global_registry.py +842 -0
- loopx/global_risks.py +970 -0
- loopx/global_todos.py +568 -0
- loopx/handoff_budget.py +28 -0
- loopx/heartbeat_prequota.py +80 -0
- loopx/heartbeat_prompt.py +159 -0
- loopx/help_surface.py +516 -0
- loopx/history.py +1507 -0
- loopx/host_loop_activation.py +1311 -0
- loopx/host_mode_planner.py +991 -0
- loopx/install_contract.py +1 -0
- loopx/interface_budget.py +196 -0
- loopx/long_task_cadence.py +208 -0
- loopx/materials.py +185 -0
- loopx/ml_experiment.py +3 -0
- loopx/onboarding.py +214 -0
- loopx/opencode2_goal_mode/README.md +81 -0
- loopx/opencode2_goal_mode/__init__.py +9 -0
- loopx/opencode2_goal_mode/opencode2-goal-worker.mjs +1018 -0
- loopx/opencode_goal_mode/README.md +99 -0
- loopx/opencode_goal_mode/__init__.py +13 -0
- loopx/opencode_goal_mode/goal-bridge-runtime.mjs +858 -0
- loopx/opencode_goal_mode/loopx-goal.js +8 -0
- loopx/operator_gate.py +420 -0
- loopx/orchestration.py +127 -0
- loopx/paths.py +59 -0
- loopx/pi_goal_mode/README.md +67 -0
- loopx/pi_goal_mode/__init__.py +13 -0
- loopx/pi_goal_mode/loopx-goal.ts +254 -0
- loopx/pi_goal_mode/pi-goal-loop-runtime.mjs +574 -0
- loopx/pr_review.py +1206 -0
- loopx/presentation/__init__.py +1 -0
- loopx/presentation/explore_views.py +1334 -0
- loopx/presentation/markdown.py +61 -0
- loopx/presentation/projection_source_reconcile.py +140 -0
- loopx/presentation/public_safety.py +42 -0
- loopx/presentation/renderers/__init__.py +17 -0
- loopx/presentation/renderers/goal_channel_html.py +269 -0
- loopx/presentation/renderers/periodic_report_html.py +786 -0
- loopx/presentation/renderers/periodic_report_markdown.py +184 -0
- loopx/presentation/renderers/quota_event_markdown.py +116 -0
- loopx/presentation/renderers/quota_markdown.py +1112 -0
- loopx/presentation/renderers/status_markdown.py +1570 -0
- loopx/presentation/renderers/trajectory_hygiene_markdown.py +39 -0
- loopx/presentation/renderers/turn_envelope_markdown.py +33 -0
- loopx/presentation/sinks/__init__.py +5 -0
- loopx/presentation/sinks/openviking_periodic_report.py +7 -0
- loopx/presentation/static_site.py +691 -0
- loopx/presets.py +369 -0
- loopx/project_alias.py +217 -0
- loopx/project_map.py +589 -0
- loopx/project_prompt.py +1153 -0
- loopx/project_skill_cli.py +125 -0
- loopx/project_skill_delivery.py +470 -0
- loopx/project_uninstall.py +462 -0
- loopx/promotion_gate.py +197 -0
- loopx/quota.py +1197 -0
- loopx/ready_score.py +413 -0
- loopx/registry.py +621 -0
- loopx/registry_writability.py +64 -0
- loopx/release_candidate.py +148 -0
- loopx/release_manifest.py +316 -0
- loopx/repository_identity.py +100 -0
- loopx/review_packet.py +1024 -0
- loopx/rollout_event_log.py +505 -0
- loopx/runtime.py +112 -0
- loopx/self_update.py +750 -0
- loopx/session_runtime.py +418 -0
- loopx/skill_install_readback.py +500 -0
- loopx/slash_command_install.py +1393 -0
- loopx/slash_commands.py +264 -0
- loopx/state_backup.py +573 -0
- loopx/state_migration.py +350 -0
- loopx/state_projection.py +809 -0
- loopx/state_refresh.py +1416 -0
- loopx/status.py +1383 -0
- loopx/status_server.py +935 -0
- loopx/summary_all.py +725 -0
- loopx/terminal_bench_agent.py +2056 -0
- loopx/thread_agent_binding.py +408 -0
- loopx/todo_followups.py +168 -0
- loopx/todo_suggestion_prompt.py +204 -0
- loopx/todos.py +2229 -0
- loopx/turn_identity.py +17 -0
- loopx/upgrade.py +1083 -0
- loopx/visible_governance.py +667 -0
- loopx/visible_multi_agent_launcher.py +1253 -0
- loopx/visible_multi_agent_tmux.py +429 -0
- loopx/worker_bridge.py +1574 -0
- loopx-0.4.8.dist-info/METADATA +708 -0
- loopx-0.4.8.dist-info/RECORD +811 -0
- loopx-0.4.8.dist-info/WHEEL +5 -0
- loopx-0.4.8.dist-info/entry_points.txt +5 -0
- loopx-0.4.8.dist-info/licenses/LICENSE +202 -0
- loopx-0.4.8.dist-info/licenses/LICENSE-MIT +21 -0
- loopx-0.4.8.dist-info/licenses/NOTICE +6 -0
- loopx-0.4.8.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,867 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
from collections.abc import Callable
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
from typing import Any
|
|
7
|
+
|
|
8
|
+
from ..contract import check_contract, render_contract_markdown
|
|
9
|
+
from ..control_plane.runtime.status_projection_cache import (
|
|
10
|
+
load_status_projection_cache,
|
|
11
|
+
resolve_status_projection_cache_runtime_root,
|
|
12
|
+
write_status_projection_cache,
|
|
13
|
+
)
|
|
14
|
+
from ..control_plane.status.agent_lane_projection import (
|
|
15
|
+
compact_agent_lane_status_payload_for_display,
|
|
16
|
+
)
|
|
17
|
+
from ..control_plane.todos.contract import normalize_todo_claimed_by
|
|
18
|
+
from ..control_plane.todos.quota_summary import (
|
|
19
|
+
compact_agent_lane_todos_for_status_display,
|
|
20
|
+
)
|
|
21
|
+
from ..control_plane.todos.todo_index import (
|
|
22
|
+
compact_agent_lane_todo_index_for_status_display,
|
|
23
|
+
)
|
|
24
|
+
from ..diagnose import collect_diagnosis, render_diagnosis_markdown
|
|
25
|
+
from ..handoff_budget import build_handoff_interface_budget
|
|
26
|
+
from ..presentation.renderers.status_markdown import render_status_markdown
|
|
27
|
+
from ..quota import build_quota_should_run
|
|
28
|
+
from ..review_packet import build_review_packet, render_review_packet_markdown
|
|
29
|
+
from ..status import AUTONOMOUS_REPLAN_PERIODIC_LOOKBACK, collect_status
|
|
30
|
+
from .status_registration import default_public_scan_root, register_status_commands
|
|
31
|
+
|
|
32
|
+
PrintPayload = Callable[
|
|
33
|
+
[dict[str, object], str, Callable[[dict[str, object]], str]],
|
|
34
|
+
None,
|
|
35
|
+
]
|
|
36
|
+
FormatSelector = Callable[..., str]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _scan_roots(args: argparse.Namespace) -> list[Path]:
|
|
40
|
+
scan_roots = [Path(item).expanduser() for item in args.scan_path]
|
|
41
|
+
return scan_roots or [Path(args.scan_root).expanduser()]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def _status_collection_limit_for_agent_lane(*, requested_limit: int, agent_id: str | None) -> int:
|
|
45
|
+
safe_limit = max(0, int(requested_limit or 0))
|
|
46
|
+
if str(agent_id or "").strip():
|
|
47
|
+
return max(safe_limit, AUTONOMOUS_REPLAN_PERIODIC_LOOKBACK)
|
|
48
|
+
return safe_limit
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def _trim_run_history_for_status_display(
|
|
52
|
+
payload: dict[str, object],
|
|
53
|
+
*,
|
|
54
|
+
display_limit: int,
|
|
55
|
+
collection_limit: int,
|
|
56
|
+
) -> None:
|
|
57
|
+
if collection_limit <= display_limit:
|
|
58
|
+
return
|
|
59
|
+
run_history = payload.get("run_history")
|
|
60
|
+
if not isinstance(run_history, dict):
|
|
61
|
+
return
|
|
62
|
+
safe_display_limit = max(0, display_limit)
|
|
63
|
+
recent_runs = run_history.get("recent_runs")
|
|
64
|
+
trimmed = False
|
|
65
|
+
if isinstance(recent_runs, list) and len(recent_runs) > safe_display_limit:
|
|
66
|
+
run_history["recent_runs"] = recent_runs[:safe_display_limit]
|
|
67
|
+
trimmed = True
|
|
68
|
+
goals = run_history.get("goals")
|
|
69
|
+
if isinstance(goals, list):
|
|
70
|
+
for goal in goals:
|
|
71
|
+
if not isinstance(goal, dict):
|
|
72
|
+
continue
|
|
73
|
+
latest_runs = goal.get("latest_runs")
|
|
74
|
+
if isinstance(latest_runs, list) and len(latest_runs) > safe_display_limit:
|
|
75
|
+
goal["latest_runs"] = latest_runs[:safe_display_limit]
|
|
76
|
+
trimmed = True
|
|
77
|
+
if trimmed:
|
|
78
|
+
payload["agent_lane_projection_lookback"] = {
|
|
79
|
+
"schema_version": "agent_lane_projection_lookback_v0",
|
|
80
|
+
"collection_limit": collection_limit,
|
|
81
|
+
"display_limit": safe_display_limit,
|
|
82
|
+
"reason": (
|
|
83
|
+
"status --agent-id collected quota-equivalent run history for "
|
|
84
|
+
"agent-lane frontier projection, then restored the requested "
|
|
85
|
+
"status display limit"
|
|
86
|
+
),
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
def review_packet_handoff_only_payload(payload: dict[str, object]) -> dict[str, object]:
|
|
91
|
+
result: dict[str, object] = {
|
|
92
|
+
"ok": bool(payload.get("ok")),
|
|
93
|
+
"goal_id": payload.get("goal_id"),
|
|
94
|
+
"handoff_only": True,
|
|
95
|
+
}
|
|
96
|
+
if not payload.get("ok"):
|
|
97
|
+
result["error"] = payload.get("error")
|
|
98
|
+
return result
|
|
99
|
+
handoff_text = str(payload.get("project_agent_handoff") or "")
|
|
100
|
+
raw_contract = payload.get("handoff_delivery_contract")
|
|
101
|
+
agent_contract = raw_contract
|
|
102
|
+
if isinstance(raw_contract, dict):
|
|
103
|
+
agent_contract = {
|
|
104
|
+
"mode": raw_contract.get("mode"),
|
|
105
|
+
"instruction": raw_contract.get("instruction"),
|
|
106
|
+
"minimum_scale": raw_contract.get("minimum_scale"),
|
|
107
|
+
"must_include": raw_contract.get("must_include"),
|
|
108
|
+
"if_blocked": raw_contract.get("if_blocked"),
|
|
109
|
+
}
|
|
110
|
+
handoff_budget = payload.get("handoff_interface_budget")
|
|
111
|
+
if not isinstance(handoff_budget, dict):
|
|
112
|
+
handoff_budget = build_handoff_interface_budget(handoff_text)
|
|
113
|
+
result.update(
|
|
114
|
+
{
|
|
115
|
+
"kind": payload.get("kind"),
|
|
116
|
+
"status": payload.get("status"),
|
|
117
|
+
"waiting_on": payload.get("waiting_on"),
|
|
118
|
+
"project_agent_command": payload.get("project_agent_command"),
|
|
119
|
+
"project_agent_handoff": handoff_text,
|
|
120
|
+
"handoff_text": handoff_text,
|
|
121
|
+
"benchmark_report_chain_handoff": payload.get("benchmark_report_chain_handoff"),
|
|
122
|
+
"project_agent_required_reads": payload.get("project_agent_required_reads") or [],
|
|
123
|
+
"operator_gate_approved_handoff": payload.get("operator_gate_approved_handoff"),
|
|
124
|
+
"connected_delivery_handoff": payload.get("connected_delivery_handoff"),
|
|
125
|
+
"handoff_delivery_contract": agent_contract,
|
|
126
|
+
"handoff_interface_budget": handoff_budget,
|
|
127
|
+
"line_count": handoff_budget.get("line_count"),
|
|
128
|
+
"char_count": handoff_budget.get("char_count"),
|
|
129
|
+
"within_budget": handoff_budget.get("within_budget"),
|
|
130
|
+
}
|
|
131
|
+
)
|
|
132
|
+
return result
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
def handle_check_command(
|
|
136
|
+
args: argparse.Namespace,
|
|
137
|
+
*,
|
|
138
|
+
registry_path: Path,
|
|
139
|
+
runtime_root_arg: str | None,
|
|
140
|
+
allow_missing_registry: bool,
|
|
141
|
+
print_payload: PrintPayload,
|
|
142
|
+
) -> int:
|
|
143
|
+
try:
|
|
144
|
+
payload = check_contract(
|
|
145
|
+
registry_path=registry_path,
|
|
146
|
+
runtime_root_override=runtime_root_arg,
|
|
147
|
+
scan_roots=_scan_roots(args),
|
|
148
|
+
limit=max(0, args.limit),
|
|
149
|
+
allow_missing_registry=allow_missing_registry,
|
|
150
|
+
)
|
|
151
|
+
except Exception as exc:
|
|
152
|
+
payload = {
|
|
153
|
+
"ok": False,
|
|
154
|
+
"registry": str(registry_path),
|
|
155
|
+
"runtime_root": runtime_root_arg,
|
|
156
|
+
"scan_roots": args.scan_path or [args.scan_root],
|
|
157
|
+
"summary": {"errors": 1, "warnings": 0, "checks": 0},
|
|
158
|
+
"errors": [str(exc)],
|
|
159
|
+
"warnings": [],
|
|
160
|
+
"checks": [],
|
|
161
|
+
}
|
|
162
|
+
print_payload(payload, args.format, render_contract_markdown)
|
|
163
|
+
return 0 if payload.get("ok") else 1
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
def handle_status_command(
|
|
167
|
+
args: argparse.Namespace,
|
|
168
|
+
*,
|
|
169
|
+
registry_path: Path,
|
|
170
|
+
runtime_root_arg: str | None,
|
|
171
|
+
output_format: FormatSelector,
|
|
172
|
+
print_payload: PrintPayload,
|
|
173
|
+
) -> int:
|
|
174
|
+
try:
|
|
175
|
+
scan_roots = _scan_roots(args)
|
|
176
|
+
display_limit = max(0, args.limit)
|
|
177
|
+
collection_limit = _status_collection_limit_for_agent_lane(
|
|
178
|
+
requested_limit=display_limit,
|
|
179
|
+
agent_id=args.agent_id,
|
|
180
|
+
)
|
|
181
|
+
runtime_root = resolve_status_projection_cache_runtime_root(
|
|
182
|
+
registry_path=registry_path,
|
|
183
|
+
runtime_root_override=runtime_root_arg,
|
|
184
|
+
)
|
|
185
|
+
payload = None
|
|
186
|
+
cache_metadata = None
|
|
187
|
+
if args.use_projection_cache:
|
|
188
|
+
payload, cache_metadata = load_status_projection_cache(
|
|
189
|
+
registry_path=registry_path,
|
|
190
|
+
runtime_root=runtime_root,
|
|
191
|
+
scan_roots=scan_roots,
|
|
192
|
+
limit=collection_limit,
|
|
193
|
+
include_task_graph=args.include_task_graph,
|
|
194
|
+
goal_id=args.goal_id,
|
|
195
|
+
max_age_seconds=args.projection_cache_ttl_seconds,
|
|
196
|
+
available_capabilities=args.available_capabilities,
|
|
197
|
+
)
|
|
198
|
+
if payload is None:
|
|
199
|
+
payload = collect_status(
|
|
200
|
+
registry_path=registry_path,
|
|
201
|
+
runtime_root_override=runtime_root_arg,
|
|
202
|
+
scan_roots=scan_roots,
|
|
203
|
+
limit=collection_limit,
|
|
204
|
+
include_task_graph=args.include_task_graph,
|
|
205
|
+
goal_id=args.goal_id,
|
|
206
|
+
available_capabilities=args.available_capabilities,
|
|
207
|
+
)
|
|
208
|
+
if args.write_projection_cache:
|
|
209
|
+
cache_metadata = write_status_projection_cache(
|
|
210
|
+
registry_path=registry_path,
|
|
211
|
+
runtime_root=runtime_root,
|
|
212
|
+
scan_roots=scan_roots,
|
|
213
|
+
limit=collection_limit,
|
|
214
|
+
include_task_graph=args.include_task_graph,
|
|
215
|
+
goal_id=args.goal_id,
|
|
216
|
+
payload=payload,
|
|
217
|
+
max_age_seconds=args.projection_cache_ttl_seconds,
|
|
218
|
+
available_capabilities=args.available_capabilities,
|
|
219
|
+
)
|
|
220
|
+
payload["projection_cache"] = cache_metadata
|
|
221
|
+
elif cache_metadata:
|
|
222
|
+
payload["projection_cache"] = cache_metadata
|
|
223
|
+
if args.agent_id:
|
|
224
|
+
attach_agent_lane_next_actions(payload, agent_id=args.agent_id)
|
|
225
|
+
_trim_run_history_for_status_display(
|
|
226
|
+
payload,
|
|
227
|
+
display_limit=display_limit,
|
|
228
|
+
collection_limit=collection_limit,
|
|
229
|
+
)
|
|
230
|
+
compact_agent_lane_todos_for_status_display(payload)
|
|
231
|
+
compact_agent_lane_status_payload_for_display(
|
|
232
|
+
payload,
|
|
233
|
+
agent_id=args.agent_id,
|
|
234
|
+
)
|
|
235
|
+
compact_agent_lane_todo_index_for_status_display(payload)
|
|
236
|
+
except Exception as exc:
|
|
237
|
+
payload = {
|
|
238
|
+
"ok": False,
|
|
239
|
+
"registry": str(registry_path),
|
|
240
|
+
"runtime_root": runtime_root_arg,
|
|
241
|
+
"error": str(exc),
|
|
242
|
+
"attention_queue": {
|
|
243
|
+
"available": False,
|
|
244
|
+
"item_count": 1,
|
|
245
|
+
"needs_user_or_controller": 0,
|
|
246
|
+
"needs_codex": 1,
|
|
247
|
+
"watching_external_evidence": 0,
|
|
248
|
+
"items": [
|
|
249
|
+
{
|
|
250
|
+
"goal_id": "loopx-status",
|
|
251
|
+
"status": "status_collection_failed",
|
|
252
|
+
"waiting_on": "codex",
|
|
253
|
+
"severity": "high",
|
|
254
|
+
"recommended_action": str(exc),
|
|
255
|
+
"source": "status",
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
},
|
|
259
|
+
}
|
|
260
|
+
print_payload(payload, output_format(args), render_status_markdown)
|
|
261
|
+
return 0 if payload.get("ok") else 1
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
def _compact_member_text(value: Any, *, limit: int = 180) -> str | None:
|
|
265
|
+
if isinstance(value, list):
|
|
266
|
+
compact = "; ".join(str(item).strip() for item in value if str(item).strip())
|
|
267
|
+
elif isinstance(value, str):
|
|
268
|
+
compact = value
|
|
269
|
+
else:
|
|
270
|
+
return None
|
|
271
|
+
compact = " ".join(compact.split())
|
|
272
|
+
if not compact or any(char in compact for char in "<>"):
|
|
273
|
+
return None
|
|
274
|
+
if len(compact) > limit:
|
|
275
|
+
compact = compact[: limit - 1].rstrip() + "…"
|
|
276
|
+
return compact
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
def _agent_profile_for(coordination: dict[str, Any], agent_id: str) -> dict[str, Any]:
|
|
280
|
+
profiles = coordination.get("agent_profiles")
|
|
281
|
+
if not isinstance(profiles, dict):
|
|
282
|
+
return {}
|
|
283
|
+
profile = profiles.get(agent_id)
|
|
284
|
+
return profile if isinstance(profile, dict) else {}
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
def _profile_scope_summary(profile: dict[str, Any]) -> str | None:
|
|
288
|
+
for key in (
|
|
289
|
+
"scope_summary",
|
|
290
|
+
"default_scope",
|
|
291
|
+
"scope",
|
|
292
|
+
"scope_summaries",
|
|
293
|
+
"default_scopes",
|
|
294
|
+
"scopes",
|
|
295
|
+
):
|
|
296
|
+
summary = _compact_member_text(profile.get(key))
|
|
297
|
+
if summary:
|
|
298
|
+
return summary
|
|
299
|
+
return None
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
def _current_claims_for_agent(item: dict[str, Any], *, agent_id: str) -> list[str]:
|
|
303
|
+
claims: list[str] = []
|
|
304
|
+
todo_sources: list[Any] = [item.get("agent_todos")]
|
|
305
|
+
project_asset = item.get("project_asset")
|
|
306
|
+
if isinstance(project_asset, dict):
|
|
307
|
+
todo_sources.append(project_asset.get("agent_todos"))
|
|
308
|
+
for todos in todo_sources:
|
|
309
|
+
if not isinstance(todos, dict):
|
|
310
|
+
continue
|
|
311
|
+
raw_items = todos.get("items") if isinstance(todos.get("items"), list) else []
|
|
312
|
+
if not raw_items and isinstance(todos.get("first_open_items"), list):
|
|
313
|
+
raw_items = todos.get("first_open_items") or []
|
|
314
|
+
for raw_item in raw_items:
|
|
315
|
+
if not isinstance(raw_item, dict) or raw_item.get("done"):
|
|
316
|
+
continue
|
|
317
|
+
if normalize_todo_claimed_by(raw_item.get("claimed_by")) != agent_id:
|
|
318
|
+
continue
|
|
319
|
+
todo_id = str(raw_item.get("todo_id") or "").strip()
|
|
320
|
+
if todo_id and todo_id not in claims:
|
|
321
|
+
claims.append(todo_id)
|
|
322
|
+
return claims
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
def _selected_claim_for_agent(guard: dict[str, Any], *, agent_id: str) -> str | None:
|
|
326
|
+
next_action = guard.get("agent_lane_next_action")
|
|
327
|
+
if not isinstance(next_action, dict):
|
|
328
|
+
return None
|
|
329
|
+
todo_id = str(next_action.get("todo_id") or "").strip()
|
|
330
|
+
if not todo_id:
|
|
331
|
+
return None
|
|
332
|
+
lane_agent = normalize_todo_claimed_by(next_action.get("agent_id"))
|
|
333
|
+
if lane_agent and lane_agent != agent_id:
|
|
334
|
+
return None
|
|
335
|
+
if next_action.get("claim_required_before_work") is True:
|
|
336
|
+
return None
|
|
337
|
+
claimed_by = normalize_todo_claimed_by(next_action.get("claimed_by"))
|
|
338
|
+
selected_by = str(next_action.get("selected_by") or "").strip()
|
|
339
|
+
if claimed_by == agent_id or selected_by == "current_agent_claimed_todo":
|
|
340
|
+
return todo_id
|
|
341
|
+
return None
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
def _current_claims_with_selected_lane(
|
|
345
|
+
item: dict[str, Any],
|
|
346
|
+
*,
|
|
347
|
+
guard: dict[str, Any],
|
|
348
|
+
agent_id: str,
|
|
349
|
+
) -> list[str]:
|
|
350
|
+
claims = _current_claims_for_agent(item, agent_id=agent_id)
|
|
351
|
+
selected_claim = _selected_claim_for_agent(guard, agent_id=agent_id)
|
|
352
|
+
if not selected_claim:
|
|
353
|
+
return claims
|
|
354
|
+
claims = [claim for claim in claims if claim != selected_claim]
|
|
355
|
+
return [selected_claim, *claims]
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
def _build_agent_member_projection(
|
|
359
|
+
item: dict[str, Any],
|
|
360
|
+
*,
|
|
361
|
+
guard: dict[str, Any],
|
|
362
|
+
agent_id: str,
|
|
363
|
+
) -> dict[str, Any] | None:
|
|
364
|
+
identity = guard.get("agent_identity")
|
|
365
|
+
if not isinstance(identity, dict):
|
|
366
|
+
return None
|
|
367
|
+
coordination = item.get("coordination") if isinstance(item.get("coordination"), dict) else {}
|
|
368
|
+
profile = _agent_profile_for(coordination, agent_id)
|
|
369
|
+
role = _compact_member_text(profile.get("profile_role"), limit=80)
|
|
370
|
+
claims = _current_claims_with_selected_lane(item, guard=guard, agent_id=agent_id)
|
|
371
|
+
member: dict[str, Any] = {
|
|
372
|
+
"schema_version": "agent_member_v1",
|
|
373
|
+
"agent_id": agent_id,
|
|
374
|
+
"agent_model": "peer_v1",
|
|
375
|
+
"profile_source": "registry.coordination.agent_profiles" if profile else "quota.agent_identity",
|
|
376
|
+
"authority_source": "registry+quota_should_run+todo_projection",
|
|
377
|
+
"current_claims": claims[:10],
|
|
378
|
+
"current_claim_count": len(claims),
|
|
379
|
+
"lease_projection": {
|
|
380
|
+
"schema_version": "agent_lease_projection_v0",
|
|
381
|
+
"source": "todo.claimed_by",
|
|
382
|
+
"soft_claim_default": True,
|
|
383
|
+
"hard_lease_available": True,
|
|
384
|
+
"hard_lease_mode": "explicit_cli_opt_in",
|
|
385
|
+
"hard_lease_enforced_by_quota": False,
|
|
386
|
+
},
|
|
387
|
+
}
|
|
388
|
+
if role:
|
|
389
|
+
member["profile_role"] = role
|
|
390
|
+
member["profile_role_is_advisory"] = True
|
|
391
|
+
scope_summary = _profile_scope_summary(profile)
|
|
392
|
+
if scope_summary:
|
|
393
|
+
member["scope_summary"] = scope_summary
|
|
394
|
+
vision_requirement = _compact_member_text(
|
|
395
|
+
profile.get("vision_requirement"),
|
|
396
|
+
limit=16,
|
|
397
|
+
)
|
|
398
|
+
if vision_requirement:
|
|
399
|
+
member["vision_requirement"] = vision_requirement
|
|
400
|
+
member["handoff_assignment_status"] = "task_policy_selected"
|
|
401
|
+
return member
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
def _agent_lane_text(next_action: dict[str, Any]) -> str | None:
|
|
405
|
+
text = str(next_action.get("text") or next_action.get("title") or "").strip()
|
|
406
|
+
return text or None
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
def _guard_allows_agent_lane_next_action(guard: dict[str, object]) -> bool:
|
|
410
|
+
interaction = guard.get("interaction_contract")
|
|
411
|
+
if not isinstance(interaction, dict):
|
|
412
|
+
return False
|
|
413
|
+
user_channel = interaction.get("user_channel")
|
|
414
|
+
agent_channel = interaction.get("agent_channel")
|
|
415
|
+
user_action_required = (
|
|
416
|
+
bool(user_channel.get("action_required"))
|
|
417
|
+
if isinstance(user_channel, dict)
|
|
418
|
+
else False
|
|
419
|
+
)
|
|
420
|
+
agent_must_attempt = (
|
|
421
|
+
bool(agent_channel.get("must_attempt"))
|
|
422
|
+
if isinstance(agent_channel, dict)
|
|
423
|
+
else False
|
|
424
|
+
)
|
|
425
|
+
return agent_must_attempt and not user_action_required
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
def _build_agent_interaction_summary(
|
|
429
|
+
guard: dict[str, object],
|
|
430
|
+
*,
|
|
431
|
+
agent_id: str,
|
|
432
|
+
) -> dict[str, object] | None:
|
|
433
|
+
interaction = guard.get("interaction_contract")
|
|
434
|
+
if not isinstance(interaction, dict):
|
|
435
|
+
return None
|
|
436
|
+
user_channel = interaction.get("user_channel")
|
|
437
|
+
agent_channel = interaction.get("agent_channel")
|
|
438
|
+
cli_channel = interaction.get("cli_channel")
|
|
439
|
+
if not isinstance(user_channel, dict) or not isinstance(agent_channel, dict):
|
|
440
|
+
return None
|
|
441
|
+
user_todo_summary = (
|
|
442
|
+
guard.get("user_todo_summary")
|
|
443
|
+
if isinstance(guard.get("user_todo_summary"), dict)
|
|
444
|
+
else {}
|
|
445
|
+
)
|
|
446
|
+
user_open_count = user_todo_summary.get("open_count")
|
|
447
|
+
if user_open_count is None:
|
|
448
|
+
user_open_count = guard.get("open_count")
|
|
449
|
+
summary: dict[str, object] = {
|
|
450
|
+
"schema_version": "agent_interaction_summary_v0",
|
|
451
|
+
"agent_id": agent_id,
|
|
452
|
+
"mode": interaction.get("mode"),
|
|
453
|
+
"user_action_required": bool(user_channel.get("action_required")),
|
|
454
|
+
"user_open_count": user_open_count,
|
|
455
|
+
"user_notify": user_channel.get("notify"),
|
|
456
|
+
"agent_must_attempt": bool(agent_channel.get("must_attempt")),
|
|
457
|
+
"delivery_allowed": agent_channel.get("delivery_allowed"),
|
|
458
|
+
"quiet_noop_allowed": agent_channel.get("quiet_noop_allowed"),
|
|
459
|
+
"primary_action": agent_channel.get("primary_action"),
|
|
460
|
+
}
|
|
461
|
+
if isinstance(cli_channel, dict):
|
|
462
|
+
summary["spend_after_validation"] = cli_channel.get("spend_after_validation")
|
|
463
|
+
summary["spend_policy"] = cli_channel.get("spend_policy")
|
|
464
|
+
return summary
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
def _sync_status_item_next_action_from_agent_lane(
|
|
468
|
+
item: dict[str, object],
|
|
469
|
+
*,
|
|
470
|
+
next_action: dict[str, Any],
|
|
471
|
+
guard: dict[str, object],
|
|
472
|
+
) -> None:
|
|
473
|
+
if item.get("status") not in {"connected_without_run", "active_state_agent_todo"}:
|
|
474
|
+
return
|
|
475
|
+
if not _guard_allows_agent_lane_next_action(guard):
|
|
476
|
+
return
|
|
477
|
+
text = _agent_lane_text(next_action)
|
|
478
|
+
if not text:
|
|
479
|
+
return
|
|
480
|
+
item["recommended_action"] = text
|
|
481
|
+
project_asset = item.get("project_asset")
|
|
482
|
+
if isinstance(project_asset, dict):
|
|
483
|
+
project_asset["next_action"] = text
|
|
484
|
+
goal_channel = item.get("goal_channel_projection")
|
|
485
|
+
if isinstance(goal_channel, dict):
|
|
486
|
+
goal_channel["next_action"] = text
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
def _sync_next_action_projection_warning_from_guard(
|
|
490
|
+
item: dict[str, object],
|
|
491
|
+
*,
|
|
492
|
+
guard: dict[str, object],
|
|
493
|
+
) -> None:
|
|
494
|
+
warning = guard.get("next_action_projection_warning")
|
|
495
|
+
project_asset = item.get("project_asset")
|
|
496
|
+
targets = (item, project_asset)
|
|
497
|
+
for target in targets:
|
|
498
|
+
if not isinstance(target, dict):
|
|
499
|
+
continue
|
|
500
|
+
if isinstance(warning, dict):
|
|
501
|
+
target["next_action_projection_warning"] = warning
|
|
502
|
+
else:
|
|
503
|
+
target.pop("next_action_projection_warning", None)
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
def _mirror_agent_status_projections(
|
|
507
|
+
item: dict[str, object],
|
|
508
|
+
project_asset: object,
|
|
509
|
+
*,
|
|
510
|
+
projections: dict[str, object],
|
|
511
|
+
) -> set[str]:
|
|
512
|
+
attached: set[str] = set()
|
|
513
|
+
for field, projection in projections.items():
|
|
514
|
+
if not isinstance(projection, dict):
|
|
515
|
+
continue
|
|
516
|
+
item[field] = projection
|
|
517
|
+
if isinstance(project_asset, dict):
|
|
518
|
+
project_asset[field] = projection
|
|
519
|
+
attached.add(field)
|
|
520
|
+
return attached
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
def _sync_agent_replan_obligation_from_guard(
|
|
524
|
+
item: dict[str, object],
|
|
525
|
+
project_asset: object,
|
|
526
|
+
*,
|
|
527
|
+
guard: dict[str, object],
|
|
528
|
+
agent_id: str,
|
|
529
|
+
) -> None:
|
|
530
|
+
"""Keep agent-scoped status guidance identical to the quota decision."""
|
|
531
|
+
|
|
532
|
+
targets = (item, project_asset)
|
|
533
|
+
if not any(
|
|
534
|
+
isinstance(target, dict)
|
|
535
|
+
and (
|
|
536
|
+
"autonomous_replan_obligation" in target
|
|
537
|
+
or (
|
|
538
|
+
isinstance(
|
|
539
|
+
target.get("autonomous_replan_obligations_by_agent"), dict
|
|
540
|
+
)
|
|
541
|
+
and agent_id
|
|
542
|
+
in target["autonomous_replan_obligations_by_agent"]
|
|
543
|
+
)
|
|
544
|
+
)
|
|
545
|
+
for target in targets
|
|
546
|
+
):
|
|
547
|
+
return
|
|
548
|
+
obligation = guard.get("autonomous_replan_obligation")
|
|
549
|
+
for target in targets:
|
|
550
|
+
if not isinstance(target, dict):
|
|
551
|
+
continue
|
|
552
|
+
obligations_by_agent = target.get("autonomous_replan_obligations_by_agent")
|
|
553
|
+
if isinstance(obligations_by_agent, dict):
|
|
554
|
+
obligations_by_agent = dict(obligations_by_agent)
|
|
555
|
+
if isinstance(obligation, dict):
|
|
556
|
+
obligations_by_agent[agent_id] = obligation
|
|
557
|
+
else:
|
|
558
|
+
obligations_by_agent.pop(agent_id, None)
|
|
559
|
+
if obligations_by_agent:
|
|
560
|
+
target["autonomous_replan_obligations_by_agent"] = obligations_by_agent
|
|
561
|
+
else:
|
|
562
|
+
target.pop("autonomous_replan_obligations_by_agent", None)
|
|
563
|
+
if isinstance(obligation, dict):
|
|
564
|
+
target["autonomous_replan_obligation"] = obligation
|
|
565
|
+
else:
|
|
566
|
+
target.pop("autonomous_replan_obligation", None)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
def _agent_reward_memory_projection(
|
|
570
|
+
guard: dict[str, object],
|
|
571
|
+
*,
|
|
572
|
+
agent_id: str,
|
|
573
|
+
) -> dict[str, object] | None:
|
|
574
|
+
boundary = guard.get("goal_boundary")
|
|
575
|
+
if not isinstance(boundary, dict):
|
|
576
|
+
return None
|
|
577
|
+
capabilities = boundary.get("capabilities")
|
|
578
|
+
if not isinstance(capabilities, dict):
|
|
579
|
+
return None
|
|
580
|
+
reward_memory = capabilities.get("reward_memory")
|
|
581
|
+
if not isinstance(reward_memory, dict):
|
|
582
|
+
return None
|
|
583
|
+
compact: dict[str, object] = {
|
|
584
|
+
"schema_version": "agent_reward_memory_projection_v1",
|
|
585
|
+
"agent_id": agent_id,
|
|
586
|
+
}
|
|
587
|
+
for key in (
|
|
588
|
+
"enabled",
|
|
589
|
+
"experimental",
|
|
590
|
+
"configured_for_agent",
|
|
591
|
+
"experiment_status",
|
|
592
|
+
"experiment_available",
|
|
593
|
+
"config_schema_version",
|
|
594
|
+
"automatic_ingest",
|
|
595
|
+
"automatic_recall",
|
|
596
|
+
"fail_open",
|
|
597
|
+
"automation_projection_source",
|
|
598
|
+
):
|
|
599
|
+
if key in reward_memory:
|
|
600
|
+
compact[key] = reward_memory[key]
|
|
601
|
+
route = reward_memory.get("config_runtime_route")
|
|
602
|
+
if isinstance(route, dict):
|
|
603
|
+
compact["config_runtime_route"] = dict(route)
|
|
604
|
+
return compact
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
def attach_agent_lane_next_actions(
|
|
608
|
+
payload: dict[str, object], *, agent_id: str
|
|
609
|
+
) -> dict[str, object]:
|
|
610
|
+
safe_agent_id = str(agent_id or "").strip()
|
|
611
|
+
if not safe_agent_id:
|
|
612
|
+
return payload
|
|
613
|
+
queue = payload.get("attention_queue")
|
|
614
|
+
if not isinstance(queue, dict):
|
|
615
|
+
return payload
|
|
616
|
+
items = queue.get("items")
|
|
617
|
+
if not isinstance(items, list):
|
|
618
|
+
return payload
|
|
619
|
+
projection_counts = dict.fromkeys(
|
|
620
|
+
(
|
|
621
|
+
"agent_lane_next_action",
|
|
622
|
+
"agent_scope_frontier",
|
|
623
|
+
"agent_lane_frontier_hint",
|
|
624
|
+
"goal_frontier_projection",
|
|
625
|
+
"agent_member",
|
|
626
|
+
"agent_interaction_summary",
|
|
627
|
+
"agent_reward_memory",
|
|
628
|
+
),
|
|
629
|
+
0,
|
|
630
|
+
)
|
|
631
|
+
current_agent_next_action: dict[str, Any] | None = None
|
|
632
|
+
for item in items:
|
|
633
|
+
if not isinstance(item, dict):
|
|
634
|
+
continue
|
|
635
|
+
goal_id = str(item.get("goal_id") or "").strip()
|
|
636
|
+
if not goal_id:
|
|
637
|
+
continue
|
|
638
|
+
try:
|
|
639
|
+
guard = build_quota_should_run(
|
|
640
|
+
payload,
|
|
641
|
+
goal_id=goal_id,
|
|
642
|
+
agent_id=safe_agent_id,
|
|
643
|
+
)
|
|
644
|
+
except Exception:
|
|
645
|
+
continue
|
|
646
|
+
next_action = guard.get("agent_lane_next_action")
|
|
647
|
+
project_asset = item.get("project_asset")
|
|
648
|
+
agent_member = _build_agent_member_projection(
|
|
649
|
+
item,
|
|
650
|
+
guard=guard,
|
|
651
|
+
agent_id=safe_agent_id,
|
|
652
|
+
)
|
|
653
|
+
interaction_summary = _build_agent_interaction_summary(
|
|
654
|
+
guard,
|
|
655
|
+
agent_id=safe_agent_id,
|
|
656
|
+
)
|
|
657
|
+
_sync_agent_replan_obligation_from_guard(
|
|
658
|
+
item,
|
|
659
|
+
project_asset,
|
|
660
|
+
guard=guard,
|
|
661
|
+
agent_id=safe_agent_id,
|
|
662
|
+
)
|
|
663
|
+
reward_memory_projection = _agent_reward_memory_projection(
|
|
664
|
+
guard,
|
|
665
|
+
agent_id=safe_agent_id,
|
|
666
|
+
)
|
|
667
|
+
attached_fields = _mirror_agent_status_projections(
|
|
668
|
+
item,
|
|
669
|
+
project_asset,
|
|
670
|
+
projections={
|
|
671
|
+
"agent_lane_next_action": next_action,
|
|
672
|
+
"agent_scope_frontier": guard.get("agent_scope_frontier"),
|
|
673
|
+
"agent_lane_frontier_hint": guard.get("agent_lane_frontier_hint"),
|
|
674
|
+
"goal_frontier_projection": guard.get("goal_frontier_projection"),
|
|
675
|
+
"agent_member": agent_member,
|
|
676
|
+
"agent_interaction_summary": interaction_summary,
|
|
677
|
+
"agent_reward_memory": reward_memory_projection,
|
|
678
|
+
},
|
|
679
|
+
)
|
|
680
|
+
for field in attached_fields:
|
|
681
|
+
projection_counts[field] += 1
|
|
682
|
+
if isinstance(next_action, dict):
|
|
683
|
+
if current_agent_next_action is None:
|
|
684
|
+
current_agent_next_action = next_action
|
|
685
|
+
_sync_next_action_projection_warning_from_guard(item, guard=guard)
|
|
686
|
+
_sync_status_item_next_action_from_agent_lane(
|
|
687
|
+
item,
|
|
688
|
+
next_action=next_action,
|
|
689
|
+
guard=guard,
|
|
690
|
+
)
|
|
691
|
+
latest_action = guard.get("latest_run_recommended_action")
|
|
692
|
+
for target in (item, project_asset):
|
|
693
|
+
if not isinstance(target, dict):
|
|
694
|
+
continue
|
|
695
|
+
existing_recommendation = target.get("agent_lane_recommendation")
|
|
696
|
+
had_latest_action = bool(
|
|
697
|
+
target.get("latest_run_recommended_action")
|
|
698
|
+
or target.get("latest_run_recommended_action_source")
|
|
699
|
+
)
|
|
700
|
+
for field in (
|
|
701
|
+
"agent_lane_recommendation",
|
|
702
|
+
"latest_run_recommended_action",
|
|
703
|
+
"latest_run_recommended_action_source",
|
|
704
|
+
):
|
|
705
|
+
target.pop(field, None)
|
|
706
|
+
if isinstance(existing_recommendation, dict):
|
|
707
|
+
existing_agent_id = normalize_todo_claimed_by(
|
|
708
|
+
existing_recommendation.get("agent_id")
|
|
709
|
+
)
|
|
710
|
+
if existing_agent_id == safe_agent_id:
|
|
711
|
+
target["agent_lane_recommendation"] = existing_recommendation
|
|
712
|
+
elif latest_action:
|
|
713
|
+
target["agent_lane_recommendation"] = {
|
|
714
|
+
"schema_version": existing_recommendation.get("schema_version")
|
|
715
|
+
or "agent_lane_recommendation_v0",
|
|
716
|
+
"progress_scope": "agent_lane",
|
|
717
|
+
"agent_id": safe_agent_id,
|
|
718
|
+
"recommended_action": latest_action,
|
|
719
|
+
}
|
|
720
|
+
if had_latest_action and latest_action:
|
|
721
|
+
target["latest_run_recommended_action"] = latest_action
|
|
722
|
+
target["latest_run_recommended_action_source"] = (
|
|
723
|
+
"agent_lane_recommendation"
|
|
724
|
+
)
|
|
725
|
+
if any(projection_counts.values()):
|
|
726
|
+
projection: dict[str, object] = {
|
|
727
|
+
"schema_version": "agent_lane_next_action_projection_v0",
|
|
728
|
+
"agent_id": safe_agent_id,
|
|
729
|
+
"attached_count": projection_counts["agent_lane_next_action"],
|
|
730
|
+
"frontier_attached_count": projection_counts["agent_scope_frontier"],
|
|
731
|
+
"frontier_hint_attached_count": projection_counts[
|
|
732
|
+
"agent_lane_frontier_hint"
|
|
733
|
+
],
|
|
734
|
+
"goal_frontier_attached_count": projection_counts[
|
|
735
|
+
"goal_frontier_projection"
|
|
736
|
+
],
|
|
737
|
+
"agent_member_attached_count": projection_counts["agent_member"],
|
|
738
|
+
"agent_interaction_attached_count": projection_counts[
|
|
739
|
+
"agent_interaction_summary"
|
|
740
|
+
],
|
|
741
|
+
"reward_memory_attached_count": projection_counts["agent_reward_memory"],
|
|
742
|
+
"preserves_goal_next_action": True,
|
|
743
|
+
}
|
|
744
|
+
if isinstance(current_agent_next_action, dict):
|
|
745
|
+
current_action_text = _compact_member_text(
|
|
746
|
+
_agent_lane_text(current_agent_next_action),
|
|
747
|
+
limit=240,
|
|
748
|
+
)
|
|
749
|
+
current_todo_id = str(
|
|
750
|
+
current_agent_next_action.get("todo_id") or ""
|
|
751
|
+
).strip()
|
|
752
|
+
if current_todo_id:
|
|
753
|
+
projection["current_agent_todo_id"] = current_todo_id
|
|
754
|
+
if current_action_text:
|
|
755
|
+
projection["current_agent_action"] = current_action_text
|
|
756
|
+
selected_by = str(
|
|
757
|
+
current_agent_next_action.get("selected_by") or ""
|
|
758
|
+
).strip()
|
|
759
|
+
if selected_by:
|
|
760
|
+
projection["selected_by"] = selected_by
|
|
761
|
+
confidence = str(current_agent_next_action.get("confidence") or "").strip()
|
|
762
|
+
if confidence:
|
|
763
|
+
projection["confidence"] = confidence
|
|
764
|
+
payload["agent_lane_next_action_projection"] = projection
|
|
765
|
+
if projection_counts["agent_member"]:
|
|
766
|
+
payload["agent_member_projection"] = {
|
|
767
|
+
"schema_version": "agent_member_projection_v0",
|
|
768
|
+
"agent_id": safe_agent_id,
|
|
769
|
+
"attached_count": projection_counts["agent_member"],
|
|
770
|
+
"source": "registry+quota_should_run+todo_projection",
|
|
771
|
+
"projection_is_authoritative": False,
|
|
772
|
+
}
|
|
773
|
+
if projection_counts["agent_reward_memory"]:
|
|
774
|
+
payload["agent_reward_memory_projection"] = {
|
|
775
|
+
"schema_version": "agent_reward_memory_projection_summary_v1",
|
|
776
|
+
"agent_id": safe_agent_id,
|
|
777
|
+
"attached_count": projection_counts["agent_reward_memory"],
|
|
778
|
+
"source": "quota.goal_boundary.capabilities.reward_memory",
|
|
779
|
+
}
|
|
780
|
+
return payload
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
def handle_diagnose_command(
|
|
784
|
+
args: argparse.Namespace,
|
|
785
|
+
*,
|
|
786
|
+
registry_path: Path,
|
|
787
|
+
runtime_root_arg: str | None,
|
|
788
|
+
output_format: FormatSelector,
|
|
789
|
+
print_payload: PrintPayload,
|
|
790
|
+
) -> int:
|
|
791
|
+
try:
|
|
792
|
+
payload = collect_diagnosis(
|
|
793
|
+
registry_path=registry_path,
|
|
794
|
+
runtime_root_override=runtime_root_arg,
|
|
795
|
+
scan_roots=_scan_roots(args),
|
|
796
|
+
limit=max(1, args.limit),
|
|
797
|
+
goal_id=args.goal_id,
|
|
798
|
+
agent_id=args.agent_id,
|
|
799
|
+
available_capabilities=args.available_capabilities,
|
|
800
|
+
)
|
|
801
|
+
except Exception as exc:
|
|
802
|
+
payload = {
|
|
803
|
+
"ok": False,
|
|
804
|
+
"schema_version": "loopx_agent_diagnosis_packet_v0",
|
|
805
|
+
"packet_kind": "agent_reasoning_evidence_packet",
|
|
806
|
+
"agent_must_reason": True,
|
|
807
|
+
"registry": str(registry_path),
|
|
808
|
+
"runtime_root": runtime_root_arg,
|
|
809
|
+
"error": str(exc),
|
|
810
|
+
"selected": {
|
|
811
|
+
"machine_signal": "diagnosis_collection_failed",
|
|
812
|
+
"machine_signals_are_not_final_verdict": True,
|
|
813
|
+
"recommended_action": (
|
|
814
|
+
"The agent should repair LoopX installation, registry path, or status collection "
|
|
815
|
+
"before making a delivery decision."
|
|
816
|
+
),
|
|
817
|
+
"agent_reasoning_checklist": [
|
|
818
|
+
"Run or repair `loopx doctor`.",
|
|
819
|
+
"Verify the project registry path or connect the project.",
|
|
820
|
+
"Do not claim autonomous readiness until status and quota can be read.",
|
|
821
|
+
],
|
|
822
|
+
},
|
|
823
|
+
}
|
|
824
|
+
print_payload(payload, output_format(args), render_diagnosis_markdown)
|
|
825
|
+
return 0 if payload.get("ok") else 1
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
def handle_review_packet_command(
|
|
829
|
+
args: argparse.Namespace,
|
|
830
|
+
*,
|
|
831
|
+
registry_path: Path,
|
|
832
|
+
runtime_root_arg: str | None,
|
|
833
|
+
output_format: FormatSelector,
|
|
834
|
+
print_payload: PrintPayload,
|
|
835
|
+
) -> int:
|
|
836
|
+
selected_format = output_format(args, "review_packet_format")
|
|
837
|
+
try:
|
|
838
|
+
status_payload = collect_status(
|
|
839
|
+
registry_path=registry_path,
|
|
840
|
+
runtime_root_override=runtime_root_arg,
|
|
841
|
+
scan_roots=_scan_roots(args),
|
|
842
|
+
limit=max(0, args.limit),
|
|
843
|
+
include_task_graph=not args.handoff_only,
|
|
844
|
+
goal_id=args.goal_id,
|
|
845
|
+
available_capabilities=args.available_capabilities,
|
|
846
|
+
)
|
|
847
|
+
if args.agent_id:
|
|
848
|
+
attach_agent_lane_next_actions(status_payload, agent_id=args.agent_id)
|
|
849
|
+
payload = build_review_packet(
|
|
850
|
+
status_payload,
|
|
851
|
+
goal_id=args.goal_id,
|
|
852
|
+
action_kind=args.action_kind,
|
|
853
|
+
review_url=args.review_url,
|
|
854
|
+
)
|
|
855
|
+
except Exception as exc:
|
|
856
|
+
payload = {
|
|
857
|
+
"ok": False,
|
|
858
|
+
"goal_id": args.goal_id,
|
|
859
|
+
"error": str(exc),
|
|
860
|
+
}
|
|
861
|
+
if args.handoff_only:
|
|
862
|
+
payload = review_packet_handoff_only_payload(payload)
|
|
863
|
+
if args.handoff_only and selected_format != "json" and payload.get("ok"):
|
|
864
|
+
print(str(payload.get("handoff_text") or ""))
|
|
865
|
+
else:
|
|
866
|
+
print_payload(payload, selected_format, render_review_packet_markdown)
|
|
867
|
+
return 0 if payload.get("ok") else 1
|