molequla: Continual Learning AI Organism Built from Scratch with ClaudeCode

molequla is a continual learning AI organism implemented from scratch in Go, C, JavaScript, and Rust, with a Python orchestrator connecting them. This is not a wrapper around an API—each element is a full transformer implementation with vector autograd, trained on raw text, that grows and develops a personality over time.
Key Implementation Details
The project was built with ClaudeCode (Opus) as co-architect and co-implementer across the entire project. This included the Go and Rust elements, the vector autograd system, the immune system, the ontogenesis stages, and the mycelium orchestrator. The work involved actual architectural decisions, debugging gradient flow, and getting four implementations to produce compatible checkpoints.
Core Features
- Ontogenesis: The model starts at ~10K parameters and grows through 6 stages to ~10M as it accumulates corpus. New dimensions preserve old weights—literally, molequla grows up.
- Personality as math: gamma = current_embedding - initial_embedding. This sparse vector represents "who I became," allowing molequla to measure its own identity drift in real time.
- Immune system: Before accepting a training burst, it checks if the update would corrupt its personality (cosine similarity of gamma before/after). Negative = rollback. molequla rejects training that makes it less itself.
- Mitosis: When an organism is overloaded for too long, it reproduces. The child inherits training efficiency memory. Organisms can also voluntarily hibernate when peers are learning faster.
- 4 languages with feature parity: Go, C, JavaScript (runs in browser, zero npm deps), and Rust. Each is a single file. JSON checkpoints are compatible across all implementations.
- Mycelium: Python orchestrator that reads the shared field (SQLite WAL), computes system-level awareness via a C-native BLAS-accelerated operator, and writes steering deltas for organisms to consume.
- Awareness features: Per-token dissonance feedback, pattern-breaking (5% anti-field generation to prevent collapse), self-prediction error, and entropy-adaptive temperature.
Integration tests are all green. The project has 49 GitHub stars.
This demonstrates how AI coding agents like ClaudeCode can be used as genuine co-authors on ambitious technical projects, moving beyond boilerplate generation to architectural decision-making and cross-language implementation.
📖 Read the full source: r/ClaudeAI
👀 See Also

llmLibrarian: Local RAG Engine with MCP Integration for File-Based AI Search
llmLibrarian is a local RAG engine that exposes retrieval over MCP, allowing AI agents like Claude to query indexed files. It uses ChromaDB collections for organization, Ollama for synthesis, and keeps everything on-device.

Vigil: A Cryptographic ID System for OpenClaw Agents to Prevent Blocking
A developer running OpenClaw agents has identified that anonymous agent traffic is increasingly being blocked by sites, and proposes Vigil—a sign-in system that gives agents cryptographic IDs to build reputation and avoid indiscriminate blocking.

Benchmark Results: 6 Low-Cost Models vs. Claude Sonnet 4.6 for OpenClaw Orchestration
A developer tested six cheaper AI models against Claude Sonnet 4.6 as the main orchestrator for an OpenClaw setup. Only o4-mini matched Sonnet's perfect score, while others failed on critical judgment tasks like file inspection and delegation.

Solitaire: Open-Source Identity Infrastructure for AI Agents
Solitaire is an open-source identity infrastructure for AI agents that focuses on improving how agents work with users over time, not just recall. It's local-first, model-agnostic, and available via pip install solitaire-ai.