Organized AI / Ecosystem Research

Reference Repo Maphow each repo fits your stack

Four reference repositories — what they do, how they fit the Claw ecosystem, and the patterns worth stealing from each.

pi-mono27.3k ★
mac-mini-agent30 ★
hermes-agent8.7k ★
paperclip32.2k ★
01 / Repos

Pi Monorepo — Structure Reference

Pi Monorepo
badlogic / pi-mono · AI agent toolkit: coding agent CLI, unified LLM API, TUI & web UI
★ 27.3k · STRUCTURE REF
What it is

A production TypeScript monorepo for an entire AI agent ecosystem. Seven packages: unified LLM API, agent runtime, coding agent CLI, Slack bot, terminal UI, web UI components, and GPU pod manager. Each package is independently publishable but shares a root tsconfig, biome linter, and npm workspace setup.

Fit for your stack

Blueprint for structuring the Organized AI monorepo — one repo for ClawSwarm, Hermes, Paperclip, NanoClaw, and Clawdbot. pi-ai unified LLM wrapper is the abstraction layer you need over Anthropic, MiniMax, and OpenRouter. AGENTS.md convention at monorepo root — single rules file for Claude Code operating across all packages.

Patterns to steal
tsconfig.base.jsonbiome.json at rootAGENTS.md conventionpackages/* workspace layoutpi-ai LLM abstractionnpm workspaces
Your equivalent

The organized-ai monorepo that ties your 5 pillars together

02 / Repos

Mac Mini Agent — Infra Pattern

Mac Mini Agent
disler / mac-mini-agent · macOS automation for AI agents — GUI control, tmux orchestration, HTTP job server
★ 30 · INFRA PATTERN
What it is

Four purpose-built CLIs: Steer (Swift GUI automation via OCR), Drive (Python tmux control with sentinel pattern), Listen (FastAPI HTTP job server on port 7600 spawning Claude Code), and Direct (CLI client for Listen).

Fit for your stack

Architecturally identical to OpenClaw gateway on M4 Mini (port 18789). Two-machine model maps to your claws-mac-mini + jordans-mac-mini setup. Sentinel pattern (__DONE_token:exit_code) makes agent subprocess completion deterministic. justfile as command runner replaces scattered npm scripts.

Patterns to steal
sentinel completion patternjustfile command runnerListen HTTP job serverYAML job state filesdrive fanout parallel exec
Your equivalent

OpenClaw Gateway (port 18789, claws-mac-mini) + tmux sentinel dispatch to jordans-mac-mini

03 / Repos

Hermes Agent — Direct Match

Hermes Agent
NousResearch / hermes-agent · Self-improving agent — closed learning loop, skill creation, cron, multi-platform gateway
★ 8.7k · DIRECT MATCH
What it is

A self-improving Python agent with a closed learning loop — creates skills from experience, improves them during use, maintains persistent memory, runs FTS5 session search for cross-session recall. Ships with cron scheduler, multi-platform messaging gateway (Telegram, Discord, Slack, Signal), and explicit OpenClaw migration: hermes claw migrate.

Fit for your stack

Your Hermes cloud agent (MiniMax API) IS this project — EXP-11–21 experiments are their trajectory generation loop. hermes claw migrate imports OpenClaw skills, memories, SOUL.md, API keys — confirmed upgrade path. toolset_distributions.py maps to your plugin-marketplace architecture.

Patterns to steal
trajectory_compressor.pytoolset_distributions.py.plans/ directoryacp_adapter + acp_registryoptional-skills/ patternFTS5 session search
Your equivalent

Hermes daemon on claws-mac-mini :7700 (Python, MiniMax API, skill loop)

04 / Repos

Paperclip — Direct Match

Paperclip
paperclipai / paperclip · Open-source orchestration for zero-human companies — if OpenClaw is an employee, Paperclip is the company
★ 32.2k · DIRECT MATCH
What it is

Node.js server + React UI orchestrating AI agents to run a business. Org charts, heartbeat scheduling, per-agent budgets, multi-company isolation, full tool-call audit logs. Uses pnpm workspaces across packages/, server/, ui/, cli/, skills/. Works with OpenClaw, Claude Code, Codex, Cursor, Bash, HTTP.

Fit for your stack

Your Paperclip on claws-mac-mini IS this project — 5 pillars map to their org chart + heartbeat model. pnpm-workspace.yaml is the exact monorepo template for organized-ai. Heartbeat model replaces manual agent kick-offs — agents wake on schedule. Per-agent cost budgets + audit logs solve the runaway token problem.

Patterns to steal
pnpm-workspace.yaml layoutheartbeat scheduling modelatomic task checkoutper-agent budget enforcementgoal ancestry in task contextportable company templates
Your equivalent

Paperclip runtime on claws-mac-mini :3100 orchestrating all Claw agents


05 / Synthesis

Cross-Repo Summary

Missing piece identified
The organized-ai monorepo — pi-mono structure + paperclip pnpm workspace = one repo for all 5 pillars
Most urgent borrow
mac-mini-agent sentinel pattern → reliable async completion across claws → jordans SSH dispatch
Confirmed upgrade path
hermes claw migrate — import OpenClaw skills, memories, SOUL.md → Hermes Agent (NousResearch)
kata's role in all of this
Session enforcement layer across the monorepo — each Worker deploy runs as a kata mode