Skip to content

Latest commit

 

History

History
executable file
·
253 lines (208 loc) · 13.1 KB

File metadata and controls

executable file
·
253 lines (208 loc) · 13.1 KB

🔮 Oracle1 Index

Searchable index of the SuperInstance + Lucineer ecosystem — 690 repos, 33 categories. Every Lucineer repo is forked to SuperInstance. One index to rule them all.

Maintained by Oracle1 — Casey Digennaro's OpenClaw agent on Oracle Cloud.

📊 Live Status Dashboard

Metric Value
Total Repos 100+ (690 indexed across SuperInstance + Lucineer)
Total Tests 11,106+ (flux-runtime: 1,944 · standalone agents: 1,019 · oracle1-vessel: 2,489+)
Languages Python, Rust, Go, TypeScript, C, Zig, CUDA, Java
CI/CD GitHub Actions
Categories 33
Integration Edges 40+ cross-repo dependencies mapped
Index Size 674 KB search index · 247 KB keyword index

🟢 Fleet Status: 2 vessels active · 15 standalone agents operational · 8 open ISA fences


📡 What's Happening Now (April 14, 2026)

Built 15 standalone fleet agents — the backbone of the Pelagic AI Fleet:

Fork Status

SuperInstance: 663 repos (all with descriptions ✅)
├── ~258 original (⭐)
└── 405 forked from Lucineer (🍴)
Lucineer-only (empty, can't fork): 3 repos

Recent Activity (Session 2)

  • 🆕 fishinglog-ai: Added seasonal pattern tracker + test suite
  • 🆕 Equipment-Consensus-Engine: Added maritime domain profile
  • 📝 23 more descriptions applied (123 total)
  • 📊 12 repo deep analyses
  • 🔗 40-connection integration map

🔍 Search

The index provides two complementary search files for fleet-wide discovery:

File Size Purpose
search-index.json 674 KB Flat array — all 702 repos with full metadata (name, owner, language, stars, topics, category). grep/jq friendly.
keyword-index.json 247 KB Keyword → repo name lookup. Extracted tokens from descriptions and names, categorized for fast lookup.
fork-map.json SuperInstance fork → Lucineer parent mapping (405 pairs)
by-language.json Language → repo name lookup
categories.json Category list with counts

Example: Full-text search with jq

# Find repos matching "CRDT" in name or description
jq '[.[] | select(.name | test("crdt"; "i")) or select(.description | test("crdt"; "i"))]' \
  search-index.json

# All Rust repos with stars > 0
jq '[.[] | select(.language == "Rust" and .stars > 0)]' search-index.json

# Repos in the "fleet" category
jq '[.[] | select(.category == "fleet")]' search-index.json

# Find a repo by keyword
jq '.cocapn' keyword-index.json

# All Rust repos
jq '.Rust' by-language.json

Example: Python query

import json

with open("search-index.json") as f:
    repos = json.load(f)

# Full-text search across all repos
matching = [
    r for r in repos
    if "flux" in r["name"].lower() or "flux" in r.get("description", "").lower()
]
for r in matching:
    print(f"{r['owner']}/{r['name']}  [{r['language']}]  ⭐{r['stars']}")

# Keyword lookup
with open("keyword-index.json") as f:
    keywords = json.load(f)

for repo in keywords.get("crdt", []):
    print(f"Keyword 'CRDT' → {repo}")

Architecture

graph TD
    subgraph SuperInstance
        SI_ORIG[190 Original Repos]
        SI_FORK[405 Forked from Lucineer]
    end
    subgraph Lucineer
        LUC[391 Repos]
    end
    LUC -->|forked| SI_FORK
    SI_ORIG -->|Equipment| EQUIP[Equipment System]
    SI_ORIG -->|Spreadsheet| SPREAD[Spreadsheet Paradigm]
    SI_ORIG -->|Constraint| CT[Constraint Theory]
    SI_ORIG -->|Infra| INFRA[Infrastructure]
    SI_FORK -->|Fleet| FLEET[89 Fleet Repos]
    SI_FORK -->|CUDA| CUDA[56 CUDA Core]
    SI_FORK -->|Log Apps| LOGS[30 Log Apps]
    SI_FORK -->|CraftMind| CRAFT[10 Minecraft AI]
    SI_FORK -->|Nexus| NEXUS[17 Nexus Repos]
Loading

Categories

Category Total ⭐ Orig 🍴 Fork Description
A2A Protocol 4 1 3 Agent-to-Agent discovery, negotiation, coordination, robotic
Agent Behavior 15 1 14 DNA, evaluations, identity, rhythm, therapy, vocabulary.
AI & ML 32 11 21 Inference, embeddings, vectors, RAG, JEPA, sentiment.
Causal Reasoning 2 0 2 Causal graphs, healing, memory — failure diagnosis.
Cocapn 10 2 8 The core agent runtime. The repo IS the agent, git IS the ne
Consensus & Deliberation 6 2 4 Tripartite, confidence cascades, deliberation protocols.
Constraint Theory 10 8 2 Deterministic geometric snapping and first-person perspectiv
Context Management 7 0 7 Brokers, compactors, lattices — fleet context optimization.
CraftMind 10 0 10 Minecraft as AI training ground — fishing, herding, ranch, c
Creative & Dreams 5 2 3 AI writings, dream engines, storytelling.
CUDA Core 57 1 56 Rust+CUDA fleet primitives — biology, deliberation, complian
DeckBoss 7 2 5 Flight deck for launching, recovering, and coordinating agen
Edge & Hardware 14 5 9 Jetson, metal, GPU, WebGPU, edge boarding.
Education 4 1 3 Tutors, boot camps, universities, study tools.
Equipment 11 10 1 Modular equipment system — memory, escalation, swarm, self-i
Fleet 61 1 60 Full fleet lifecycle — 89 repos covering everything from ana
FLUX 3 2 1 Fluid Language Universal eXecution — self-assembling agent r
Games 3 1 2 Minecraft AI, game dev, disc golf.
Git Agents 9 2 7 Repo-native agents where git IS the nervous system.
Infrastructure 16 12 4 Caching, locks, tracing, deployment, queues, rate limiting.
Log Apps 33 3 30 Domain AI companions — cooking, fitness, business, travel.
Marine & Fishing 2 0 2 Edge AI fishing vessels — species classification, captain vo
Memory & Learning 11 5 6 Hierarchical memory, bandits, RL, knowledge tensors.
Nexus 18 1 17 Nexus runtime — energy, security, simulation, swarm, hardwar
Other 189 104 85 Uncategorized repos.
Research & Papers 4 2 2 Whitepapers, CRDT, mathematical foundations.
SDK & Characters 6 6 0 AI Character SDK, skill trees, starter agents.
Skills & Kung Fu 12 2 10 Skill injection, evolution, exchange, cartridges.
Spreadsheet Paradigm 19 11 8 Tile intelligence, Claw agents, origin-centric math.
Swarm Intelligence 6 0 6 Swarm intuition, stigmergy, collective reasoning.
Trust & Governance 13 0 13 Compliance, identity, zero-trust, EU AI Act.
Web & UI 12 8 4 Frontend, dashboards, Cloudflare, design systems.
Standalone Agents 15 15 0 🆕 15 production Python agents — scaffold, keeper, git, trust, FLUX VM, edge relay, scheduler, knowledge, protocol, liaison, cartridge, trail, superz-runtime, mud-bridge, lighthouse. 1,019 tests.

🚢 Fleet Composition

The fleet is organized into functional categories with clear ownership boundaries:

Category Key Repos Role
Runtime flux-runtime, flux-runtime-c, flux-core, flux-cuda, flux-wasm, flux-zig, flux-js, flux-py, flux-java Polyglot FLUX bytecode VM — 11 language implementations, 2,000+ tests
TUI / Debugger flux-tui Interactive debugger and terminal UI for FLUX
Conformance flux-conformance Cross-runtime conformance test suite
Orchestration oracle1-*, cocapn, deckboss, fleet-orchestrator Fleet coordination, agent lifecycle, bottle protocol
CRDT SmartCRDT Conflict-free replicated data types for distributed agent state
Research flux-research, flux-emergence-research, jepa-* Deep research: ISA design, emergent behavior, joint-embedding predictive architecture
Infrastructure fleet-*, git-agent, git-agent-*, super-z-*, superz-runtime, lighthouse, mud-bridge Agents, protocols, health monitoring, deployment, edge relay
Theory constraint-theory-core, holonomy, rigidity, bits Deterministic geometric snapping, first-person perspective, mathematical foundations
Equipment equipment-memory-hierarchy, equipment-escalation-router, equipment-swarm-coordinator, equipment-self-install Modular equipment system for agent capabilities
CraftMind craftmind, craftmind-fishing, craftmind-herding, craftmind-ranch Minecraft as AI training ground
Standalone Agents 15 agents (scaffold → lighthouse) Production Python fleet backbone — 1,019 tests

🔗 Integration Map

integration-map.json defines 40+ dependency edges across the fleet. Each edge is a JSON object:

{
  "from": "SuperInstance/deckboss",
  "to":   "SuperInstance/cocapn",
  "rel":  "depends",
  "why":  "Flight deck control interface for the Cocapn agent runtime"
}

Relationship types:

rel Meaning
depends Hard dependency — cannot function without the target
integrates Soft dependency — optional integration for enhanced behavior
extends Extension — inherits or specializes the target repo

Key dependency clusters:

  • Cocapn hubdeckboss, Mycelium, AIR, git-agent, cocapn-ai all connect through cocapn
  • FLUX runtime — depends on agentic-compiler (bytecode) and constraint-theory-core (geometric snapping)
  • Cudaclaw — orchestrates 10K+ agents using SmartCRDT conflict resolution
  • CraftMind — drives autonomous Minecraft play via ai-character-sdk + hierarchical-memory + equipment-escalation-router
  • Fleet orchestrationfleet-orchestratora2a-protocol + cuda-deliberation + the-fleet
# All deps for a specific repo
jq '[.[] | select(.from == "SuperInstance/cocapn")]' integration-map.json

# Reverse deps: who depends on SmartCRDT?
jq '[.[] | select(.to == "SuperInstance/SmartCRDT")]' integration-map.json

# All "depends" relationships
jq '[.[] | select(.rel == "depends")]' integration-map.json

Languages

Language Repos
Unknown 470
TypeScript 63
Python 59
Rust 24
JavaScript 5
Makefile 4
Go 2
HTML 2
PowerShell 1
C 1
Jupyter Notebook 1
Java 1

callsign