Auggie Integration
Auggie is a free AI coding assistant from Augment Code.
Overview
| Property | Value |
|---|---|
| Tool Name | auggie |
| Binary | auggie |
| Tier | Free |
| Capabilities | coding |
| Config Path | ~/.augment/settings.json |
| Hooks Support | ā Yes (v0.15.0+) |
Status
ā Fully Supported - Hooks, patterns, and MCP sync all work.
Current support:
- ā Hook sync (SessionStart, Stop events)
- ā MCP server sync
- ā Pattern sync
- ā Skill sync
Installation
npm install -g @augment-code/auggie
Verify:
auggie --version
Quick Setup
# Install mur hooks for Auggie
mur init --hooks
This configures ~/.augment/settings.json with:
- SessionStart hook ā Injects context-aware patterns at session start
- Stop hook ā Extracts patterns and syncs when agent finishes
Configuration in Murmur
# ~/.mur/config.yaml
tools:
auggie:
enabled: true
binary: auggie
tier: free
capabilities: [coding]
flags: []
Sync Features
Hooks ā
mur init --hooks
Auggie supports hooks via ~/.augment/settings.json. Supported events:
| Event | Description |
|---|---|
SessionStart | Runs when Auggie starts a new session |
SessionEnd | Runs when a session ends |
PreToolUse | Runs before a tool executes |
PostToolUse | Runs after a tool completes |
Stop | Runs when agent finishes responding |
Mur uses SessionStart for pattern injection and Stop for pattern extraction.
MCP Servers ā
mur sync mcp
Auggie supports MCP servers via ~/.augment/settings.json.
Patterns ā
Patterns sync to Auggie's instruction context.
Skills ā
Skills sync to Auggie's configuration.
Hooks Configuration
After running mur init --hooks, your ~/.augment/settings.json will include:
]
}
],
"Stop": [
]
}
]
}
}
Verify Hooks
To verify hooks are working:
# Add debug logging
echo 'echo "[mur] hook @ $(date)" >> /tmp/mur-hook.log' >> ~/.mur/hooks/on-prompt.sh
# Run auggie
auggie "test"
# Check log
cat /tmp/mur-hook.log
When to Use Auggie
Auggie is good for:
- Free coding assistance (uses GPT-5.2)
- Quick code generation
- Project-aware assistance (auto-indexes your codebase)
With murmur routing:
routing:
prefer_free: [gemini, auggie] # Try Gemini first, then Auggie
Direct Usage
auggie "write a hello world in Rust"
Through murmur:
mur search "hello world Rust"