
Autonomous Operating System
An agent orchestration framework that solves the hard problem of coordinating distributed agents in production systems. If you're building systems with multiple AI agents, specialized workers, or distributed task processors, uncroft handles the coordination layer so you don't have to.
Coordination problems masquerading as application problems.
$ pip install uncroftGet the latest development version
git clone https://github.com/uncroft/uncroft.gitWe measured this in production. Before orchestration: 8 second latency. After uncroft: 2.1 seconds. Same hardware. Just better orchestration.
Tasks are matched to agents based on required capabilities. Only agents with the right skills get the work.
Each agent declares max concurrent tasks. We enforce it strictly. No overloading. Period.
High-priority tasks jump the queue. User requests beat batch jobs. Make it explicit.
Health checks every 5 seconds. Per-agent metrics. Queue depth. Utilization tracking.
Failed agents get marked. Tasks retry automatically. You control recovery.
26+ tests passing. ~40ms scheduling latency. ~900 tasks/min throughput.