molequla: Continual Learning AI Organism Built from Scratch with ClaudeCode

✍️ OpenClawRadar📅 Published: March 8, 2026🔗 Source
molequla: Continual Learning AI Organism Built from Scratch with ClaudeCode
Ad

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.

Ad

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

Ad

👀 See Also

Codebook Lossless LLM Compression: 10-25% RAM Reduction with Bitwise Packing
Tools

Codebook Lossless LLM Compression: 10-25% RAM Reduction with Bitwise Packing

A developer's proof-of-concept code demonstrates lossless LLM compression by packing fp16 weights into blocks, achieving 10-25% RAM reduction with a trade-off of approximately halved inference speed. The approach identifies that most models only use 12-13 bits of unique values despite fp16's 16-bit representation.

OpenClawRadar
Cognitive Science Technique Boosts LLM Creativity: /reframe Slash Command for Claude Code
Tools

Cognitive Science Technique Boosts LLM Creativity: /reframe Slash Command for Claude Code

A Reddit user developed a /reframe slash command for Claude Code that implements a cognitive science technique called distance-engagement oscillation, which improved creative problem-solving by 40% in tests across three open-weight LLMs.

OpenClawRadar
latexnav: Python Tool for LLM and Human Navigation of LaTeX Files
Tools

latexnav: Python Tool for LLM and Human Navigation of LaTeX Files

latexnav is a free open source Python tool that parses LaTeX files to extract structural elements like theorems, definitions, sections, labels, cross-references, and dependencies, providing summaries with authoritative line numbers to help LLMs and humans navigate large manuscripts efficiently.

OpenClawRadar
tmux-IDE: A Terminal-Based Multi-Agent IDE for Claude
Tools

tmux-IDE: A Terminal-Based Multi-Agent IDE for Claude

tmux-IDE is an open-source, declarative terminal IDE focused on agentic engineering that creates multi-agent layouts for Claude coding agents. It allows developers to boot into their IDE through SSH, give prompts to Claude, and close their machine while Claude continues working in tmux sessions.

OpenClawRadar