Project: https://github.com/tinyhumansai/openhuman Stars: 9K+ (GitHub Trending #1, gaining ~1k stars/day) License: GNU Stack: Node.js 24+ · Rust 1.93.0 · Tauri · pnpm · SQLite Creator: Senamakel
Key points
- Paradigm shift: While AutoGen, CrewAI, LangGraph, and OpenClaw assume the user drives the agent (writing prompts, configuring skills), OpenHuman flips the model — it proactively reads your Gmail, Slack, GitHub, calendar, Notion, and Stripe, syncing every 20 minutes into a local memory tree. "It already knows before you ask."
- 118+ integrations + auto-fetch: One-click OAuth via Composio. Every 20 minutes the engine pulls new data from all active connections and injects it into the memory tree.
- Memory Tree (Wiki-style): Inspired by Andrej Karpathy's LLM Wiki concept — raw data normalized to Markdown (≤3k token chunks), hierarchical summaries per source/topic/day, stored in local SQLite (not a vector DB), mirrored as an Obsidian-compatible
.mdvault users can browse and edit. - TokenJuice: A compression layer (HTML→Markdown, URL shortening, non-ASCII cleanup, whitespace normalization) claiming up to 80% cost/latency reduction.
- Model routing: Automatic hints —
reasoningfor frontier models,fastfor lightweight ones,visionfor multimodal — all under one subscription. - Extras: Animated desktop mascot with STT/TTS lip-sync that can join Google Meet; a background "subconscious loop" that reviews todos and new data.
- OpenHuman GitHub: https://github.com/tinyhumansai/openhuman
- Karpathy LLM Wiki gist (April 2026) and community derivatives
- Community comparisons: OpenClaw (MIT) · Hermes Agent (MIT) · Claude Cowork (Proprietary)
Wiki vs. RAG
Karpathy's insight: "RAG re-derives on every query, while a Wiki is a compounding asset — cross-references already exist, contradictions are flagged, synthesis reflects everything you've read."
| Dimension | Traditional RAG | OpenHuman Memory Tree | |---|---|---| | Storage | Vector embeddings + metadata | Hierarchical summary tree + Markdown | | Query | Similarity search + reranking | Structured tree traversal + LLM reasoning | | Knowledge compounding | Re-derived each time | Cross-references pre-built | | Explainability | Black-box vectors | Human-readable Markdown | | Persistence | External vector DB | Local SQLite + Obsidian |
Essentially: knowledge compilation — raw data is compiled into an intermediate representation optimized for LLM reasoning.
Comparison with existing platforms
| Dimension | Claude Cowork | OpenClaw | Hermes Agent | OpenHuman | |---|---|---|---|---| | Open source | Closed | MIT | MIT | GNU | | Onboarding | Desktop + CLI | Terminal-first | Terminal-first | UI-first, minutes | | Memory | Conversation-level | Plugin-dependent | Self-learning | Memory Tree + Obsidian | | Integrations | Few connectors | BYO | BYO | 118+ OAuth | | Auto-sync | No | No | No | 20-min loop | | Model routing | Single model | Manual | Manual | Built-in automatic | | Data sovereignty | Cloud | Local/cloud optional | Local | Local-first |
OpenClaw is a terminal-first workflow engine for developers; Claude Cowork is a closed-source desktop IDE; Hermes is observation-based self-learning; OpenHuman is a personalized assistant betting on data integration + compounding memory + low friction.
Risks and concerns
1. Attack surface: 118 OAuth connections = 118 breach points; stolen tokens expose Gmail, Stripe, etc. 2. Memory quality: Errors in LLM summaries compound through the tree; users must audit the Obsidian vault. 3. Information loss: 80% compression discards data — special characters in code, emoji nuance. 4. GNU license: Restricts commercial forks more than MIT competitors. 5. SQLite scale: No sharding option as memory grows large. 6. Privacy paradox: The more the agent knows you, the more sensitive the local device becomes.
Outlook
OpenHuman signals a shift from "tool agents" to "companion agents" — where an agent's value lies in how well it understands you, not just what tasks it can do. If validated: agent personality becomes the differentiator, integration layers become infrastructure, Wiki-style knowledge compilation displaces RAG as core memory (RAG demoted to supplementary retrieval), and privacy computing becomes essential.
OpenHuman isn't the most powerful platform (OpenClaw leads in toolchain depth) or the most ambitious (Hermes' self-learning), but it got one thing right: turning the agent from a tool that needs feeding into a companion that actively understands you — much as search evolved from keywords-in/links-out to answers.
References