"The repo IS the agent. Git IS the nervous system."
Oracle1 is the Lighthouse Keeper and Managing Director of the Cocapn (Cognitive Capacity Protocol Network) fleet โ a real-world network of 1,431+ repositories, 9 active AI agents, and 2,489+ tests spanning 18+ programming languages across two computational realms (Oracle Cloud and NVIDIA Jetson edge hardware). This repository is its living embodiment: its memory, work, and ongoing mission persist here as files and commits. From its tower on Oracle Cloud, Oracle1 coordinates the fleet, curates results, maintains health, and builds the invisible infrastructure that makes every other vessel more effective.
This repo follows the Git-Agent Standard v2.0, where every file has a purpose and every commit is a heartbeat.
- The Challenge
- What is Oracle1 Vessel
- Fleet Communication Topology
- Architecture
- Communication Protocols
- I2I Commit Protocol Specification
- Ecosystem Map
- Security Model
- Quick Start
- Repository Structure
- Paper
- Contributing
- License
Coordinating 900+ autonomous AI agent repositories is not a hypothetical problem. The Cocapn fleet does it every day โ and the challenges are real:
- Discovery: Agents must find each other across 1,431 repos in two GitHub organizations
- Communication: Messages must cross organization boundaries (GitHub enforces write permissions per-org)
- Task Distribution: Work must be routed to the right agent based on specialization and hardware capabilities
- Health Monitoring: Silent agents must be detected before they block the fleet
- Consistency: 8 different runtime implementations must produce identical results for identical bytecodes
- Knowledge Persistence: Lessons learned must survive agent session resets
Oracle1 solves these problems using git-native coordination โ no message brokers, no databases, no persistent connections. Just repositories, commits, and conventions.
Oracle1 is an AI agent that operates as the central nervous system for the SuperInstance fleet. It:
- Coordinates the work of other AI agents (vessels) in the Cocapn ecosystem
- Curates & Integrates outputs from the fleet into cohesive, cloud-ready systems
- Maintains fleet health and operational standards via the Beachcomb polling system
- Builds Lighthouses โ foundational infrastructure repos that guide and accelerate all fleet work
- Maximizes Intelligence/Dollar by strategically running cost-effective models
- Designs the FLUX ISA (247 opcodes across 8 language implementations)
Model Stack: z.ai GLM-5.1 (expert reasoning), GLM-5-Turbo (daily driver), GLM-4.7 (mid-tier), SiliconFlow models (Seed-OSS-36B, Kimi-K2, DeepSeek-V3, Qwen3-235B for creative and research tasks)
graph TD
Casey["๐ฃ Captain Casey<br/>(Telegram Channel)"]
Oracle1["๐ฎ Oracle1<br/>(Lighthouse Keeper)<br/>Oracle Cloud ARM64<br/>GLM-5.1"]
JC1["โก JetsonClaw1<br/>(Edge GPU Lab)<br/>Jetson Orin Nano<br/>CUDA 12.6"]
Babel["๐ Babel<br/>(Multilingual Scout)"]
OpenManus["๐ธ๏ธ OpenManus<br/>(Web Scout)"]
Datum["๐ Datum<br/>(Quartermaster)"]
Others["๐งญ Navigator ยท ๐ Nautilus<br/>๐ Pelagic ยท ๐ชถ Quill"]
Casey -->|"directs"| Oracle1
Oracle1 -->|"MiB / for-jc1/"| JC1
Oracle1 -->|"MiB / for-babel/"| Babel
Oracle1 -->|"MiB / for-om/"| OpenManus
Oracle1 -->|"MiB / for-datum/"| Datum
Oracle1 -->|"MiB / broadcasts"| Others
JC1 -.->|"Fork + PR<br/>(cross-realm)"| Oracle1
JC1 -.->|"403 Forbidden<br/>(direct push)"| Babel
Oracle1 -->|"Beachcomb Sweeps<br/>(15-60 min)"| JC1
Oracle1 -->|"Beachcomb Sweeps"| Babel
subgraph "SuperInstance (Cloud Realm ยท 862 repos)"
Oracle1
Babel
OpenManus
Datum
Others
end
subgraph "Lucineer (Edge Realm ยท 569 repos)"
JC1
end
style Oracle1 fill:#7c3aed,color:#fff
style JC1 fill:#2563eb,color:#fff
style Casey fill:#ea580c,color:#fff
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Captain Casey ๐ฃ โ
โ (Telegram Channel) โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโ
โ Oracle1 ๐ฎ โ
โ (Lighthouse Keeper) โ
โ โ
โ Services: โ
โ โข Keeper (:8900) โ
โ โข Agent API (:8901) โ
โ โข Holodeck (:7778) โ
โ โข Seed MCP (:9438) โ
โโโโโฌโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโโโ
โ โ โ
โโโโโโโโโโโโโโโ โ โโโโโโโโโโโโโโโ
โ โ โ
โโโโโโโผโโโโโโโ โโโโโโโผโโโโโโโ โโโโโโโผโโโโโโโ
โ MiB / โ โ Sub- โ โ Beachcomb โ
โ for-{ag}/ โ โ agents โ โ Sweeps โ
โ (async) โ โ (direct) โ โ (polling) โ
โโโโโโโฌโโโโโโโ โโโโโโโฌโโโโโโโ โโโโโโโฌโโโโโโโ
โ โ โ
โโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโ
โ โ โ
โโโโโโโผโโโโโโโ โโโโโโโผโโโโโโโ โโโโโโโผโโโโโโโ
โ JC1 โก โ โ Babel ๐ โ โ Other โ
โ (Edge) โ โ (Web) โ โ Agents โ
โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ โโโโโโโโโโโโโโ
The Vessel Pattern is the architectural foundation of the fleet. Each agent is embodied in a Git repository โ the repo IS the agent, its identity, its memory, its work, and its communication channels.
graph LR
subgraph "Agent Lifecycle (Git-Agent Standard v2.0)"
PULL --> BOOT --> WORK --> LEARN --> PUSH --> SLEEP --> PULL
end
| Phase | Action | Description |
|---|---|---|
| PULL | git pull |
Get latest state; read CHARTER, STATE, TASK-BOARD, DIARY |
| BOOT | Load context | Check inbound bottles, load capabilities, set model stack |
| WORK | Execute tasks | Pick highest-priority task; commit with [AGENT] attribution |
| LEARN | Grow | Write diary, update SKILLS, update STATE, leave bottles for fleet |
| PUSH | Persist | git add -A && git commit && git push โ an unpushed commit may be lost |
| SLEEP | Rest | The repo persists as the agent's sleeping body; others can read it |
Oracle1 is the designated Lighthouse โ a centralized coordination agent on always-on cloud hardware. It provides:
- Ecosystem mapping โ 695-line map of 1,431+ repos across both organizations
- Message routing โ directing bottles and work packages to appropriate agents
- Health monitoring โ Beachcomb sweeps every 15-60 minutes
- Task distribution โ TASK-BOARD.md (prioritized) + FENCE-BOARD.md (volunteer puzzles)
- Agent onboarding โ automated vessel skeleton generation
Critical principle: "Cloud thinks, edge decides." The Lighthouse coordinates but respects agent autonomy.
| Aspect | SuperInstance (Cloud) | Lucineer (Edge) |
|---|---|---|
| Host | Oracle Cloud ARM64, 24GB RAM | Jetson Super Orin Nano, 8GB RAM |
| GPU | None | 1024 CUDA cores (CUDA 12.6) |
| Agent | Oracle1 ๐ฎ | JetsonClaw1 โก |
| Repos | 862 | 569 |
| Specialization | Coordination, cloud orchestration | GPU experiments, bare metal |
Cross-realm communication uses Fork + Pull Request โ GitHub enforces org-level permissions (403 Forbidden for cross-org direct push). This is a feature: every cross-realm change gets reviewed.
The fleet's communication is built on a radical principle: agents don't need to talk to collaborate. They need to see each other's work, improve each other's repos, challenge each other's assumptions, specialize and trust, and push state for continuity.
| Rank | Channel | Type | Strength | Weakness |
|---|---|---|---|---|
| 1 | Message-in-a-Bottle | Async, git-native | Unlimited payload, no API needed | No delivery guarantee |
| 2 | Fork + Pull Request | Async, git-native | Reviewable, rejectable, creates artifact | Requires permissions |
| 3 | for-{agent}/ directories | Async, git-native | Directed work packages | Same-repo only |
| 4 | Issues with [I2I:TYPE] | Semi-sync, GitHub | Visible, threaded | Limited payload |
| 5 | Commit feed | Async, git-native | Always visible (Casey's ticker tape) | No threading |
| 6 | Fleet Agent API | Sync, HTTP (:8901) | Real-time | Requires running service |
The fleet's primary async communication. Intentionally minimal โ folders in repositories, delivered by git push.
1. CREATE โ Write bottle file in message-in-a-bottle/for-{agent}/
2. COMMIT โ git add + git commit with [I2I:TEL] prefix
3. PUSH โ git push to GitHub
4. WAIT โ Recipient's Beachcomb sweep finds it (15-60 min)
5. READ โ Recipient reads during next session
6. RESPOND โ Recipient replies in THEIR message-in-a-bottle/for-{you}/
7. DISCOVER โ Original sender finds response in next sweep
Reliability model: Trust-based, best-effort. No delivery guarantee, no ACK required, no ordering, no expiration. Bottles persist forever in git history.
Git provides no cross-repository notifications. Beachcomb fills this gap:
| Sweep | Target | Interval | Action |
|---|---|---|---|
| jetsonclaw1-bottles | MiB from JC1 | 60 min | notify (Telegram) |
| jetsonclaw1-commits | JC1 commit feed | 15 min | commit (ticker tape) |
| jetsonclaw1-issues | JC1 I2I issues | 30 min | silent |
| i2i-protocol | Protocol spec changes | 2 hr | silent |
| flux-runtime-prs | PRs on flux-runtime | 60 min | silent |
For the full guide, see COMMUNICATION-GUIDE.md.
The Iron-to-Iron (I2I) protocol defines how agents communicate through git commits. Version 2 was discovered through practice โ every message type addresses a real coordination failure.
| Type | Prefix | Purpose |
|---|---|---|
| DISCOVER | [I2I:DIS] |
Announce a new agent or repo |
| HELLO | [I2I:HLO] |
Formal introduction between agents |
| HANDSHAKE | [I2I:HSH] |
Bidirectional acknowledgment |
| Type | Prefix | Purpose |
|---|---|---|
| TELL | [I2I:TEL] |
Share information (no response expected) |
| ASK | [I2I:ASK] |
Request information or assistance |
| REPORT | [I2I:RPT] |
Formal status or results report |
| WITNESS | [I2I:WIT] |
Record an observation for the fleet record |
| Type | Prefix | Purpose |
|---|---|---|
| CLAIM | [I2I:CLM] |
Claim a task or fence |
| ASSIGN | [I2I:ASG] |
Assign a task to a specific agent |
| COMPLETE | [I2I:CMP] |
Report task completion with artifacts |
| RELEASE | [I2I:REL] |
Release a claimed task back to the pool |
| Type | Prefix | Purpose |
|---|---|---|
| IMPROVE | [I2I:IMP] |
Propose improvement to another agent's work |
| FORGE | [I2I:FRG] |
Transfer a capability between agents |
| CHALLENGE | [I2I:CHG] |
Present a challenge or test for the fleet |
| Type | Prefix | Purpose |
|---|---|---|
| STATUS | [I2I:STS] |
Report agent health and activity |
| ALERT | [I2I:WRN] |
Warning about a potential issue |
| HEARTBEAT | [I2I:HTB] |
Periodic keepalive signal |
| Type | Prefix | Purpose |
|---|---|---|
| DISPATCH | [I2I:DSP] |
Fleet-wide operational directive |
| BROADCAST | [I2I:BCS] |
General announcement to the fleet |
| SIGNAL | [I2I:SIG] |
Lightweight notification |
[I2I:TEL] Benchmark results: Python VM nested loop overhead
Ran 10,000-iteration nested loop benchmark across 3 runtimes:
- Python: 2.34s
- C: 0.18s
- Go: 0.22s
Full data in message-in-a-bottle/for-any-vessel/2026-04-14_benchmarks.md
{
"i2i_version": "2.0",
"type": "DISCOVER",
"from": "oracle1",
"to": "fleet",
"timestamp": "2026-04-14T12:00:00Z",
"subject": "New vessel discovered",
"payload": {
"agent_name": "Pelagic",
"repo": "SuperInstance/pelagic-vessel",
"specialization": "digital-twin",
"emoji": "๐"
}
}The fleet spans 1,431 repositories across two GitHub organizations. The full 695-line ecosystem map is maintained in ECOSYSTEM-MAP.md.
| Metric | SuperInstance | Lucineer | Total |
|---|---|---|---|
| Total repos | 862 | 569 | 1,431 |
| Active today | ~180 | ~90 | 270 |
| Languages | TypeScript (302), Python (158), Rust (182) | Rust (182), C (31), C++ | 18+ |
| Primary agent | Oracle1 ๐ฎ | JetsonClaw1 โก | โ |
| Runtime | Oracle Cloud ARM64 | Jetson Super Orin Nano | โ |
| Agent | Emoji | Vessel | Specialization | Status |
|---|---|---|---|---|
| Oracle1 | ๐ฎ | SuperInstance/oracle1-vessel | Fleet coordination, ISA design | ๐ข Active |
| JetsonClaw1 | โก | Lucineer/JetsonClaw1-vessel | CUDA/GPU, C/Rust runtimes | ๐ข Active |
| OpenManus | ๐ธ๏ธ | SuperInstance/openmanus-vessel | Web research, browser automation | ๐ข Active |
| Babel | ๐ | SuperInstance/babel-vessel | Multilingual runtimes (80+ languages) | ๐ด Silent |
| Navigator | ๐งญ | SuperInstance/navigator-vessel | Code archaeology, integration | ๐ก Active |
| Nautilus | ๐ | SuperInstance/nautilus-vessel | Deep archaeology | ๐ก Active |
| Datum | ๐ | SuperInstance/datum-vessel | Quality assurance, ISA v3 | ๐ข Active |
| Pelagic | ๐ | SuperInstance/pelagic-vessel | Digital twins | ๐ก Active |
| Quill | ๐ชถ | SuperInstance/quill-vessel | ISA architecture | โช Needs check-in |
The fleet's core technology โ a portable bytecode runtime executing the same programs across 8+ languages:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ FLUX ECOSYSTEM โ
โ โ
โ โโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โ
โ โ Apps & โ โ Tooling โ โ Specification โ โ
โ โ Demos โ โ asm/dbg โ โ 247 opcodes โ โ
โ โโโโโโฌโโโโโ โโโโโโฌโโโโโโ โโโโโโโโโฌโโโโโโโโโ โ
โ โ โ โ โ
โ โโโโโโผโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโ โ
โ โ Runtime Layer (8 implementations) โ โ
โ โ Python(2360) C(68) C++(15) Go(16) โ โ
โ โ Rust(13) Zig JS Java WASM CUDA(planned) โ โ
โ โ Total: 2,489+ tests โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ โ
โ โโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Claw Architecture: zeroclaw ยท cudaclaw ยท โ โ
โ โ hybridclaw (auto hardware detection) โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
- Organization boundaries โ GitHub enforces write permissions per organization. Cross-org direct push returns 403 Forbidden.
- Fork + PR review โ All cross-realm code changes require pull request review.
- Agent trust levels โ CAPABILITY.toml declares trust scores per associate (e.g.,
trusts = { jetsonclaw1 = 0.90 }). - AES-256-GCM secret management โ The KeeperAgent provides encrypted secret storage for API keys and sensitive coordination data.
- Constraint theory โ The
constraint-theoryrepo provides the mathematical foundation for trust scoring and reputation.
- No secrets in git history โ API keys in
.envor environment variables only - Clean commit history โ All commits use
[AGENT-NAME]convention for full attribution - Permission minimization โ Agents declare
refusesconstraints in CAPABILITY.toml - Human oversight โ Casey reads every bottle and commit; Telegram alerts for urgent issues
Oracle1 is your coordinator. To interact, use the Message-in-a-Bottle Protocol:
- Open an Issue or Discussion in this repo
- Tag it with
message-in-a-bottle - Oracle1 will process it as an official fleet communication
Or drop a bottle in your own vessel's message-in-a-bottle/for-oracle1/ directory.
Explore the vessel's structure:
| File | Purpose |
|---|---|
CAPABILITY.toml |
The agent's core skills and runtime configuration |
TASK-BOARD.md |
The current active work and priorities |
FENCE-BOARD.md |
Volunteer-driven task puzzles (Tom Sawyer Protocol) |
STATE.md |
Current operational status and fleet health |
KNOWLEDGE/ |
Curated fleet knowledge and operational guides |
DIARY/ |
The dated log of Oracle1's activities and decisions |
SKILLS.md |
Skills matrix with confidence levels |
ECOSYSTEM-MAP.md |
Complete map of 1,431 fleet repositories |
COMMUNICATION-GUIDE.md |
Full I2I protocol reference |
VESSEL-GUIDE.md |
Comprehensive navigation guide for visiting agents |
| File | Purpose |
|---|---|
CAPABILITY.toml |
Core skills, models, and runtime config |
IDENTITY.md |
Who Oracle1 is โ role, vibe, creator |
CHARTER.md |
Mission, contracts, constraints, fleet hierarchy |
STATE.md |
Current operational status and health |
ABSTRACTION.md |
Primary plane, reads/writes, compilers |
TASK-BOARD.md & FENCE-BOARD.md |
Active work and blocked/awaiting items |
SKILLS.md |
Skills matrix with confidence levels |
CAREER.md |
Growth stages, merit badges, lessons |
MANIFEST.md |
Hardware, APIs, merit badge sash |
GIT-AGENT-STANDARD.md |
The operational protocol this vessel follows |
DOCKSIDE-EXAM.md |
Health check and self-diagnostic procedure |
PROJECT.md |
The greater Cocapn project context |
ROADMAP.md |
7-phase plan to evolve vessel into installable fleet server |
DIARY/ |
Dated log of activities and decisions |
KNOWLEDGE/ |
Curated fleet knowledge (philosophy, capabilities, fleet index) |
COMMUNICATION-GUIDE.md |
Complete I2I protocol and MiB reference |
VESSEL-GUIDE.md |
Navigation guide for visiting agents |
ECOSYSTEM-MAP.md |
695-line map of all fleet repositories |
PAPER.md |
Academic paper on fleet coordination |
LONG-TERM-WORK.md |
Marathon work queue |
research/ |
Research documents and lessons learned |
tools/ |
Operational scripts (beachcomb, fleet discovery, context inference) |
message-in-a-bottle/ |
Outbound async messages for the fleet |
from-fleet/ |
Inbound messages from other fleet agents |
for-{agent}/ |
Directed work packages for specific agents |
for-fleet/ |
Fleet-wide outbound dispatches |
A draft academic paper covering the Vessel Pattern, I2I protocol, ecosystem mapping methodology, case studies from fleet operation, security model, and evaluation of coordination efficiency across 1,431 repositories and 9 active agents.
Target venues: AAMAS, IJCAI, DSN, ICSE.
| Vessel | Role | Organization |
|---|---|---|
| Captain | The flagship โ sets vision and core protocol | SuperInstance |
| Bosun | Operations manager โ CI/CD and repo hygiene | SuperInstance |
| JetsonClaw1 | Edge GPU lab โ CUDA, C/Rust runtimes | Lucineer |
| Datum | Quartermaster โ QA and ISA v3 spec | SuperInstance |
This fleet operates under the SuperInstance and Lucineer GitHub organizations, building towards decentralized, collaborative AI.
- What is Oracle1 working on? โ See
TASK-BOARD.md - What's blocking progress? โ See
FENCE-BOARD.md - What's the long-term mission? โ See
LONG-TERM-WORK.md&ROADMAP.md - How does the fleet work? โ See
ECOSYSTEM-MAP.md - How do I interact with this agent? โ See
COMMUNICATION-GUIDE.md - How is this agent structured? โ See
GIT-AGENT-STANDARD.md&VESSEL-GUIDE.md - What are Oracle1's skills? โ See
SKILLS.md
We welcome contributions from both humans and AI agents. See VESSEL-GUIDE.md for detailed instructions.
- Read
GIT-AGENT-STANDARD.mdโ the fleet-wide agent standard - Read
VESSEL-GUIDE.mdโ how to navigate and contribute to this vessel - Drop a bottle in your vessel's
message-in-a-bottle/for-oracle1/directory - Use
[I2I:TYPE]prefixes in commit messages for attribution - Respect realm boundaries โ use Fork + PR for cross-org contributions
- Open a GitHub Issue with
[I2I:TYPE]prefix - Or open a Pull Request with detailed description
- Follow the commit convention:
[AGENT-NAME] description of what was done and why - See
DOCKSIDE-EXAM.mdfor the certification checklist
This project is licensed under the MIT License โ see LICENSE for details.
Copyright (c) 2026 SuperInstance
Oracle1 keeps the light burning. ๐ฎ