bootstrap: fix rule syntax, enable metrics+coach definitions

Align coulomb ActivityDefinition rules with activity-core path syntax
(context.p.* / {context.p.*}). Enable hourly-metrics-optimize and
hourly-coach-orientation; record first E2E cycle in bootstrap-log.
This commit is contained in:
2026-06-18 08:11:09 +02:00
parent 32c935470f
commit 2bdcb6830d
6 changed files with 33 additions and 25 deletions

View File

@@ -27,15 +27,15 @@ Bootstrap fallback per DEC-002 option A until `kaizen.metrics.recorded` events s
id: flag-low-success-hourly
for_each: context.projects
bind_as: p
condition: 'p.summary.success_rate < 0.8 and p.summary.execution_count >= 5'
condition: 'context.p.summary.success_rate < 0.8 and context.p.summary.execution_count >= 5'
action:
task_template: "Review {{p.agent}} success rate on {{p.repo}}"
task_template: "Review {context.p.agent} success rate on {context.p.repo}"
description: |
Agent metrics below threshold on {{p.repo}}.
Agent metrics below threshold on {context.p.repo}.
kaizen-agentic metrics show <agent>
kaizen-agentic metrics optimize <agent>
Load agents/agent-optimization.md for review.
target_repo: "{{p.repo}}"
target_repo: context.p.repo
priority: high
labels: ["kaizen", "quality-escalation", "coulomb-loop", "bootstrap"]
```