EveryDev.ai
Subscribe
Home
Tools

3,215+ 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. agentty
    agentty icon

    agentty

    AI Coding Assistants
    Featured

    A blazing-fast, native C++26 terminal coding agent — a drop-in alternative to claude-code shipped as a single 13.6 MB static binary with sandboxing, multi-model support, and sub-millisecond startup.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open-source under the MIT license. Bring your own API key or Claude Pro/Max subscription.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI Coding AssistantsCommand Line AssistantsAgent Frameworks

    Alternatives

    Antigravity CLIGrok BuildMastra Code
    Developer
    Ayush BhatRemoteEst. 2024

    Listed Jul 2026

    About agentty

    agentty is an open-source, native C++26 terminal coding agent created by Ayush Bhat and released under the MIT license. It positions itself as a drop-in alternative to claude-code, shipping as a single 13.6 MB static binary with no Node, Python, Electron, or npm install required. The project is pre-1.0 and actively developed, with daily builds for Linux, macOS, and Windows.

    What It Is

    agentty is a command-line AI pair-programming tool that runs a full agentic coding loop — reading files, writing edits, running shell commands, searching codebases, and browsing the web — directly in your terminal. It signs in with an existing Claude Pro/Max OAuth subscription or an API key, and can also be pointed at OpenAI, Groq, OpenRouter, Together, Cerebras, or a local Ollama model. The core design is a pure-functional update loop ((Model, Msg) → (Model, Cmd)) rendered by a sister TUI engine called maya, with the Anthropic provider speaking HTTP/2 + SSE directly through an in-house nghttp2 + OpenSSL stack.

    Architecture and Performance

    The project's headline differentiator is its native C++26 implementation versus the Node.js runtime that powers the official claude-code client. According to the project's own benchmarks on a Linux x86_64 machine:

    • Cold-start --help: ~2 ms (agentty) vs ~150 ms (claude-code)
    • --version: ~2 ms vs ~60 ms
    • Binary on disk: 13.6 MB vs 222 MB + Node runtime
    • No V8 GC pauses mid-stream

    Subprocesses use posix_spawn + poll(2) with in-process kill deadlines. File writes are atomic (write + fsync + rename). The permission matrix is a constexpr with static_asserts — changing a policy cell breaks the build rather than a test.

    Key Capabilities

    • Sandbox by default: Every shell and build call runs inside bwrap (Linux) or sandbox-exec (macOS). ~/.ssh, /etc, and other projects are read-only even for approved bash calls.
    • One-command SSH air-gap: agentty airgap user@host relays bytes over SOCKS5-over-SSH with TLS pinned end-to-end on real upstreams.
    • Agent Skills and memory: Drop a SKILL.md under .agentty/skills/ to teach conventions; remember/forget provide durable cross-session memory. The project cites research (arxiv.org/abs/2410.03981) claiming agent accuracy on codebases with internal DSLs jumps from ~20% to ~85% with curated skills.
    • Local RAG engine: Hybrid BM25 + embeddings with reranking over docs, skills, and memory.
    • Isolated subagents: The task tool spawns a subagent with its own context window for self-contained jobs.
    • MCP, both ways: Serve agentty's tools to any MCP client with mcp-serve, or consume other MCP servers via .agentty/mcp.json.
    • Zed ACP integration: agentty acp speaks the Agent Client Protocol, making agentty a first-class agent panel in the Zed editor.
    • Run code blocks: ^G runs fenced shell commands interactively on the real terminal — sudo prompts work, output streams live.

    Multi-Model Support

    agentty defaults to Claude via OAuth (Pro/Max) or API key, but supports live model switching mid-thread with ^P. Supported providers include OpenAI (GPT and o-series), Groq (Llama/Mixtral on LPUs), OpenRouter, Together AI, Cerebras (wafer-scale inference), and local Ollama models at localhost:11434. Any raw OpenAI-compatible endpoint is also accepted via --provider host:port.

    Update: v0.2.8

    The latest release is v0.2.8, published on July 16, 2026. The repository was last pushed on July 18, 2026, indicating active development. The project is explicitly pre-1.0 and described as "moving fast." Prebuilt release binaries ship for Linux (x86_64, aarch64) and Windows (x86_64); macOS builds from source via Homebrew tap. Package distribution covers Debian/Ubuntu .deb, Fedora/RHEL .rpm, Arch AUR (agentty-bin), Alpine .apk, Scoop, and winget — all auto-submitted by GitHub Actions on each tagged release.

    agentty - 1

    Community Discussions

    Be the first to start a conversation about agentty

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

    Pricing

    OPEN SOURCE

    Open Source

    Free and open-source under the MIT license. Bring your own API key or Claude Pro/Max subscription.

    • Full feature set
    • MIT licensed
    • Self-hosted / local install
    • All providers supported
    • No usage limits imposed by agentty

    Capabilities

    Key Features

    • Single 13.6 MB static binary with zero runtime dependencies
    • Sub-millisecond cold start (~2 ms on Linux x86_64)
    • Sandbox by default via bwrap (Linux) / sandbox-exec (macOS)
    • One-command SSH air-gap mode over SOCKS5-over-SSH
    • Multi-model support: Claude, GPT, Groq, OpenRouter, Together, Cerebras, Ollama
    • Live model switching mid-thread with ^P
    • Agent Skills via SKILL.md for codebase conventions
    • Durable cross-session memory with remember/forget
    • Local RAG engine (hybrid BM25 + embeddings, reranked)
    • Isolated subagents via task tool
    • MCP server and client support
    • Zed editor integration via Agent Client Protocol (ACP)
    • Run code blocks interactively from AI replies (^G)
    • Persistent threads with automatic compaction
    • Permission profiles: Ask, Write, Minimal
    • File mentions (@), symbol jumps (#), command palette (/)
    • Image paste support (PNG, JPEG, GIF, WebP)
    • Git tools: status, diff, log, commit rendered natively
    • Web fetch and web search tools
    • Workspace boundary enforcement

    Integrations

    Claude (Anthropic) via OAuth Pro/Max or API key
    OpenAI (GPT and o-series)
    Groq (Llama, Mixtral)
    OpenRouter
    Together AI
    Cerebras
    Ollama (local models)
    Any OpenAI-compatible endpoint
    Zed editor (Agent Client Protocol)
    MCP (Model Context Protocol) servers and clients
    bwrap (Linux sandboxing)
    sandbox-exec (macOS sandboxing)
    SOCKS5-over-SSH (air-gap relay)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Ayush Bhat

    Ayush Bhat builds agentty, a native C++26 terminal coding agent released under the MIT license. The project ships as a single static binary with no runtime dependencies, targeting developers who want fast, sandboxed AI pair programming without Node or Python. The codebase uses a pure-functional architecture with a custom TUI rendering engine called maya.

    Founded 2024
    Remote
    1 employees
    Read more about Ayush Bhat
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Antigravity CLI icon

    Antigravity CLI

    A lightweight, terminal-first CLI tool by Google for running autonomous coding agents, executing shell commands, and managing background subagents from the keyboard.

    Grok Build icon

    Grok Build

    A CLI-based agentic coding tool from xAI that lets developers build software using Grok models directly from the terminal, with support for skills, plugins, and headless scripting.

    Mastra Code icon

    Mastra Code

    Mastra Code is a terminal-based AI coding agent that connects to 70+ AI models and provides tools for reading, searching, editing, and executing code directly in your terminal.

    Browse all tools

    Related Topics

    AI Coding Assistants

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

    652 tools

    Command Line Assistants

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

    186 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

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