Labsco
Foxfire1st logo

Agents Remember

β˜… 25

from Foxfire1st

`Agents Remember` is a Drift-aware repository memory for coding agents in complex codebases. Captures what code can't say on its own! Retrieves memory by path, semantic search, and relationship (code-graph).

πŸ”₯πŸ”₯FreeQuick setup

Agents Remember

Git-verified records for what your coding agents know. A control plane for what they do.

πŸ“– Current docs: https://foxfire1st.github.io/agents-remember/** πŸ€– Machine-readable summary:** https://foxfire1st.github.io/agents-remember/llms.txt Note: caches and search snippets may serve an outdated copy of this README β€” the docs site above is canonical and always current.

Table of Contents

  • Why It Exists

  • Core Features

  • What It Looks Like In Practice

  • Live Demo

  • Requirements

  • Quickstart

  • Documentation

  • Repository Layout

  • Status

  • Stability

  • Contributing

Why It Exists

Modern coding agents can make clean, plausible edits while missing the project-specific rules that make those edits safe. A top-level instruction file can help, but it does not naturally reappear when the agent is deep in a file and deciding what to change.

Agents Remember fixes that: the matching note is reachable at the moment of the edit β€” most often by the very path the agent is already working in β€” so project rules surface exactly when a change is being made, not buried in a top-level file.

Core Features

Agents Remember gives coding agents project memory they can verify and act on. It turns local invariants, naming rules, migration scars, cross-repo contracts, and "this looks safe but is not" facts into versioned Markdown beside the code, checks that memory against Git before use, and updates it only after approved work lands.

Copy & paste β€” that's it
src/orchestrator/core_editor.py
ar-memory/onboarding/src/orchestrator/core_editor.py.md
  • Path-addressed memory: A source file's note lives at a deterministic mirror path, so an agent holding a file can reach the right context without search, ranking, or guesswork.

  • Git-proven freshness: File notes, route overviews, and entity catalogs are drift-checked against source commits, route scopes, or deterministic fingerprints before they are trusted.

  • Search that finds, not decides: Optional semantic memory and code-graph providers help locate relevant files, callers, dependencies, and concepts, but verified Markdown and source code remain the truth.

  • Memory that lands with code: External memory repos use a memory.md ledger, isolated dual worktrees, preview/apply closeout, and all-or-nothing integration so code and memory stay synchronized.

  • Repo-owned agent behavior: Each memory repo carries system/ files for path rules, tools, coding guidelines, documentation sources, branch policy, and reporting shape, so the same project rules load across harnesses.

  • Harness-ready first run: Starter packages for Claude Code, Codex, Cursor, Antigravity, VS Code Copilot, Hermes, Pi.dev, and OpenClaw carry the native MCP, skills, hooks, rules, and instruction files each harness needs.

The default setup stores durable memory in the target repository under ar-memory/. Teams that need separate memory repositories can use external memory under ar-coordination/memory-repos/ar-<repo>/. For the full tour, see Features.

What It Looks Like In Practice

A source file has an onboarding note beside it, reached by path:

Copy & paste β€” that's it
mcp/src/agents_remember/mcp/server.py
ar-memory/onboarding/mcp/src/agents_remember/mcp/server.py.md

At task start the agent orients and checks memory health:

Copy & paste β€” that's it
context_packet(repo_id="my-app")
memory_quality_check(repo_id="my-app")

It then reads the source file and its onboarding note together before proposing a change. After the change is approved and lands, the onboarding is refreshed and re-verified against the new commit β€” so the note stays true to the code.

Live Demo

Agents Remember runs on itself. The companion memory repo is: https://github.com/Foxfire1st/ar-agents-remember

That repo contains the live onboarding layer, so you can inspect how by-path memory, drift-aware updates, and contribution-time onboarding look in practice.

