colibri/crates
Sam & Claude 81c677cc3d fix(scheduler): eliminate double task creation on intake
The merged #206 created a regression: cmd_intake_task created a task
at submit time (returning id A) AND the scheduler tick created a second
task from the same request (id B, which got claimed). Two tasks per
intake, with the returned id pointing to the orphaned copy.

Fix: TaskRequest now carries the pre-created task_id. The tick drops
its create_task() call and only does pick_agent + claim_task on the
existing id. One task, one id, the returned id is the one the
scheduler routes.

- TaskRequest gains task_id field
- cmd_intake_task creates once, pushes id to queue
- scheduler tick claims via req.task_id (no create_task)
- scheduler unit test pre-creates task before submit
- multi_agent_board test verifies id in response
2026-06-26 08:05:42 +02:00
..
clawdie build: unify all crate versions at 0.11.0 via workspace inheritance 2026-06-22 06:39:01 +02:00
colibri-client feat(store): wire Phase 3 agent presence — host, heartbeat, last_seen 2026-06-26 02:00:26 +02:00
colibri-contracts refactor: clear pi-era residue from the harness-neutral agent path 2026-06-23 18:04:45 +02:00
colibri-daemon fix(scheduler): eliminate double task creation on intake 2026-06-26 08:05:42 +02:00
colibri-deepseek 0.12.0: hw-probe autospawn + model fixes + mother schema 2026-06-23 10:50:05 +02:00
colibri-glasspane style: rustfmt — fix fmt drift introduced by terminal-capture commit 2026-06-25 21:01:12 +02:00
colibri-glasspane-tui test(tui): attention filter toggle round-trip restores full view 2026-06-25 23:50:31 +02:00
colibri-mcp build: unify all crate versions at 0.11.0 via workspace inheritance 2026-06-22 06:39:01 +02:00
colibri-runtime build: unify all crate versions at 0.11.0 via workspace inheritance 2026-06-22 06:39:01 +02:00
colibri-skills build: unify all crate versions at 0.11.0 via workspace inheritance 2026-06-22 06:39:01 +02:00
colibri-store feat(store): wire Phase 3 agent presence — host, heartbeat, last_seen 2026-06-26 02:00:26 +02:00
colibri-vault build: unify all crate versions at 0.11.0 via workspace inheritance 2026-06-22 06:39:01 +02:00