Troubleshooting
This page covers common issues you might encounter with VibeKit and how to resolve them.
Installation Issues
Install Script Fails
Error: Failed to download vibekit
Solutions:
- Check internet connection
- Verify GitHub releases are accessible
- Try manual installation
# Manual downloadcurl -L https://github.com/gabrielkuettel/vibekit/releases/latest/download/vibekit-linux-x64 -o vibekitchmod +x vibekitmv vibekit ~/.local/bin/vibekit Not Found After Install
Error: command not found: vibekit
Solution: Add ~/.local/bin to PATH
# Bashecho 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrcsource ~/.bashrc
# Zshecho 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrcsource ~/.zshrcSetup Issues
AlgoKit Not Found
Error: AlgoKit CLI not found
Solution: Install AlgoKit
# macOSbrew install algorand/tap/algokit
# Linux/Windows - see AlgoKit docsDocker Not Running (Vault)
Error: Cannot connect to Docker daemon
Solution:
# Start Dockersudo systemctl start docker # Linux# Or start Docker Desktop
# Then restart Vaultvibekit vault startVault Issues
Vault Won’t Start
Error: Vault container failed to start
Solutions:
- Check Docker is running
- Check port 8200 is available
- Remove old container
docker rm -f vibekit-vaultvibekit vault startVault Is Sealed
Error: Vault is sealed
Solution:
vibekit vault unsealLost Vault Token
If you lose the root token:
- Check
~/.config/vibekit/vault-root-token - If truly lost, you may need to reset Vault:
# WARNING: This deletes all accountsdocker rm -f vibekit-vaultdocker volume rm vibekit-vault-datavibekit vault startMCP Issues
MCP Server Not Starting
Error: Failed to start MCP server
Solutions:
- Check vibekit path
which vibekit- Test MCP directly
vibekit mcp- Check configuration
cat .mcp.json # or opencode.jsonTool Calls Failing
Error: Tool call failed: ...
Check:
- LocalNet running:
algokit localnet status - Provider available:
vibekit status - Account funded: Ask AI to check balance
Kappa Not Responding
Error: Kappa MCP not available
Solution:
# Test Kappa directlynpx -y @kappaml/mcp-server-kappa@latest
# If fails, check npm/npxnpm -vnpx -vNetwork Issues
LocalNet Not Running
Error: Connection refused or Network unavailable
Solution:
algokit localnet startalgokit localnet statusTestNet Funding Fails
Error: Dispenser error or Rate limited
Solutions:
- Check auth:
vibekit dispenser login - Wait for rate limit reset
- Use LocalNet instead
Wrong Network
Error: Operations failing unexpectedly
Check:
# Ask AI"What network am I on?"
# Switch if needed"Switch to localnet"Account Issues
No Accounts Found
Error: No accounts available
Solutions:
- Check provider:
vibekit status - Create account: Ask AI “Create a new account”
- On LocalNet, KMD accounts may need creation
Account Not Funded
Error: Account below minimum balance
Solution:
Ask AI: "Fund my account with 10 ALGO"Signing Failed
Error: Failed to sign transaction
Solutions:
- Check correct account is active
- Check provider is running/unsealed
- Verify on correct network
Skills Issues
Skills Not Working
Error: AI doesn’t understand Algorand concepts
Solutions:
- Check skills installed
ls ~/.config/opencode/skill/ # or ~/.claude/skills/- Re-install skills
vibekit initOutdated Skills
Skills may become outdated. Re-run setup to update:
vibekit initGetting Help
If you’re still stuck:
- Check status:
vibekit status - Check logs: Look for error messages in terminal
- GitHub Issues: Report a bug
When reporting issues, include:
- VibeKit version (
vibekit --version) - Operating system
- Error messages
- Steps to reproduce