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. agenttrail
    agenttrail icon

    agenttrail

    Observability Platforms
    Featured

    Local, open-source observability layer for AI coding agents that turns plans, tool calls, file changes, and progress into a live project map.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT license. No account, no telemetry, no cloud dependency.

    Engagement

    Available On

    Web
    API
    VS Code
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Observability PlatformsAI Coding AssistantsMonitoring Tools

    Alternatives

    claude-tapagentacctclaude-devtools
    Developer
    Kelly SunKelly Sun (sodiumsun) builds local-first developer tooling f…

    Listed Aug 2026

    About agenttrail

    agenttrail is a local, open-source observability tool for AI coding agents, created by Kelly Sun (sodiumsun on GitHub) and released under the MIT license. It runs entirely on localhost with no account, no telemetry, and no cloud dependency, making it a privacy-first option for developers who want to monitor what their coding agents are actually doing in real time.

    What It Is

    agenttrail sits between you and your AI coding agent — Claude Code, OpenAI Codex, Cursor, or any agent that edits files — and renders a live project map showing plans, tool calls, file changes, and progress. Instead of replaying a transcript after the fact, it shows the shape of the work as it unfolds. The core is a single dependency-free Node.js file (~470 lines) and a static HTML interface, launched with one npx command.

    How the Live Agent Map Works

    The tool reconciles two signals to give you an honest picture of agent activity:

    • Declared: what the agent says it is working on (from PLAN.md)
    • Observed: what files it is actually changing right now, including revisions to work it already marked done

    When those signals disagree, the map highlights the discrepancy. A completed task card lights up when its files change again. The map moves as the work moves, with dependency arrows, dashed links, progress states (done, working, blocked), and elapsed time on active runs.

    Supported Agents and Integration Depth

    agenttrail supports three tiers of integration:

    • Claude Code — richest view: live file watcher, run cards with task lists and streaming tool lines, and map maintenance via CLAUDE.md and local hooks stored in .claude/settings.local.json
    • OpenAI Codex — file watcher and map maintenance via AGENTS.md
    • Cursor and others — file watcher and map maintenance via AGENTS.md

    The npx agenttrail init command bootstraps the full setup: it appends the agenttrail convention to CLAUDE.md and AGENTS.md, creates a starter PLAN.md, and installs additive local Claude Code hooks. A "Copy backfill prompt" button on the board lets you hand the agent a prompt to study the codebase and draw the component map itself.

    The PLAN.md Convention

    The durable map lives in a single Markdown file (PLAN.md) that agents maintain as they work. Components use stable {#id} anchors, files: globs connect observed writes to components, needs: draws dependency arrows, and links: draws dashed connections. Task status uses [ ] (todo), [~] (working), [x] (done), and [!] (stuck). The by: field records which agent or contributor completed a task; from: separates agent intent from roadmap backlog. Agents record plan-affecting decisions in a ## decisions section before acting on them.

    Local-First Architecture

    The daemon binds to 127.0.0.1 only and never sends a prompt or edits code. There is no database, build step, cloud service, or account required. The entire runtime model comes from PLAN.md (the durable map) and local filesystem events (the live trail, which fades as activity ages). The project has been tested on a 78,000-file repository, using breadth-first tree reads with per-directory caps and SSE activity ticks to keep the interface responsive.

    Current Status

    The repository was created on 2026-08-21 and last pushed on 2026-08-25, with 267 stars and 14 forks as of late August 2026. The project is actively maintained and available on npm as agenttrail.

    agenttrail - 1

    Community Discussions

    Be the first to start a conversation about agenttrail

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT license. No account, no telemetry, no cloud dependency.

    • Live agent project map
    • Claude Code, Codex, and Cursor support
    • PLAN.md convention
    • Local hooks for Claude Code
    • Multi-repo tab switcher

    Capabilities

    Key Features

    • Live project map of AI coding agent activity
    • Reconciles declared plan vs. observed file changes
    • Claude Code integration via local hooks and CLAUDE.md
    • OpenAI Codex and Cursor support via file watcher
    • PLAN.md convention for agent-maintained component maps
    • VS Code-style repo tree with live file activity accents
    • Run cards with task lists, streaming tool lines, and elapsed time
    • Multi-repo tab switcher in a single dashboard
    • No account, no telemetry, no cloud dependency
    • Runs on localhost (127.0.0.1 only)
    • Single npx command to start
    • init command to bootstrap full setup
    • Backfill prompt to let agents draw the component map
    • Dependency arrows and dashed links between components
    • Task status tracking: todo, working, done, blocked
    • Agent attribution on completed tasks (Claude spark, OpenAI blossom, contributor initials)
    • Tested on 78k-file repositories

    Integrations

    Claude Code
    OpenAI Codex
    Cursor
    npm
    Node.js
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Kelly Sun

    Kelly Sun (sodiumsun) builds local-first developer tooling for AI coding agents. The agenttrail project provides an open-source observability layer that runs entirely on localhost with no telemetry or cloud dependency. The project is released under the MIT license and distributed via npm.

    Read more about Kelly Sun
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    claude-tap icon

    claude-tap

    A local proxy and trace viewer for AI coding agents that intercepts and inspects API traffic from Claude Code, Codex CLI, Gemini CLI, Cursor CLI, and more.

    agentacct icon

    agentacct

    A local-first terminal dashboard that reads coding agent session logs to show token usage, estimated costs, provider rate limits, and per-task work steps — no login, no telemetry.

    claude-devtools icon

    claude-devtools

    A desktop app that reconstructs exactly what Claude Code did — every file path, tool call, and token — from session logs on your machine.

    Browse all tools

    Related Topics

    Observability Platforms

    Comprehensive platforms that combine metrics, logs, and traces with AI-powered analytics to provide deep insights into complex distributed systems and application behavior.

    119 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    792 tools

    Monitoring Tools

    AI-enhanced monitoring solutions that provide real-time visibility into system performance, anomaly detection, and predictive alerting for proactive issue resolution.

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