Repo Radar's fourth issue leaves the coding agents alone and looks at the tooling around them. The five projects below were all pushed within the last 48 hours. Memory between sessions, code indexing, multi-agent orchestration, local inference, and generated-code review are the jobs they cover.
agentmemory
Captures coding sessions across agents, compresses them into searchable memory, and injects relevant context when a new session starts. Runs on SQLite with twelve automatic hooks, so recall does not depend on manual API calls. Works across Claude Code, Cursor, Codex CLI, and Gemini CLI rather than locking to one.
codegraph
Pre-indexes a codebase into a local SQLite knowledge graph of symbols, files, and relationships. Claude Code then pulls entry points and related code in single tool calls instead of repeated grep and read passes, which the README puts at 94% fewer tool calls. Runs entirely local, no API keys, with file watching to stay current.
Get Implicator.ai in your inbox
Strategic AI news from San Francisco. No hype, no "AI will change everything" throat clearing. Just what moved, who won, and why it matters. Daily at 6am PST.
No spam. Unsubscribe anytime.
agent-of-empires
A session manager for running several coding agents in parallel, each isolated in its own tmux session and git worktree. It covers Claude Code, OpenCode, Codex CLI, and Gemini CLI, adds status detection for which agent is running or waiting, and exposes a TUI plus a web dashboard for checking in from a phone.
omlx
A local LLM inference server for Apple Silicon with continuous batching and a tiered KV cache that spills from RAM to SSD, then restores on a matching prefix hit even after a restart. It serves multiple models with LRU eviction, exposes OpenAI-compatible endpoints, and is managed from a native macOS menu bar app.
react-doctor
Scans a React codebase and returns a 0 to 100 health score with diagnostics across state management, performance, security, accessibility, and dead code. Rules toggle automatically by framework and React version. Built by Million.co to catch the React that coding agents write badly, and to hand those agents the rules upfront.
agentmemory
Coding agents start every session with no memory of the last one, which is why developers re-explain the same architecture and past fixes daily. agentmemory, an Apache-2.0 project at 8,903 stars, stores those sessions in a local SQLite database and feeds the relevant parts back when a new session opens. Twelve capture hooks do this without manual API calls. The README puts retrieval accuracy at 95.2% on its own benchmark, with mem0 at 68.5% and Letta at 83.2%, and lists Claude Code, Cursor, Codex CLI, and Gemini CLI among supported agents.
Installation is a single npx command, either as an MCP server or a Claude Code plugin. A team can point it at one active repository, run a normal week of work across whatever agents it already uses, then start a cold session to see whether the recalled architecture and decisions are right. The test is whether the agent picks up a real task without the usual re-explanation. agentmemory's only dependency is SQLite, so a team that finds the recall noisy can remove it without unwinding other infrastructure.
View agentmemory on GitHub →Frequently Asked Questions
How were these projects selected?
Current GitHub metadata, recent activity, README clarity, practical setup path, and relevance to builders working with AI systems.
Are stars enough?
No. Stars measure attention. Push dates, license, issues, docs, and whether the project solves a specific workflow decide usefulness.
What does the difficulty score mean?
It estimates how hard the project is to test or adapt, not how impressive the underlying engineering is.
Which repo should readers try first?
react-doctor is the easiest test, a single command that scans a React codebase. agentmemory is the more strategic experiment for teams already using agents heavily.
What should teams check before production use?
License, data retention, credential access, update speed, maintainer responsiveness, and whether the repo has a realistic rollback path.
AI-generated summary, reviewed by an editor. More on our AI guidelines.
IMPLICATOR