Related AI tool mentioned in article: Cline
Related AI tool mentioned in article: E2B
Related AI tool mentioned in article: OpenCode

The Agent Stack: 10 Tools That Grew Up Around Coding Agents

Bojan Tomic
10 min read
AI Agents
The Agent Stack: 10 Tools That Grew Up Around Coding Agents

A year ago the interesting question was which coding agent to use. That question has gone quiet, not because it was settled but because it stopped being the hard part.

The agent writes code now. Fine. Then it wants to run that code somewhere, and reach your Linear board, and open a website that has no API, and read the .docx someone dropped in the ticket. When it does all that and gets it wrong, you need to find out what it actually did. And when it finally works, it has to live somewhere your users can reach it.

None of that is the agent. All of it is now where the work is.

Here are ten tools covering those layers, grouped by which part of the problem they solve. Six are open source, and four of those cost nothing at all, so trying them is an afternoon rather than a purchase order.

The Agents Themselves

Two worth knowing, and they are interesting mostly for what they refuse to lock you into.

OpenCode

OpenCode

What it is: an MIT-licensed coding agent that runs in your terminal, your editor, or as a desktop app.

The design decision that matters: it is model-agnostic, reaching 75+ providers through Models.dev. Most agents are a front end for one vendor's model, which quietly makes your agent choice and your model choice the same decision. Here they are separate, so you can run an expensive model for the hard reasoning and a cheap one for mechanical edits, or point the whole thing at a local model and send nothing anywhere.

It also loads the right language servers automatically, so the model reads real type errors rather than guessing from raw text. That is a small detail with a large effect on how often it produces something that does not compile.

Cost: free, MIT. Optional Zen credits if you would rather not manage provider accounts. Enterprise is per-seat and contact-only.

Cline

What it is: an Apache-2.0 agent inside VS Code, with a CLI and SDK alongside.

The commercial shape is the point. No subscription, no seat fee. You bring your own API key and pay for the tokens you burn. That is genuinely cheaper if you reach for an agent a few times a day, and genuinely more expensive if you live in it. It is the honest trade rather than a marketing line: a flat fee is a bet you will use a lot, usage billing is a bet you will not.

The architecture is client-side, so requests go from your machine to the provider you picked rather than through a vendor's servers. In most security reviews that is the sentence that decides it.

One correction worth making: several roundups list a $20/user Cline tier. Their own pricing page says free, with a contact-only Enterprise plan. I went with their page.

Cost: free, you pay inference only.

Where the Code Actually Runs

Your agent wrote code. Now something has to execute it, and "on my laptop, unsandboxed" is a decision rather than a default.

E2B

E2B

What it is: isolated cloud sandboxes built for running AI-generated code.

Sandboxes start fast and are meant to be disposable, so the working pattern is one per task or per attempt rather than a long-lived box that slowly fills with junk. Billing is per second of compute, which means idle agents cost nothing and a burst of fifty parallel sandboxes costs exactly what it used.

The core is open source, and for this category that is more than a nice-to-have. The thing you are being asked to trust is an isolation boundary. Being able to read how it works is part of evaluating it.

Cost: free Hobby tier with a one-time $100 in credits. Pro $150/mo, plus per-second compute from $0.000014/s.

Sandbox Runtime

What it is: Anthropic's open source tool for restricting what a process can touch, at the OS level, with no container.

It uses sandbox-exec on macOS and bubblewrap on Linux, plus a filtering proxy for network access. No container image, no daemon. That sounds like an implementation footnote and is actually the whole value: wrapping every agent command in Docker is heavy enough that people skip it and run unrestricted instead. Make the control cheap and it gets used.

It constrains exactly the three things currently running with more access than anyone intended: agents, local MCP servers, and whatever bash command an agent just decided to execute.

Two caveats worth stating. It is a research preview under an experimental org, so interfaces will move. And OS-level sandboxing is a real boundary but not a VM, so match it to your actual threat model.

Cost: free, Apache-2.0.

Agentuity

What it is: a platform for the unglamorous part, which is getting an agent into production and keeping it there.

Building an agent that works on your laptop is a weekend. Giving it an authenticated API, a frontend, storage, somewhere to run untrusted code and a deploy story is the part that eats a quarter. Agentuity bundles those: type-safe routes that generate matching React hooks, storage the agent reaches for as a tool, sandboxes, all deployed with one command.

The tension with any platform this integrated is lock-in, and it is real rather than hypothetical. The value is precisely that the parts are joined together, which is also what makes them hard to separate later.

Cost: $5 in free credits, then usage-based in ACUs with a public calculator.

What the Agent Can Reach

An agent that can only talk is a chatbot. Three tools for the boundary between the agent and everything else.

Composio

Composio

What it is: access to 1000+ tools, plus the auth infrastructure underneath them.

The tedious problem here is not the integrations, it is the authentication. Connecting an agent to Gmail, Slack, Linear and a database is not hard once. It is hard forty times, with four OAuth dances, token refresh, scope management and credential storage, none of which is the product you meant to build.

