Monkey Wings — Classic Winged monkey head, warm cocoa palette, spiky hair tuft, wide toothy grin, closed happy-arc eyes. Monkey Wings
Install

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.

#1

One-line curl installer

For: Anyone with a terminal ~3 min Terminal needed

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
#2

Git clone + local install

For: Contributors / paranoid readers ~5 min Terminal needed

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
#3

Skill drop-in for Claude Code

For: Claude Code users ~1 min No terminal

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"
#4

Skill drop-in for Antigravity

For: Antigravity users ~1 min No terminal

Same natural-language install as Claude. Antigravity honours the same SKILL.md manifest.

"Install this skill: https://github.com/xef07/Monkey_Wings"
#5

Skill drop-in for OpenClaw

For: OpenClaw users ~1 min Terminal needed

Single command after the base install. Drops the skill into ~/.openclaw/skills/ and refreshes OpenClaw's skill index.

mw register --cli openclaw
#6

PWA install from browser

For: Windows / iOS / Android / any browser ~30 sec No terminal

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
#7

Skill drop-in for OpenAI Codex CLI

For: Codex CLI users ~1 min Terminal needed

Registers Monkey Wings as both an MCP server in ~/.codex/config.toml AND a skill symlink under ~/.codex/skills/.

mw register --cli codex
#8

Universal ~/.agents/skills/

For: Any agentskills.io-compatible tool ~10 sec Terminal needed

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.