freshcrate
Home > MCP Servers > wove

wove

Open-source AI coding agent. Desktop app, bring your own model. Writes code, browses the web, verifies its work. Apache 2.0.

Description

Open-source AI coding agent. Desktop app, bring your own model. Writes code, browses the web, verifies its work. Apache 2.0.

README

Wove

Wove

Open-source AI coding agent. Desktop app. Bring your own model.

AI coding tools today lock you into one model, one vendor, one monthly subscription. Your code goes through someone else's servers. You can't switch models when a cheaper one fits. You can't work offline. And you can't see what the tool actually does with your code.

Wove fixes this. It's a desktop app that connects directly to any AI provider with your own API key. It writes code, runs commands, browses the web, and verifies its own work β€” all locally on your machine. No proxy, no cloud agent, no vendor lock-in.

Use Claude, GPT, Gemini, MiniMax, Ollama, or any OpenAI-compatible model. Switch between them in one click. Pay only for what you use.

Built on Wave Terminal (Go + Electron). Apache 2.0.

Download

macOS (Apple Silicon / M1+): Wove-darwin-arm64-0.2.0.dmg Β· zip

macOS (Intel): Wove-darwin-x64-0.2.0.dmg Β· zip

Linux and Windows builds coming soon.

All releases

Why Wove

You own the whole stack. Wove is a desktop app that talks directly to AI providers. Your code stays on your machine. Your API keys stay in an encrypted local keystore. There's no proxy, no telemetry requirement, no usage cap.

It actually does the work. Wove doesn't just suggest code β€” it reads your project, writes files, runs tests, opens a browser to check the result, and fixes what's broken. When a task is too big, it splits it into sub-tasks with isolated context so nothing overflows.

Any model, one interface. Claude Opus for hard problems. GPT-5 Mini for quick tasks. MiniMax M2.7 for $3/month coding. Ollama for fully offline work. Switch in one click, same tools and guardrails everywhere.

What it does

Writes and edits code

Reads your project conventions (WAVE.md, CLAUDE.md), finds similar files for style reference, writes code that matches your codebase. Enforces read-before-edit at tool level β€” the AI physically cannot modify a file it hasn't read.

Runs and verifies

Executes commands in a real terminal. Runs your test suite. Checks linter output. Won't say "done" without running at least one verification step. If large edits are needed, breaks them into stages instead of rewriting entire files.

Browses the web

Built-in browser with CDP-based vision. The agent opens pages, reads content, clicks buttons, fills forms, takes screenshots with numbered element markers. Useful for testing web apps, scraping docs, or debugging frontends.

Plans and delegates

Creates execution plans with concrete file paths, tracks progress in a live panel. When tasks are complex (5+ files, multi-step migrations), automatically delegates to sub-tasks running in isolated tabs with fresh context.

Connects to your data

Auto-detects MCP servers from .mcp.json. The AI gets direct access to your database schema, documentation, logs β€” any MCP-compatible data source.

Models

Provider Models Get API key
Anthropic Claude Sonnet 4.6, Opus 4.6 console.anthropic.com
OpenAI GPT-5 Mini, GPT-5.1 platform.openai.com
Google Gemini 3.0 Flash, Pro aistudio.google.com
MiniMax M2.7, M2.7 High Speed platform.minimax.io
xAI Grok 3 console.x.ai
Ollama Any local model ollama.com
OpenRouter Any model openrouter.ai

Right-click the AI panel β†’ Quick Add Model β†’ paste your key. Done.

API keys are stored in an encrypted local keystore β€” never in config files or plain text.

Getting started

Download and run

Grab the latest release from the downloads section above. Open the DMG, drag to Applications, launch.

Build from source

git clone https://github.com/mits-pl/wove.git
cd wove
task init
task dev

Requires: macOS 11+ / Windows 10+ / Linux (glibc-2.28+), Node.js 22 LTS, Go 1.25+, Task

Set up your model

  1. Open Wove β†’ find the AI panel on the right (or Alt+Shift+A)
  2. Right-click β†’ Quick Add Model β†’ pick your provider
  3. Paste your API key β†’ done

Configure your project

Create WAVE.md in your project root:

## Project
My App β€” Laravel 11, Inertia.js, Vue 3

## Conventions
- Always use Form Request classes for validation
- Use Eloquent scopes, not raw queries
- Run vendor/bin/pint after changes

Wove reads this on every request and enforces your rules at tool level.

Advanced: custom model endpoints

For models not in Quick Add, create ~/.config/woveterm/waveai.json:

{
  "my-model": {
    "display:name": "My Model",
    "ai:apitype": "anthropic-messages",
    "ai:model": "claude-sonnet-4-6",
    "ai:endpoint": "https://api.anthropic.com/v1/messages",
    "ai:apitokensecretname": "my_api_key",
    "ai:capabilities": ["tools", "images", "pdfs"]
  }
}

Supported API types: anthropic-messages, openai-responses, openai-chat, google-gemini

How it works

Your message
    ↓
[Project rules from WAVE.md/CLAUDE.md]
[MCP context: database schema, docs]
[Active plan: current step]
    ↓
Agent: plan β†’ read β†’ write β†’ verify β†’ test
    ↓
    β”œβ”€β”€ needs web data? β†’ opens browser, reads page
    β”œβ”€β”€ complex task? β†’ delegates to sub-task (isolated tab)
    └── done? β†’ closes terminals and browsers it opened

Guardrails

Not just prompt suggestions β€” enforced at tool level:

  • Read-before-edit β€” tool rejects edits on unread files
  • Large file protection β€” blocks full rewrites of files >200 lines, forces targeted edits
  • Architecture matching β€” finds similar files, copies their patterns
  • Doom loop detection β€” detects repeating tool calls, forces strategy change
  • Structured compaction β€” when context grows, preserves action history instead of losing it
  • Security awareness β€” parameterized queries, output escaping, no secrets in code

Built on

Wave Terminal by Command Line Inc., Apache License 2.0.

See MODIFICATIONS.md for changes from upstream.

Contributing

Issues and PRs welcome. See CONTRIBUTING.md.

Support

Buy Me A Coffee

License

Apache License 2.0. See LICENSE.

Release History

VersionChangesUrgencyDate
v0.2.0## What's New ### Code Quality Guardrails (Claude Code–inspired) - **18 system prompt guardrails**: Code Discipline, Verification, Honesty, Security, File Creation, Self-Review, Failure Diagnosis, Output Discipline, Comment Preservation, Proactive Bug Discovery - **Project instructions override**: WAVE.md/CLAUDE.md rules explicitly override AI's default behavior - **Warm context injection**: technology-filtered conventions refreshed per file type during edits - **Sibling file reference**: auto-Medium4/1/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

tsunamiautonomous AI agent that builds full-stack apps. local models. no cloud. no API keys. runs on your hardware.main@2026-04-21
devtapπŸš€ Streamline build and dev output by feeding logs directly into AI coding sessions using Model Context Protocol for seamless automation.main@2026-04-21
crab-codeπŸ¦€ Open-source alternative to Claude Code, built from scratch in Rust. Agentic coding CLI β€” thinks, plans, and executes with any LLM. Compatible with Claude Code workflows.main@2026-04-21
Grinta-AgentLocal-first autonomous coding agent that plans, executes, validates, and finishes software tasks end-to-end.main@2026-04-20
GhostDeskGive any AI agent a full desktop β€” it sees the screen, clicks, types, and runs apps like a human. Automate anything with a UI: browsers, legacy software, internal tools. No API needed. One Docker commv7.1.0