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,1302 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
import os
|
|
5
|
+
import shlex
|
|
6
|
+
import subprocess
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from dataclasses import dataclass
|
|
9
|
+
from hashlib import sha256
|
|
10
|
+
from pathlib import Path
|
|
11
|
+
from typing import Any
|
|
12
|
+
|
|
13
|
+
from ...heartbeat_prompt import build_heartbeat_prompt
|
|
14
|
+
from ..quota.turn_envelope import quota_action_signature_document
|
|
15
|
+
from ..work_items.progress_observation import (
|
|
16
|
+
ProgressResultClass,
|
|
17
|
+
semantic_delta_from_writeback,
|
|
18
|
+
)
|
|
19
|
+
from .doubao_model_behavior_actor import (
|
|
20
|
+
ARK_API_KEY_ENV,
|
|
21
|
+
DOUBAO_2_1_PRO_MODEL,
|
|
22
|
+
DOUBAO_MODEL_ENV,
|
|
23
|
+
DoubaoActorTransport,
|
|
24
|
+
_direct_ark_transport,
|
|
25
|
+
)
|
|
26
|
+
from .model_tool_behavior import (
|
|
27
|
+
DoubaoExecToolClient,
|
|
28
|
+
argument_value,
|
|
29
|
+
digest_text,
|
|
30
|
+
execute_loopx_cli,
|
|
31
|
+
loopx_command_tokens,
|
|
32
|
+
)
|
|
33
|
+
from .selected_todo_tool_behavior import bounded_workspace_read_plan
|
|
34
|
+
|
|
35
|
+
REPLAN_SEMANTIC_ACTION_BEHAVIOR_RECEIPT_SCHEMA_VERSION = (
|
|
36
|
+
"replan_semantic_action_behavior_receipt_v0"
|
|
37
|
+
)
|
|
38
|
+
REPLAN_SEMANTIC_ACTION_BEHAVIOR_MAX_CALLS = 7
|
|
39
|
+
|
|
40
|
+
_FIXTURE_GOAL_ID = "replan-semantic-action-fixture"
|
|
41
|
+
_FIXTURE_AGENT_ID = "codex-replan-semantic-action"
|
|
42
|
+
_FIXTURE_WORK_ITEM_ID = "todo-replan-semantic-action"
|
|
43
|
+
_FIXTURE_FRONTIER_FILE = "replan-frontier.json"
|
|
44
|
+
_FIXTURE_SOURCE_FILE = "fixture/permission-config.json"
|
|
45
|
+
_FIXTURE_NEW_SURFACE_ID = "surface-permission-config"
|
|
46
|
+
_FIXTURE_NEW_HYPOTHESIS_ID = "hypothesis-permission-default"
|
|
47
|
+
_FIXTURE_NEW_PROBE_KIND = "static-contract-read"
|
|
48
|
+
_FIXTURE_NEW_EVIDENCE_ID = "evidence-permission-config"
|
|
49
|
+
_FIXTURE_COMPOSITION_EXPERIMENT_ID = "experiment-permission-composition"
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
@dataclass(frozen=True)
|
|
53
|
+
class _ReplanSemanticActionFixture:
|
|
54
|
+
task_body: str
|
|
55
|
+
quota_guard_command: str
|
|
56
|
+
project_root: Path
|
|
57
|
+
runtime_root: Path
|
|
58
|
+
global_registry_path: Path
|
|
59
|
+
source_root: Path
|
|
60
|
+
frontier_target: Path
|
|
61
|
+
work_source_target: Path
|
|
62
|
+
composition_experiment_ref: str | None = None
|
|
63
|
+
frontier_exhausted: bool = False
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
@dataclass
|
|
67
|
+
class _QualificationState:
|
|
68
|
+
fixture: _ReplanSemanticActionFixture
|
|
69
|
+
messages: list[dict[str, Any]]
|
|
70
|
+
steps: list[dict[str, Any]]
|
|
71
|
+
turn_instance_id: str
|
|
72
|
+
quota_packet: dict[str, Any] | None = None
|
|
73
|
+
quota_observation: dict[str, Any] | None = None
|
|
74
|
+
semantic_delta: dict[str, Any] | None = None
|
|
75
|
+
seen_quota: bool = False
|
|
76
|
+
seen_clock: bool = False
|
|
77
|
+
seen_refresh_state_help: bool = False
|
|
78
|
+
read_only_host_commands_executed: bool = False
|
|
79
|
+
frontier_context_read: bool = False
|
|
80
|
+
work_source_read: bool = False
|
|
81
|
+
created_successor_id: str | None = None
|
|
82
|
+
successor_reentry_observation: dict[str, Any] | None = None
|
|
83
|
+
semantic_reentry_observation: dict[str, Any] | None = None
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def _digest(value: str) -> str:
|
|
87
|
+
return digest_text(value)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
def _build_fixture(
|
|
91
|
+
root: Path,
|
|
92
|
+
*,
|
|
93
|
+
composition_frontier: bool = False,
|
|
94
|
+
exhausted_frontier: bool = False,
|
|
95
|
+
) -> _ReplanSemanticActionFixture:
|
|
96
|
+
source_root = Path(__file__).resolve().parents[3]
|
|
97
|
+
project_root = root / "project"
|
|
98
|
+
runtime_root = root / "runtime"
|
|
99
|
+
fixture_home = root / "home"
|
|
100
|
+
state_relative = (
|
|
101
|
+
Path(".codex")
|
|
102
|
+
/ "goals"
|
|
103
|
+
/ _FIXTURE_GOAL_ID
|
|
104
|
+
/ "ACTIVE_GOAL_STATE.md"
|
|
105
|
+
)
|
|
106
|
+
state_path = project_root / state_relative
|
|
107
|
+
local_registry_path = project_root / ".loopx" / "registry.json"
|
|
108
|
+
global_registry_path = (
|
|
109
|
+
fixture_home / ".codex" / "loopx" / "registry.global.json"
|
|
110
|
+
)
|
|
111
|
+
state_path.parent.mkdir(parents=True, exist_ok=True)
|
|
112
|
+
frontier_target = project_root / _FIXTURE_FRONTIER_FILE
|
|
113
|
+
frontier_target.parent.mkdir(parents=True, exist_ok=True)
|
|
114
|
+
source_target = project_root / _FIXTURE_SOURCE_FILE
|
|
115
|
+
source_target.parent.mkdir(parents=True, exist_ok=True)
|
|
116
|
+
source_target.write_text(
|
|
117
|
+
json.dumps(
|
|
118
|
+
{
|
|
119
|
+
"schema_version": "permission_config_contract_v0",
|
|
120
|
+
"default_role": "reader",
|
|
121
|
+
"write_requires_explicit_grant": True,
|
|
122
|
+
"public_safe": True,
|
|
123
|
+
},
|
|
124
|
+
ensure_ascii=False,
|
|
125
|
+
indent=2,
|
|
126
|
+
sort_keys=True,
|
|
127
|
+
)
|
|
128
|
+
+ "\n",
|
|
129
|
+
encoding="utf-8",
|
|
130
|
+
)
|
|
131
|
+
frontier_target.write_text(
|
|
132
|
+
json.dumps(
|
|
133
|
+
{
|
|
134
|
+
"schema_version": "replan_frontier_fixture_v0",
|
|
135
|
+
"covered": [
|
|
136
|
+
{
|
|
137
|
+
"surface_id": "surface-existing",
|
|
138
|
+
"hypothesis_id": "hypothesis-existing",
|
|
139
|
+
"probe_kind": "probe-existing",
|
|
140
|
+
"evidence_id": "evidence-existing",
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"uncovered": (
|
|
144
|
+
[]
|
|
145
|
+
if exhausted_frontier
|
|
146
|
+
else [
|
|
147
|
+
{
|
|
148
|
+
"surface_id": _FIXTURE_NEW_SURFACE_ID,
|
|
149
|
+
"hypothesis_id": _FIXTURE_NEW_HYPOTHESIS_ID,
|
|
150
|
+
"probe_kind": _FIXTURE_NEW_PROBE_KIND,
|
|
151
|
+
"evidence_id": _FIXTURE_NEW_EVIDENCE_ID,
|
|
152
|
+
"source_ref": _FIXTURE_SOURCE_FILE,
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
),
|
|
156
|
+
},
|
|
157
|
+
ensure_ascii=False,
|
|
158
|
+
indent=2,
|
|
159
|
+
sort_keys=True,
|
|
160
|
+
)
|
|
161
|
+
+ "\n",
|
|
162
|
+
encoding="utf-8",
|
|
163
|
+
)
|
|
164
|
+
fixture_objective = (
|
|
165
|
+
"Inspect the projected frontier and close the bounded goal when its "
|
|
166
|
+
"coverage is exhausted."
|
|
167
|
+
if exhausted_frontier
|
|
168
|
+
else "Inspect the projected frontier and select one uncovered surface."
|
|
169
|
+
)
|
|
170
|
+
fixture_next_action = (
|
|
171
|
+
f"Read `{_FIXTURE_FRONTIER_FILE}`. If no uncovered entries remain, "
|
|
172
|
+
"persist a coverage-backed exploration_exhausted result through "
|
|
173
|
+
"refresh-state."
|
|
174
|
+
if exhausted_frontier
|
|
175
|
+
else (
|
|
176
|
+
f"Read `{_FIXTURE_FRONTIER_FILE}`, inspect the selected uncovered "
|
|
177
|
+
"entry's `source_ref`, then persist the typed result through "
|
|
178
|
+
"refresh-state."
|
|
179
|
+
)
|
|
180
|
+
)
|
|
181
|
+
fixture_agent_todo = (
|
|
182
|
+
"- [ ] [P1-monitor] Observe the bounded fixture until its frontier "
|
|
183
|
+
"changes.\n"
|
|
184
|
+
" <!-- loopx:todo "
|
|
185
|
+
f"todo_id={_FIXTURE_WORK_ITEM_ID} status=open "
|
|
186
|
+
"task_class=continuous_monitor action_kind=observe_fixture "
|
|
187
|
+
f"claimed_by={_FIXTURE_AGENT_ID} "
|
|
188
|
+
"target_key=replan-semantic-fixture "
|
|
189
|
+
"cadence=1d next_due_at=2999-01-01T00%3A00%3A00Z -->\n"
|
|
190
|
+
)
|
|
191
|
+
state_path.write_text(
|
|
192
|
+
"---\n"
|
|
193
|
+
"status: active\n"
|
|
194
|
+
"owner_mode: goal\n"
|
|
195
|
+
f'objective: "{fixture_objective}"\n'
|
|
196
|
+
"updated_at: 2026-08-13T00:00:00+08:00\n"
|
|
197
|
+
"---\n\n"
|
|
198
|
+
"# Replan Semantic Action Fixture\n\n"
|
|
199
|
+
"## Objective\n\n"
|
|
200
|
+
f"{fixture_objective}\n\n"
|
|
201
|
+
"## Next Action\n\n"
|
|
202
|
+
f"- {fixture_next_action}\n\n"
|
|
203
|
+
"## Agent Todo\n\n"
|
|
204
|
+
f"{fixture_agent_todo}",
|
|
205
|
+
encoding="utf-8",
|
|
206
|
+
)
|
|
207
|
+
registry_goal: dict[str, Any] = {
|
|
208
|
+
"id": _FIXTURE_GOAL_ID,
|
|
209
|
+
"domain": "replan-semantic-action-fixture",
|
|
210
|
+
"status": "active",
|
|
211
|
+
"repo": str(project_root),
|
|
212
|
+
"state_file": str(state_relative),
|
|
213
|
+
"adapter": {
|
|
214
|
+
"kind": "fixture_connected_delivery_v0",
|
|
215
|
+
"status": "connected-delivery",
|
|
216
|
+
},
|
|
217
|
+
"coordination": {
|
|
218
|
+
"registered_agents": [_FIXTURE_AGENT_ID],
|
|
219
|
+
"agent_model": "peer_v1",
|
|
220
|
+
"agent_profiles": {
|
|
221
|
+
_FIXTURE_AGENT_ID: {
|
|
222
|
+
"schema_version": "agent_profile_v1",
|
|
223
|
+
"agent_id": _FIXTURE_AGENT_ID,
|
|
224
|
+
"profile_role": "quality-qualification",
|
|
225
|
+
"scope_summary": "Qualify one bounded semantic replan.",
|
|
226
|
+
"default_task_classes": ["continuous_monitor"],
|
|
227
|
+
"vision_requirement": "optional",
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
},
|
|
231
|
+
"authority_sources": [],
|
|
232
|
+
"quota": {
|
|
233
|
+
"compute": 1.0,
|
|
234
|
+
"window_hours": 24,
|
|
235
|
+
"allowed_slots": 5,
|
|
236
|
+
},
|
|
237
|
+
}
|
|
238
|
+
if composition_frontier:
|
|
239
|
+
registry_goal["spawn_policy"] = {
|
|
240
|
+
"explore_harness": {"enabled": True, "profile": "generic"}
|
|
241
|
+
}
|
|
242
|
+
registry = {
|
|
243
|
+
"schema_version": "0.1",
|
|
244
|
+
"updated_at": "2026-08-13T00:00:00+08:00",
|
|
245
|
+
"common_runtime_root": str(runtime_root),
|
|
246
|
+
"goals": [registry_goal],
|
|
247
|
+
}
|
|
248
|
+
registry_text = json.dumps(registry, ensure_ascii=False, indent=2, sort_keys=True)
|
|
249
|
+
for registry_path in (local_registry_path, global_registry_path):
|
|
250
|
+
registry_path.parent.mkdir(parents=True, exist_ok=True)
|
|
251
|
+
registry_path.write_text(registry_text + "\n", encoding="utf-8")
|
|
252
|
+
|
|
253
|
+
runs_dir = runtime_root / "goals" / _FIXTURE_GOAL_ID / "runs"
|
|
254
|
+
runs_dir.mkdir(parents=True, exist_ok=True)
|
|
255
|
+
prior_runs: list[dict[str, Any]] = []
|
|
256
|
+
for minute in (2, 1):
|
|
257
|
+
generated_at = f"2026-08-13T00:0{minute}:00+00:00"
|
|
258
|
+
run = {
|
|
259
|
+
"generated_at": generated_at,
|
|
260
|
+
"goal_id": _FIXTURE_GOAL_ID,
|
|
261
|
+
"agent_id": _FIXTURE_AGENT_ID,
|
|
262
|
+
"classification": "bounded_fixture_probe",
|
|
263
|
+
"delivery_batch_scale": "single_surface",
|
|
264
|
+
"delivery_outcome": "surface_only",
|
|
265
|
+
"progress_observation": {
|
|
266
|
+
"schema_version": "typed_progress_observation_v0",
|
|
267
|
+
"result_class": "unchanged",
|
|
268
|
+
"work_item_id": _FIXTURE_WORK_ITEM_ID,
|
|
269
|
+
"surface_id": "surface-existing",
|
|
270
|
+
"hypothesis_id": "hypothesis-existing",
|
|
271
|
+
"probe_kind": "probe-existing",
|
|
272
|
+
"evidence_ids": ["evidence-existing"],
|
|
273
|
+
},
|
|
274
|
+
}
|
|
275
|
+
safe_timestamp = generated_at.replace(":", "-")
|
|
276
|
+
json_path = runs_dir / f"{safe_timestamp}.json"
|
|
277
|
+
markdown_path = runs_dir / f"{safe_timestamp}.md"
|
|
278
|
+
json_path.write_text(
|
|
279
|
+
json.dumps(run, sort_keys=True) + "\n",
|
|
280
|
+
encoding="utf-8",
|
|
281
|
+
)
|
|
282
|
+
markdown_path.write_text("# Bounded fixture probe\n", encoding="utf-8")
|
|
283
|
+
prior_runs.append(
|
|
284
|
+
{
|
|
285
|
+
**run,
|
|
286
|
+
"json_path": str(json_path),
|
|
287
|
+
"markdown_path": str(markdown_path),
|
|
288
|
+
}
|
|
289
|
+
)
|
|
290
|
+
(runs_dir / "index.jsonl").write_text(
|
|
291
|
+
"".join(json.dumps(run, sort_keys=True) + "\n" for run in prior_runs),
|
|
292
|
+
encoding="utf-8",
|
|
293
|
+
)
|
|
294
|
+
|
|
295
|
+
if composition_frontier:
|
|
296
|
+
explore_commands = (
|
|
297
|
+
(
|
|
298
|
+
"node",
|
|
299
|
+
"--node-id",
|
|
300
|
+
"surface-existing",
|
|
301
|
+
"--title",
|
|
302
|
+
"Existing closed surface",
|
|
303
|
+
"--kind",
|
|
304
|
+
"hypothesis",
|
|
305
|
+
"--status",
|
|
306
|
+
"resolved",
|
|
307
|
+
"--evidence-ref",
|
|
308
|
+
"evidence-existing",
|
|
309
|
+
),
|
|
310
|
+
(
|
|
311
|
+
"node",
|
|
312
|
+
"--node-id",
|
|
313
|
+
_FIXTURE_NEW_SURFACE_ID,
|
|
314
|
+
"--title",
|
|
315
|
+
"Permission configuration surface",
|
|
316
|
+
"--kind",
|
|
317
|
+
"hypothesis",
|
|
318
|
+
"--status",
|
|
319
|
+
"dead_end",
|
|
320
|
+
"--evidence-ref",
|
|
321
|
+
_FIXTURE_NEW_EVIDENCE_ID,
|
|
322
|
+
),
|
|
323
|
+
(
|
|
324
|
+
"node",
|
|
325
|
+
"--node-id",
|
|
326
|
+
_FIXTURE_COMPOSITION_EXPERIMENT_ID,
|
|
327
|
+
"--title",
|
|
328
|
+
"Jointly probe the existing and permission surfaces",
|
|
329
|
+
"--kind",
|
|
330
|
+
"experiment",
|
|
331
|
+
"--status",
|
|
332
|
+
"open",
|
|
333
|
+
),
|
|
334
|
+
(
|
|
335
|
+
"edge",
|
|
336
|
+
"--from",
|
|
337
|
+
_FIXTURE_COMPOSITION_EXPERIMENT_ID,
|
|
338
|
+
"--to",
|
|
339
|
+
"surface-existing",
|
|
340
|
+
"--type",
|
|
341
|
+
"depends_on",
|
|
342
|
+
),
|
|
343
|
+
(
|
|
344
|
+
"edge",
|
|
345
|
+
"--from",
|
|
346
|
+
_FIXTURE_COMPOSITION_EXPERIMENT_ID,
|
|
347
|
+
"--to",
|
|
348
|
+
_FIXTURE_NEW_SURFACE_ID,
|
|
349
|
+
"--type",
|
|
350
|
+
"depends_on",
|
|
351
|
+
),
|
|
352
|
+
)
|
|
353
|
+
for explore_args in explore_commands:
|
|
354
|
+
execute_loopx_cli(
|
|
355
|
+
shlex.join(
|
|
356
|
+
(
|
|
357
|
+
"loopx",
|
|
358
|
+
"--format",
|
|
359
|
+
"json",
|
|
360
|
+
"--registry",
|
|
361
|
+
"fixture-registry",
|
|
362
|
+
"--runtime-root",
|
|
363
|
+
"fixture-runtime",
|
|
364
|
+
"explore",
|
|
365
|
+
*explore_args,
|
|
366
|
+
"--goal-id",
|
|
367
|
+
_FIXTURE_GOAL_ID,
|
|
368
|
+
)
|
|
369
|
+
),
|
|
370
|
+
source_root=source_root,
|
|
371
|
+
project_root=project_root,
|
|
372
|
+
argument_overrides={
|
|
373
|
+
"--registry": str(global_registry_path),
|
|
374
|
+
"--runtime-root": str(runtime_root),
|
|
375
|
+
},
|
|
376
|
+
)
|
|
377
|
+
|
|
378
|
+
prompt = build_heartbeat_prompt(
|
|
379
|
+
goal_id=_FIXTURE_GOAL_ID,
|
|
380
|
+
thin=True,
|
|
381
|
+
agent_id=_FIXTURE_AGENT_ID,
|
|
382
|
+
registered_agents=[_FIXTURE_AGENT_ID],
|
|
383
|
+
available_capabilities=[
|
|
384
|
+
"shell",
|
|
385
|
+
"filesystem_read",
|
|
386
|
+
"filesystem_write",
|
|
387
|
+
],
|
|
388
|
+
runtime_profile="codex_app_heartbeat",
|
|
389
|
+
)
|
|
390
|
+
quota_guard_command = str(prompt["quota_guard_command"])
|
|
391
|
+
if quota_guard_command not in str(prompt["task_body"]):
|
|
392
|
+
raise ValueError("heartbeat fixture must contain its production quota guard")
|
|
393
|
+
return _ReplanSemanticActionFixture(
|
|
394
|
+
task_body=str(prompt["task_body"]),
|
|
395
|
+
quota_guard_command=quota_guard_command,
|
|
396
|
+
project_root=project_root,
|
|
397
|
+
runtime_root=runtime_root,
|
|
398
|
+
global_registry_path=global_registry_path,
|
|
399
|
+
source_root=source_root,
|
|
400
|
+
frontier_target=frontier_target,
|
|
401
|
+
work_source_target=source_target,
|
|
402
|
+
composition_experiment_ref=(
|
|
403
|
+
_FIXTURE_COMPOSITION_EXPERIMENT_ID if composition_frontier else None
|
|
404
|
+
),
|
|
405
|
+
frontier_exhausted=exhausted_frontier,
|
|
406
|
+
)
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
def _clock_output(command: str) -> str | None:
|
|
410
|
+
try:
|
|
411
|
+
tokens = shlex.split(command)
|
|
412
|
+
except ValueError:
|
|
413
|
+
return None
|
|
414
|
+
if not tokens or Path(tokens[0]).name != "date" or len(tokens) > 4:
|
|
415
|
+
return None
|
|
416
|
+
if any(
|
|
417
|
+
token in {";", "&&", "||", "|"}
|
|
418
|
+
or (index > 0 and not token.startswith(("-", "+")))
|
|
419
|
+
for index, token in enumerate(tokens)
|
|
420
|
+
):
|
|
421
|
+
return None
|
|
422
|
+
if "-u" in tokens or "--utc" in tokens:
|
|
423
|
+
return "2026-08-12T16:00:00Z\n"
|
|
424
|
+
return "2026-08-13T00:00:00+08:00\n"
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
def _is_quota_guard(command: str) -> bool:
|
|
428
|
+
tokens = loopx_command_tokens(command)
|
|
429
|
+
if not tokens:
|
|
430
|
+
return False
|
|
431
|
+
try:
|
|
432
|
+
quota_index = tokens.index("quota")
|
|
433
|
+
except ValueError:
|
|
434
|
+
return False
|
|
435
|
+
return bool(
|
|
436
|
+
tokens[quota_index : quota_index + 2] == ["quota", "should-run"]
|
|
437
|
+
and argument_value(tokens, "--goal-id") == _FIXTURE_GOAL_ID
|
|
438
|
+
and argument_value(tokens, "--agent-id") == _FIXTURE_AGENT_ID
|
|
439
|
+
and "--codex-app" in tokens
|
|
440
|
+
and argument_value(tokens, "--turn-instance-id")
|
|
441
|
+
)
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
def _progress_observation_from_command(command: str) -> dict[str, Any] | None:
|
|
445
|
+
tokens = loopx_command_tokens(command)
|
|
446
|
+
if not tokens or "refresh-state" not in tokens:
|
|
447
|
+
return None
|
|
448
|
+
if (
|
|
449
|
+
argument_value(tokens, "--goal-id") != _FIXTURE_GOAL_ID
|
|
450
|
+
or argument_value(tokens, "--agent-id") != _FIXTURE_AGENT_ID
|
|
451
|
+
or argument_value(tokens, "--progress-scope") != "agent_lane"
|
|
452
|
+
):
|
|
453
|
+
raise ValueError("replan writeback must target the fixture agent lane")
|
|
454
|
+
result_class = argument_value(tokens, "--progress-result-class")
|
|
455
|
+
if result_class not in {item.value for item in ProgressResultClass}:
|
|
456
|
+
raise ValueError("replan writeback must carry a typed result class")
|
|
457
|
+
observation: dict[str, Any] = {
|
|
458
|
+
"schema_version": "typed_progress_observation_v0",
|
|
459
|
+
"result_class": result_class,
|
|
460
|
+
"work_item_id": _FIXTURE_WORK_ITEM_ID,
|
|
461
|
+
}
|
|
462
|
+
for option, field in (
|
|
463
|
+
("--progress-surface-id", "surface_id"),
|
|
464
|
+
("--progress-hypothesis-id", "hypothesis_id"),
|
|
465
|
+
("--progress-probe-kind", "probe_kind"),
|
|
466
|
+
("--progress-blocker-id", "blocker_id"),
|
|
467
|
+
("--progress-coverage-scope-id", "coverage_scope_id"),
|
|
468
|
+
):
|
|
469
|
+
value = argument_value(tokens, option)
|
|
470
|
+
if value:
|
|
471
|
+
observation[field] = value
|
|
472
|
+
evidence_ids: list[str] = []
|
|
473
|
+
for index, token in enumerate(tokens[:-1]):
|
|
474
|
+
if token == "--progress-evidence-id":
|
|
475
|
+
evidence_ids.append(tokens[index + 1])
|
|
476
|
+
if evidence_ids:
|
|
477
|
+
observation["evidence_ids"] = evidence_ids
|
|
478
|
+
if "--progress-coverage-complete" in tokens:
|
|
479
|
+
observation["coverage_complete"] = True
|
|
480
|
+
return observation
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
def _is_replan_successor_create(command: str) -> bool:
|
|
484
|
+
tokens = loopx_command_tokens(command)
|
|
485
|
+
if not tokens:
|
|
486
|
+
return False
|
|
487
|
+
try:
|
|
488
|
+
todo_index = tokens.index("todo")
|
|
489
|
+
except ValueError:
|
|
490
|
+
return False
|
|
491
|
+
return bool(
|
|
492
|
+
tokens[todo_index : todo_index + 2] == ["todo", "add"]
|
|
493
|
+
and argument_value(tokens, "--goal-id") == _FIXTURE_GOAL_ID
|
|
494
|
+
and argument_value(tokens, "--role") == "agent"
|
|
495
|
+
and argument_value(tokens, "--task-class") == "advancement_task"
|
|
496
|
+
and argument_value(tokens, "--claimed-by") == _FIXTURE_AGENT_ID
|
|
497
|
+
and argument_value(tokens, "--text")
|
|
498
|
+
)
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
def _quota_behavior_observation(packet: Mapping[str, Any]) -> dict[str, Any]:
|
|
502
|
+
signature = quota_action_signature_document(packet)
|
|
503
|
+
action = dict(signature.get("action") or {})
|
|
504
|
+
user = dict(signature.get("user") or {})
|
|
505
|
+
obligation = packet.get("autonomous_replan_obligation")
|
|
506
|
+
replan_action = packet.get("replan_action_packet")
|
|
507
|
+
if not isinstance(obligation, Mapping) or not isinstance(replan_action, Mapping):
|
|
508
|
+
raise TypeError("quota must project an obligation and replan action packet")
|
|
509
|
+
context = obligation.get("replan_context")
|
|
510
|
+
if not isinstance(context, Mapping):
|
|
511
|
+
raise TypeError("quota must host-project the replan coverage context")
|
|
512
|
+
if (
|
|
513
|
+
packet.get("decision") != "autonomous_replan_required"
|
|
514
|
+
or replan_action.get("decision") != "replan_required"
|
|
515
|
+
or replan_action.get("obligation_id") != obligation.get("obligation_id")
|
|
516
|
+
or context.get("delivery") != "host_projected"
|
|
517
|
+
or context.get("evidence_source") != "agent_scoped_evidence_log"
|
|
518
|
+
or dict(context.get("delivery_receipt") or {}).get("status") != "delivered"
|
|
519
|
+
or packet.get("required_reads") not in (None, [])
|
|
520
|
+
):
|
|
521
|
+
raise ValueError("quota does not expose the semantic replan contract")
|
|
522
|
+
if not (
|
|
523
|
+
action.get("must_attempt") is True
|
|
524
|
+
and action.get("delivery_allowed") is True
|
|
525
|
+
and action.get("quiet_noop_allowed") is False
|
|
526
|
+
):
|
|
527
|
+
raise ValueError("semantic replan must require one executable action")
|
|
528
|
+
return {
|
|
529
|
+
"decision": "execute",
|
|
530
|
+
"selected_todo_id": None,
|
|
531
|
+
"user_action_required": bool(user.get("action_required")),
|
|
532
|
+
"must_attempt_work": True,
|
|
533
|
+
"delivery_allowed": True,
|
|
534
|
+
"quiet_noop_allowed": False,
|
|
535
|
+
"external_write_requested": False,
|
|
536
|
+
"replan_obligation_id": obligation.get("obligation_id"),
|
|
537
|
+
"context_delivery": "host_projected",
|
|
538
|
+
"required_semantic_outcomes": list(
|
|
539
|
+
dict(replan_action.get("uncovered_frontier") or {}).get(
|
|
540
|
+
"required_any_of"
|
|
541
|
+
)
|
|
542
|
+
or []
|
|
543
|
+
),
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
def _successor_reentry_observation(
|
|
548
|
+
packet: Mapping[str, Any],
|
|
549
|
+
*,
|
|
550
|
+
successor_todo_id: str,
|
|
551
|
+
composition_experiment_ref: str | None,
|
|
552
|
+
) -> dict[str, Any]:
|
|
553
|
+
selected_todo = packet.get("selected_todo")
|
|
554
|
+
if not isinstance(selected_todo, Mapping):
|
|
555
|
+
raise ValueError("successor_reentry_selected_todo_missing")
|
|
556
|
+
if str(selected_todo.get("todo_id") or "") != successor_todo_id:
|
|
557
|
+
raise ValueError("successor_reentry_selected_todo_mismatch")
|
|
558
|
+
if packet.get("decision") == "autonomous_replan_required" or isinstance(
|
|
559
|
+
packet.get("autonomous_replan_obligation"), Mapping
|
|
560
|
+
):
|
|
561
|
+
raise ValueError("successor_reentry_replan_not_closed")
|
|
562
|
+
if not (
|
|
563
|
+
packet.get("decision") == "run"
|
|
564
|
+
and packet.get("effective_action") == "normal_run"
|
|
565
|
+
):
|
|
566
|
+
raise ValueError("successor_reentry_not_runnable")
|
|
567
|
+
|
|
568
|
+
observation: dict[str, Any] = {
|
|
569
|
+
"decision": packet.get("decision"),
|
|
570
|
+
"effective_action": packet.get("effective_action"),
|
|
571
|
+
"selected_todo_id": successor_todo_id,
|
|
572
|
+
"replan_closed": True,
|
|
573
|
+
}
|
|
574
|
+
if composition_experiment_ref:
|
|
575
|
+
frontier = packet.get("bounded_research_frontier")
|
|
576
|
+
gaps = (
|
|
577
|
+
frontier.get("gaps")
|
|
578
|
+
if isinstance(frontier, Mapping)
|
|
579
|
+
and isinstance(frontier.get("gaps"), list)
|
|
580
|
+
else []
|
|
581
|
+
)
|
|
582
|
+
gap = next(
|
|
583
|
+
(
|
|
584
|
+
item
|
|
585
|
+
for item in gaps
|
|
586
|
+
if isinstance(item, Mapping)
|
|
587
|
+
and item.get("experiment_node_ref") == composition_experiment_ref
|
|
588
|
+
),
|
|
589
|
+
None,
|
|
590
|
+
)
|
|
591
|
+
if not isinstance(gap, Mapping) or gap.get("status") != "scheduled":
|
|
592
|
+
raise ValueError("successor_reentry_composition_not_scheduled")
|
|
593
|
+
observation["composition_experiment_ref"] = composition_experiment_ref
|
|
594
|
+
observation["composition_status"] = "scheduled"
|
|
595
|
+
return observation
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
def _semantic_reentry_observation(
|
|
599
|
+
packet: Mapping[str, Any],
|
|
600
|
+
*,
|
|
601
|
+
obligation_id: str,
|
|
602
|
+
) -> dict[str, Any]:
|
|
603
|
+
obligation = packet.get("autonomous_replan_obligation")
|
|
604
|
+
if (
|
|
605
|
+
isinstance(obligation, Mapping)
|
|
606
|
+
and obligation.get("obligation_id") == obligation_id
|
|
607
|
+
):
|
|
608
|
+
raise ValueError("semantic_reentry_replan_not_closed")
|
|
609
|
+
if packet.get("decision") == "autonomous_replan_required":
|
|
610
|
+
raise ValueError("semantic_reentry_replan_not_closed")
|
|
611
|
+
if packet.get("decision") != "skip":
|
|
612
|
+
raise ValueError("semantic_reentry_did_not_exit")
|
|
613
|
+
frontier = packet.get("goal_frontier_projection")
|
|
614
|
+
normalized_progress = (
|
|
615
|
+
frontier.get("normalized_progress")
|
|
616
|
+
if isinstance(frontier, Mapping)
|
|
617
|
+
else None
|
|
618
|
+
)
|
|
619
|
+
monitor_lanes = (
|
|
620
|
+
frontier.get("monitor_only_lanes")
|
|
621
|
+
if isinstance(frontier, Mapping)
|
|
622
|
+
else None
|
|
623
|
+
)
|
|
624
|
+
future_monitor_wait = bool(
|
|
625
|
+
packet.get("effective_action") == "monitor_quiet_skip"
|
|
626
|
+
and isinstance(frontier, Mapping)
|
|
627
|
+
and frontier.get("replan_required") is False
|
|
628
|
+
and isinstance(monitor_lanes, Mapping)
|
|
629
|
+
and monitor_lanes.get("present") is True
|
|
630
|
+
and isinstance(normalized_progress, Mapping)
|
|
631
|
+
and int(normalized_progress.get("agent_monitor_open_count") or 0) > 0
|
|
632
|
+
and int(normalized_progress.get("agent_monitor_due_count") or 0) == 0
|
|
633
|
+
)
|
|
634
|
+
if not future_monitor_wait:
|
|
635
|
+
raise ValueError("semantic_reentry_not_future_monitor_wait")
|
|
636
|
+
return {
|
|
637
|
+
"decision": packet.get("decision"),
|
|
638
|
+
"effective_action": packet.get("effective_action"),
|
|
639
|
+
"replan_rule": "future_monitor_wait",
|
|
640
|
+
"replan_closed": True,
|
|
641
|
+
"exited": True,
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
def _execute_loopx(
|
|
646
|
+
command: str,
|
|
647
|
+
*,
|
|
648
|
+
fixture: _ReplanSemanticActionFixture,
|
|
649
|
+
turn_instance_id: str,
|
|
650
|
+
) -> str:
|
|
651
|
+
return execute_loopx_cli(
|
|
652
|
+
command,
|
|
653
|
+
source_root=fixture.source_root,
|
|
654
|
+
project_root=fixture.project_root,
|
|
655
|
+
argument_overrides={
|
|
656
|
+
"--registry": str(fixture.global_registry_path),
|
|
657
|
+
"--runtime-root": str(fixture.runtime_root),
|
|
658
|
+
"--turn-instance-id": turn_instance_id,
|
|
659
|
+
},
|
|
660
|
+
)
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
def _bounded_workspace_read_plan(
|
|
664
|
+
command: str,
|
|
665
|
+
*,
|
|
666
|
+
fixture: _ReplanSemanticActionFixture,
|
|
667
|
+
) -> list[Any] | None:
|
|
668
|
+
return bounded_workspace_read_plan(command, fixture=fixture)
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
def _bounded_refresh_state_help_limit(command: str) -> int | None:
|
|
672
|
+
lexer = shlex.shlex(command, posix=True, punctuation_chars=";&|<>\n")
|
|
673
|
+
lexer.whitespace = " \t\r"
|
|
674
|
+
lexer.whitespace_split = True
|
|
675
|
+
try:
|
|
676
|
+
tokens = list(lexer)
|
|
677
|
+
except ValueError:
|
|
678
|
+
return None
|
|
679
|
+
if len(tokens) < 3 or Path(tokens[0]).name != "loopx":
|
|
680
|
+
return None
|
|
681
|
+
if tokens[1:3] != ["refresh-state", "--help"]:
|
|
682
|
+
return None
|
|
683
|
+
remainder = tokens[3:]
|
|
684
|
+
if remainder[:3] == ["2", ">&", "1"]:
|
|
685
|
+
remainder = remainder[3:]
|
|
686
|
+
if not remainder:
|
|
687
|
+
return 200
|
|
688
|
+
if remainder[:2] != ["|", "head"]:
|
|
689
|
+
return None
|
|
690
|
+
if len(remainder) == 3 and remainder[2].startswith("-"):
|
|
691
|
+
limit_text = remainder[2][1:]
|
|
692
|
+
elif len(remainder) == 4 and remainder[2] == "-n":
|
|
693
|
+
limit_text = remainder[3]
|
|
694
|
+
else:
|
|
695
|
+
return None
|
|
696
|
+
if not limit_text.isdigit():
|
|
697
|
+
return None
|
|
698
|
+
limit = int(limit_text)
|
|
699
|
+
return limit if 1 <= limit <= 200 else None
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
def _execute_workspace_read(
|
|
703
|
+
command: str,
|
|
704
|
+
*,
|
|
705
|
+
fixture: _ReplanSemanticActionFixture,
|
|
706
|
+
) -> tuple[str, bool, bool]:
|
|
707
|
+
plan = _bounded_workspace_read_plan(command, fixture=fixture)
|
|
708
|
+
if plan is None:
|
|
709
|
+
raise ValueError("workspace read is outside the hermetic fixture")
|
|
710
|
+
outputs: list[str] = []
|
|
711
|
+
status = 0
|
|
712
|
+
frontier_read = False
|
|
713
|
+
work_source_read = False
|
|
714
|
+
for step in plan:
|
|
715
|
+
should_run = bool(
|
|
716
|
+
step.operator == ";"
|
|
717
|
+
or (step.operator == "&&" and status == 0)
|
|
718
|
+
or (step.operator == "||" and status != 0)
|
|
719
|
+
)
|
|
720
|
+
if not should_run:
|
|
721
|
+
continue
|
|
722
|
+
completed = subprocess.run(
|
|
723
|
+
list(step.argv),
|
|
724
|
+
cwd=fixture.project_root,
|
|
725
|
+
check=False,
|
|
726
|
+
capture_output=True,
|
|
727
|
+
text=True,
|
|
728
|
+
timeout=10,
|
|
729
|
+
)
|
|
730
|
+
status = completed.returncode
|
|
731
|
+
output = completed.stdout
|
|
732
|
+
if step.line_limit is not None:
|
|
733
|
+
output = "".join(output.splitlines(keepends=True)[: step.line_limit])
|
|
734
|
+
outputs.append(output)
|
|
735
|
+
frontier_read = frontier_read or (
|
|
736
|
+
status == 0
|
|
737
|
+
and step.target is not None
|
|
738
|
+
and step.target.resolve() == fixture.frontier_target.resolve()
|
|
739
|
+
)
|
|
740
|
+
work_source_read = work_source_read or (
|
|
741
|
+
status == 0
|
|
742
|
+
and step.target is not None
|
|
743
|
+
and step.target.resolve() == fixture.work_source_target.resolve()
|
|
744
|
+
)
|
|
745
|
+
if status != 0:
|
|
746
|
+
raise RuntimeError(f"workspace read failed with exit={status}")
|
|
747
|
+
return "".join(outputs), frontier_read, work_source_read
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
def _receipt(
|
|
751
|
+
*,
|
|
752
|
+
qualification_id: str,
|
|
753
|
+
actor_ref: str,
|
|
754
|
+
steps: list[dict[str, Any]],
|
|
755
|
+
passed: bool,
|
|
756
|
+
failure_code: str | None,
|
|
757
|
+
quota_observation: Mapping[str, Any] | None,
|
|
758
|
+
semantic_delta: Mapping[str, Any] | None,
|
|
759
|
+
local_fixture_writes_executed: bool,
|
|
760
|
+
read_only_host_commands_executed: bool,
|
|
761
|
+
) -> dict[str, Any]:
|
|
762
|
+
receipt = {
|
|
763
|
+
"schema_version": REPLAN_SEMANTIC_ACTION_BEHAVIOR_RECEIPT_SCHEMA_VERSION,
|
|
764
|
+
"qualification_id": qualification_id,
|
|
765
|
+
"actor_ref": actor_ref,
|
|
766
|
+
"qualification_passed": passed,
|
|
767
|
+
"failure_code": failure_code,
|
|
768
|
+
"observed_tool_sequence": [step["kind"] for step in steps],
|
|
769
|
+
"tool_call_count": len(steps),
|
|
770
|
+
"semantic_action_accepted": bool(
|
|
771
|
+
passed and semantic_delta and semantic_delta.get("accepted") is True
|
|
772
|
+
),
|
|
773
|
+
"selected_semantic_outcomes": list(
|
|
774
|
+
(semantic_delta or {}).get("satisfying_outcomes") or []
|
|
775
|
+
),
|
|
776
|
+
"tool_call_receipts": steps,
|
|
777
|
+
"boundary": {
|
|
778
|
+
"raw_prompt_persisted": False,
|
|
779
|
+
"raw_provider_response_persisted": False,
|
|
780
|
+
"raw_command_persisted": False,
|
|
781
|
+
"filesystem_writes_executed": local_fixture_writes_executed,
|
|
782
|
+
"writes_limited_to_temporary_fixture": local_fixture_writes_executed,
|
|
783
|
+
"external_writes_executed": False,
|
|
784
|
+
"shell_commands_executed": False,
|
|
785
|
+
"read_only_host_commands_executed": read_only_host_commands_executed,
|
|
786
|
+
},
|
|
787
|
+
}
|
|
788
|
+
if quota_observation is not None:
|
|
789
|
+
receipt.update(dict(quota_observation))
|
|
790
|
+
return receipt
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
def _qualification_receipt(
|
|
794
|
+
state: _QualificationState,
|
|
795
|
+
*,
|
|
796
|
+
qualification_id: str,
|
|
797
|
+
actor_ref: str,
|
|
798
|
+
passed: bool,
|
|
799
|
+
failure_code: str | None,
|
|
800
|
+
) -> dict[str, Any]:
|
|
801
|
+
receipt = _receipt(
|
|
802
|
+
qualification_id=qualification_id,
|
|
803
|
+
actor_ref=actor_ref,
|
|
804
|
+
steps=state.steps,
|
|
805
|
+
passed=passed,
|
|
806
|
+
failure_code=failure_code,
|
|
807
|
+
quota_observation=state.quota_observation,
|
|
808
|
+
semantic_delta=state.semantic_delta,
|
|
809
|
+
local_fixture_writes_executed=True,
|
|
810
|
+
read_only_host_commands_executed=state.read_only_host_commands_executed,
|
|
811
|
+
)
|
|
812
|
+
if state.successor_reentry_observation is not None:
|
|
813
|
+
receipt["successor_reentry"] = state.successor_reentry_observation
|
|
814
|
+
if state.semantic_reentry_observation is not None:
|
|
815
|
+
receipt["semantic_reentry"] = state.semantic_reentry_observation
|
|
816
|
+
return receipt
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
def _record_tool_step(
|
|
820
|
+
state: _QualificationState,
|
|
821
|
+
*,
|
|
822
|
+
kind: str,
|
|
823
|
+
command: str,
|
|
824
|
+
) -> None:
|
|
825
|
+
state.steps.append(
|
|
826
|
+
{
|
|
827
|
+
"ordinal": len(state.steps) + 1,
|
|
828
|
+
"kind": kind,
|
|
829
|
+
"command_digest": _digest(command),
|
|
830
|
+
}
|
|
831
|
+
)
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
def _handle_quota_command(command: str, state: _QualificationState) -> str:
|
|
835
|
+
if state.seen_quota:
|
|
836
|
+
raise ValueError("repeated_quota_should_run")
|
|
837
|
+
output = _execute_loopx(
|
|
838
|
+
command,
|
|
839
|
+
fixture=state.fixture,
|
|
840
|
+
turn_instance_id=state.turn_instance_id,
|
|
841
|
+
)
|
|
842
|
+
decoded = json.loads(output)
|
|
843
|
+
if not isinstance(decoded, dict):
|
|
844
|
+
raise ValueError("quota result must be an object")
|
|
845
|
+
state.quota_packet = decoded
|
|
846
|
+
state.quota_observation = _quota_behavior_observation(decoded)
|
|
847
|
+
state.seen_quota = True
|
|
848
|
+
state.read_only_host_commands_executed = True
|
|
849
|
+
return output
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
def _handle_clock_command(output: str, state: _QualificationState) -> str:
|
|
853
|
+
if state.seen_clock:
|
|
854
|
+
raise ValueError("repeated_clock")
|
|
855
|
+
state.seen_clock = True
|
|
856
|
+
state.read_only_host_commands_executed = True
|
|
857
|
+
return output
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
def _handle_workspace_read(command: str, state: _QualificationState) -> str:
|
|
861
|
+
output, read_frontier, read_work_source = _execute_workspace_read(
|
|
862
|
+
command,
|
|
863
|
+
fixture=state.fixture,
|
|
864
|
+
)
|
|
865
|
+
state.frontier_context_read = state.frontier_context_read or read_frontier
|
|
866
|
+
state.work_source_read = state.work_source_read or read_work_source
|
|
867
|
+
state.read_only_host_commands_executed = True
|
|
868
|
+
return output
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
def _handle_refresh_state_help(
|
|
872
|
+
state: _QualificationState,
|
|
873
|
+
*,
|
|
874
|
+
line_limit: int,
|
|
875
|
+
) -> str:
|
|
876
|
+
_require_observed_frontier(state, prefix="refresh_state_help")
|
|
877
|
+
if state.seen_refresh_state_help:
|
|
878
|
+
raise ValueError("repeated_refresh_state_help")
|
|
879
|
+
output = execute_loopx_cli(
|
|
880
|
+
"loopx refresh-state --help",
|
|
881
|
+
source_root=state.fixture.source_root,
|
|
882
|
+
project_root=state.fixture.project_root,
|
|
883
|
+
)
|
|
884
|
+
state.seen_refresh_state_help = True
|
|
885
|
+
state.read_only_host_commands_executed = True
|
|
886
|
+
return "\n".join(output.splitlines()[:line_limit]) + "\n"
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
def _expected_obligation_id(state: _QualificationState) -> str:
|
|
890
|
+
if state.quota_packet is None:
|
|
891
|
+
raise ValueError("semantic_action_before_quota")
|
|
892
|
+
obligation = state.quota_packet.get("autonomous_replan_obligation")
|
|
893
|
+
if not isinstance(obligation, Mapping):
|
|
894
|
+
raise ValueError("quota_obligation_missing")
|
|
895
|
+
obligation_id = str(obligation.get("obligation_id") or "").strip()
|
|
896
|
+
if not obligation_id:
|
|
897
|
+
raise ValueError("quota_obligation_missing")
|
|
898
|
+
return obligation_id
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
def _require_observed_frontier(
|
|
902
|
+
state: _QualificationState,
|
|
903
|
+
*,
|
|
904
|
+
prefix: str,
|
|
905
|
+
work_source_required: bool = True,
|
|
906
|
+
) -> None:
|
|
907
|
+
if state.quota_packet is None:
|
|
908
|
+
raise ValueError(f"{prefix}_before_quota")
|
|
909
|
+
if not state.frontier_context_read:
|
|
910
|
+
raise ValueError(f"{prefix}_before_frontier_read")
|
|
911
|
+
if work_source_required and not state.work_source_read:
|
|
912
|
+
raise ValueError(f"{prefix}_before_work_source_read")
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
def _handle_successor_command(command: str, state: _QualificationState) -> str:
|
|
916
|
+
_require_observed_frontier(state, prefix="successor_create")
|
|
917
|
+
if state.created_successor_id is not None:
|
|
918
|
+
raise ValueError("repeated_successor_create")
|
|
919
|
+
expected_obligation_id = _expected_obligation_id(state)
|
|
920
|
+
requested_obligation_id = argument_value(
|
|
921
|
+
loopx_command_tokens(command) or [],
|
|
922
|
+
"--replan-obligation-id",
|
|
923
|
+
)
|
|
924
|
+
if requested_obligation_id != expected_obligation_id:
|
|
925
|
+
raise ValueError("successor_create_obligation_mismatch")
|
|
926
|
+
if state.fixture.composition_experiment_ref:
|
|
927
|
+
requested_experiment_ref = argument_value(
|
|
928
|
+
loopx_command_tokens(command) or [],
|
|
929
|
+
"--explore-result-node-ref",
|
|
930
|
+
)
|
|
931
|
+
if requested_experiment_ref != state.fixture.composition_experiment_ref:
|
|
932
|
+
raise ValueError("successor_create_composition_binding_mismatch")
|
|
933
|
+
output = _execute_loopx(
|
|
934
|
+
command,
|
|
935
|
+
fixture=state.fixture,
|
|
936
|
+
turn_instance_id=state.turn_instance_id,
|
|
937
|
+
)
|
|
938
|
+
decoded = json.loads(output)
|
|
939
|
+
state.created_successor_id = (
|
|
940
|
+
str(decoded.get("todo_id") or "").strip()
|
|
941
|
+
if isinstance(decoded, dict)
|
|
942
|
+
else ""
|
|
943
|
+
)
|
|
944
|
+
if not (
|
|
945
|
+
isinstance(decoded, dict)
|
|
946
|
+
and decoded.get("ok") is True
|
|
947
|
+
and decoded.get("added") is True
|
|
948
|
+
and state.created_successor_id
|
|
949
|
+
and decoded.get("host_action") == "end_current_heartbeat"
|
|
950
|
+
):
|
|
951
|
+
raise ValueError("successor_create_failed")
|
|
952
|
+
transition = decoded.get("replan_transition")
|
|
953
|
+
if not (
|
|
954
|
+
isinstance(transition, dict)
|
|
955
|
+
and transition.get("recorded") is True
|
|
956
|
+
and transition.get("obligation_id") == expected_obligation_id
|
|
957
|
+
and transition.get("successor_todo_id") == state.created_successor_id
|
|
958
|
+
and transition.get("outcome") == "new_runnable_successor"
|
|
959
|
+
):
|
|
960
|
+
raise ValueError("successor_transition_missing")
|
|
961
|
+
state.semantic_delta = {
|
|
962
|
+
"accepted": True,
|
|
963
|
+
"satisfying_outcomes": ["new_runnable_successor"],
|
|
964
|
+
}
|
|
965
|
+
reentry_output = _execute_loopx(
|
|
966
|
+
state.fixture.quota_guard_command,
|
|
967
|
+
fixture=state.fixture,
|
|
968
|
+
turn_instance_id=f"{state.turn_instance_id}-successor",
|
|
969
|
+
)
|
|
970
|
+
reentry_packet = json.loads(reentry_output)
|
|
971
|
+
if not isinstance(reentry_packet, dict):
|
|
972
|
+
raise ValueError("successor_reentry_quota_invalid")
|
|
973
|
+
state.successor_reentry_observation = _successor_reentry_observation(
|
|
974
|
+
reentry_packet,
|
|
975
|
+
successor_todo_id=state.created_successor_id,
|
|
976
|
+
composition_experiment_ref=state.fixture.composition_experiment_ref,
|
|
977
|
+
)
|
|
978
|
+
state.read_only_host_commands_executed = True
|
|
979
|
+
return output
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
def _handle_semantic_writeback(
|
|
983
|
+
command: str,
|
|
984
|
+
observation: Mapping[str, Any],
|
|
985
|
+
state: _QualificationState,
|
|
986
|
+
) -> str:
|
|
987
|
+
obligation_id = _expected_obligation_id(state)
|
|
988
|
+
result_class = str(observation.get("result_class") or "")
|
|
989
|
+
terminal_result = result_class in {
|
|
990
|
+
ProgressResultClass.BLOCKED.value,
|
|
991
|
+
ProgressResultClass.EXPLORATION_EXHAUSTED.value,
|
|
992
|
+
ProgressResultClass.NO_FOLLOWUP.value,
|
|
993
|
+
}
|
|
994
|
+
_require_observed_frontier(
|
|
995
|
+
state,
|
|
996
|
+
prefix="semantic_action",
|
|
997
|
+
work_source_required=not terminal_result,
|
|
998
|
+
)
|
|
999
|
+
if not terminal_result:
|
|
1000
|
+
matches_observed_surface = bool(
|
|
1001
|
+
observation.get("surface_id") == _FIXTURE_NEW_SURFACE_ID
|
|
1002
|
+
and observation.get("hypothesis_id") == _FIXTURE_NEW_HYPOTHESIS_ID
|
|
1003
|
+
and observation.get("probe_kind") == _FIXTURE_NEW_PROBE_KIND
|
|
1004
|
+
and _FIXTURE_NEW_EVIDENCE_ID in set(observation.get("evidence_ids") or [])
|
|
1005
|
+
)
|
|
1006
|
+
if not matches_observed_surface:
|
|
1007
|
+
raise ValueError("semantic_action_misses_uncovered_frontier")
|
|
1008
|
+
obligation = dict(
|
|
1009
|
+
(state.quota_packet or {}).get("autonomous_replan_obligation") or {}
|
|
1010
|
+
)
|
|
1011
|
+
if obligation.get("obligation_id") != obligation_id:
|
|
1012
|
+
raise ValueError("quota_obligation_missing")
|
|
1013
|
+
state.semantic_delta = semantic_delta_from_writeback(
|
|
1014
|
+
obligation=obligation,
|
|
1015
|
+
progress_observation=observation,
|
|
1016
|
+
)
|
|
1017
|
+
if state.semantic_delta.get("accepted") is not True:
|
|
1018
|
+
raise ValueError("non_semantic_replan_action")
|
|
1019
|
+
output = _execute_loopx(
|
|
1020
|
+
command,
|
|
1021
|
+
fixture=state.fixture,
|
|
1022
|
+
turn_instance_id=state.turn_instance_id,
|
|
1023
|
+
)
|
|
1024
|
+
decoded = json.loads(output)
|
|
1025
|
+
if not isinstance(decoded, dict) or decoded.get("ok") is not True:
|
|
1026
|
+
raise ValueError("semantic_writeback_failed")
|
|
1027
|
+
if result_class in {
|
|
1028
|
+
ProgressResultClass.EXPLORATION_EXHAUSTED.value,
|
|
1029
|
+
ProgressResultClass.NO_FOLLOWUP.value,
|
|
1030
|
+
}:
|
|
1031
|
+
reentry_output = _execute_loopx(
|
|
1032
|
+
state.fixture.quota_guard_command,
|
|
1033
|
+
fixture=state.fixture,
|
|
1034
|
+
turn_instance_id=f"{state.turn_instance_id}-semantic-reentry",
|
|
1035
|
+
)
|
|
1036
|
+
reentry_packet = json.loads(reentry_output)
|
|
1037
|
+
if not isinstance(reentry_packet, dict):
|
|
1038
|
+
raise ValueError("semantic_reentry_quota_invalid")
|
|
1039
|
+
state.semantic_reentry_observation = _semantic_reentry_observation(
|
|
1040
|
+
reentry_packet,
|
|
1041
|
+
obligation_id=obligation_id,
|
|
1042
|
+
)
|
|
1043
|
+
state.read_only_host_commands_executed = True
|
|
1044
|
+
return output
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
def _dispatch_behavior_command(
|
|
1048
|
+
command: str,
|
|
1049
|
+
state: _QualificationState,
|
|
1050
|
+
) -> tuple[str, str, bool]:
|
|
1051
|
+
if _is_quota_guard(command):
|
|
1052
|
+
return _handle_quota_command(command, state), "quota_should_run", False
|
|
1053
|
+
if (clock_output := _clock_output(command)) is not None:
|
|
1054
|
+
return _handle_clock_command(clock_output, state), "clock", False
|
|
1055
|
+
if _bounded_workspace_read_plan(command, fixture=state.fixture) is not None:
|
|
1056
|
+
return _handle_workspace_read(command, state), "workspace_read", False
|
|
1057
|
+
if (help_limit := _bounded_refresh_state_help_limit(command)) is not None:
|
|
1058
|
+
return (
|
|
1059
|
+
_handle_refresh_state_help(state, line_limit=help_limit),
|
|
1060
|
+
"refresh_state_help",
|
|
1061
|
+
False,
|
|
1062
|
+
)
|
|
1063
|
+
if _is_replan_successor_create(command):
|
|
1064
|
+
return _handle_successor_command(command, state), "replan_successor_create", True
|
|
1065
|
+
if (observation := _progress_observation_from_command(command)) is not None:
|
|
1066
|
+
return (
|
|
1067
|
+
_handle_semantic_writeback(command, observation, state),
|
|
1068
|
+
"semantic_replan_writeback",
|
|
1069
|
+
True,
|
|
1070
|
+
)
|
|
1071
|
+
if "evidence-log" in command:
|
|
1072
|
+
raise ValueError("manual_evidence_read_is_not_replan")
|
|
1073
|
+
raise ValueError("unexpected_command")
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
def _behavior_command_kind(
|
|
1077
|
+
command: str,
|
|
1078
|
+
state: _QualificationState,
|
|
1079
|
+
) -> str:
|
|
1080
|
+
"""Classify a proposed command before its handler can fail."""
|
|
1081
|
+
|
|
1082
|
+
if _is_quota_guard(command):
|
|
1083
|
+
return "quota_should_run"
|
|
1084
|
+
if _clock_output(command) is not None:
|
|
1085
|
+
return "clock"
|
|
1086
|
+
if _bounded_workspace_read_plan(command, fixture=state.fixture) is not None:
|
|
1087
|
+
return "workspace_read"
|
|
1088
|
+
if _bounded_refresh_state_help_limit(command) is not None:
|
|
1089
|
+
return "refresh_state_help"
|
|
1090
|
+
if _is_replan_successor_create(command):
|
|
1091
|
+
return "replan_successor_create"
|
|
1092
|
+
tokens = loopx_command_tokens(command) or []
|
|
1093
|
+
if "refresh-state" in tokens:
|
|
1094
|
+
return "semantic_replan_writeback"
|
|
1095
|
+
return "unexpected_command"
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
_EXPECTED_BEHAVIOR_FAILURES = frozenset(
|
|
1099
|
+
{
|
|
1100
|
+
"repeated_quota_should_run",
|
|
1101
|
+
"repeated_clock",
|
|
1102
|
+
"semantic_action_before_quota",
|
|
1103
|
+
"semantic_action_before_frontier_read",
|
|
1104
|
+
"semantic_action_before_work_source_read",
|
|
1105
|
+
"semantic_action_misses_uncovered_frontier",
|
|
1106
|
+
"refresh_state_help_before_quota",
|
|
1107
|
+
"refresh_state_help_before_frontier_read",
|
|
1108
|
+
"refresh_state_help_before_work_source_read",
|
|
1109
|
+
"repeated_refresh_state_help",
|
|
1110
|
+
"successor_create_before_quota",
|
|
1111
|
+
"successor_create_before_frontier_read",
|
|
1112
|
+
"successor_create_before_work_source_read",
|
|
1113
|
+
"successor_create_obligation_mismatch",
|
|
1114
|
+
"successor_create_composition_binding_mismatch",
|
|
1115
|
+
"repeated_successor_create",
|
|
1116
|
+
"successor_create_failed",
|
|
1117
|
+
"successor_transition_missing",
|
|
1118
|
+
"successor_reentry_quota_invalid",
|
|
1119
|
+
"successor_reentry_selected_todo_missing",
|
|
1120
|
+
"successor_reentry_selected_todo_mismatch",
|
|
1121
|
+
"successor_reentry_replan_not_closed",
|
|
1122
|
+
"successor_reentry_not_runnable",
|
|
1123
|
+
"successor_reentry_composition_not_scheduled",
|
|
1124
|
+
"quota_obligation_missing",
|
|
1125
|
+
"non_semantic_replan_action",
|
|
1126
|
+
"semantic_writeback_failed",
|
|
1127
|
+
"semantic_reentry_quota_invalid",
|
|
1128
|
+
"semantic_reentry_replan_not_closed",
|
|
1129
|
+
"semantic_reentry_not_future_monitor_wait",
|
|
1130
|
+
"semantic_reentry_did_not_exit",
|
|
1131
|
+
"manual_evidence_read_is_not_replan",
|
|
1132
|
+
"unexpected_command",
|
|
1133
|
+
}
|
|
1134
|
+
)
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
def _behavior_failure_code(exc: Exception, *, kind: str) -> str:
|
|
1138
|
+
failure = str(exc)
|
|
1139
|
+
return failure if failure in _EXPECTED_BEHAVIOR_FAILURES else f"{kind}_execution_failed"
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
def _append_tool_response(
|
|
1143
|
+
state: _QualificationState,
|
|
1144
|
+
*,
|
|
1145
|
+
tool_call: Any,
|
|
1146
|
+
output: str,
|
|
1147
|
+
) -> None:
|
|
1148
|
+
state.messages.extend(
|
|
1149
|
+
[
|
|
1150
|
+
{
|
|
1151
|
+
"role": "assistant",
|
|
1152
|
+
"content": None,
|
|
1153
|
+
"tool_calls": [tool_call.provider_value],
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"role": "tool",
|
|
1157
|
+
"tool_call_id": tool_call.call_id,
|
|
1158
|
+
"content": output,
|
|
1159
|
+
},
|
|
1160
|
+
]
|
|
1161
|
+
)
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
def _run_qualification_loop(
|
|
1165
|
+
client: DoubaoExecToolClient,
|
|
1166
|
+
state: _QualificationState,
|
|
1167
|
+
*,
|
|
1168
|
+
qualification_id: str,
|
|
1169
|
+
) -> dict[str, Any]:
|
|
1170
|
+
for _ in range(REPLAN_SEMANTIC_ACTION_BEHAVIOR_MAX_CALLS):
|
|
1171
|
+
tool_call = client.next_tool_call(state.messages)
|
|
1172
|
+
if tool_call is None:
|
|
1173
|
+
return _qualification_receipt(
|
|
1174
|
+
state,
|
|
1175
|
+
qualification_id=qualification_id,
|
|
1176
|
+
actor_ref=client.actor_ref,
|
|
1177
|
+
passed=False,
|
|
1178
|
+
failure_code="model_returned_without_semantic_action",
|
|
1179
|
+
)
|
|
1180
|
+
kind = _behavior_command_kind(tool_call.command, state)
|
|
1181
|
+
try:
|
|
1182
|
+
output, dispatched_kind, completed = _dispatch_behavior_command(
|
|
1183
|
+
tool_call.command,
|
|
1184
|
+
state,
|
|
1185
|
+
)
|
|
1186
|
+
kind = dispatched_kind
|
|
1187
|
+
except (RuntimeError, ValueError, json.JSONDecodeError) as exc:
|
|
1188
|
+
_record_tool_step(state, kind=kind, command=tool_call.command)
|
|
1189
|
+
return _qualification_receipt(
|
|
1190
|
+
state,
|
|
1191
|
+
qualification_id=qualification_id,
|
|
1192
|
+
actor_ref=client.actor_ref,
|
|
1193
|
+
passed=False,
|
|
1194
|
+
failure_code=_behavior_failure_code(exc, kind=kind),
|
|
1195
|
+
)
|
|
1196
|
+
_record_tool_step(state, kind=kind, command=tool_call.command)
|
|
1197
|
+
if completed:
|
|
1198
|
+
return _qualification_receipt(
|
|
1199
|
+
state,
|
|
1200
|
+
qualification_id=qualification_id,
|
|
1201
|
+
actor_ref=client.actor_ref,
|
|
1202
|
+
passed=True,
|
|
1203
|
+
failure_code=None,
|
|
1204
|
+
)
|
|
1205
|
+
_append_tool_response(state, tool_call=tool_call, output=output)
|
|
1206
|
+
return _qualification_receipt(
|
|
1207
|
+
state,
|
|
1208
|
+
qualification_id=qualification_id,
|
|
1209
|
+
actor_ref=client.actor_ref,
|
|
1210
|
+
passed=False,
|
|
1211
|
+
failure_code="tool_call_budget_exhausted",
|
|
1212
|
+
)
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
class DoubaoReplanSemanticActionBehaviorActor:
|
|
1216
|
+
"""Qualify a model-selected semantic replan through the real CLI boundary."""
|
|
1217
|
+
|
|
1218
|
+
def __init__(
|
|
1219
|
+
self,
|
|
1220
|
+
*,
|
|
1221
|
+
api_key: str,
|
|
1222
|
+
model: str = DOUBAO_2_1_PRO_MODEL,
|
|
1223
|
+
timeout_seconds: float = 90.0,
|
|
1224
|
+
transport: DoubaoActorTransport = _direct_ark_transport,
|
|
1225
|
+
) -> None:
|
|
1226
|
+
self._client = DoubaoExecToolClient(
|
|
1227
|
+
api_key=api_key,
|
|
1228
|
+
model=model,
|
|
1229
|
+
timeout_seconds=timeout_seconds,
|
|
1230
|
+
transport=transport,
|
|
1231
|
+
)
|
|
1232
|
+
|
|
1233
|
+
@classmethod
|
|
1234
|
+
def from_environment(
|
|
1235
|
+
cls,
|
|
1236
|
+
*,
|
|
1237
|
+
environ: Mapping[str, str] | None = None,
|
|
1238
|
+
transport: DoubaoActorTransport = _direct_ark_transport,
|
|
1239
|
+
timeout_seconds: float = 90.0,
|
|
1240
|
+
) -> DoubaoReplanSemanticActionBehaviorActor:
|
|
1241
|
+
values = os.environ if environ is None else environ
|
|
1242
|
+
api_key = values.get(ARK_API_KEY_ENV, "")
|
|
1243
|
+
if not api_key.strip():
|
|
1244
|
+
raise RuntimeError(
|
|
1245
|
+
"ARK_API_KEY is not injected; live Doubao qualification is unavailable"
|
|
1246
|
+
)
|
|
1247
|
+
return cls(
|
|
1248
|
+
api_key=api_key,
|
|
1249
|
+
model=values.get(DOUBAO_MODEL_ENV, DOUBAO_2_1_PRO_MODEL),
|
|
1250
|
+
timeout_seconds=timeout_seconds,
|
|
1251
|
+
transport=transport,
|
|
1252
|
+
)
|
|
1253
|
+
|
|
1254
|
+
def qualify(
|
|
1255
|
+
self,
|
|
1256
|
+
*,
|
|
1257
|
+
qualification_id: str,
|
|
1258
|
+
fixture_root: Path,
|
|
1259
|
+
composition_frontier: bool = False,
|
|
1260
|
+
exhausted_frontier: bool = False,
|
|
1261
|
+
) -> dict[str, Any]:
|
|
1262
|
+
fixture = _build_fixture(
|
|
1263
|
+
fixture_root,
|
|
1264
|
+
composition_frontier=composition_frontier,
|
|
1265
|
+
exhausted_frontier=exhausted_frontier,
|
|
1266
|
+
)
|
|
1267
|
+
messages: list[dict[str, Any]] = [
|
|
1268
|
+
{
|
|
1269
|
+
"role": "system",
|
|
1270
|
+
"content": (
|
|
1271
|
+
"You are Codex running one LoopX heartbeat against a hermetic "
|
|
1272
|
+
"project. Follow the heartbeat task and use the shell tool. "
|
|
1273
|
+
"The shell working directory is the connected goal project "
|
|
1274
|
+
"root; relative paths in the active-state action resolve there. "
|
|
1275
|
+
"Treat the quota packet as the control-plane authority. Complete "
|
|
1276
|
+
"one bounded in-scope action and persist its result through the "
|
|
1277
|
+
"real LoopX CLI. After quota, `cat` only the exact path named "
|
|
1278
|
+
"in active_state_next_action, then `cat` only the source_ref "
|
|
1279
|
+
"returned by that target, and fill and execute "
|
|
1280
|
+
"interaction_contract.cli_channel.next_cli_actions[0]. Do not "
|
|
1281
|
+
"use ls, find, rg, or paged help. If refresh-state syntax is "
|
|
1282
|
+
"still unclear, run exactly `loopx refresh-state --help` once, "
|
|
1283
|
+
"then execute the projected typed writeback. This scenario has "
|
|
1284
|
+
"a direct refresh-state outcome: execute exactly one loopx "
|
|
1285
|
+
"refresh-state command; do not create a Todo, chain commands, "
|
|
1286
|
+
"or combine actions."
|
|
1287
|
+
),
|
|
1288
|
+
},
|
|
1289
|
+
{"role": "user", "content": fixture.task_body},
|
|
1290
|
+
]
|
|
1291
|
+
digest = sha256(qualification_id.encode()).hexdigest()[:16]
|
|
1292
|
+
state = _QualificationState(
|
|
1293
|
+
fixture=fixture,
|
|
1294
|
+
messages=messages,
|
|
1295
|
+
steps=[],
|
|
1296
|
+
turn_instance_id=f"qualification-{digest}",
|
|
1297
|
+
)
|
|
1298
|
+
return _run_qualification_loop(
|
|
1299
|
+
self._client,
|
|
1300
|
+
state,
|
|
1301
|
+
qualification_id=qualification_id,
|
|
1302
|
+
)
|