Your AI agent shouldn't need to relearn the web every run
Webcmd learns a site's navigation once, then compiles it into deterministic CLI adapters so agents stop burning tokens rediscovering the same pages.

What it does Webcmd is a self-learning browser infrastructure for AI agents. It watches an agent fumble through a site–clicking, typing, extracting–then memorizes the navigational context and compiles it into reusable, deterministic commands. The idea is to stop paying an LLM to rediscover the same login flow on every single run.
The interesting bit Instead of treating every task like a fresh Playwright script, Webcmd builds a layered memory: raw exploration at the bottom, a learned sitemap in the middle, and a compiled CLI adapter on top. Each layer collapses variance for the next, turning repeated browser chaos into something closer to a typed API.
Key highlights
- Ships as a Node.js CLI with a plugin-based adapter system; the core includes no site adapters, so you bring your own plugins.
- Supports authenticated sessions via cookie-jar
Profilesand parallelSessionsfor multi-agent work. - Aims to cut browser-agent token spend by up to 90% by replacing repeated exploration with deterministic, compiled commands.
- Can target authenticated web apps, APIs, and desktop surfaces beyond standard public sites.
- Community plugins already cover research, social media, shopping, and travel sites.
Caveats
- The core package ships bare: most workflows require hunting down and installing a plugin before anything useful happens.
- The hosted
Webcmd Cloudoption is explicitly unstable and still in active development.
Verdict Worth a look if you’re burning through API tokens on repetitive browser automation and want to turn exploration into reusable infrastructure. Skip it if you need a fully hosted, batteries-included solution today.
Frequently asked
- What is agentrhq/webcmd?
- Webcmd learns a site's navigation once, then compiles it into deterministic CLI adapters so agents stop burning tokens rediscovering the same pages.
- Is webcmd open source?
- Yes — agentrhq/webcmd is open source, released under the Apache-2.0 license.
- What language is webcmd written in?
- agentrhq/webcmd is primarily written in JavaScript.
- How popular is webcmd?
- agentrhq/webcmd has 1.3k stars on GitHub.
- Where can I find webcmd?
- agentrhq/webcmd is on GitHub at https://github.com/agentrhq/webcmd.