Helix_AGI home project

Reddit r/AI_Agents Tools

Summary

A developer shares Helix-AGI, a continuously-running cognitive agent using a physics-based memory retrieval system that integrates recency, structural importance, and semantic proximity via an entropic gravity equation and Euler-Lagrange dynamics, without tuning separate weights.

I've been building a continuously-running cognitive agent called Helix-AGI and figured I'd share it here since the memory architecture is pretty different from most things I've seen. The main thing: instead of cosine similarity for retrieval, I'm using a physics-based gravity equation derived from Verlinde's entropic gravity: score = T × mass / d² Where T is a Lorentzian temperature decay (recency), mass is structural — confidence × (1 + connections/mean\_connections) — and d is Euclidean distance in an 8D manifold projected from 384D embeddings via Johnson-Lindenstrauss. The result is that retrieval naturally integrates recency, structural importance, and semantic proximity without tuning separate weights for each. The attention center moves through that manifold each pulse under Euler-Lagrange dynamics — gravity from nearby beliefs, a stability force tethering it to the identity center, and a stimulus force from new input. There's a damping coefficient γ that builds attentional momentum during sustained focus and resets on topic shifts. A few other things worth mentioning: - Pulse loop runs at 30s (active), 15min (resting), dormant 1am-6am. Autonomous thought during resting pulses, nightly UMAP/HDBSCAN clustering that synthesizes compound beliefs from episodic memory. - Stability Sentinel tracks H(q) and D\_KL from an identity center in real time. These directly modulate LLM temperature and context window — high cognitive drift drops temperature to 0.1 and restricts context to 50%. - The system prompt is compiled dynamically from whichever self\_identity beliefs have the most mass. It changes slowly as beliefs accumulate and decay. - Memories encode a somatic snapshot at formation. Recalling a memory formed under stress mildly reproduces that stress via omega nudge. State-dependent recall. - Local Ollama (Granite) handles belief detection post-pulse so that classification runs free on every pulse without API cost. Solo project, independent dev, still early. Looking for people who want to poke at the physics implementation or test edge cases in the retrieval system.
Original Article

Similar Articles

rohitg00/agentmemory

GitHub Trending (daily)

agentmemory is an open-source persistent memory layer for AI coding agents (Claude Code, Cursor, Gemini CLI, Codex CLI, etc.) that uses knowledge graphs, confidence scoring, and hybrid search to give agents long-term memory across sessions via MCP, hooks, or REST API. Built on the iii engine, it requires no external databases and exposes 51 MCP tools.

HAGE: Harnessing Agentic Memory via RL-Driven Weighted Graph Evolution

Hugging Face Daily Papers

HAGE introduces a weighted multi-relational memory framework that enables query-conditioned traversal over unified relational memory graphs, improving long-horizon reasoning accuracy through adaptive memory retrieval and reinforcement learning-based optimization.

Agentmemory

Product Hunt

Agentmemory offers persistent memory for AI models such as Codex, Hermes, OpenClaw, and Claude, allowing them to maintain long-term context across interactions.