Secure AI coding assistant powered by Claude

Quick Start

1
Download the CLI
# macOS (Apple Silicon)
curl -L https://morph.elixion.io/releases/latest/morph-darwin-arm64 -o morph
chmod +x morph && sudo mv morph /usr/local/bin/

# macOS (Intel)
curl -L https://morph.elixion.io/releases/latest/morph-darwin-amd64 -o morph
chmod +x morph && sudo mv morph /usr/local/bin/

# Linux
curl -L https://morph.elixion.io/releases/latest/morph-linux-amd64 -o morph
chmod +x morph && sudo mv morph /usr/local/bin/
2
Authenticate with your license key
morph auth login <your-license-key>
3
Start coding
morph # Start interactive session
morph python-backend # Use Python backend agent
morph --ei # Everything allowed mode

Features

Specialized Agents

Python, Go, Frontend, DevOps - each agent has protected skills optimized for their domain.

Secure Skills

Proprietary skills are encrypted and never stored in plaintext on your machine.

Tool Execution

Run shell commands, edit files, execute git - all with approval controls.

Interactive TUI

Full-screen terminal UI with streaming responses and tool approval prompts.

Configuration

# ~/.morph/config.yaml
anthropic_api_key: "sk-ant-..." # Your Anthropic API key
morph_server_url: https://morph.elixion.io
default_agent: python-backend
model: claude-sonnet-4-20250514
auto_approve_reads: true
API v1.0.0 - Operational