Eight install paths.
Pick the one that matches how you already work. All eight land on the same runtime, share the same portable memory + provider config, and leave your system clean when uninstalled.
One-line curl installer
The standard path. Clones the repo, builds it, installs the `mw` CLI, and drops a desktop icon into your app grid.
curl -fsSL https://monkeywings.ai/install.sh | bash
Git clone + local install
Same as #1 but you get to read the installer before running it. ~250 lines, no obfuscation, no sudo.
git clone https://github.com/xef07/Monkey_Wings && cd Monkey_Wings && ./install.sh
Skill drop-in for Claude Code
Paste the repo URL to Claude and say "install this skill". Claude reads SKILL.md at the repo root and drops it into ~/.claude/skills/.
"Install this skill: https://github.com/xef07/Monkey_Wings"
Skill drop-in for Antigravity
Same natural-language install as Claude. Antigravity honours the same SKILL.md manifest.
"Install this skill: https://github.com/xef07/Monkey_Wings"
Skill drop-in for OpenClaw
Single command after the base install. Drops the skill into ~/.openclaw/skills/ and refreshes OpenClaw's skill index.
mw register --cli openclaw
PWA install from browser
Open the dashboard URL in Chrome / Edge / Brave / Safari and click "Install Monkey Wings" in the address bar. Creates a native-app icon. No terminal required.
http://127.0.0.1:3001 → address bar → Install
Skill drop-in for OpenAI Codex CLI
Registers Monkey Wings as both an MCP server in ~/.codex/config.toml AND a skill symlink under ~/.codex/skills/.
mw register --cli codex
Universal ~/.agents/skills/
Fallback location honoured by ~30–40 AI tools (Claude, Codex, Antigravity, Cursor, Copilot, VS Code, etc). One command, works everywhere.
mw register --cli agents
Verify after install
# 1. Backend healthy? curl -sf http://127.0.0.1:13000/api/v1/health | jq .status # → "UP" # 2. Dashboard reachable? curl -sf http://127.0.0.1:3001/ -o /dev/null && echo "web: OK" # 3. CLI on PATH? mw --version
Full uninstall runbook and every environment variable documented in the Install docs.