How to install KeygraphHQ/shannon. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.
KeygraphHQ/shannon Installation Guide
How to install KeygraphHQ/shannon. Official project installation instructions and setup guide.
⚡
Automated Install (Recommended)
Quick installation instructions for KeygraphHQ/shannon. This is the fastest way to complete project installation and setup.
Install via curl
curl -fsSL https://hexmos.com/ipm-install | bash &&
ipm i KeygraphHQ/shannonor
Install via npx
npx @hexmos/ipm i KeygraphHQ/shannonPrerequisites
Docker
containerVersion: latest
Git
cliVersion: latest
Anthropic API key or OAuth token
api_keyVersion: latest
Manual Installation Methods
Manual installation instructions. How to install from GitHub source.
Quick Start (Linux/macOS/Windows Git Bash/WSL2)
git clone https://github.com/KeygraphHQ/shannon.git
cd shannon
export ANTHROPIC_API_KEY="your-api-key"
export CLAUDE_CODE_MAX_OUTPUT_TOKENS=64000
./shannon start URL=https://your-app.com REPO=your-repoAWS Bedrock Setup
git clone https://github.com/KeygraphHQ/shannon.git
cd shannon
export CLAUDE_CODE_USE_BEDROCK=1
export AWS_REGION=us-east-1
export AWS_BEARER_TOKEN_BEDROCK=your-bearer-token
export ANTHROPIC_SMALL_MODEL=us.anthropic.claude-haiku-4-5-20251001-v1:0
export ANTHROPIC_MEDIUM_MODEL=us.anthropic.claude-sonnet-4-6
export ANTHROPIC_LARGE_MODEL=us.anthropic.claude-opus-4-6
./shannon start URL=https://your-app.com REPO=your-repoGoogle Vertex AI Setup
git clone https://github.com/KeygraphHQ/shannon.git
cd shannon
mkdir -p ./credentials
cp /path/to/your-sa-key.json ./credentials/gcp-sa-key.json
export CLAUDE_CODE_USE_VERTEX=1
export CLOUD_ML_REGION=us-east5
export ANTHROPIC_VERTEX_PROJECT_ID=your-gcp-project-id
export GOOGLE_APPLICATION_CREDENTIALS=./credentials/gcp-sa-key.json
export ANTHROPIC_SMALL_MODEL=claude-haiku-4-5@20251001
export ANTHROPIC_MEDIUM_MODEL=claude-sonnet-4-6
export ANTHROPIC_LARGE_MODEL=claude-opus-4-6
./shannon start URL=https://your-app.com REPO=your-repo