EveryDev.ai
Subscribe
Home
Tools

3,713+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. backpass
    backpass icon

    backpass

    Agent Memory
    Featured

    An open-source CLI tool that automatically analyzes agent session transcripts and proposes evidence-backed edits to your AGENTS.md memory file using a gradient descent metaphor.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT License. Install via npm or run with npx.

    Engagement

    Available On

    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent MemoryAgent HarnessCommand Line Assistants

    Alternatives

    LifeOSFirst Treeagentic-stack
    Developer
    Kun ChenKun Chen builds open-source developer tooling focused on AI-…

    Listed Aug 2026

    About backpass

    backpass is an open-source CLI tool built by Kun Chen (kunchenguid) that treats your AGENTS.md file as a set of model weights and your agent session transcripts as the loss signal. It reads transcript stores from seven supported agent harnesses directly from disk, distills them, and proposes concrete, evidence-backed edits to your memory file — all locally, with a human review gate before anything is written. The project is published on npm under the MIT license and supports macOS and Linux.

    What It Is

    backpass applies the metaphor of neural network training to agent memory management. Your AGENTS.md (or CLAUDE.md) is the "weights" — the persistent instructions that shape every future agent session. Each agent session is a "forward pass," and the transcript it leaves on disk is the "loss signal." backpass closes the feedback loop that normally requires a human to manually remember a failure and edit the file by hand. It collects session transcripts, distills them, calculates what went wrong or right, aggregates evidence across sessions, and proposes a small set of diffs — then waits for you to accept or reject each one.

    How the Pipeline Works

    The tool runs a five-stage backward pass:

    • Collect samples — reads transcript stores for seven harnesses (claude, codex, pi, opencode, grok, cursor CLI, hermes) directly from disk with no API calls or uploads. Sessions are associated to the current repo via cwd matching, git remote matching, or best-effort path heuristics.
    • Distillation — reduces raw transcripts deterministically before any model sees them. Tool calls are collapsed to one line, tool output is truncated, harness scaffolding is dropped, and secrets are redacted. The README reports typical reduction of 96–99%.
    • Calculate loss — one cheap model call per transcript returns strict JSON: which instructions helped, which were violated, and what gaps exist. Every claim must carry a verbatim quote; quoteless items are discarded.
    • Aggregate gradients — evidence is grouped deterministically (no model). A gap must appear in at least two independent sessions before it can be proposed. A persistent gap ledger accumulates sightings across runs so a gap seen today and corroborated next week graduates on the later run.
    • Gradient descent — a single high-reasoning agent session edits a staging copy of the memory file. backpass diffs the copy, annotates each hunk, and enforces mechanical gates: at most five edits per run by default, every edit must carry verbatim evidence, new instructions need multi-session support, and the post-edit file must fit the token budget.

    Local-First and Human-Gated Design

    backpass has no API keys of its own. All model calls go through acpx, routing to whichever agent harness the user has already authenticated. Transcripts never leave the machine except into an agent the user already controls, and obvious secrets are redacted before they do. The backpass apply command is the only command that writes — it opens a browser-based review surface (or a terminal fallback with --no-ui) showing each proposed edit with its diff, verbatim evidence quotes, source session references, and a live budget gauge. Rejected edits are remembered and not re-proposed unless materially new evidence arrives.

    Two-Tier Model Architecture

    backpass uses cheap models for per-transcript analysis and high-reasoning models for the final synthesis step. Both tiers use an ordered ladder of candidates — the first installed, logged-in harness that serves the target model wins. The default analysis ladder tries gpt-5.6-luna via pi/opencode/codex, then claude-sonnet-5 via claude, then grok-4.6. The synthesis ladder tries gpt-5.6-sol, then claude-opus-5, then grok-4.6. Ladders are fully configurable, and individual agents and models can be pinned via CLI flags.

    Skills as a Budget Release Valve

    The tool enforces a default budget of 5,000 estimated tokens (~20KB) per always-loaded memory file. Instructions relevant to fewer than roughly 20% of sessions can be extracted into "skills" — separate files whose descriptions are always loaded but whose bodies are only fetched when triggered. The README gives a concrete example: a 640-token procedure relevant to 4% of sessions becomes a 35-token description line, saving 611 always-loaded tokens. At or over budget, the synthesis prompt goes zero-sum: every addition must name the removal or extraction that pays for it.

    Update: v0.1.6

    The latest release is backpass v0.1.6, published on 2026-08-26. The project was created on 2026-08-21 and has accumulated 419 stars and 17 forks in its first week. The repository is actively maintained with CI and release automation via GitHub Actions. The README notes that Cursor IDE support is deferred to v1.1, with a best-effort --include-cursor-ide flag available in the current release.

    backpass - 1

    Community Discussions

    Be the first to start a conversation about backpass

    Share your experience with backpass, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT License. Install via npm or run with npx.

    • Full CLI with all commands (scan, analyze, propose, apply, status, init)
    • Support for 7 agent harnesses
    • Local-first transcript analysis
    • Evidence-gated memory file editing
    • Human review gate with browser UI

    Capabilities

    Key Features

    • Reads agent session transcripts from 7 harnesses directly from disk (claude, codex, pi, opencode, grok, cursor CLI, hermes)
    • Local-first: no API keys, no uploads, secrets redacted before model calls
    • Evidence-gated proposals: every edit requires verbatim quotes from at least 2 independent sessions
    • Human review gate: backpass apply shows each edit with evidence before writing
    • 96-99% transcript distillation before model analysis
    • Persistent gap ledger accumulates evidence across runs
    • Two-tier model architecture: cheap analysis, high-reasoning synthesis
    • Token budget enforcement with skills extraction as overflow mechanism
    • Incremental scan cache for large transcript stores
    • Configurable model ladders via .backpassrc.json
    • Live progress view in interactive terminals
    • Rejection memory: rejected edits not re-proposed without new evidence
    • Bootstrap support: creates starter AGENTS.md for repos with no memory file
    • Staging copy workflow: repo is read-only during synthesis

    Integrations

    Claude (Anthropic)
    OpenAI Codex
    Pi
    OpenCode
    Grok
    Cursor CLI
    Hermes
    acpx (openclaw)
    npm
    Node.js
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate backpass and help others make informed decisions.

    Developer

    Kun Chen

    Kun Chen builds open-source developer tooling focused on AI-assisted code quality. The no-mistakes project puts a local AI-driven validation gate in front of git pushes, automating review, testing, docs, and linting before a PR is raised. Chen maintains the project publicly on GitHub under the MIT License and engages with the community via Discord and X.

    Read more about Kun Chen
    WebsiteGitHubX / Twitter
    5 tools in directory

    Similar Tools

    LifeOS icon

    LifeOS

    An open-source AI harness that captures your goals, context, and ideal state, then conveys that intent to your AI on every task to move you from current state to ideal state.

    First Tree icon

    First Tree

    An open-source agent orchestration workspace that runs Claude, Codex, Cursor, and other AI agents in parallel, grounded in shared team context.

    agentic-stack icon

    agentic-stack

    A portable .agent/ folder (memory + skills + protocols) that keeps one brain across coding-agent harnesses like Claude Code, Cursor, Windsurf, Codex, and more.

    Browse all tools

    Related Topics

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    135 tools

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    154 tools

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    229 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions