Implement worker coordination runtime and finish WP-0003
All checks were successful
check / test (push) Successful in 7m8s
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s

Assistant: codex
Assistant-Model: gpt-6-astra
Assistant-Session: 01a07b5b-ea58-7ad2-bdbb-0b1c995cfc35
This commit is contained in:
tegwick 2026-09-07 23:19:52 +02:00
parent 214964ccb8
commit 628f984a10
23 changed files with 3025 additions and 544 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
.PHONY: check test build
check: test
git diff --check
uv run python -m compileall -q src
uv run coordination-engine --help
uv run coordination-engine --version
test:
uv run pytest
build:
uv build