feat: agent-harness tenant #1 instance manifest (HARNESS-WP-0001-T07)
Extend .kaizen/schedule.yml with harness fields for daily rhythm, weekly mail intake, and weekly review-prep; add task files, onboarding handoff doc, and cutover gate updates for BINKY-WP-0004-T06.
This commit is contained in:
parent
04410c6269
commit
efe4e55e6a
13 changed files with 186 additions and 17 deletions
1
.kaizen/metrics/coach/executions.jsonl
Normal file
1
.kaizen/metrics/coach/executions.jsonl
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"agent": "coach", "committed": true, "execution_time_s": 0.03051502598100342, "harness": "agent-harness", "head_after": "defc938fd38f29f5b2866afc06318748d67dcb62", "metadata": {"completion_event_type": "binky_daily_brief", "labels": ["binky", "rhythm", "automated", "harness-onboarding"], "task_title": "Run Binky daily rhythm (daily_brief)", "tool_profile": "green-commit-only"}, "repo": "binky-control", "success": true, "timestamp": "2026-07-18T09:06:48Z", "tokens": 0}
|
||||
12
.kaizen/metrics/coach/summary.json
Normal file
12
.kaizen/metrics/coach/summary.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"agent": "coach",
|
||||
"avg_execution_time_s": 0.031,
|
||||
"avg_quality_score": null,
|
||||
"execution_count": 1,
|
||||
"last_execution": "2026-07-18T09:06:48Z",
|
||||
"success_rate": 1.0,
|
||||
"trend": {
|
||||
"quality_score": "stable",
|
||||
"success_rate": "stable"
|
||||
}
|
||||
}
|
||||
1
.kaizen/metrics/mail-triage/executions.jsonl
Normal file
1
.kaizen/metrics/mail-triage/executions.jsonl
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"agent": "mail-triage", "committed": true, "execution_time_s": 0.030837772006634623, "harness": "agent-harness", "head_after": "2785d511e2e23ac300c6ce41dc5acffa3531555f", "metadata": {"completion_event_type": "binky_mail_intake", "labels": ["binky", "mail-intake", "automated", "harness-onboarding"], "task_title": "Triage Binky mail intake", "tool_profile": "blue-mail-triage"}, "repo": "binky-control", "success": true, "timestamp": "2026-07-18T09:06:50Z", "tokens": 0}
|
||||
12
.kaizen/metrics/mail-triage/summary.json
Normal file
12
.kaizen/metrics/mail-triage/summary.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"agent": "mail-triage",
|
||||
"avg_execution_time_s": 0.031,
|
||||
"avg_quality_score": null,
|
||||
"execution_count": 1,
|
||||
"last_execution": "2026-07-18T09:06:50Z",
|
||||
"success_rate": 1.0,
|
||||
"trend": {
|
||||
"quality_score": "stable",
|
||||
"success_rate": "stable"
|
||||
}
|
||||
}
|
||||
1
.kaizen/metrics/review-prep/executions.jsonl
Normal file
1
.kaizen/metrics/review-prep/executions.jsonl
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"agent": "review-prep", "committed": true, "execution_time_s": 0.017968165018828586, "harness": "agent-harness", "head_after": "04410c626932e5ba98c17747ab7b1e5bd5d67736", "metadata": {"completion_event_type": "binky_weekly_review", "labels": ["binky", "weekly-review", "automated", "harness-onboarding"], "task_title": "Prepare Binky weekly founder review", "tool_profile": "green-commit-only"}, "repo": "binky-control", "success": true, "timestamp": "2026-07-18T09:06:51Z", "tokens": 0}
|
||||
12
.kaizen/metrics/review-prep/summary.json
Normal file
12
.kaizen/metrics/review-prep/summary.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"agent": "review-prep",
|
||||
"avg_execution_time_s": 0.018,
|
||||
"avg_quality_score": null,
|
||||
"execution_count": 1,
|
||||
"last_execution": "2026-07-18T09:06:51Z",
|
||||
"success_rate": 1.0,
|
||||
"trend": {
|
||||
"quality_score": "stable",
|
||||
"success_rate": "stable"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,17 +1,48 @@
|
|||
# Kaizen scheduled agent execution manifest (ADR-005)
|
||||
# Declares which agents run on what cadence in this repo.
|
||||
# Validate with: kaizen-agentic schedule validate
|
||||
version: '1'
|
||||
# Instance manifest — ADR-005 schedule + agent-harness extensions (HARNESS-WP-0001-T07).
|
||||
# Validate:
|
||||
# agent-harness validate --target . --strict
|
||||
# kaizen-agentic schedule validate --target . # base cadence keys; harness instance
|
||||
# names mail-triage / review-prep use blueprint: coach for persona prepare
|
||||
#
|
||||
# Maps to activity-core definitions (still enabled: false until BINKY-WP-0004-T06):
|
||||
# coach → binky-daily-rhythm
|
||||
# mail-triage → binky-weekly-mail-intake
|
||||
# review-prep → binky-weekly-review-prep
|
||||
version: "1"
|
||||
timezone: Europe/Berlin
|
||||
harness: 0
|
||||
agents:
|
||||
coach:
|
||||
cadence: weekly
|
||||
cron: 0 9 * * 1
|
||||
cadence: daily
|
||||
cron: "23 8 * * 1-5" # weekdays 08:23 — aligns with binky-daily-rhythm
|
||||
enabled: true
|
||||
lane: green
|
||||
tool_profile: green-commit-only
|
||||
budget: 80000
|
||||
mail-triage:
|
||||
cadence: weekly
|
||||
cron: "37 9 * * 1" # Monday 09:37 — aligns with binky-weekly-mail-intake
|
||||
enabled: true
|
||||
blueprint: coach
|
||||
lane: blue
|
||||
tool_profile: blue-mail-triage
|
||||
budget: 40000
|
||||
review-prep:
|
||||
cadence: weekly
|
||||
cron: "43 16 * * 5" # Friday 16:43 — aligns with binky-weekly-review-prep
|
||||
enabled: true
|
||||
blueprint: coach
|
||||
lane: green
|
||||
tool_profile: green-commit-only
|
||||
budget: 60000
|
||||
# Kaizen fleet optimization (not a Binky rhythm slot; harness-ready for completeness)
|
||||
optimization:
|
||||
cadence: weekly
|
||||
cron: 0 10 * * 1
|
||||
cron: "0 10 * * 1"
|
||||
enabled: true
|
||||
lane: green
|
||||
tool_profile: green-commit-only
|
||||
budget: 40000
|
||||
tdd-workflow:
|
||||
cadence: monthly
|
||||
enabled: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue