EveryDev.ai
Subscribe
Home
Tools

3,804+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
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. Agenvoy
    Agenvoy icon

    Agenvoy

    Agent Harness

    Self-hosted AI agent harness in a single Go binary that builds, sandbox-tests, and reuses its own tools, with MCP server/client support and multi-model routing.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under Apache License 2.0. Self-host on your own machine.

    Engagement

    Available On

    macOS
    Linux
    CLI
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent HarnessMCP ServersAutonomous Systems

    Alternatives

    Manta UIBrowser HarnessAutoAgent
    Developer
    Pardn Chiu (邱敬幃)TaiwanEst. 2026

    Listed Sep 2026

    About Agenvoy

    Agenvoy is an open-source, self-hosted AI agent harness built in Go and released under the Apache 2.0 license. It runs entirely on your own machine, routes tasks across ten LLM providers through a single interface, and automatically builds missing tools on demand. The project is built in Taiwan by 邱敬幃 Pardn Chiu and is available on GitHub.

    What It Is

    Agenvoy is a local agent harness — a single binary daemon that accepts natural-language requests, dispatches them to the best available model, and executes the result using a sandboxed tool library. When no existing tool covers a request, the agent writes a new script, tests it in an OS-native sandbox (bubblewrap on Linux, sandbox-exec on macOS), and registers it for future reuse by any connected agent. It also acts as both an MCP server (exposing its tool library to Claude Code, Codex, and other MCP clients) and an MCP client (connecting to external MCP services).

    Architecture: One Binary, Many Roles

    Agenvoy ships as a single Go binary that handles every role simultaneously:

    • Agent daemon — processes sessions, dispatches tasks, manages memory
    • MCP server — exposes all sandboxed tools to external agents via stdio
    • MCP client — connects to third-party MCP servers via stdio or HTTP/SSE
    • Scheduler — runs cron and one-shot tasks with fsnotify hot-reload
    • Local HTTP API — OpenAI-compatible chat completions endpoint plus management routes
    • Web dashboard backend — connects to web.agenvoy.com, which runs in the browser but talks only to the local daemon; nothing leaves the device

    The dispatcher LLM routes each task to the best-fit worker model, with per-model cooldown and automatic fallback when a provider fails.

    Tool Self-Extension and Sandboxing

    The defining capability of Agenvoy is its auto-tool-generation loop. When a user request requires data or an action that no existing tool covers, the agent searches for a public API, writes a script with a JSON schema, runs it through the sandbox to verify it works, and registers it permanently. The same tool is then instantly available to all connected MCP agents. Tool failures are stored in cross-session error memory with a 90-day TTL, and the agent rewrites and retests failing tools automatically. Every file touched by a tool is snapshotted, enabling per-version or per-task rollback.

    Memory and Knowledge System

    Agenvoy implements a three-tier memory architecture:

    • Context window — rolling incremental summary with timestamp cursoring and a 24-message recent history window, sized to each model's context window via an in-run compaction pipeline
    • Semantic vector search — keyword and semantic dual-track search over a personal knowledge base via optional KuraDB integration (registered as an MCP server)
    • Full-text SQLite archive — cross-session error memory and reasoning guides pulled in by topic via reasoning_guide(topic=...)

    Integrations and Reach

    The same agent session is reachable from multiple surfaces simultaneously:

    • TUI — interactive terminal with slash commands and session switching
    • Web dashboard — browser UI at web.agenvoy.com, connects to the local daemon
    • Telegram — OTP-authenticated bot with HTML output and voice (Gemini TTS, OGG/OPUS)
    • Discord — guild-verified bot with native select menus and modals
    • REST API — OpenAI-compatible chat completions endpoint

    Ten LLM providers are supported behind one Agent.Send() interface: Anthropic, OpenAI, Gemini, GitHub Copilot, NVIDIA NIM, xAI Grok, DeepSeek, Mistral, OpenRouter, and Cloudflare Workers AI. Any OpenAI-compatible /v1 endpoint (Ollama, LM Studio, vLLM, self-hosted) also plugs in.

    Update: v0.33.1

    The latest release is v0.33.1, published on 2026-08-28, with the repository last pushed on the same date. The GitHub project was created in February 2026 and has been actively developed since, with the web dashboard demo video referencing v0.28.0 as a recent milestone. The project appears on Trendshift's daily Go repository rankings. The 25 built-in tools use a lazy-loading schema strategy — only five ship with full schemas at startup, with the rest loading parameters on first use to keep the initial payload at roughly one-third of the full registry size.

    Agenvoy - 1

    Community Discussions

    Be the first to start a conversation about Agenvoy

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under Apache License 2.0. Self-host on your own machine.

    • Single Go binary, self-hosted
    • 10 LLM providers supported
    • Auto tool generation and sandboxed execution
    • MCP server and client
    • Web dashboard, TUI, Telegram, Discord, REST API

    Capabilities

    Key Features

    • Auto tool generation — builds, tests, and registers missing tools on demand
    • MCP server and client in one binary
    • Multi-model dispatch across 10 LLM providers plus OpenAI-compatible endpoints
    • OS-native sandboxed execution (bubblewrap on Linux, sandbox-exec on macOS)
    • Three-tier memory: rolling summary, semantic vector search, SQLite archive
    • Cron and one-shot scheduler with fsnotify hot-reload
    • Skill system with loadable markdown instruction packs
    • Self-improvement: auto-rewrites and retests failing tools
    • RAG integration via KuraDB child process
    • Subagent support with up to 3 concurrent legs
    • Web dashboard at web.agenvoy.com (local daemon, nothing leaves device)
    • Telegram and Discord bot integrations
    • OpenAI-compatible local HTTP API
    • Voice output via Gemini TTS (OGG/OPUS)
    • File snapshotting for per-version and per-task rollback
    • 25 built-in tools with lazy-loading schema strategy
    • MCP OAuth for HTTP MCP servers with OS keychain token persistence
    • Image generation through configured provider
    • Live command output streaming to TUI and web dashboard

    Integrations

    Claude Code
    OpenAI Codex
    OpenCode
    Cursor
    Anthropic Claude
    OpenAI GPT
    Google Gemini
    GitHub Copilot
    NVIDIA NIM
    xAI Grok
    DeepSeek
    Mistral
    OpenRouter
    Cloudflare Workers AI
    Ollama
    LM Studio
    vLLM
    Telegram
    Discord
    KuraDB
    ToriiDB
    API Available
    View Docs

    Demo Video

    Agenvoy Demo Video
    Watch on YouTube

    Ratings & Reviews

    No ratings yet

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

    Developer

    Pardn Chiu (邱敬幃)

    Pardn Chiu builds self-hosted AI tooling and open-source developer infrastructure, with Agenvoy as the flagship project. Working out of Taiwan, the developer focuses on Go-based systems that run entirely on the user's own machine. Projects include Agenvoy (AI agent harness), KuraDB (RAG document search), and ToriiDB, all released under permissive open-source licenses.

    Founded 2026
    Taiwan
    Read more about Pardn Chiu (邱敬幃)
    WebsiteGitHubLinkedIn
    1 tool in directory

    Similar Tools

    Manta UI icon

    Manta UI

    Self-hosted, open-source client that runs Claude Code, Codex, opencode, and other coding agents on your own Linux box or Mac, accessible from desktop, browser, and iPhone.

    Browser Harness icon

    Browser Harness

    A self-healing, minimal browser automation harness that gives LLMs complete freedom to complete any browser task, built directly on Chrome DevTools Protocol (CDP).

    AutoAgent icon

    AutoAgent

    An autonomous agent harness engineering tool that lets an AI meta-agent iteratively build, benchmark, and optimize agent configurations overnight without human intervention.

    Browse all tools

    Related Topics

    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.

    161 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    224 tools

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

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