- INTENT.md: three-layer model (blueprint/instance/harness), single shared runtime, never-become boundaries - ADR-001 (accepted): DEC-2026-002 resolution — one harness repo for all projects; instances are declarative state in consuming repos - docs/architecture.md: components, contracts (manifest, tool profiles, completion events, credential lanes), deployment shape - agent_harness/: executor-worker prototype adopted and renamed (6/6 tests green); HARNESS-WP-0001 initial workplan (7 tasks) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
10 lines
434 B
Python
10 lines
434 B
Python
"""Thin executor worker (BINKY-WP-0004-T04, DEC-2026-002).
|
|
|
|
activity-core schedules and emits tasks; this worker executes exactly one
|
|
task per invocation: load persona orientation (kaizen-agentic schedule
|
|
prepare), run a bounded agentic coding session via an llm-connect adapter,
|
|
verify the session committed to the target repo, and report to the
|
|
Custodian State Hub (progress event + optional task close).
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|