fix(agents): prioritize consumer context coverage readback
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Failing after 58s
CD Pipeline / build-and-deploy (push) Has been skipped
CD Pipeline / post-deploy-checks (push) Has been skipped

This commit is contained in:
ogt
2026-07-09 23:44:23 +08:00
parent 95572f0a67
commit fd61f9f020

View File

@@ -101,22 +101,15 @@ async def load_latest_telegram_alert_monitoring_coverage_readback(
)
_require_safe_boundaries(monitoring_inventory, monitoring_readback_plan)
(
matrix,
verifier,
ai_alert_readback,
runtime_log_readback,
consumer_readback,
source_contract,
) = (
await asyncio.gather(
_load_telegram_matrix_readback(project_id=project_id),
_load_post_apply_verifier_readback(project_id=project_id),
_load_ai_alert_card_delivery(project_id=project_id),
_load_runtime_log_readback(project_id=project_id),
_load_log_controlled_writeback_consumer_readback(project_id=project_id),
asyncio.to_thread(_inspect_source_contract, repo_root),
)
matrix, consumer_readback, source_contract = await asyncio.gather(
_load_telegram_matrix_readback(project_id=project_id),
_load_log_controlled_writeback_consumer_readback(project_id=project_id),
asyncio.to_thread(_inspect_source_contract, repo_root),
)
verifier, ai_alert_readback, runtime_log_readback = await asyncio.gather(
_load_post_apply_verifier_readback(project_id=project_id),
_load_ai_alert_card_delivery(project_id=project_id),
_load_runtime_log_readback(project_id=project_id),
)
return build_telegram_alert_monitoring_coverage_readback(