Batch 23 — Agent-OS & Meta-Framework "OS" Plays
Roster (10)
| slug | stars | distribution | cli_binary | local_ui | orchestration | multi_model | tier |
|---|---|---|---|---|---|---|---|
| agentic-os-effi | 33 | standalone-repo | no | none | none | no | A |
| agentic-os-kbwen | 0 | standalone-repo | no | none | sequential | no | A |
| osmoda | 99 | NixOS OS distro | agentctl | web-dashboard | event-driven | yes | A |
| openmythos | 13,396 | pip package | no | none | none | no | C (wrong category) |
| gh-aw-githubnext | 4,525 | cli-tool (gh ext) | gh aw | none (GitHub.com) | hierarchical | yes | A |
| gg-cyclecore | 0 | cli-tool | gg | none | sequential | yes | A |
| humanlayer | 10,896 | npm-package | humanlayer | desktop-app (Tauri) | parallel-fan-out | yes | A |
| harness-os | 3 | npm-package | harness-setup | none | parallel-fan-out | yes | A |
| openclaw-os | unknown | unknown | unknown | unknown | unknown | unknown | C (not found) |
| sparo-os | 6 | desktop-app | no | desktop-app (Tauri) | none | yes | A |
Intra-batch Patterns
The batch reveals three distinct interpretations of "Agent OS": (1) behavioral frameworks that impose OS-like structure on AI coding agents through governance rules and phase gates (agentic-os-effi, agentic-os-kbwen); (2) actual operating systems or runtime substrates where the OS itself is AI-native (osModa, Sparo OS, HarnessOS); (3) tooling utilities that optimize agent operations without imposing behavioral structure (gg, gh-aw). The majority of frameworks in the batch use file-based state (AGENTS.md + task files) rather than databases, with the notable exceptions of osModa (SQLite + teachd) and HarnessOS (ACID SQLite). Several frameworks explicitly target multiple AI runtimes (Claude Code, Codex, OpenClaw, Pi) via per-runtime wrapper files — a pattern that was absent from all 11 seeds. The "governance-first" framing (gates, evidence requirements, no-bypass rules) appears independently in three frameworks (agentic-os-kbwen, humanlayer's size gate, gh-aw's safe-outputs separation), suggesting it is an emergent pattern in the broader AI agent space.
Most Interesting Finds
osModa — The most architecturally distinct framework in the entire corpus: a real NixOS operating system distribution where 10 Rust daemons expose 91 MCP tools with SHA-256 hash-chained audit ledger and self-teaching via osmoda-teachd. The combination of NixOS atomic rollback + AI root access is a genuinely novel safety model.
GitHub Agentic Workflows (gh-aw) — GitHub Next's official product is the most security-conscious framework in the corpus: every write operation in a separate secured job, all input sanitized against prompt injection, SHA-pinned dependencies, network isolation. The agent-native hidden HTML comment at the top of README ("Hello fellow agent!") and
llms.txtcorpus are uniquely forward-thinking documentation design.
Items Written as Tier C
- openmythos — PyTorch model architecture repository (Recurrent-Depth Transformer), not an AI agent framework. Included due to keyword matching ("Mythos" + "OpenMythos"). 13,396 stars but categorically out of scope.
- openclaw-os — No canonical GitHub repository located. OpenClaw is referenced as an active AI agent runtime in multiple batch repos (osModa designates it as default executive runtime) but the primary repo is not publicly accessible via GitHub API. May be closed-source or distributed via non-GitHub channels.
Cross-References Discovered
- agentic-os-effi explicitly names OpenClaw as a supported runtime and ships
OPENCLAW.mdwrapper - osModa names OpenClaw as the default/executive runtime and describes
openclaw plugins installfor the osmoda-bridge - agentic-os-kbwen skills catalog (
using-git-worktrees,verification-before-completion,test-driven-development,systematic-debugging) are direct copies or close derivatives of superpowers skills - agentic-os-effi skills (
tdd,verification,writing-plans) share identical Iron Law patterns with superpowers skills — likely independent parallel development following the AgentSkills open standard - humanlayer mentions "12 Factor Agents" (own published work) as inspiration — a framework-building meta-framework
- Sparo OS credits GCWing/BitFun as its "core kernel"
- harness-os references
gpt-5-highprofile in Symphony orchestration — explicitly routes to a specific OpenAI model variant