← All posts
AI Guides· 3 min read

11 Repos That Changed How I Ship Code With AI Agents

A map of the eleven open-source repos behind the way I work with coding agents now — grouped into the three things they actually fix: how the agent works, what it knows, and how much of the loop you have to crank yourself.

Over the last few months a handful of open-source repos quietly changed how I work with coding agents — less typing prompts into a chat box, more building a system that does real work. I went deep on them in a three-part series; this is the map.

Eleven repos, three problems. Not “eleven cool tools” — three things a coding agent gets wrong, and the repos that fix each.

1. How the agent works → skills

A skill is a reusable instruction file that teaches the agent how to do a recurring task — your way, once, instead of re-explaining it in every prompt.

Deep dive: Skills Worth Stealing →

2. What the agent knows → context engineering

An agent forgets what it learned last session and over-reads to answer small questions. Both are on your token bill. These four index it, remember it, and compress it.

  • headroom — compresses what the agent reads before it hits the model; 60–95% fewer tokens (verify on your workload).
  • thedotmack/claude-mem — persistent memory so the next session starts warm, not cold.
  • DeusData/codebase-memory-mcp — a local, auto-syncing knowledge graph of your codebase the agent queries instead of re-scanning.
  • safishamsi/graphify — the same idea, widened: code, SQL schemas, scripts, and docs in one queryable graph.

Deep dive: Context Engineering →

3. How much you crank yourself → loop engineering

Stop being the runtime. Instead of prompting the agent, design the loop that prompts it for you — with gates and handoffs so you can trust it unattended.

  • cobusgreyling/loop-engineering — ready-made loops (triage, PR babysitter, CI sweeper) plus CLIs for cost estimation, verification gates, and human handoff.
  • bytedance/deer-flow — an autonomous engine a loop can dispatch and collect from; runs multi-step work for minutes to hours.
  • Panniantong/Agent-Reach — cross-platform search (Twitter, Reddit, YouTube, GitHub) from one CLI, no API keys — the ingestion step that feeds a loop.

Deep dive: Loop Engineering →

The one idea under all eleven

If you only take one thing from the whole list, take this: let the pain pick the tool.

That’s the whole thing I’d want a younger version of myself to hear. The tools are good. But the leverage isn’t in adopting all eleven — it’s in noticing, honestly, where your own workflow hurts, and reaching for exactly the layer that fixes it. The same instinct that makes a good data platform makes a good agent setup.

Start with the skills post, and pick the one chore you’re tired of doing by hand.