It is aimed squarely at coding harnesses rather than at frameworks generally: Claude, Codex, Cursor, OpenClaw and Hermes are named on the homepage.

Read the rate card properly before scaling. There is per-call metering, per-trigger-event metering, and a surcharge for using their managed OAuth apps instead of your own. The free tier is unusually honest though: hard-capped at 100K tool calls a month, no card, and it pauses at the cap rather than converting into a bill.

Cost: free up to 100K tool calls. Pro $29/mo including credit, then from $0.0003 per call.

Browserbase

What it is: managed browsers, so agents can use sites that will never ship an API.

The useful design choice is that it is layered. A Search API to find pages, a Fetch API to turn any URL into clean HTML, JSON or Markdown, and a full browser only when the agent genuinely needs to log in and click through a flow. Most tasks do not need a real browser, and paying for one when a fetch would do is just waste.

Anyone who has run their own Playwright fleet knows why this exists. They leak memory, they get blocked, sessions expire, and concurrency turns a process into a fleet.

Worth saying plainly: automating sites you do not own sits in contested territory, legally and in terms of service. That is your call to make.

Cost: free plan, then $20/mo and $99/mo, plus usage from about $0.10 per browser hour. Proxies extra.

AnyDoc

What it is: an MIT-licensed Rust library converting 14 document formats to clean Markdown.

There is no machine learning in it at all. It is a parser, so conversion is a few milliseconds and the output is deterministic instead of slightly different every run. Compare that with piping every document through a vision model: slower, priced per page, and inconsistent.

Every format goes through the same document model and serializer, so a .doc from 2003 and yesterday's .pptx produce the same shape of Markdown. It compiles to WebAssembly, so it runs in the browser and files never leave the machine. And it ships as an agent skill, meaning one command teaches Claude Code or Cursor to read documents it otherwise could not open.

Scanned images are still OCR's problem, not this tool's.

Cost: free, MIT.

Finding Out What It Did

Laminar

Laminar

What it is: open source observability for agents.

It captures model calls, tool calls, sub-agents, tokens and cost, and renders them as a readable transcript rather than a pile of spans you reassemble by hand. With an agent the useful question is almost always "what did it decide to do", not "what was the p99".

The part that earns its place is Signals, which analyses runs looking for failure modes nobody defined in advance. That matches how agents actually break. With a normal service you know what failure looks like and write an alert for it. An agent fails by looping, by picking the wrong tool, by producing something plausible and wrong, and you cannot write assertions for failures you have not imagined yet.

Open source matters here too, because this tool sees your prompts and outputs by design.

Cost: free tier at 1 GB and 7-day retention, one seat. Starter $30/mo, Pro $150/mo, both unlimited seats.

Putting It In Front of Users

CopilotKit

What it is: a protocol and framework for embedding an agent in your own product.

Their AG-UI is a bi-directional connection between a user-facing app and any agentic backend. A protocol rather than a widget library means the agent and the interface stop being one codebase, so the same backend serves your React app, Slack and Teams without three implementations drifting apart. Generative UI takes it further, letting the agent render real components instead of describing them in prose.

The pricing ladder climbs steeply, from free to $39/mo to $100 per seat, so count your seats before assuming the middle tier is where you land.

Cost: free to build on, $39/mo, $100/seat/mo, Enterprise contact-only. Self-hostable.

The Short Version

Tool Layer Starts at
OpenCode The agent, any model Free, MIT
Cline The agent, in VS Code Free, inference only
E2B Sandboxes for generated code Free, then $150/mo
Sandbox Runtime OS-level containment Free, Apache-2.0
Agentuity Deploying agents $5 credits, then usage
Composio Tool access and auth Free to 100K calls
Browserbase Browsers for agents Free, then $20/mo
AnyDoc Documents into Markdown Free, MIT
Laminar Agent observability Free, then $30/mo
CopilotKit Agents inside your product Free, then $39/mo

What This Actually Tells You

Look at that table and the pattern is hard to miss. Almost none of these compete with a coding agent. They assume one exists and solve the problem sitting next to it.

That is what a category looks like when it stops being a novelty. Nobody builds credential infrastructure, isolation primitives and failure-mode analysis for something they expect to be a fad. The unglamorous layers get built when the thing above them is load-bearing.

If you only pick one, pick by what already hurts. Agents touching your filesystem with no restrictions is a security problem you have today, and Sandbox Runtime costs nothing to try. Agents failing in ways your logs cannot explain is a debugging problem, and Laminar's free tier covers a real side project. Paying a vision model to read spreadsheets is a bill you can delete this afternoon with AnyDoc.

The rest are worth knowing about for when you hit them. You will.

Free Tools

View All
Stable Diffusion AI tool logo

Stable Diffusion

Open-source AI image generation model

Stable Diffusion is an open-source AI image generation model that creates high-quality images from text descriptions.

Free
Color Palette Pro AI tool logo

Color Palette Pro

Design Tool

