Getting Started
Get Dynamo running in your game project in under a minute.
Install
# Clone and build
git clone https://github.com/TeamWorldForge/dynamo.git
cd dynamo
npm install
npm run build
npm linkSet Up a Provider
Dynamo needs at least one AI provider. Set an API key:
# Anthropic (recommended)
export ANTHROPIC_API_KEY="sk-ant-..."
# OpenAI
export OPENAI_API_KEY="sk-..."
# Or use Ollama for local models (no API key needed)
ollama pull llama4Launch
# Navigate to your game project
cd ~/Projects/MyGame
# Start Dynamo
dynamoYou'll see the animated logo and a prompt. Start typing — Dynamo streams responses in real time with syntax highlighting.
Permissive Mode
Skip tool approval prompts with the -y flag:
dynamo -yResume a Session
# Pick from recent sessions
dynamo -r
# Resume a specific session
dynamo -r <session-id>Next Steps
- Commands & Shortcuts — slash commands, keyboard shortcuts
- Configuration — customize Dynamo with
dynamo.yaml - Tools — file, shell, git, and web tools