Documentation

  • Features - the concentrated tour of what Agents Remember gives users.

  • Getting Started - a fuller first-run setup.

  • Concepts - onboarding units, memory roots, drift, and approval gates.

  • Architecture - runtime, coordination, internal memory, and external memory.

  • Workflows - the l-01-session-job-lifecycle skill and its build modes (read-only / chat build / w-02-light-task-workflow skill), and when to use each.

  • Benchmark Methodology - how paired codex exec --json runs are captured and compared.

  • FAQ - design principles, objections, and comparisons.

  • External Memory Guide - separate memory repos for selected code repos.

  • Cost-aware Bootstrap - model and wave-sizing choices for token-heavy repository bootstrap.

  • Settings Reference - memory-layer system/settings.json and MCP authority settings.

  • Skills Reference - the installed skill families.

Repository Layout

Copy & paste β€” that's it
agents-remember/
 AGENTS.md # source checkout instructions
 README.md # public front door
 skills/ # canonical skill source tree
 scripts/sync-skills.py # sync skills into package/harness copies
 scripts/sync-runtime.py # sync runtime assets into package data
 agents-md-files/ # canonical installed AGENTS.md templates
 benchmarks/ # canonical optional benchmark package source
 providers/ # canonical provider runtime assets
 system/defaults/examples/ # canonical scaffold examples
 mcp/ # package-local MCP server and services
 src/agents_remember/package_data/
 runtime/
 agents-md-files/ # generated copy of root agents-md-files/
 skills/ # generated package copy of root skills/
 providers/ # generated copy of root providers/
 system/defaults/examples/ # generated copy of root system/defaults/examples/
 benchmarks/ # generated copy of root benchmarks/
 docs/ # user-facing documentation

Edit skills in root skills/, then run python3 scripts/sync-skills.py to refresh the MCP package data and every harness starter package. The pre-commit and pre-push hooks run python3 scripts/sync-skills.py --check.

Edit runtime assets in root agents-md-files/, benchmarks/, providers/, and system/, then run python3 scripts/sync-runtime.py to refresh MCP package data only. The pre-commit and pre-push hooks run python3 scripts/sync-runtime.py --check.

The installed runtime lives in ar-coordination/ β€” by default <workspace>/ar-coordination/, inside the workspace (never your home directory) β€” not in the source checkout. The c-13-install-and-onboard skill shows this and every other install path as a workspace-first default you can accept or override:

Copy & paste β€” that's it
ar-coordination/
 AGENTS.md
 skills/
 system/
 memory-repos/
 providers/ # provider runtimes (images, runners, indexes)
 benchmarks/ # optional, installed with --include-benchmarks
 tasks/
 notes/
 worktrees/
 temp/

Status

Agents Remember is at 2.9.3 and actively developed. The core path β€” by-path onboarding, drift checks, and approval-gated updates β€” is in real use and stable enough to rely on. The public contracts listed under Stability are held stable across minor releases and change only on a major bump; the internals beneath them and the optional semantic/relationship providers may still evolve, so pin a version and read the notes for your target version in GitHub Releases β€” the repository's canonical changelog β€” before upgrading. The Claude Code path is the most exercised; other harnesses are supported but less battle-tested.

Where the journey is going: the next arc makes the working session itself observable and steerable. The session job lifecycle is becoming a first-class, machine-readable entity β€” system-managed lifecycle state and events, durable approval gates, and a projection layer any frontend can consume β€” culminating in a browser cockpit (#2, #43) for watching and acting on parallel agent sessions across repos. That direction is worth breaking changes: the architecture supports the dashboard, not the other way around, up to and including a 3.0 jump.

Stability

Following semantic versioning from 1.0.0, these public contracts will not change without a major version bump: skill IDs (e.g. the c-08-ar-coordination-context-resolver and w-02-light-task-workflow skills), MCP tool names and their inputs/outputs, the ar-coordination/ and ar-memory/ layout, and the settings schema. Internal modules, provider internals, and prompt wording are not part of this promise and may change in minor releases.

Contributing

Contributions should make the memory layer clearer, safer, and easier to apply consistently. Start with CONTRIBUTING.md and keep the core rules intact: drift check before planning, approval before implementation, and onboarding updates only after approved changes.

Agents Remember runs on itself, so the best way to contribute is with the memory layer active. Download or clone this project's own memory at Foxfire1st/ar-agents-remember and use it as the Agents Remember memory for your checkout: you get the project's by-path onboarding at the moment you edit, and your onboarding updates land alongside your code changes β€” the same loop this repo asks of every contribution.