Color Palette Pro is a sophisticated AI-powered color selection and palette generation tool that helps designers, marketers, and creative professionals...

Free
Namelix AI tool logo

Namelix

AI-powered business name generator

Namelix AI business name generator using machine learning. Generate creative, catchy, available domain names and logos for startups, small businesses, projects.

Free
ToolSmart Username Generator AI tool logo

ToolSmart Username Generator

Original username ideas for Instagram, TikTok and everywhere else

Free unlimited username generator for social platforms, with category and tone controls across Instagram, TikTok, Discord, Twitch and more, and no signup.

Free
Private AI Background Remover AI tool logo

Private AI Background Remover

Remove backgrounds in your browser - your image never leaves the device

Free background remover that runs entirely in your browser with no upload, no signup and no watermark, exporting transparent 4K PNGs with blur and crop tools.

Free
Grok AI tool logo

Grok

AI Assistant

Grok is Elon Musk's AI assistant with emphasis on answering questions and providing explanations with a humorous, irreverent tone.

Free
NotebookLM AI tool logo

NotebookLM

Google's AI research assistant

NotebookLM is a Google AI research project that enables interactive interaction with documents. Like other document analysis tools, NotebookLM lets you...

Free
Nano Banana 2 AI AI tool logo

Nano Banana 2 AI

AI Image Editor

Nano Banana 2 AI is a generative AI model and platform for creating diverse AI-powered applications. Like other AI platforms, Nano Banana provides access to...

Free
Motion.ed AI tool logo

Motion.ed

AI Task Manager & Calendar Optimizer

Motion.ed is a platform for creating educational content and online courses. Educators seek to create engaging educational content and deliver it to students.

Free
Muse Code Guide AI tool logo

Muse Code Guide

Independent, source-traceable reference for Meta's terminal coding agent

Independent reference site documenting Meta's Muse Code terminal agent, separating confirmed release facts from vendor claims, with sources and a stated method.

Free
Quora Search AI AI tool logo

Quora Search AI

AI-powered search on Quora platform

Quora Search AI is an AI-powered search engine that provides answers to questions from the Quora community combined with AI-generated insights and...

Free
Workplace Rooms AI AI tool logo

Workplace Rooms AI

Meta enhanced meeting assistant

Workplace Rooms AI is an AI-powered workplace collaboration platform. Remote and hybrid teams need collaboration infrastructure.

Free

Vibe Coding Tools

View All
ShipFast AI tool logo

ShipFast

Launch your SaaS in days, not months

Next.js SaaS boilerplate with AI integration and auth. Authentication, Stripe payments, database included. Launch production SaaS startups 10x faster.

Paid
Codeium AI tool logo

Codeium

Free AI coding assistant for individuals

Free AI code completion in VS Code, IntelliJ, and 20+ editors. Fast, private code suggestions with context awareness. GitHub Copilot alternative option.

Freemium
GitHub Copilot AI tool logo

GitHub Copilot

Your AI pair programmer that writes code with you

GitHub Copilot is an AI-powered code completion tool that suggests entire lines, functions, and code blocks in real-time as developers write software.

Paid
Codacy AI tool logo

Codacy

AI-powered code quality and security

Code review automation powered by AI. Catch issues before production.

Freemium
Optibot AI tool logo

Optibot

Deep AI code review with engineering analytics

Pairs AI pull request review with engineering analytics, and is priced by review volume per user so the bill tracks output rather than raw headcount here.

Paid
omg.dev AI tool logo

omg.dev

Your coding agent, always on - give it somewhere to work

Hosted cloud computers for coding agents, so Claude Code, Codex, OpenCode and Pi keep running when your laptop is closed, with parallel agents from $5 a month.

Freemium
Niteshift AI tool logo

Niteshift

The full-stack cloud for coding agents

Gives coding agents a fully provisioned cloud environment with databases, a dev server and a live browser, so they can verify their own work before review.

Freemium
Replit Ghostwriter AI tool logo

Replit Ghostwriter

AI Code Assistant for Replit

Replit Ghostwriter is an AI code completion tool integrated into the Replit IDE that provides intelligent code suggestions and assistance.

Paid
Builderkit AI tool logo

Builderkit

NextJS AI boilerplate for rapid development

Builderkit is a low-code platform for building web applications and internal tools without extensive programming.

Paid
Vercel AI SDK AI tool logo

Vercel AI SDK

Open-source TypeScript framework for building AI applications with streaming, tools, and RAG

Vercel AI SDK is an open-source framework that simplifies building AI-powered applications with a unified API for managing multiple AI providers.

Free
SearchApi AI tool logo

SearchApi

Real-time Google Search API for scraping

SearchAPI is a web search API that provides programmatic access to search engine results for websites, news, and other content types.

Freemium
Unstructured AI tool logo

Unstructured

Document ingestion and parsing library for converting PDFs, images, and HTML into structured data for RAG

Convert PDFs, images, documents to structured data and text easily. Document parsing and extraction with open-source and cloud APIs for AI data preparation.

Free