by frontman-ai
The AI agent that lives in your framework/browser
# Add to your Claude Code skills
git clone https://github.com/frontman-ai/frontmanLast scanned: 5/15/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-15T06:58:16.601Z",
"semgrepRan": false,
"npmAuditRan": false,
"pipAuditRan": true
}frontman is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by frontman-ai. The AI agent that lives in your framework/browser. It has 610 GitHub stars.
Yes. frontman passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/frontman-ai/frontman" and add it to your Claude Code skills directory (see the Installation section above).
frontman is primarily written in ReScript. It is open-source under frontman-ai on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh frontman against similar tools.
No comments yet. Be the first to share your thoughts!
Frontman is an open-source AI coding agent that lives in your browser. Click any element in your running app, describe the change in plain English, and Frontman edits the actual source files with instant hot reload. It sees the live DOM, component tree, computed CSS, routes, source maps, and server logs, so non-technical teammates can make precise frontend fixes without guessing which file owns the UI.
Frontman is built for small frontend changes that usually get stuck in design QA, product review, or internal tooling backlogs:
Product managers and designers who need to fix copy, spacing, colors, layout issues, and internal UI polish without waiting for a developer to open an IDE.
Frontend developers who want richer context than terminal-based AI tools provide. Frontman reads the rendered page, not just source files, so it knows what your CSS computes to and which component renders each DOM node.
Teams where the handoff costs more than the actual change. Frontman lets teammates make the edit in-browser, then send the diff through your normal review process.
Most AI coding tools work from source files and never see the running application. Frontman takes the opposite approach — it starts from the browser and works backward to the source.
| Frontman | Cursor | GitHub Copilot | v0 | |
|---|---|---|---|---|
| Context | Live DOM, computed CSS, component tree, server logs | Source files in IDE | Source files in IDE | Sandboxed preview |
| Editing interface | Browser overlay | IDE (VS Code fork) | IDE extension | Web app |
| What it edits | Your existing codebase | Your existing codebase | Your existing codebase | Generates new code |
| Sees rendered output | Yes (framework middleware) | No | No | Own sandbox only |
| Open source | Yes (Apache 2.0 / AGPL-3.0) | No | No | No |
| Best for | Visual frontend editing, designer/PM collaboration | Full-stack IDE replacement | Autocomplete, code review | Generating new UI from scratch |
Frontman and these tools are complementary. Many developers use Cursor or Copilot for backend work and general refactoring, then switch to Frontman when they need to see what they're editing in the browser.
Frontman is available as an OpenClaw skill. Install it to give your AI agent specialized frontend editing capabilities — component tree awareness, computed CSS, source map resolution, and hot reload feedback that OpenClaw's general browser tool doesn't have.
openclaw skill install frontman-dev
Use OpenClaw for general-purpose automation (shell, messaging, files). Use Frontman for precise visual editing in your codebase. Read the comparison.
localhost/frontman to get a chat interface alongside a live view of your app.The framework integration turns your local dev server into an MCP server that the AI agent queries for both client-side context (DOM tree, computed CSS, screenshots, element selection) and server-side context (routes, server logs, query timing, compiled modules).
npx @frontman-ai/nextjs install
npm run dev
# Open http://localhost:3000/frontman
Works with App Router and Pages Router. Compatible with Turbopack.
See the Next.js integration guide for details.
astro add @frontman-ai/astro
astro dev
# Open http://localhost:4321/frontman
Listed on the Astro integration registry. Understands Islands architecture, content collections, and SSR/hybrid modes.
See the Astro integration guide for details.
npx @frontman-ai/vite install
npm run dev
# Open http://localhost:5173/frontman
Auto-detects your framework from vite.config. Works with React, Vue, and Svelte — including SvelteKit.
See the Vite integration guide for details.
Need setup help? Join the Discord or open a GitHub issue.
| Status | Frameworks |
|---|---|
| Supported now | Next.js App Router, Next.js Pages Router, Astro, Vite, React, Vue, Svelte, SvelteKit |
| Coming soon | Remix, Nuxt, SolidStart, Qwik, Phoenix LiveView |
Framework integrations run in development mode only. Production builds strip Frontman out, so your deployed bundle is identical whether Frontman is installed or not.
Frontman uses BYOK (bring your own key). Connect any LLM provider:
You pay your LLM provider directly at their standard rates. Self-hosting remains free under the project's open-source licenses; hosted Frontman service plans are moving to paid subscriptions.
Frontman is open source and can be self-hosted from source. Official hosted and self-hosting packaging is still evolving.
The project uses a split license model:
libs/) — Apache License 2.0apps/frontman_server/) — GNU Affero General Public License v3You can use Frontman in commercial apps. The AGPL applies to the server so hosted services built on top of Frontman stay open.
┌─────────────────────────────────────────────────┐
│ Browser │
│ ┌─────────────────┐ ┌────────────────────────┐ │
│ │ Your Running App│ │ Frontman Overlay │ │
│ │ │ │ (chat + live preview) │ │
│ └────────┬────────┘ └───────────┬────────────┘ │
│ │ │ │
│ ┌───────▼───────────────────────▼──────────┐ │
│ │ Browser-side MCP Server │ │
│ │ DOM tree, computed CSS, screenshots, │ │
│ │ element selection, console logs │ │
│ └──────────────────┬───────────────────────┘ │
└─────────────────────┼───────────────────────────┘
│
┌─────────────────────┼───────────────────────────┐
│ Dev Server │ │
│ ┌──────────────────▼───────────────────────┐ │
│ │ Framework Middleware │ │
│ │ (Next.js / Astro / Vite plugin) │ │
│ │ Routes, server logs, compiled modules, │ │
│ │ source maps, build errors │ │
│ └──────────────────┬───────────────────────┘ │
└─────────────────────┼───────────────────────────┘
│
┌─────────────────────┼───────────────────────────┐
│ Frontman Server │ (Elixir/Phoenix) │
│ ┌──────────────────▼───────────────────────┐ │
│ │ AI Agent Orchestrator │ │
│ │ Queries MCP tools, generates edits, │ │
│ │ writes source files, triggers hot reload │ │
│ └──────────────────────────────────────────┘ │
└─────────────────────────────────────────────────┘
Contributions are welcome! Please read the [Contributing Guide](./