EveryDev.ai
Subscribe
Home
Tools

3,947+ 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. AgenticOS
    AgenticOS icon

    AgenticOS

    Agent Frameworks

    A self-hosted, open-source platform for building, running, and governing company AI agents with budgets, approvals, MCP integrations, and multi-surface deployment.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source self-hosted platform under Apache 2.0. Free to use, modify, and deploy on your own infrastructure.

    Engagement

    Available On

    Web
    API
    CLI
    Linux
    macOS

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksMulti-agent SystemsMCP Integration

    Alternatives

    OtoDockStrands AgentsMindRoot
    Developer
    VstormWrocław, PolandEst. 2017

    Listed Sep 2026

    About AgenticOS

    AgenticOS is a self-hosted, open-source platform built by Vstorm for companies that want to build, run, and govern AI agents without giving up control of their infrastructure. Licensed under Apache 2.0, it runs on ordinary Docker infrastructure — Postgres with pgvector, Redis, and a Next.js console — and nothing phones home. The project reached v0.0.472 as of September 2026 and is actively developed on GitHub.

    What It Is

    AgenticOS is a multi-tenant agent control plane that separates the concerns of engineering and business operation. Engineers register capabilities in typed Python; business teams compose agents in a browser by choosing instructions, a model profile, capabilities, knowledge collections, approval rules, and a budget. The result is a versioned YAML spec that runs identically across every surface — web chat, HTTP API, Slack, Telegram, Mattermost, an embeddable widget, or a hosted page — through a single shared runner. The project describes itself as an "operating system for agents" and maps seven OS-level functions (process isolation, resource limits, access control, driver abstraction, filesystem, unified shell, and audit log) to concrete mechanisms in the codebase.

    Architecture and Stack

    The platform is built on FastAPI and Pydantic v2 for the API layer, Pydantic AI for the agent runtime, PostgreSQL with pgvector for storage and retrieval, Redis for queuing, Prefect for background work, and Next.js 15 for the console frontend. Tenant isolation is enforced at the schema level, not just in service code — a ciphertext from one organization cannot be decrypted for another. The platform layer is held at 100% test coverage and CI fails below it.

    Key architectural decisions:

    • Code defines, configuration composes — capabilities are registered in Python; agents are assembled from what is registered, so a no-code builder cannot exceed what engineers have sanctioned
    • One runner, eight surfaces — the same budget, approval gate, and audit trail apply regardless of where a question arrives
    • Budgets checked before the model call — a run that fails still records what it spent; a runaway stops mid-sentence rather than arriving as an invoice

    Capabilities and Integrations

    Each capability is switched on per agent in the Builder and carries its own settings and optional approval gate:

    • Retrieval over documents in your own Postgres, with three PDF parsers (PyMuPDF, LlamaParse, self-hosted LiteParse OCR), configurable chunking, and OCR language selection
    • Web search, page fetch, and a real browser for sites that require interaction
    • Python execution in a sandboxed environment with files and a shell
    • Charts and image generation
    • Delegation and planning for tasks too large for a single answer
    • Guardrails for redaction, blocking, and output caps
    • MCP integration — the project states 5,802 servers in the catalogue, 99 of them verified with OAuth flows wired, plus any server by URL with no connector to write
    • 27 model providers with per-organization keys, fallbacks, and support for self-hosted Ollama or a LiteLLM proxy
    • Google Drive and S3 sync for knowledge collections
    • Skills — written procedures loaded on demand when the agent decides they are relevant
    • Context files — standing instructions attached across agents, analogous to AGENTS.md

    Governance Model

    AgenticOS frames governance as a first-class concern rather than an afterthought:

    • Monthly budgets per agent, checked before each model request
    • Human approval gates on any capability that acts on the outside world — the run parks and waits for a person
    • Permission catalog in code, with roles composed from permissions and per-resource grants that widen access but never narrow it
    • Audit trail written even when a run fails, recording who ran what, when, what it cost, and who approved it
    • Per-organization secret vault — keys are encrypted and separated per tenant; no API response, log line, or audit entry ever carries a plaintext key

    Update: v0.0.472

    The latest release is v0.0.472, published on 2026-09-18. The project was created in July 2026 and has been releasing rapidly under a continuous versioning scheme. The GitHub repository shows 41 stars and 9 forks at time of indexing, with 49 open issues. The README includes a roadmap reference for features not yet available (ACL-aware SaaS connectors, evaluation harness, SAML/SCIM), and the project explicitly documents where it loses to alternatives in a comparison table. Vstorm, the company behind AgenticOS, describes itself as an applied agentic AI engineering consultancy with production agent deployments and offers commercial deployment services on top of the open-source platform.

    AgenticOS - 1

    Community Discussions

    Be the first to start a conversation about AgenticOS

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source self-hosted platform under Apache 2.0. Free to use, modify, and deploy on your own infrastructure.

    • Self-hosted on your own Postgres and Docker
    • Multi-tenant agent platform
    • 27 model providers
    • MCP integration with 5,802 servers
    • Budget and approval governance

    Capabilities

    Key Features

    • Self-hosted, open-source agent platform (Apache 2.0)
    • Multi-tenant isolation enforced at the database schema level
    • Agent builder UI — no code required for business teams
    • Versioned agent specs exportable as YAML into git
    • Monthly budgets checked before each model request
    • Human approval gates on side-effecting tool calls
    • Audit trail written even on failed runs
    • 27 model providers with per-organization keys and fallbacks
    • Self-hosted Ollama and LiteLLM proxy support
    • MCP integration with 5,802 servers in the catalogue
    • Three PDF parsers: PyMuPDF, LlamaParse, LiteParse OCR
    • Google Drive and S3 knowledge sync
    • Skills — on-demand written procedures
    • Context files — standing instructions across agents
    • Python sandbox with files and shell
    • Real browser capability for interactive sites
    • Web search and page fetch
    • Charts and image generation
    • Delegation and planning for multi-step tasks
    • Guardrails for redaction, blocking, and output caps
    • One runner behind web chat, API, Slack, Telegram, Mattermost, widget, hosted page
    • Per-organization encrypted secret vault
    • 35-card arrangeable dashboard
    • Schedules and event triggers for automations
    • Desktop app with screenshot shortcut and desktop pet
    • HTTP API and raw WebSocket for custom frontends
    • Embeddable widget with address-bar variables
    • Agent templates for industry starting points
    • Full version history with one-click rollback
    • Permission catalog in code with role composition

    Integrations

    Slack
    Telegram
    Mattermost
    GitHub
    Linear
    Notion
    Stripe
    PostgreSQL
    Google Drive
    Amazon S3
    Ollama
    LiteLLM
    OpenAI
    Anthropic
    Google AI
    OpenRouter
    LlamaParse
    Prefect
    pgvector
    Redis
    Docker
    MCP servers (5,802 in catalogue)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Vstorm

    Vstorm builds AgenticOS, a self-hosted open-source platform for deploying and governing company AI agents, and offers applied agentic AI engineering consultancy services. The team has delivered 30+ production agent implementations and deploys AgenticOS inside client infrastructure — cloud, data centre, or air-gapped. Vstorm also maintains a broader OSS ecosystem built on Pydantic AI, including guardrails, subagent delegation, sandboxed execution, and skill packs. The company publishes all core tooling under Apache 2.0 and operates at oss.vstorm.co.

    Founded 2017
    Wrocław, Poland
    40 employees

    Used by

    Mercedes-Benz
    Intel
    Tetra Pak
    Synera
    +7 more
    Read more about Vstorm
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    OtoDock icon

    OtoDock

    Self-hosted multi-tenant AI agent platform built on Claude Code and Codex, letting teams create, manage, and automate collaborative AI agents on their own infrastructure.

    Strands Agents icon

    Strands Agents

    An open-source, model-driven Python and TypeScript SDK for building AI agents in just a few lines of code, with support for multi-agent systems, MCP, and production deployment.

    MindRoot icon

    MindRoot

    Open source AI agent web app platform for building, deploying, and sharing customizable AI agents with plugin architecture.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    715 tools

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    361 tools

    MCP Integration

    Tools for integrating MCP with existing AI systems and applications.

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