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,1340 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from datetime import datetime
|
|
4
|
+
from typing import Any
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
SNAPSHOT_SCHEMA_VERSION = "issue_fix_repository_reporting_snapshot_v0"
|
|
8
|
+
SUPPLEMENT_SCHEMA_VERSION = "issue_fix_metrics_supplement_v0"
|
|
9
|
+
PROJECTION_SCHEMA_VERSION = "issue_fix_metrics_projection_v0"
|
|
10
|
+
|
|
11
|
+
_FLOW_FIELDS = (
|
|
12
|
+
"issues_opened",
|
|
13
|
+
"issues_closed",
|
|
14
|
+
"pull_requests_opened",
|
|
15
|
+
"pull_requests_closed",
|
|
16
|
+
"pull_requests_merged",
|
|
17
|
+
)
|
|
18
|
+
_SUPPLEMENT_FIELDS = (
|
|
19
|
+
"human_interventions",
|
|
20
|
+
"automatic_terminal_closeouts",
|
|
21
|
+
"duplicate_external_writes",
|
|
22
|
+
"loopx_capability_gaps_found",
|
|
23
|
+
"loopx_capability_gaps_fixed",
|
|
24
|
+
"loopx_capability_gaps_real_callsite_verified",
|
|
25
|
+
"memory_retrievals",
|
|
26
|
+
"memory_verified_decision_influence",
|
|
27
|
+
"memory_verified_patch_influence",
|
|
28
|
+
"memory_stale_results",
|
|
29
|
+
"useful_public_comments",
|
|
30
|
+
"triage_outcomes",
|
|
31
|
+
"issues_screened",
|
|
32
|
+
"issue_close_recommendations",
|
|
33
|
+
"issue_close_requests_published",
|
|
34
|
+
"issue_closes_observed",
|
|
35
|
+
"issue_reopens_observed",
|
|
36
|
+
"first_push_ci_passed",
|
|
37
|
+
"first_push_ci_total",
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def _nonnegative_int(value: Any, *, field: str) -> int:
|
|
42
|
+
if isinstance(value, bool) or not isinstance(value, int) or value < 0:
|
|
43
|
+
raise ValueError(f"{field} must be a non-negative integer")
|
|
44
|
+
return value
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _timestamp(value: Any, *, field: str) -> str:
|
|
48
|
+
text = str(value or "").strip()
|
|
49
|
+
if not text:
|
|
50
|
+
raise ValueError(f"{field} is required")
|
|
51
|
+
try:
|
|
52
|
+
parsed = datetime.fromisoformat(text.replace("Z", "+00:00"))
|
|
53
|
+
except ValueError:
|
|
54
|
+
raise ValueError(f"{field} must be an ISO-8601 timestamp") from None
|
|
55
|
+
if parsed.utcoffset() is None:
|
|
56
|
+
raise ValueError(f"{field} must include a timezone")
|
|
57
|
+
return text
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
def _optional_https_url(value: Any, *, field: str) -> str | None:
|
|
61
|
+
text = str(value or "").strip()
|
|
62
|
+
if not text:
|
|
63
|
+
return None
|
|
64
|
+
if not text.startswith("https://") or any(char.isspace() for char in text):
|
|
65
|
+
raise ValueError(f"{field} must be an https URL")
|
|
66
|
+
return text
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
def _snapshot(
|
|
70
|
+
value: dict[str, Any],
|
|
71
|
+
*,
|
|
72
|
+
expected_repo: str,
|
|
73
|
+
role: str,
|
|
74
|
+
) -> dict[str, Any]:
|
|
75
|
+
if value.get("schema_version") != SNAPSHOT_SCHEMA_VERSION:
|
|
76
|
+
raise ValueError(f"{role} snapshot must use {SNAPSHOT_SCHEMA_VERSION}")
|
|
77
|
+
repo = str(value.get("repo") or "").strip()
|
|
78
|
+
if repo != expected_repo:
|
|
79
|
+
raise ValueError(f"{role} snapshot repo must match --repo")
|
|
80
|
+
snapshot = {
|
|
81
|
+
"schema_version": SNAPSHOT_SCHEMA_VERSION,
|
|
82
|
+
"repo": repo,
|
|
83
|
+
"captured_at": _timestamp(
|
|
84
|
+
value.get("captured_at"), field=f"{role}.captured_at"
|
|
85
|
+
),
|
|
86
|
+
"open_issues": _nonnegative_int(
|
|
87
|
+
value.get("open_issues"), field=f"{role}.open_issues"
|
|
88
|
+
),
|
|
89
|
+
"open_pull_requests": _nonnegative_int(
|
|
90
|
+
value.get("open_pull_requests"),
|
|
91
|
+
field=f"{role}.open_pull_requests",
|
|
92
|
+
),
|
|
93
|
+
}
|
|
94
|
+
source_url = _optional_https_url(
|
|
95
|
+
value.get("source_url"), field=f"{role}.source_url"
|
|
96
|
+
)
|
|
97
|
+
if source_url:
|
|
98
|
+
snapshot["source_url"] = source_url
|
|
99
|
+
health = value.get("health")
|
|
100
|
+
if health is not None:
|
|
101
|
+
if not isinstance(health, dict):
|
|
102
|
+
raise ValueError(f"{role}.health must be an object")
|
|
103
|
+
snapshot["health"] = {
|
|
104
|
+
str(key): _nonnegative_int(item, field=f"{role}.health.{key}")
|
|
105
|
+
for key, item in sorted(health.items())
|
|
106
|
+
if str(key).strip()
|
|
107
|
+
}
|
|
108
|
+
flow = value.get("flow_since_baseline")
|
|
109
|
+
if role == "current":
|
|
110
|
+
if not isinstance(flow, dict):
|
|
111
|
+
raise ValueError("current.flow_since_baseline must be an object")
|
|
112
|
+
snapshot["flow_since_baseline"] = {
|
|
113
|
+
field: _nonnegative_int(
|
|
114
|
+
flow.get(field), field=f"current.flow_since_baseline.{field}"
|
|
115
|
+
)
|
|
116
|
+
for field in _FLOW_FIELDS
|
|
117
|
+
}
|
|
118
|
+
elif flow:
|
|
119
|
+
raise ValueError("baseline snapshot must not include flow_since_baseline")
|
|
120
|
+
issue_states = value.get("issue_states")
|
|
121
|
+
if issue_states is not None:
|
|
122
|
+
if not isinstance(issue_states, list):
|
|
123
|
+
raise ValueError(f"{role}.issue_states must be a list")
|
|
124
|
+
compact_states: list[dict[str, Any]] = []
|
|
125
|
+
for index, item in enumerate(issue_states):
|
|
126
|
+
if not isinstance(item, dict):
|
|
127
|
+
raise ValueError(f"{role}.issue_states[{index}] must be an object")
|
|
128
|
+
issue_ref = str(item.get("issue_ref") or "").strip()
|
|
129
|
+
state = str(item.get("state") or "").strip().upper()
|
|
130
|
+
if not issue_ref or state not in {"OPEN", "CLOSED"}:
|
|
131
|
+
raise ValueError(
|
|
132
|
+
f"{role}.issue_states[{index}] requires issue_ref and OPEN/CLOSED"
|
|
133
|
+
)
|
|
134
|
+
compact = {"issue_ref": issue_ref, "state": state}
|
|
135
|
+
if item.get("closed_at"):
|
|
136
|
+
compact["closed_at"] = _timestamp(
|
|
137
|
+
item.get("closed_at"),
|
|
138
|
+
field=f"{role}.issue_states[{index}].closed_at",
|
|
139
|
+
)
|
|
140
|
+
compact_states.append(compact)
|
|
141
|
+
snapshot["issue_states"] = compact_states
|
|
142
|
+
pull_request_states = value.get("pull_request_states")
|
|
143
|
+
if pull_request_states is not None:
|
|
144
|
+
if not isinstance(pull_request_states, list):
|
|
145
|
+
raise ValueError(f"{role}.pull_request_states must be a list")
|
|
146
|
+
compact_pr_states: list[dict[str, Any]] = []
|
|
147
|
+
for index, item in enumerate(pull_request_states):
|
|
148
|
+
if not isinstance(item, dict):
|
|
149
|
+
raise ValueError(
|
|
150
|
+
f"{role}.pull_request_states[{index}] must be an object"
|
|
151
|
+
)
|
|
152
|
+
pr_ref = str(item.get("pr_ref") or "").strip()
|
|
153
|
+
state = str(item.get("state") or "").strip().upper()
|
|
154
|
+
ci = str(item.get("ci") or "UNKNOWN").strip().upper()
|
|
155
|
+
review = str(item.get("review") or "UNKNOWN").strip().upper()
|
|
156
|
+
if not pr_ref or state not in {"OPEN", "MERGED", "CLOSED"}:
|
|
157
|
+
raise ValueError(
|
|
158
|
+
f"{role}.pull_request_states[{index}] requires pr_ref and "
|
|
159
|
+
"OPEN/MERGED/CLOSED"
|
|
160
|
+
)
|
|
161
|
+
if ci not in {"PASSING", "FAILING", "PENDING", "UNKNOWN"}:
|
|
162
|
+
raise ValueError(f"{role}.pull_request_states[{index}].ci is invalid")
|
|
163
|
+
if review not in {
|
|
164
|
+
"APPROVED",
|
|
165
|
+
"CHANGES_REQUESTED",
|
|
166
|
+
"REVIEW_REQUIRED",
|
|
167
|
+
"UNKNOWN",
|
|
168
|
+
}:
|
|
169
|
+
raise ValueError(
|
|
170
|
+
f"{role}.pull_request_states[{index}].review is invalid"
|
|
171
|
+
)
|
|
172
|
+
compact_pr = {
|
|
173
|
+
"pr_ref": pr_ref,
|
|
174
|
+
"state": state,
|
|
175
|
+
"ci": ci,
|
|
176
|
+
"review": review,
|
|
177
|
+
}
|
|
178
|
+
if item.get("created_at"):
|
|
179
|
+
compact_pr["created_at"] = _timestamp(
|
|
180
|
+
item.get("created_at"),
|
|
181
|
+
field=f"{role}.pull_request_states[{index}].created_at",
|
|
182
|
+
)
|
|
183
|
+
if item.get("updated_at"):
|
|
184
|
+
compact_pr["updated_at"] = _timestamp(
|
|
185
|
+
item.get("updated_at"),
|
|
186
|
+
field=f"{role}.pull_request_states[{index}].updated_at",
|
|
187
|
+
)
|
|
188
|
+
compact_pr_states.append(compact_pr)
|
|
189
|
+
snapshot["pull_request_states"] = compact_pr_states
|
|
190
|
+
return snapshot
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
def _supplement(value: dict[str, Any] | None) -> dict[str, int | None]:
|
|
194
|
+
if value is None:
|
|
195
|
+
return {field: None for field in _SUPPLEMENT_FIELDS}
|
|
196
|
+
if value.get("schema_version") != SUPPLEMENT_SCHEMA_VERSION:
|
|
197
|
+
raise ValueError(f"supplement must use {SUPPLEMENT_SCHEMA_VERSION}")
|
|
198
|
+
counts = value.get("counts")
|
|
199
|
+
if not isinstance(counts, dict):
|
|
200
|
+
raise ValueError("supplement.counts must be an object")
|
|
201
|
+
return {
|
|
202
|
+
field: (
|
|
203
|
+
_nonnegative_int(counts[field], field=f"supplement.counts.{field}")
|
|
204
|
+
if field in counts
|
|
205
|
+
else None
|
|
206
|
+
)
|
|
207
|
+
for field in _SUPPLEMENT_FIELDS
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
def _first_push_ci_coverage(value: dict[str, Any] | None) -> dict[str, Any] | None:
|
|
212
|
+
if not isinstance(value, dict):
|
|
213
|
+
return None
|
|
214
|
+
coverage = value.get("coverage")
|
|
215
|
+
first_push = coverage.get("first_push_ci") if isinstance(coverage, dict) else None
|
|
216
|
+
if not isinstance(first_push, dict):
|
|
217
|
+
return None
|
|
218
|
+
eligible = _nonnegative_int(
|
|
219
|
+
first_push.get("eligible_prs"),
|
|
220
|
+
field="supplement.coverage.first_push_ci.eligible_prs",
|
|
221
|
+
)
|
|
222
|
+
observed = _nonnegative_int(
|
|
223
|
+
first_push.get("observed_prs"),
|
|
224
|
+
field="supplement.coverage.first_push_ci.observed_prs",
|
|
225
|
+
)
|
|
226
|
+
if observed > eligible:
|
|
227
|
+
raise ValueError(
|
|
228
|
+
"supplement.coverage.first_push_ci observed_prs must not exceed eligible_prs"
|
|
229
|
+
)
|
|
230
|
+
complete = first_push.get("complete") is True
|
|
231
|
+
if complete != (eligible > 0 and observed == eligible):
|
|
232
|
+
raise ValueError(
|
|
233
|
+
"supplement.coverage.first_push_ci complete must match observed coverage"
|
|
234
|
+
)
|
|
235
|
+
return {
|
|
236
|
+
"eligible_prs": eligible,
|
|
237
|
+
"observed_prs": observed,
|
|
238
|
+
"complete": complete,
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
def _issue_close_activity(
|
|
243
|
+
value: dict[str, Any] | None,
|
|
244
|
+
) -> tuple[list[dict[str, Any]], dict[str, Any] | None]:
|
|
245
|
+
if not isinstance(value, dict):
|
|
246
|
+
return [], None
|
|
247
|
+
raw_activity = value.get("issue_close_activity")
|
|
248
|
+
coverage = value.get("coverage")
|
|
249
|
+
raw_coverage = (
|
|
250
|
+
coverage.get("issue_close_activity") if isinstance(coverage, dict) else None
|
|
251
|
+
)
|
|
252
|
+
compact_coverage = None
|
|
253
|
+
if isinstance(raw_coverage, dict):
|
|
254
|
+
observed_issues = _nonnegative_int(
|
|
255
|
+
raw_coverage.get("observed_issues"),
|
|
256
|
+
field="supplement.coverage.issue_close_activity.observed_issues",
|
|
257
|
+
)
|
|
258
|
+
compact_coverage = {
|
|
259
|
+
"source": str(raw_coverage.get("source") or "not_supplied").strip(),
|
|
260
|
+
"observed_issues": observed_issues,
|
|
261
|
+
"complete": raw_coverage.get("complete") is True,
|
|
262
|
+
}
|
|
263
|
+
if raw_activity is None:
|
|
264
|
+
return [], compact_coverage
|
|
265
|
+
if not isinstance(raw_activity, list):
|
|
266
|
+
raise ValueError("supplement.issue_close_activity must be a list")
|
|
267
|
+
|
|
268
|
+
known_types = {
|
|
269
|
+
"issue_close_recommended",
|
|
270
|
+
"issue_close_request_published",
|
|
271
|
+
"issue_closed_observed",
|
|
272
|
+
"issue_reopened_observed",
|
|
273
|
+
}
|
|
274
|
+
seen_issue_refs: set[str] = set()
|
|
275
|
+
seen_event_ids: set[str] = set()
|
|
276
|
+
activity: list[dict[str, Any]] = []
|
|
277
|
+
for row_index, row in enumerate(raw_activity):
|
|
278
|
+
if not isinstance(row, dict) or row.get("schema_version") != (
|
|
279
|
+
"issue_fix_issue_close_activity_v0"
|
|
280
|
+
):
|
|
281
|
+
raise ValueError(
|
|
282
|
+
f"supplement.issue_close_activity[{row_index}] uses an unsupported schema"
|
|
283
|
+
)
|
|
284
|
+
issue_ref = str(row.get("issue_ref") or "").strip()
|
|
285
|
+
events = row.get("events")
|
|
286
|
+
if (
|
|
287
|
+
not issue_ref
|
|
288
|
+
or issue_ref in seen_issue_refs
|
|
289
|
+
or not isinstance(events, list)
|
|
290
|
+
):
|
|
291
|
+
raise ValueError(
|
|
292
|
+
"supplement issue close activity requires unique issue_ref values and events"
|
|
293
|
+
)
|
|
294
|
+
seen_issue_refs.add(issue_ref)
|
|
295
|
+
compact_events: list[dict[str, str]] = []
|
|
296
|
+
for event_index, event in enumerate(events):
|
|
297
|
+
if not isinstance(event, dict):
|
|
298
|
+
raise ValueError(
|
|
299
|
+
f"issue close activity event {row_index}:{event_index} must be an object"
|
|
300
|
+
)
|
|
301
|
+
event_id = str(event.get("event_id") or "").strip()
|
|
302
|
+
event_type = str(event.get("event_type") or "").strip()
|
|
303
|
+
occurred_at = _timestamp(
|
|
304
|
+
event.get("occurred_at"),
|
|
305
|
+
field=f"issue_close_activity.{issue_ref}.{event_index}.occurred_at",
|
|
306
|
+
)
|
|
307
|
+
if (
|
|
308
|
+
not event_id
|
|
309
|
+
or event_id in seen_event_ids
|
|
310
|
+
or event_type not in known_types
|
|
311
|
+
):
|
|
312
|
+
raise ValueError(
|
|
313
|
+
"issue close activity requires unique event_id values and known event types"
|
|
314
|
+
)
|
|
315
|
+
seen_event_ids.add(event_id)
|
|
316
|
+
evidence_url = _optional_https_url(
|
|
317
|
+
event.get("evidence_url"),
|
|
318
|
+
field=f"issue_close_activity.{issue_ref}.{event_index}.evidence_url",
|
|
319
|
+
)
|
|
320
|
+
if event_type != "issue_close_recommended" and evidence_url is None:
|
|
321
|
+
raise ValueError(f"{event_type} requires an https evidence_url")
|
|
322
|
+
compact_event = {
|
|
323
|
+
"event_id": event_id,
|
|
324
|
+
"event_type": event_type,
|
|
325
|
+
"occurred_at": occurred_at,
|
|
326
|
+
}
|
|
327
|
+
if evidence_url:
|
|
328
|
+
compact_event["evidence_url"] = evidence_url
|
|
329
|
+
compact_events.append(compact_event)
|
|
330
|
+
activity.append(
|
|
331
|
+
{
|
|
332
|
+
"schema_version": "issue_fix_issue_close_activity_v0",
|
|
333
|
+
"issue_ref": issue_ref,
|
|
334
|
+
"events": sorted(
|
|
335
|
+
compact_events,
|
|
336
|
+
key=lambda item: (item["occurred_at"], item["event_id"]),
|
|
337
|
+
),
|
|
338
|
+
}
|
|
339
|
+
)
|
|
340
|
+
if compact_coverage and compact_coverage["observed_issues"] != len(activity):
|
|
341
|
+
raise ValueError(
|
|
342
|
+
"supplement issue close activity coverage must match activity rows"
|
|
343
|
+
)
|
|
344
|
+
return sorted(activity, key=lambda item: item["issue_ref"]), compact_coverage
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
def _issue_close_output(
|
|
348
|
+
activity: list[dict[str, Any]],
|
|
349
|
+
*,
|
|
350
|
+
current_issue_states: dict[str, dict[str, Any]],
|
|
351
|
+
) -> tuple[dict[str, int], list[dict[str, Any]]]:
|
|
352
|
+
inventory: list[dict[str, Any]] = []
|
|
353
|
+
for row in activity:
|
|
354
|
+
issue_ref = row["issue_ref"]
|
|
355
|
+
events = list(row["events"])
|
|
356
|
+
recommendations = [
|
|
357
|
+
event
|
|
358
|
+
for event in events
|
|
359
|
+
if event["event_type"] == "issue_close_recommended"
|
|
360
|
+
]
|
|
361
|
+
requests = [
|
|
362
|
+
event
|
|
363
|
+
for event in events
|
|
364
|
+
if event["event_type"] == "issue_close_request_published"
|
|
365
|
+
]
|
|
366
|
+
close_events = [
|
|
367
|
+
event for event in events if event["event_type"] == "issue_closed_observed"
|
|
368
|
+
]
|
|
369
|
+
reopen_events = [
|
|
370
|
+
event
|
|
371
|
+
for event in events
|
|
372
|
+
if event["event_type"] == "issue_reopened_observed"
|
|
373
|
+
]
|
|
374
|
+
attempt_times = [
|
|
375
|
+
datetime.fromisoformat(event["occurred_at"].replace("Z", "+00:00"))
|
|
376
|
+
for event in [*recommendations, *requests]
|
|
377
|
+
]
|
|
378
|
+
request_times = [
|
|
379
|
+
datetime.fromisoformat(event["occurred_at"].replace("Z", "+00:00"))
|
|
380
|
+
for event in requests
|
|
381
|
+
]
|
|
382
|
+
close_candidates = [
|
|
383
|
+
(
|
|
384
|
+
datetime.fromisoformat(event["occurred_at"].replace("Z", "+00:00")),
|
|
385
|
+
event["occurred_at"],
|
|
386
|
+
"event_evidence",
|
|
387
|
+
)
|
|
388
|
+
for event in close_events
|
|
389
|
+
]
|
|
390
|
+
current_state = current_issue_states.get(issue_ref) or {}
|
|
391
|
+
if current_state.get("state") == "CLOSED" and current_state.get("closed_at"):
|
|
392
|
+
closed_at = _timestamp(
|
|
393
|
+
current_state["closed_at"],
|
|
394
|
+
field=f"current.issue_states.{issue_ref}.closed_at",
|
|
395
|
+
)
|
|
396
|
+
close_candidates.append(
|
|
397
|
+
(
|
|
398
|
+
datetime.fromisoformat(closed_at.replace("Z", "+00:00")),
|
|
399
|
+
closed_at,
|
|
400
|
+
"repository_current_snapshot",
|
|
401
|
+
)
|
|
402
|
+
)
|
|
403
|
+
first_attempt = min(attempt_times) if attempt_times else None
|
|
404
|
+
eligible_closes = sorted(
|
|
405
|
+
candidate
|
|
406
|
+
for candidate in close_candidates
|
|
407
|
+
if first_attempt is not None and candidate[0] >= first_attempt
|
|
408
|
+
)
|
|
409
|
+
actual_close = eligible_closes[0] if eligible_closes else None
|
|
410
|
+
latest_close = eligible_closes[-1] if eligible_closes else None
|
|
411
|
+
attributed = bool(
|
|
412
|
+
actual_close
|
|
413
|
+
and any(request_time <= actual_close[0] for request_time in request_times)
|
|
414
|
+
)
|
|
415
|
+
reopened = bool(
|
|
416
|
+
attributed
|
|
417
|
+
and any(
|
|
418
|
+
datetime.fromisoformat(event["occurred_at"].replace("Z", "+00:00"))
|
|
419
|
+
> latest_close[0]
|
|
420
|
+
for event in reopen_events
|
|
421
|
+
)
|
|
422
|
+
)
|
|
423
|
+
inventory.append(
|
|
424
|
+
{
|
|
425
|
+
"schema_version": "issue_fix_issue_close_output_v0",
|
|
426
|
+
"issue_ref": issue_ref,
|
|
427
|
+
"close_recommended": bool(recommendations),
|
|
428
|
+
"close_request_published": bool(requests),
|
|
429
|
+
"actual_close_observed": actual_close is not None,
|
|
430
|
+
"actual_close_at": actual_close[1] if actual_close else None,
|
|
431
|
+
"actual_close_source": actual_close[2] if actual_close else None,
|
|
432
|
+
"attributed_close_conversion": attributed,
|
|
433
|
+
"reopened_after_attributed_close": reopened,
|
|
434
|
+
"current_state": current_state.get("state") or "UNKNOWN",
|
|
435
|
+
"evidence_urls": sorted(
|
|
436
|
+
{
|
|
437
|
+
event["evidence_url"]
|
|
438
|
+
for event in events
|
|
439
|
+
if event.get("evidence_url")
|
|
440
|
+
}
|
|
441
|
+
),
|
|
442
|
+
}
|
|
443
|
+
)
|
|
444
|
+
counts = {
|
|
445
|
+
"issue_close_recommendations": sum(
|
|
446
|
+
item["close_recommended"] for item in inventory
|
|
447
|
+
),
|
|
448
|
+
"issue_close_requests_published": sum(
|
|
449
|
+
item["close_request_published"] for item in inventory
|
|
450
|
+
),
|
|
451
|
+
"issue_closes_observed": sum(
|
|
452
|
+
item["actual_close_observed"] for item in inventory
|
|
453
|
+
),
|
|
454
|
+
"issue_close_conversions": sum(
|
|
455
|
+
item["attributed_close_conversion"] for item in inventory
|
|
456
|
+
),
|
|
457
|
+
"issue_close_reversals": sum(
|
|
458
|
+
item["reopened_after_attributed_close"] for item in inventory
|
|
459
|
+
),
|
|
460
|
+
}
|
|
461
|
+
counts["net_issue_close_conversions"] = (
|
|
462
|
+
counts["issue_close_conversions"] - counts["issue_close_reversals"]
|
|
463
|
+
)
|
|
464
|
+
return counts, inventory
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
def _latest_rows(
|
|
468
|
+
rows: list[dict[str, Any]],
|
|
469
|
+
*,
|
|
470
|
+
repo: str,
|
|
471
|
+
ref_field: str,
|
|
472
|
+
) -> list[dict[str, Any]]:
|
|
473
|
+
latest: dict[str, dict[str, Any]] = {}
|
|
474
|
+
for row in rows:
|
|
475
|
+
observation = row.get("observation") if isinstance(row, dict) else None
|
|
476
|
+
if not isinstance(observation, dict):
|
|
477
|
+
continue
|
|
478
|
+
if str(observation.get("repo") or "").strip() != repo:
|
|
479
|
+
continue
|
|
480
|
+
reference = str(observation.get(ref_field) or "").strip()
|
|
481
|
+
if reference:
|
|
482
|
+
latest[reference] = row
|
|
483
|
+
return [latest[key] for key in sorted(latest)]
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
def _row_time(row: dict[str, Any], *, lifecycle: bool) -> datetime | None:
|
|
487
|
+
candidates: list[datetime] = []
|
|
488
|
+
observation = row.get("observation")
|
|
489
|
+
if lifecycle and isinstance(observation, dict):
|
|
490
|
+
for field in ("merged_at", "closed_at", "updated_at"):
|
|
491
|
+
if not observation.get(field):
|
|
492
|
+
continue
|
|
493
|
+
candidates.append(
|
|
494
|
+
datetime.fromisoformat(
|
|
495
|
+
_timestamp(
|
|
496
|
+
observation[field],
|
|
497
|
+
field=f"domain_state.observation.{field}",
|
|
498
|
+
).replace("Z", "+00:00")
|
|
499
|
+
)
|
|
500
|
+
)
|
|
501
|
+
if row.get("generated_at"):
|
|
502
|
+
candidates.append(
|
|
503
|
+
datetime.fromisoformat(
|
|
504
|
+
_timestamp(
|
|
505
|
+
row["generated_at"], field="domain_state.generated_at"
|
|
506
|
+
).replace("Z", "+00:00")
|
|
507
|
+
)
|
|
508
|
+
)
|
|
509
|
+
return max(candidates) if candidates else None
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
def _lifecycle_attribution_time(
|
|
513
|
+
row: dict[str, Any], current_pr_states: dict[str, dict[str, Any]]
|
|
514
|
+
) -> datetime | None:
|
|
515
|
+
observation = row.get("observation")
|
|
516
|
+
pr_ref = (
|
|
517
|
+
str(observation.get("pr_ref") or "").strip()
|
|
518
|
+
if isinstance(observation, dict)
|
|
519
|
+
else ""
|
|
520
|
+
)
|
|
521
|
+
created_at = current_pr_states.get(pr_ref, {}).get("created_at")
|
|
522
|
+
if created_at:
|
|
523
|
+
return datetime.fromisoformat(
|
|
524
|
+
_timestamp(
|
|
525
|
+
created_at, field=f"current.pull_request_states.{pr_ref}.created_at"
|
|
526
|
+
).replace("Z", "+00:00")
|
|
527
|
+
)
|
|
528
|
+
return _row_time(row, lifecycle=True)
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
def _ratio(numerator: int | None, denominator: int | None) -> dict[str, Any]:
|
|
532
|
+
if numerator is None or denominator is None or denominator == 0:
|
|
533
|
+
return {
|
|
534
|
+
"numerator": numerator,
|
|
535
|
+
"denominator": denominator,
|
|
536
|
+
"value": None,
|
|
537
|
+
"status": "not_available",
|
|
538
|
+
}
|
|
539
|
+
return {
|
|
540
|
+
"numerator": numerator,
|
|
541
|
+
"denominator": denominator,
|
|
542
|
+
"value": round(numerator / denominator, 4),
|
|
543
|
+
"status": "available",
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
def _impact_row(
|
|
548
|
+
*,
|
|
549
|
+
metric_id: str,
|
|
550
|
+
metric_group: str,
|
|
551
|
+
metric: str,
|
|
552
|
+
baseline: int | float | None,
|
|
553
|
+
current: int | float | None,
|
|
554
|
+
delta: int | float | None,
|
|
555
|
+
updated_at: str,
|
|
556
|
+
source_url: str | None,
|
|
557
|
+
numerator: int | None = None,
|
|
558
|
+
denominator: int | None = None,
|
|
559
|
+
status: str = "available",
|
|
560
|
+
missing_reason: str | None = None,
|
|
561
|
+
) -> dict[str, Any]:
|
|
562
|
+
return {
|
|
563
|
+
"schema_version": "issue_fix_impact_metric_row_v0",
|
|
564
|
+
"metric_id": metric_id,
|
|
565
|
+
"metric_group": metric_group,
|
|
566
|
+
"metric": metric,
|
|
567
|
+
"baseline": baseline,
|
|
568
|
+
"current": current,
|
|
569
|
+
"delta": delta,
|
|
570
|
+
"numerator": numerator,
|
|
571
|
+
"denominator": denominator,
|
|
572
|
+
"status": status,
|
|
573
|
+
"source_url": source_url,
|
|
574
|
+
"updated_at": updated_at,
|
|
575
|
+
"missing_reason": missing_reason,
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
def build_issue_fix_metrics_projection(
|
|
580
|
+
*,
|
|
581
|
+
goal_id: str,
|
|
582
|
+
repo: str,
|
|
583
|
+
baseline_snapshot: dict[str, Any],
|
|
584
|
+
current_snapshot: dict[str, Any],
|
|
585
|
+
feasibility_rows: list[dict[str, Any]],
|
|
586
|
+
pr_lifecycle_rows: list[dict[str, Any]],
|
|
587
|
+
supplement_input: dict[str, Any] | None = None,
|
|
588
|
+
generated_at: str,
|
|
589
|
+
) -> dict[str, Any]:
|
|
590
|
+
goal_id = str(goal_id or "").strip()
|
|
591
|
+
repo = str(repo or "").strip()
|
|
592
|
+
if not goal_id or not repo:
|
|
593
|
+
raise ValueError("goal_id and repo are required")
|
|
594
|
+
baseline = _snapshot(baseline_snapshot, expected_repo=repo, role="baseline")
|
|
595
|
+
current = _snapshot(current_snapshot, expected_repo=repo, role="current")
|
|
596
|
+
baseline_time = datetime.fromisoformat(
|
|
597
|
+
baseline["captured_at"].replace("Z", "+00:00")
|
|
598
|
+
)
|
|
599
|
+
current_time = datetime.fromisoformat(current["captured_at"].replace("Z", "+00:00"))
|
|
600
|
+
if current_time < baseline_time:
|
|
601
|
+
raise ValueError("current snapshot must not predate baseline snapshot")
|
|
602
|
+
|
|
603
|
+
flow = current["flow_since_baseline"]
|
|
604
|
+
expected_open_issues = (
|
|
605
|
+
baseline["open_issues"] + flow["issues_opened"] - flow["issues_closed"]
|
|
606
|
+
)
|
|
607
|
+
expected_open_prs = (
|
|
608
|
+
baseline["open_pull_requests"]
|
|
609
|
+
+ flow["pull_requests_opened"]
|
|
610
|
+
- flow["pull_requests_closed"]
|
|
611
|
+
)
|
|
612
|
+
if expected_open_issues != current["open_issues"]:
|
|
613
|
+
raise ValueError(
|
|
614
|
+
"issue flow does not reconcile baseline and current open issues"
|
|
615
|
+
)
|
|
616
|
+
if expected_open_prs != current["open_pull_requests"]:
|
|
617
|
+
raise ValueError(
|
|
618
|
+
"pull request flow does not reconcile baseline and current open PRs"
|
|
619
|
+
)
|
|
620
|
+
if flow["pull_requests_merged"] > flow["pull_requests_closed"]:
|
|
621
|
+
raise ValueError("merged pull requests cannot exceed closed pull requests")
|
|
622
|
+
|
|
623
|
+
current_pr_states = {
|
|
624
|
+
item["pr_ref"]: item for item in current.get("pull_request_states", [])
|
|
625
|
+
}
|
|
626
|
+
all_lifecycles = _latest_rows(pr_lifecycle_rows, repo=repo, ref_field="pr_ref")
|
|
627
|
+
lifecycles = [
|
|
628
|
+
row
|
|
629
|
+
for row in all_lifecycles
|
|
630
|
+
if (_lifecycle_attribution_time(row, current_pr_states) or baseline_time)
|
|
631
|
+
>= baseline_time
|
|
632
|
+
]
|
|
633
|
+
period_issue_refs = {
|
|
634
|
+
str((row.get("observation") or {}).get("issue_ref") or "").strip()
|
|
635
|
+
for row in lifecycles
|
|
636
|
+
}
|
|
637
|
+
period_issue_refs.discard("")
|
|
638
|
+
all_feasibility = _latest_rows(feasibility_rows, repo=repo, ref_field="issue_ref")
|
|
639
|
+
feasibility = [
|
|
640
|
+
row
|
|
641
|
+
for row in all_feasibility
|
|
642
|
+
if str((row.get("observation") or {}).get("issue_ref") or "").strip()
|
|
643
|
+
in period_issue_refs
|
|
644
|
+
or (_row_time(row, lifecycle=False) or baseline_time) >= baseline_time
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
route_counts = {"fix_pr": 0, "comment_only": 0, "triage_only": 0}
|
|
648
|
+
selected_issue_refs: set[str] = set()
|
|
649
|
+
validation_passed = 0
|
|
650
|
+
validation_missing = 0
|
|
651
|
+
for row in feasibility:
|
|
652
|
+
observation = row.get("observation") or {}
|
|
653
|
+
decision = row.get("decision") or {}
|
|
654
|
+
issue_ref = str(observation.get("issue_ref") or "").strip()
|
|
655
|
+
if issue_ref:
|
|
656
|
+
selected_issue_refs.add(issue_ref)
|
|
657
|
+
route = str(decision.get("route") or "").strip()
|
|
658
|
+
if route in route_counts:
|
|
659
|
+
route_counts[route] += 1
|
|
660
|
+
delivery = row.get("delivery_evidence")
|
|
661
|
+
validation = (
|
|
662
|
+
str(delivery.get("validation_status") or "").strip().lower()
|
|
663
|
+
if isinstance(delivery, dict)
|
|
664
|
+
else ""
|
|
665
|
+
)
|
|
666
|
+
if validation == "passed":
|
|
667
|
+
validation_passed += 1
|
|
668
|
+
elif route == "fix_pr":
|
|
669
|
+
validation_missing += 1
|
|
670
|
+
|
|
671
|
+
pr_inventory: list[dict[str, Any]] = []
|
|
672
|
+
pr_state_counts = {"OPEN": 0, "MERGED": 0, "CLOSED": 0}
|
|
673
|
+
ci_counts = {"PASSING": 0, "FAILING": 0, "PENDING": 0, "UNKNOWN": 0}
|
|
674
|
+
review_counts = {
|
|
675
|
+
"APPROVED": 0,
|
|
676
|
+
"CHANGES_REQUESTED": 0,
|
|
677
|
+
"REVIEW_REQUIRED": 0,
|
|
678
|
+
"UNKNOWN": 0,
|
|
679
|
+
}
|
|
680
|
+
receipt_rows = 0
|
|
681
|
+
snapshot_refreshes = 0
|
|
682
|
+
snapshot_corrections = 0
|
|
683
|
+
linked_issue_refs: set[str] = set()
|
|
684
|
+
for row in lifecycles:
|
|
685
|
+
observation = row.get("observation") or {}
|
|
686
|
+
pr_ref = str(observation.get("pr_ref") or "").strip()
|
|
687
|
+
issue_ref = str(observation.get("issue_ref") or "").strip() or None
|
|
688
|
+
ledger_state = str(observation.get("state") or "").strip().upper()
|
|
689
|
+
checks = observation.get("checks") or {}
|
|
690
|
+
ledger_ci = str(checks.get("aggregate") or "UNKNOWN").strip().upper()
|
|
691
|
+
ledger_review = (
|
|
692
|
+
str(observation.get("review_decision") or "UNKNOWN").strip().upper()
|
|
693
|
+
)
|
|
694
|
+
current_pr = current_pr_states.get(pr_ref)
|
|
695
|
+
state = str((current_pr or {}).get("state") or ledger_state).upper()
|
|
696
|
+
ci_state = str((current_pr or {}).get("ci") or ledger_ci).upper()
|
|
697
|
+
review_state = str((current_pr or {}).get("review") or ledger_review).upper()
|
|
698
|
+
if current_pr:
|
|
699
|
+
snapshot_refreshes += 1
|
|
700
|
+
if (state, ci_state, review_state) != (
|
|
701
|
+
ledger_state,
|
|
702
|
+
ledger_ci,
|
|
703
|
+
ledger_review,
|
|
704
|
+
):
|
|
705
|
+
snapshot_corrections += 1
|
|
706
|
+
if state not in pr_state_counts:
|
|
707
|
+
state = "OPEN"
|
|
708
|
+
if ci_state not in ci_counts:
|
|
709
|
+
ci_state = "UNKNOWN"
|
|
710
|
+
if review_state not in review_counts:
|
|
711
|
+
review_state = "UNKNOWN"
|
|
712
|
+
pr_state_counts[state] += 1
|
|
713
|
+
ci_counts[ci_state] += 1
|
|
714
|
+
review_counts[review_state] += 1
|
|
715
|
+
if issue_ref:
|
|
716
|
+
linked_issue_refs.add(issue_ref)
|
|
717
|
+
receipts = row.get("reviewer_notification_receipts")
|
|
718
|
+
if isinstance(receipts, list) and receipts:
|
|
719
|
+
receipt_rows += 1
|
|
720
|
+
compact = {
|
|
721
|
+
"pr_ref": pr_ref,
|
|
722
|
+
"issue_ref": issue_ref,
|
|
723
|
+
"url": observation.get("permalink"),
|
|
724
|
+
"state": state,
|
|
725
|
+
"ci": ci_state,
|
|
726
|
+
"review": review_state,
|
|
727
|
+
"current_state_source": (
|
|
728
|
+
"repository_current_snapshot" if current_pr else "pr_lifecycle"
|
|
729
|
+
),
|
|
730
|
+
}
|
|
731
|
+
for field in ("created_at", "updated_at", "merged_at", "closed_at"):
|
|
732
|
+
if observation.get(field):
|
|
733
|
+
compact[field] = observation[field]
|
|
734
|
+
pr_inventory.append(compact)
|
|
735
|
+
|
|
736
|
+
current_issue_state_rows = {
|
|
737
|
+
item["issue_ref"]: item for item in current.get("issue_states", [])
|
|
738
|
+
}
|
|
739
|
+
issue_states = {
|
|
740
|
+
issue_ref: item["state"] for issue_ref, item in current_issue_state_rows.items()
|
|
741
|
+
}
|
|
742
|
+
missing_issue_states = sorted(linked_issue_refs - issue_states.keys())
|
|
743
|
+
issues_closed = (
|
|
744
|
+
sum(issue_states.get(ref) == "CLOSED" for ref in linked_issue_refs)
|
|
745
|
+
if linked_issue_refs and not missing_issue_states
|
|
746
|
+
else None
|
|
747
|
+
)
|
|
748
|
+
supplement = _supplement(supplement_input)
|
|
749
|
+
first_push_coverage = _first_push_ci_coverage(supplement_input)
|
|
750
|
+
issue_close_activity, issue_close_coverage = _issue_close_activity(supplement_input)
|
|
751
|
+
issue_close_counts, issue_close_inventory = _issue_close_output(
|
|
752
|
+
issue_close_activity,
|
|
753
|
+
current_issue_states=current_issue_state_rows,
|
|
754
|
+
)
|
|
755
|
+
for field in (
|
|
756
|
+
"issue_close_recommendations",
|
|
757
|
+
"issue_close_requests_published",
|
|
758
|
+
):
|
|
759
|
+
if (
|
|
760
|
+
supplement[field] is not None
|
|
761
|
+
and supplement[field] != issue_close_counts[field]
|
|
762
|
+
):
|
|
763
|
+
raise ValueError(
|
|
764
|
+
f"supplement.counts.{field} must match compact issue close activity"
|
|
765
|
+
)
|
|
766
|
+
close_activity_complete = bool(
|
|
767
|
+
issue_close_coverage and issue_close_coverage["complete"] is True
|
|
768
|
+
)
|
|
769
|
+
close_outcome_missing_refs = sorted(
|
|
770
|
+
item["issue_ref"]
|
|
771
|
+
for item in issue_close_inventory
|
|
772
|
+
if item["current_state"] == "UNKNOWN" and item["actual_close_observed"] is False
|
|
773
|
+
)
|
|
774
|
+
close_outcome_complete = close_activity_complete and not close_outcome_missing_refs
|
|
775
|
+
reported_issue_close_counts = {
|
|
776
|
+
field: (
|
|
777
|
+
value
|
|
778
|
+
if (
|
|
779
|
+
close_activity_complete
|
|
780
|
+
if field
|
|
781
|
+
in {
|
|
782
|
+
"issue_close_recommendations",
|
|
783
|
+
"issue_close_requests_published",
|
|
784
|
+
}
|
|
785
|
+
else close_outcome_complete
|
|
786
|
+
)
|
|
787
|
+
else None
|
|
788
|
+
)
|
|
789
|
+
for field, value in issue_close_counts.items()
|
|
790
|
+
}
|
|
791
|
+
terminal_outcomes = (
|
|
792
|
+
pr_state_counts["MERGED"]
|
|
793
|
+
+ (supplement["useful_public_comments"] or 0)
|
|
794
|
+
+ (supplement["triage_outcomes"] or 0)
|
|
795
|
+
)
|
|
796
|
+
|
|
797
|
+
agent_output = {
|
|
798
|
+
"selected_issues": len(selected_issue_refs),
|
|
799
|
+
"route_counts": route_counts,
|
|
800
|
+
"pull_requests": len(pr_inventory),
|
|
801
|
+
"open_pull_requests": pr_state_counts["OPEN"],
|
|
802
|
+
"merged_pull_requests": pr_state_counts["MERGED"],
|
|
803
|
+
"closed_unmerged_pull_requests": pr_state_counts["CLOSED"],
|
|
804
|
+
"linked_issues_closed": issues_closed,
|
|
805
|
+
"linked_issue_state_coverage": {
|
|
806
|
+
"captured": len(linked_issue_refs) - len(missing_issue_states),
|
|
807
|
+
"total": len(linked_issue_refs),
|
|
808
|
+
"complete": not missing_issue_states,
|
|
809
|
+
},
|
|
810
|
+
"issue_close_output": reported_issue_close_counts,
|
|
811
|
+
"issue_close_outcome_coverage": {
|
|
812
|
+
"captured": len(issue_close_inventory) - len(close_outcome_missing_refs),
|
|
813
|
+
"total": len(issue_close_inventory),
|
|
814
|
+
"complete": close_outcome_complete,
|
|
815
|
+
},
|
|
816
|
+
"validation_passed": validation_passed,
|
|
817
|
+
"validation_missing": validation_missing,
|
|
818
|
+
"current_ci": ci_counts,
|
|
819
|
+
"current_review": review_counts,
|
|
820
|
+
"reviewer_notification_receipt_rows": receipt_rows,
|
|
821
|
+
"pull_requests_refreshed_from_snapshot": snapshot_refreshes,
|
|
822
|
+
"stale_lifecycle_rows_corrected_by_snapshot": snapshot_corrections,
|
|
823
|
+
"terminal_outcomes": terminal_outcomes,
|
|
824
|
+
"supplement": supplement,
|
|
825
|
+
}
|
|
826
|
+
zero_agent_output = {
|
|
827
|
+
"selected_issues": 0,
|
|
828
|
+
"route_counts": {key: 0 for key in route_counts},
|
|
829
|
+
"pull_requests": 0,
|
|
830
|
+
"open_pull_requests": 0,
|
|
831
|
+
"merged_pull_requests": 0,
|
|
832
|
+
"closed_unmerged_pull_requests": 0,
|
|
833
|
+
"linked_issues_closed": 0,
|
|
834
|
+
"linked_issue_state_coverage": {
|
|
835
|
+
"captured": 0,
|
|
836
|
+
"total": 0,
|
|
837
|
+
"complete": True,
|
|
838
|
+
},
|
|
839
|
+
"issue_close_output": {field: 0 for field in issue_close_counts},
|
|
840
|
+
"issue_close_outcome_coverage": {
|
|
841
|
+
"captured": 0,
|
|
842
|
+
"total": 0,
|
|
843
|
+
"complete": True,
|
|
844
|
+
},
|
|
845
|
+
"validation_passed": 0,
|
|
846
|
+
"reviewer_notification_receipt_rows": 0,
|
|
847
|
+
"pull_requests_refreshed_from_snapshot": 0,
|
|
848
|
+
"stale_lifecycle_rows_corrected_by_snapshot": 0,
|
|
849
|
+
"terminal_outcomes": 0,
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
missing_data: list[dict[str, str]] = []
|
|
853
|
+
if missing_issue_states:
|
|
854
|
+
missing_data.append(
|
|
855
|
+
{
|
|
856
|
+
"code": "linked_issue_states_not_captured",
|
|
857
|
+
"impact": (
|
|
858
|
+
"pilot-linked issue closure count and share are unavailable; "
|
|
859
|
+
f"{len(missing_issue_states)} linked issue states are missing"
|
|
860
|
+
),
|
|
861
|
+
}
|
|
862
|
+
)
|
|
863
|
+
if validation_missing:
|
|
864
|
+
missing_data.append(
|
|
865
|
+
{
|
|
866
|
+
"code": "fix_pr_validation_not_captured",
|
|
867
|
+
"impact": "validation pass coverage is incomplete",
|
|
868
|
+
}
|
|
869
|
+
)
|
|
870
|
+
if not close_activity_complete:
|
|
871
|
+
missing_data.append(
|
|
872
|
+
{
|
|
873
|
+
"code": "issue_close_activity_not_captured",
|
|
874
|
+
"impact": (
|
|
875
|
+
"close recommendations, published requests, conversions, and "
|
|
876
|
+
"reopen reversals are unavailable"
|
|
877
|
+
),
|
|
878
|
+
}
|
|
879
|
+
)
|
|
880
|
+
elif close_outcome_missing_refs:
|
|
881
|
+
missing_data.append(
|
|
882
|
+
{
|
|
883
|
+
"code": "issue_close_outcome_states_not_captured",
|
|
884
|
+
"impact": (
|
|
885
|
+
"close conversions and reopen reversals are unavailable; "
|
|
886
|
+
f"{len(close_outcome_missing_refs)} attempted issue states are missing"
|
|
887
|
+
),
|
|
888
|
+
}
|
|
889
|
+
)
|
|
890
|
+
for field, impact in (
|
|
891
|
+
("human_interventions", "autonomy rate is unavailable"),
|
|
892
|
+
("first_push_ci_total", "first-push CI rate is unavailable"),
|
|
893
|
+
("loopx_capability_gaps_found", "capability delta is unavailable"),
|
|
894
|
+
("memory_retrievals", "memory leverage is unavailable"),
|
|
895
|
+
):
|
|
896
|
+
if supplement[field] is None:
|
|
897
|
+
if field == "first_push_ci_total" and first_push_coverage is not None:
|
|
898
|
+
impact = (
|
|
899
|
+
"first-push CI coverage is incomplete "
|
|
900
|
+
f"({first_push_coverage['observed_prs']}/"
|
|
901
|
+
f"{first_push_coverage['eligible_prs']} observed)"
|
|
902
|
+
)
|
|
903
|
+
missing_data.append({"code": f"{field}_not_captured", "impact": impact})
|
|
904
|
+
|
|
905
|
+
ratios = {
|
|
906
|
+
"pilot_merge_rate": _ratio(pr_state_counts["MERGED"], len(pr_inventory)),
|
|
907
|
+
"pilot_share_of_repository_prs_opened": _ratio(
|
|
908
|
+
len(pr_inventory), flow["pull_requests_opened"]
|
|
909
|
+
),
|
|
910
|
+
"pilot_share_of_repository_prs_merged": _ratio(
|
|
911
|
+
pr_state_counts["MERGED"], flow["pull_requests_merged"]
|
|
912
|
+
),
|
|
913
|
+
"pilot_share_of_repository_issues_closed": _ratio(
|
|
914
|
+
issues_closed, flow["issues_closed"]
|
|
915
|
+
),
|
|
916
|
+
"first_push_ci_pass_rate": _ratio(
|
|
917
|
+
supplement["first_push_ci_passed"], supplement["first_push_ci_total"]
|
|
918
|
+
),
|
|
919
|
+
"human_interventions_per_terminal_outcome": _ratio(
|
|
920
|
+
supplement["human_interventions"], terminal_outcomes
|
|
921
|
+
),
|
|
922
|
+
"issue_close_conversion_rate": _ratio(
|
|
923
|
+
reported_issue_close_counts["issue_close_conversions"],
|
|
924
|
+
reported_issue_close_counts["issue_close_requests_published"],
|
|
925
|
+
),
|
|
926
|
+
}
|
|
927
|
+
source_url = current.get("source_url") or baseline.get("source_url")
|
|
928
|
+
updated_at = current["captured_at"]
|
|
929
|
+
impact_rows = [
|
|
930
|
+
_impact_row(
|
|
931
|
+
metric_id="repository_open_issues",
|
|
932
|
+
metric_group="Repository",
|
|
933
|
+
metric="Open issues",
|
|
934
|
+
baseline=baseline["open_issues"],
|
|
935
|
+
current=current["open_issues"],
|
|
936
|
+
delta=current["open_issues"] - baseline["open_issues"],
|
|
937
|
+
updated_at=updated_at,
|
|
938
|
+
source_url=source_url,
|
|
939
|
+
),
|
|
940
|
+
_impact_row(
|
|
941
|
+
metric_id="repository_open_pull_requests",
|
|
942
|
+
metric_group="Repository",
|
|
943
|
+
metric="Open pull requests",
|
|
944
|
+
baseline=baseline["open_pull_requests"],
|
|
945
|
+
current=current["open_pull_requests"],
|
|
946
|
+
delta=current["open_pull_requests"] - baseline["open_pull_requests"],
|
|
947
|
+
updated_at=updated_at,
|
|
948
|
+
source_url=source_url,
|
|
949
|
+
),
|
|
950
|
+
_impact_row(
|
|
951
|
+
metric_id="repository_issues_closed",
|
|
952
|
+
metric_group="Repository",
|
|
953
|
+
metric="Issues closed since baseline",
|
|
954
|
+
baseline=0,
|
|
955
|
+
current=flow["issues_closed"],
|
|
956
|
+
delta=flow["issues_closed"],
|
|
957
|
+
updated_at=updated_at,
|
|
958
|
+
source_url=source_url,
|
|
959
|
+
),
|
|
960
|
+
_impact_row(
|
|
961
|
+
metric_id="repository_pull_requests_merged",
|
|
962
|
+
metric_group="Repository",
|
|
963
|
+
metric="Pull requests merged since baseline",
|
|
964
|
+
baseline=0,
|
|
965
|
+
current=flow["pull_requests_merged"],
|
|
966
|
+
delta=flow["pull_requests_merged"],
|
|
967
|
+
updated_at=updated_at,
|
|
968
|
+
source_url=source_url,
|
|
969
|
+
),
|
|
970
|
+
_impact_row(
|
|
971
|
+
metric_id="agent_selected_issues",
|
|
972
|
+
metric_group="Delivery",
|
|
973
|
+
metric="Agent-selected issues",
|
|
974
|
+
baseline=0,
|
|
975
|
+
current=len(selected_issue_refs),
|
|
976
|
+
delta=len(selected_issue_refs),
|
|
977
|
+
updated_at=updated_at,
|
|
978
|
+
source_url=source_url,
|
|
979
|
+
),
|
|
980
|
+
_impact_row(
|
|
981
|
+
metric_id="agent_pull_requests",
|
|
982
|
+
metric_group="Delivery",
|
|
983
|
+
metric="Agent pull requests",
|
|
984
|
+
baseline=0,
|
|
985
|
+
current=len(pr_inventory),
|
|
986
|
+
delta=len(pr_inventory),
|
|
987
|
+
updated_at=updated_at,
|
|
988
|
+
source_url=source_url,
|
|
989
|
+
),
|
|
990
|
+
_impact_row(
|
|
991
|
+
metric_id="agent_merged_pull_requests",
|
|
992
|
+
metric_group="Delivery",
|
|
993
|
+
metric="Agent pull requests merged",
|
|
994
|
+
baseline=0,
|
|
995
|
+
current=pr_state_counts["MERGED"],
|
|
996
|
+
delta=pr_state_counts["MERGED"],
|
|
997
|
+
updated_at=updated_at,
|
|
998
|
+
source_url=source_url,
|
|
999
|
+
),
|
|
1000
|
+
_impact_row(
|
|
1001
|
+
metric_id="agent_linked_issues_closed",
|
|
1002
|
+
metric_group="Delivery",
|
|
1003
|
+
metric="Agent-linked issues closed",
|
|
1004
|
+
baseline=0,
|
|
1005
|
+
current=issues_closed,
|
|
1006
|
+
delta=issues_closed,
|
|
1007
|
+
updated_at=updated_at,
|
|
1008
|
+
source_url=source_url,
|
|
1009
|
+
status="available" if issues_closed is not None else "not_available",
|
|
1010
|
+
missing_reason=(
|
|
1011
|
+
None
|
|
1012
|
+
if issues_closed is not None
|
|
1013
|
+
else "linked issue states are incomplete"
|
|
1014
|
+
),
|
|
1015
|
+
),
|
|
1016
|
+
_impact_row(
|
|
1017
|
+
metric_id="quality_validation_passed",
|
|
1018
|
+
metric_group="Quality",
|
|
1019
|
+
metric="Validated fixes",
|
|
1020
|
+
baseline=0,
|
|
1021
|
+
current=validation_passed,
|
|
1022
|
+
delta=validation_passed,
|
|
1023
|
+
updated_at=updated_at,
|
|
1024
|
+
source_url=source_url,
|
|
1025
|
+
),
|
|
1026
|
+
_impact_row(
|
|
1027
|
+
metric_id="quality_current_ci_passing",
|
|
1028
|
+
metric_group="Quality",
|
|
1029
|
+
metric="Current PRs with passing CI",
|
|
1030
|
+
baseline=0,
|
|
1031
|
+
current=ci_counts["PASSING"],
|
|
1032
|
+
delta=ci_counts["PASSING"],
|
|
1033
|
+
updated_at=updated_at,
|
|
1034
|
+
source_url=source_url,
|
|
1035
|
+
),
|
|
1036
|
+
]
|
|
1037
|
+
for metric_id, metric, field in (
|
|
1038
|
+
(
|
|
1039
|
+
"agent_issue_close_recommendations",
|
|
1040
|
+
"Issue close recommendations",
|
|
1041
|
+
"issue_close_recommendations",
|
|
1042
|
+
),
|
|
1043
|
+
(
|
|
1044
|
+
"agent_issue_close_requests_published",
|
|
1045
|
+
"Published issue close requests",
|
|
1046
|
+
"issue_close_requests_published",
|
|
1047
|
+
),
|
|
1048
|
+
(
|
|
1049
|
+
"agent_issue_closes_observed",
|
|
1050
|
+
"Agent-pursued issues closed",
|
|
1051
|
+
"issue_closes_observed",
|
|
1052
|
+
),
|
|
1053
|
+
(
|
|
1054
|
+
"agent_issue_close_conversions",
|
|
1055
|
+
"Attributed issue close conversions",
|
|
1056
|
+
"issue_close_conversions",
|
|
1057
|
+
),
|
|
1058
|
+
(
|
|
1059
|
+
"agent_issue_close_reversals",
|
|
1060
|
+
"Attributed issue close reopen reversals",
|
|
1061
|
+
"issue_close_reversals",
|
|
1062
|
+
),
|
|
1063
|
+
(
|
|
1064
|
+
"agent_net_issue_close_conversions",
|
|
1065
|
+
"Net attributed issue close conversions",
|
|
1066
|
+
"net_issue_close_conversions",
|
|
1067
|
+
),
|
|
1068
|
+
):
|
|
1069
|
+
value = reported_issue_close_counts[field]
|
|
1070
|
+
impact_rows.append(
|
|
1071
|
+
_impact_row(
|
|
1072
|
+
metric_id=metric_id,
|
|
1073
|
+
metric_group="Delivery",
|
|
1074
|
+
metric=metric,
|
|
1075
|
+
baseline=0,
|
|
1076
|
+
current=value,
|
|
1077
|
+
delta=value,
|
|
1078
|
+
status="available" if value is not None else "not_available",
|
|
1079
|
+
missing_reason=(
|
|
1080
|
+
None
|
|
1081
|
+
if value is not None
|
|
1082
|
+
else "issue close activity or outcome state coverage is incomplete"
|
|
1083
|
+
),
|
|
1084
|
+
updated_at=updated_at,
|
|
1085
|
+
source_url=source_url,
|
|
1086
|
+
)
|
|
1087
|
+
)
|
|
1088
|
+
for metric_id, metric_group, metric, ratio_key in (
|
|
1089
|
+
(
|
|
1090
|
+
"delivery_share_repository_prs_opened",
|
|
1091
|
+
"Delivery",
|
|
1092
|
+
"Share of repository PRs opened",
|
|
1093
|
+
"pilot_share_of_repository_prs_opened",
|
|
1094
|
+
),
|
|
1095
|
+
(
|
|
1096
|
+
"delivery_share_repository_prs_merged",
|
|
1097
|
+
"Delivery",
|
|
1098
|
+
"Share of repository PRs merged",
|
|
1099
|
+
"pilot_share_of_repository_prs_merged",
|
|
1100
|
+
),
|
|
1101
|
+
(
|
|
1102
|
+
"delivery_share_repository_issues_closed",
|
|
1103
|
+
"Delivery",
|
|
1104
|
+
"Share of repository issues closed",
|
|
1105
|
+
"pilot_share_of_repository_issues_closed",
|
|
1106
|
+
),
|
|
1107
|
+
(
|
|
1108
|
+
"quality_first_push_ci_pass_rate",
|
|
1109
|
+
"Quality",
|
|
1110
|
+
"First-push CI pass rate",
|
|
1111
|
+
"first_push_ci_pass_rate",
|
|
1112
|
+
),
|
|
1113
|
+
(
|
|
1114
|
+
"autonomy_human_interventions_per_terminal",
|
|
1115
|
+
"Autonomy",
|
|
1116
|
+
"Human interventions per terminal outcome",
|
|
1117
|
+
"human_interventions_per_terminal_outcome",
|
|
1118
|
+
),
|
|
1119
|
+
(
|
|
1120
|
+
"delivery_issue_close_conversion_rate",
|
|
1121
|
+
"Delivery",
|
|
1122
|
+
"Attributed close conversions per published close request",
|
|
1123
|
+
"issue_close_conversion_rate",
|
|
1124
|
+
),
|
|
1125
|
+
):
|
|
1126
|
+
ratio = ratios[ratio_key]
|
|
1127
|
+
impact_rows.append(
|
|
1128
|
+
_impact_row(
|
|
1129
|
+
metric_id=metric_id,
|
|
1130
|
+
metric_group=metric_group,
|
|
1131
|
+
metric=metric,
|
|
1132
|
+
baseline=None,
|
|
1133
|
+
current=ratio["value"],
|
|
1134
|
+
delta=None,
|
|
1135
|
+
numerator=ratio["numerator"],
|
|
1136
|
+
denominator=ratio["denominator"],
|
|
1137
|
+
status=ratio["status"],
|
|
1138
|
+
missing_reason=(
|
|
1139
|
+
None
|
|
1140
|
+
if ratio["status"] == "available"
|
|
1141
|
+
else (
|
|
1142
|
+
"first-push CI coverage is incomplete "
|
|
1143
|
+
f"({first_push_coverage['observed_prs']}/"
|
|
1144
|
+
f"{first_push_coverage['eligible_prs']} observed)"
|
|
1145
|
+
if ratio_key == "first_push_ci_pass_rate"
|
|
1146
|
+
and first_push_coverage is not None
|
|
1147
|
+
else "numerator or denominator is unavailable"
|
|
1148
|
+
)
|
|
1149
|
+
),
|
|
1150
|
+
updated_at=updated_at,
|
|
1151
|
+
source_url=source_url,
|
|
1152
|
+
)
|
|
1153
|
+
)
|
|
1154
|
+
for metric_id, metric_group, metric, supplement_field in (
|
|
1155
|
+
(
|
|
1156
|
+
"capability_gaps_found",
|
|
1157
|
+
"Capability",
|
|
1158
|
+
"LoopX capability gaps found",
|
|
1159
|
+
"loopx_capability_gaps_found",
|
|
1160
|
+
),
|
|
1161
|
+
(
|
|
1162
|
+
"capability_gaps_fixed",
|
|
1163
|
+
"Capability",
|
|
1164
|
+
"LoopX capability gaps fixed",
|
|
1165
|
+
"loopx_capability_gaps_fixed",
|
|
1166
|
+
),
|
|
1167
|
+
(
|
|
1168
|
+
"capability_gaps_real_callsite_verified",
|
|
1169
|
+
"Capability",
|
|
1170
|
+
"LoopX capability gaps real-callsite verified",
|
|
1171
|
+
"loopx_capability_gaps_real_callsite_verified",
|
|
1172
|
+
),
|
|
1173
|
+
(
|
|
1174
|
+
"memory_retrievals",
|
|
1175
|
+
"Memory",
|
|
1176
|
+
"Repository-memory results retrieved",
|
|
1177
|
+
"memory_retrievals",
|
|
1178
|
+
),
|
|
1179
|
+
(
|
|
1180
|
+
"memory_verified_decision_influence",
|
|
1181
|
+
"Memory",
|
|
1182
|
+
"Memory retrievals verified to influence an issue-fix decision",
|
|
1183
|
+
"memory_verified_decision_influence",
|
|
1184
|
+
),
|
|
1185
|
+
(
|
|
1186
|
+
"memory_verified_patch_influence",
|
|
1187
|
+
"Memory",
|
|
1188
|
+
"Memory retrievals verified to influence a patch",
|
|
1189
|
+
"memory_verified_patch_influence",
|
|
1190
|
+
),
|
|
1191
|
+
(
|
|
1192
|
+
"memory_stale_results",
|
|
1193
|
+
"Memory",
|
|
1194
|
+
"Repository-memory results verified stale",
|
|
1195
|
+
"memory_stale_results",
|
|
1196
|
+
),
|
|
1197
|
+
):
|
|
1198
|
+
value = supplement[supplement_field]
|
|
1199
|
+
impact_rows.append(
|
|
1200
|
+
_impact_row(
|
|
1201
|
+
metric_id=metric_id,
|
|
1202
|
+
metric_group=metric_group,
|
|
1203
|
+
metric=metric,
|
|
1204
|
+
baseline=0,
|
|
1205
|
+
current=value,
|
|
1206
|
+
delta=value,
|
|
1207
|
+
status="available" if value is not None else "not_available",
|
|
1208
|
+
missing_reason=(
|
|
1209
|
+
None if value is not None else f"{supplement_field} is not captured"
|
|
1210
|
+
),
|
|
1211
|
+
updated_at=updated_at,
|
|
1212
|
+
source_url=source_url,
|
|
1213
|
+
)
|
|
1214
|
+
)
|
|
1215
|
+
payload = {
|
|
1216
|
+
"schema_version": PROJECTION_SCHEMA_VERSION,
|
|
1217
|
+
"mode": "issue-fix-metrics",
|
|
1218
|
+
"generated_at": _timestamp(generated_at, field="generated_at"),
|
|
1219
|
+
"goal_id": goal_id,
|
|
1220
|
+
"repo": repo,
|
|
1221
|
+
"baseline": {
|
|
1222
|
+
"repository": baseline,
|
|
1223
|
+
"agent_output": zero_agent_output,
|
|
1224
|
+
},
|
|
1225
|
+
"current": {
|
|
1226
|
+
"repository": current,
|
|
1227
|
+
"agent_output": agent_output,
|
|
1228
|
+
},
|
|
1229
|
+
"delta": {
|
|
1230
|
+
"repository": {
|
|
1231
|
+
"open_issues": current["open_issues"] - baseline["open_issues"],
|
|
1232
|
+
"open_pull_requests": (
|
|
1233
|
+
current["open_pull_requests"] - baseline["open_pull_requests"]
|
|
1234
|
+
),
|
|
1235
|
+
"flow": flow,
|
|
1236
|
+
},
|
|
1237
|
+
"agent_output": agent_output,
|
|
1238
|
+
},
|
|
1239
|
+
"output_inventory": {
|
|
1240
|
+
"pull_requests": pr_inventory,
|
|
1241
|
+
"issue_close_activity": issue_close_inventory,
|
|
1242
|
+
},
|
|
1243
|
+
"impact_rows": impact_rows,
|
|
1244
|
+
"ratios": ratios,
|
|
1245
|
+
"missing_data": missing_data,
|
|
1246
|
+
"supplement_coverage": {
|
|
1247
|
+
"first_push_ci": first_push_coverage,
|
|
1248
|
+
"issue_close_activity": issue_close_coverage,
|
|
1249
|
+
},
|
|
1250
|
+
"source_summary": {
|
|
1251
|
+
"feasibility_rows": len(feasibility),
|
|
1252
|
+
"pr_lifecycle_rows": len(lifecycles),
|
|
1253
|
+
"repository_snapshots": 2,
|
|
1254
|
+
"supplement_supplied": supplement_input is not None,
|
|
1255
|
+
"local_paths_recorded": False,
|
|
1256
|
+
"raw_provider_payloads_recorded": False,
|
|
1257
|
+
},
|
|
1258
|
+
"external_reads_performed": False,
|
|
1259
|
+
"external_writes_performed": False,
|
|
1260
|
+
"ok": True,
|
|
1261
|
+
}
|
|
1262
|
+
payload["validation"] = validate_issue_fix_metrics_projection(payload)
|
|
1263
|
+
payload["ok"] = payload["validation"]["ok"] is True
|
|
1264
|
+
return payload
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
def validate_issue_fix_metrics_projection(payload: dict[str, Any]) -> dict[str, Any]:
|
|
1268
|
+
errors: list[str] = []
|
|
1269
|
+
if payload.get("schema_version") != PROJECTION_SCHEMA_VERSION:
|
|
1270
|
+
errors.append("schema_version mismatch")
|
|
1271
|
+
baseline_output = (payload.get("baseline") or {}).get("agent_output") or {}
|
|
1272
|
+
if any(
|
|
1273
|
+
baseline_output.get(field) != 0
|
|
1274
|
+
for field in (
|
|
1275
|
+
"selected_issues",
|
|
1276
|
+
"pull_requests",
|
|
1277
|
+
"merged_pull_requests",
|
|
1278
|
+
"terminal_outcomes",
|
|
1279
|
+
)
|
|
1280
|
+
):
|
|
1281
|
+
errors.append("baseline agent output must remain zero")
|
|
1282
|
+
if payload.get("external_writes_performed") is not False:
|
|
1283
|
+
errors.append("metrics projection must not perform external writes")
|
|
1284
|
+
return {
|
|
1285
|
+
"schema_version": "issue_fix_metrics_projection_validation_v0",
|
|
1286
|
+
"ok": not errors,
|
|
1287
|
+
"errors": errors,
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
def render_issue_fix_metrics_projection_markdown(payload: dict[str, Any]) -> str:
|
|
1292
|
+
if payload.get("ok") is not True:
|
|
1293
|
+
return f"# Issue-fix metrics projection\n\n- Error: {payload.get('error') or 'invalid projection'}"
|
|
1294
|
+
current = payload["current"]
|
|
1295
|
+
output = current["agent_output"]
|
|
1296
|
+
close_output = output["issue_close_output"]
|
|
1297
|
+
repository = current["repository"]
|
|
1298
|
+
lines = [
|
|
1299
|
+
"# Issue-fix metrics projection",
|
|
1300
|
+
"",
|
|
1301
|
+
f"- Repository: `{payload['repo']}`",
|
|
1302
|
+
f"- Reporting start: `{payload['baseline']['repository']['captured_at']}`",
|
|
1303
|
+
f"- Selected issues: `{output['selected_issues']}`",
|
|
1304
|
+
f"- Pull requests: `{output['pull_requests']}` "
|
|
1305
|
+
f"(`{output['merged_pull_requests']}` merged, "
|
|
1306
|
+
f"`{output['open_pull_requests']}` open)",
|
|
1307
|
+
"- Issue close recommended / published / closed / attributed / reopened: "
|
|
1308
|
+
f"`{close_output['issue_close_recommendations']}` / "
|
|
1309
|
+
f"`{close_output['issue_close_requests_published']}` / "
|
|
1310
|
+
f"`{close_output['issue_closes_observed']}` / "
|
|
1311
|
+
f"`{close_output['issue_close_conversions']}` / "
|
|
1312
|
+
f"`{close_output['issue_close_reversals']}`",
|
|
1313
|
+
f"- Repository open issues / PRs: `{repository['open_issues']}` / "
|
|
1314
|
+
f"`{repository['open_pull_requests']}`",
|
|
1315
|
+
f"- Missing-data items: `{len(payload['missing_data'])}`",
|
|
1316
|
+
"",
|
|
1317
|
+
"## Output inventory",
|
|
1318
|
+
"",
|
|
1319
|
+
]
|
|
1320
|
+
for item in payload["output_inventory"]["pull_requests"]:
|
|
1321
|
+
link = item.get("url") or item["pr_ref"]
|
|
1322
|
+
lines.append(
|
|
1323
|
+
f"- [{item['pr_ref']}]({link}) -> `{item.get('issue_ref') or 'unlinked'}`: "
|
|
1324
|
+
f"{item['state']} / CI {item['ci']} / review {item['review']}"
|
|
1325
|
+
)
|
|
1326
|
+
if not payload["output_inventory"]["pull_requests"]:
|
|
1327
|
+
lines.append("- None")
|
|
1328
|
+
close_inventory = payload["output_inventory"].get("issue_close_activity") or []
|
|
1329
|
+
if close_inventory:
|
|
1330
|
+
lines.extend(["", "## Issue close activity", ""])
|
|
1331
|
+
for item in close_inventory:
|
|
1332
|
+
lines.append(
|
|
1333
|
+
f"- `{item['issue_ref']}`: recommended="
|
|
1334
|
+
f"{item['close_recommended']}, published="
|
|
1335
|
+
f"{item['close_request_published']}, closed="
|
|
1336
|
+
f"{item['actual_close_observed']}, attributed="
|
|
1337
|
+
f"{item['attributed_close_conversion']}, reopened="
|
|
1338
|
+
f"{item['reopened_after_attributed_close']}"
|
|
1339
|
+
)
|
|
1340
|
+
return "\n".join(lines)
|