| ๐ค | Coding agents ยท included in the base installm3 setup auto-detects and wires m3 into Claude Code, Cursor, Cline, Gemini CLI, Google Antigravity, Aider, OpenCode, OpenClaw, Hermes โ one shared memory across every agent, and any agent you add later is picked up automatically. (See MCP Client Install) |
| ๐ฅ | Multi-agent synchronization ยท included in the base install agents coordinate through one store: memory scoped per agent / org / user, direct handoffs into another agent's inbox, shared tasks with a recursive task tree, and opt-in SQL-layer isolation so an agent's private notes stay private. Concurrent readers and writers are safe by design (WAL + retry), so a planner, an implementer and a reviewer can work at the same time. (See Multi-Agent Orchestration) |
| ๐ฅ๏ธ | Web dashboard, open to all users โ not just developers ยท included in the base install a built-in, backend-agnostic control panel (default http://127.0.0.1:8088): browse memory, read your auto-generated Memory Wiki, explore the interactive knowledge graph, and watch system health / load. Just run m3 dashboard. (See Dashboard Guide) |
| ๐ | Auto-generated wiki + Obsidian export ยท core feature โ in the base install, nothing extra to enablem3 wiki generate compiles your canonical memories (pinned, high-confidence, beliefs, procedures) and indexed files into a browsable, interlinked Markdown vault โ one page per topic, real hyperlinks for every relationship, and provenance links down to the source document each fact came from. Renders on GitHub, in a self-contained offline HTML viewer, or as an Obsidian vault (--obsidian for graph view + backlinks). (See Wiki Guide) |
| ๐ | PostgreSQL ยท optional โ you do not need a database Most people should ignore this row. m3 stores everything in a local SQLite file by default: nothing to install, nothing to run. Point m3 at a PostgreSQL server instead when you want one shared store for several machines โ set pip install "m3-memory[postgres]" and M3_DB_BACKEND=postgres. It is a manual step today; m3 setup does not configure it for you. (See Architecture ยท Sync) |
PyPI downloads are the pepy.tech total. Badges are regenerated on a schedule by star-history.yml.
Python: m3 core runs on 3.12+ (including 3.14 and 3.15). The optional framework extras follow their own caps โ PydanticAI is 3.14-native (plain pip install); CrewAI requires 3.10โ3.13 (a 3.14 escape hatch is documented).