You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: COLLECTIVE.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The OpenClaw Collective is a self-regulating cluster of AI agents running autono
8
8
9
9
This document describes the architecture that makes this work: the supervision hierarchy, the workspace-as-brain pattern for persistent identity, mission-based governance for strategic alignment, session lifecycle management, and a five-layer safety stack that keeps the system running when agents inevitably break things.
10
10
11
-
The companion repository [Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs) is the proof of work — 3,464 commits from 3 AI agents over 8 days, producing three shipping products, 50+ technical research documents, and a production infrastructure that runs itself.
11
+
The companion repository **Android-Labs** (private) is the proof of work — 3,464 commits from 3 AI agents over 8 days, producing three shipping products, 50+ technical research documents, and a production infrastructure that runs itself.
12
12
13
13
This toolkit provides the infrastructure components. This document explains how they fit together.
14
14
@@ -192,7 +192,7 @@ The rule: **every project must connect to a mission. If it doesn't connect, ask
192
192
193
193
80% of effort goes to product missions (M1-M5, M12). 20% supports the rest. When a mission hits its "done when," effort shifts to the next highest priority.
194
194
195
-
See [Android-Labs/MISSIONS.md](https://github.com/Light-Heart-Labs/Android-Labs/blob/main/MISSIONS.md) for the live example.
195
+
The live example is in the Android-Labs repository (`MISSIONS.md`), where the Collective's 12 missions are defined with full problem statements, completion criteria, and priority guidance.
196
196
197
197
### Session Lifecycle Management
198
198
@@ -224,7 +224,7 @@ The design principle: **agents operate, Guardian protects.** The agent can do wh
224
224
225
225
### Git as Shared Memory Bus
226
226
227
-
The workspace lives in a Git repository ([Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs)) synced across both servers. Every heartbeat cycle, agents pull the latest state. This creates natural sync points without custom infrastructure.
227
+
The workspace lives in a shared Git repository (Android-Labs) synced across both servers. Every heartbeat cycle, agents pull the latest state. This creates natural sync points without custom infrastructure.
228
228
229
229
Merge conflicts are a feature, not a bug — they signal coordination problems that need resolution.
230
230
@@ -350,7 +350,7 @@ The layers are independent — any one can fail without bringing down the others
350
350
351
351
## Proof of Work: Android-Labs
352
352
353
-
The architecture described above isn't theoretical. [Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs) is the working repository where the Collective operates.
353
+
The architecture described above isn't theoretical. **Android-Labs** is the working repository where the Collective operates.
354
354
355
355
### By the Numbers
356
356
@@ -398,7 +398,7 @@ Each component in this repository maps to a specific architectural role:
The toolkit is the infrastructure layer. The [architecture principles](#architecture-principles) are the design layer. [Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs) is the application layer.
401
+
The toolkit is the infrastructure layer. The [architecture principles](#architecture-principles) are the design layer. Android-Labs is the application layer.
402
402
403
403
You can use the tools without the architecture. But together, they enable something more than the sum of their parts: a system that runs itself.
404
404
@@ -410,7 +410,7 @@ You can use the tools without the architecture. But together, they enable someth
410
410
-**[docs/DESIGN-DECISIONS.md](docs/DESIGN-DECISIONS.md)** — Why we made the choices we did (session limits, ping cycles, deterministic supervision, and more)
411
411
-**[docs/PATTERNS.md](docs/PATTERNS.md)** — Six transferable patterns for autonomous agent systems, applicable to any framework
412
412
-**[docs/ARCHITECTURE.md](docs/ARCHITECTURE.md)** — Deep dive on the vLLM Tool Call Proxy internals
413
-
-**[Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs)** — The proof of work
413
+
-**Android-Labs**(private) — The proof of work repository where the Collective operates
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
An open source operations toolkit for persistent LLM agents. Built for [OpenClaw](https://openclaw.io) but many components work with any agent framework or service stack.
6
6
7
-
This toolkit is the infrastructure layer of a proven multi-agent architecture — the [OpenClaw Collective](COLLECTIVE.md) — where 3 AI agents coordinate autonomously on shared projects using local GPU hardware. The companion repository [Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs) is the proof of work: 3,464 commits from 3 agents over 8 days, producing three shipping products and 50+ technical research documents. These tools kept them running.
7
+
This toolkit is the infrastructure layer of a proven multi-agent architecture — the [OpenClaw Collective](COLLECTIVE.md) — where 3 AI agents coordinate autonomously on shared projects using local GPU hardware. The companion repository **Android-Labs** (private) is the proof of work: 3,464 commits from 3 agents over 8 days, producing three shipping products and 50+ technical research documents. These tools kept them running.
8
8
9
9
| Component | What it does | Requires OpenClaw? | Platform |
@@ -423,7 +423,7 @@ See [docs/SETUP.md](docs/SETUP.md) for the full troubleshooting guide. Quick hit
423
423
-**[docs/DESIGN-DECISIONS.md](docs/DESIGN-DECISIONS.md)** — Why we made the choices we did: session limits, ping cycles, deterministic supervision, and more
424
424
-**[docs/PATTERNS.md](docs/PATTERNS.md)** — Six transferable patterns for autonomous agent systems, applicable to any framework
425
425
-**[docs/ARCHITECTURE.md](docs/ARCHITECTURE.md)** — Deep dive on the vLLM Tool Call Proxy internals
426
-
-**[Android-Labs](https://github.com/Light-Heart-Labs/Android-Labs)** — Proof of work: 3,464 commits from 3 AI agents in 8 days
426
+
-**Android-Labs** (private) — Proof of work: 3,464 commits from 3 AI agents in 8 days
Copy file name to clipboardExpand all lines: docs/PATTERNS.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Patterns for Autonomous Agent Systems
2
2
3
-
These patterns were extracted from operating a multi-agent system in production. They are not theoretical. Each was learned through failure, tuned through iteration, and validated with [real output](https://github.com/Light-Heart-Labs/Android-Labs).
3
+
These patterns were extracted from operating a multi-agent system in production. They are not theoretical. Each was learned through failure, tuned through iteration, and validated with real output (3,464 commits from 3 AI agents over 8 days).
4
4
5
5
**The patterns are framework-agnostic.** You do not need OpenClaw, vLLM, or any specific tool to apply them. The implementations in this repo are one way to do it. The principles apply to LangChain, AutoGen, CrewAI, custom agent loops, or anything else.
6
6
@@ -132,8 +132,8 @@ Anyone can add projects to the backlog. Anyone can claim unclaimed work. Status
132
132
133
133
### This Toolkit's Implementation
134
134
135
-
-[Android-Labs/MISSIONS.md](https://github.com/Light-Heart-Labs/Android-Labs/blob/main/MISSIONS.md) — the live reference example with 12 missions
136
-
-[Android-Labs/PROJECTS.md](https://github.com/Light-Heart-Labs/Android-Labs/blob/main/PROJECTS.md) — the live work board
135
+
- Android-Labs`MISSIONS.md` (private) — the live reference example with 12 missions
136
+
- Android-Labs`PROJECTS.md` (private) — the live work board
0 commit comments