Desktop app, CLI, and reusable Go runtime for AI agents.
To try Mister Morph, start with the desktop App from GitHub Releases. It includes the Console UI, starts the local backend, and guides first-run setup.
- 🖥️ App-first setup: use the desktop App to get started; use the CLI when you need a server or script.
- 🧩 Reusable Go core: run Mister Morph as an App, CLI, or Console backend, or embed it in your projects.
- 🤝 Connection: Aqua lets agents talk to each other, so multiple agents can plan and work together.
- 🛠️ Practical extensions: built-in tools,
SKILL.mdskills, and Go embedding cover local use and automation. - 🔒 Security-minded: auth profiles, outbound policy, approvals, and redaction are built in.
- Download a release asset from the GitHub Releases page:
- macOS:
mistermorph-desktop-darwin-arm64.dmg - Linux:
mistermorph-desktop-linux-amd64.AppImage - Windows:
mistermorph-desktop-windows-amd64.zip
- macOS:
- Open the App.
- Use the Agent.
Build, packaging, and platform notes: docs/app.md
Install the CLI:
curl -fsSL -o /tmp/install-mistermorph.sh https://raw.githubusercontent.com/quailyquaily/mistermorph/refs/heads/master/scripts/install-release.sh
sudo bash /tmp/install-mistermorph.shOr install from source:
go install github.com/quailyquaily/mistermorph/cmd/mistermorph@latestSet up a workspace, set an API key, and run one task:
mistermorph install
export MISTER_MORPH_LLM_API_KEY="YOUR_API_KEY"
mistermorph run --task "Hello!"If config.yaml is missing, mistermorph install starts the setup wizard and writes the first workspace files.
CLI modes and configuration details: docs/modes.md, docs/configuration.md
- A desktop App with first-run setup and the Console UI.
- A CLI for one-shot tasks, scripts, automation, and server modes.
- A local Console server for setup, runtime management, and monitoring.
- Channel runtimes for Telegram, Slack, LINE, and Lark.
- A Go integration layer for embedding Mister Morph into other projects.
- Built-in tools and a
SKILL.md-based skills system. - Security controls for auth profiles, outbound policies, approvals, and redaction.
Start here:
Reference:
Channel setup:
Full docs index: docs/README.md
Useful commands:
./scripts/build-backend.sh --output ./bin/mistermorph
./scripts/build-desktop.sh --release
go test ./...The Console frontend lives in web/console/ and uses pnpm. See docs/console.md and docs/app.md for build details.
The canonical config template is assets/config/config.example.yaml.
Environment variables use the MISTER_MORPH_ prefix. Full config notes and common flags are in docs/configuration.md.