Troubleshooting¶
Common issues and solutions.
Installation Issues¶
Knowledge Base Download Fails¶
Symptom:
Solution:
# Retry with longer timeout
NOVA_KB_TIMEOUT=300 /init
# Or download manually
curl -L https://nova-ai.s3.amazonaws.com/kb-latest.tar.gz | \
tar -xz -C ~/.nova-ai/knowledge-base/
MCP Server Won't Start¶
Symptom:
Solution:
Runtime Issues¶
Agent Timeout¶
Symptom:
Solutions:
-
Increase timeout:
-
Break task into smaller pieces:
Quality Gate Loops¶
Symptom:
Solutions:
-
Check the recurring issue:
-
Fix manually and retry:
Out of Memory¶
Symptom:
Solutions:
-
Reduce parallel agents:
-
Use smaller model for routine tasks:
API Issues¶
Rate Limiting¶
Symptom:
Solutions:
-
Retry logic is handled automatically by the SDK with exponential backoff.
-
Reduce parallel agents:
Invalid API Key¶
Symptom:
Solution:
# Check key is set
echo $ANTHROPIC_API_KEY
# Verify key format (should start with sk-ant-)
export ANTHROPIC_API_KEY="sk-ant-..."
Git Issues¶
Worktree Conflicts¶
Symptom:
Solution:
# Clean up stale worktrees
git worktree prune
# Remove manually if needed
rm -rf /tmp/nova-worktrees/abc123
Uncommitted Changes Block Operation¶
Symptom:
Solutions:
-
Commit or stash changes:
-
Force continue (use with caution):
Performance Issues¶
Slow Knowledge Base Search¶
Symptom:
Solutions:
-
Rebuild index:
-
Reduce search scope:
High Token Usage¶
Symptom:
Solutions:
-
Enable context compression:
-
Break large tasks into smaller pieces to reduce context usage.
Debugging¶
Enable Verbose Logging¶
Trace Agent Communication¶
View Last Error¶
Check System Status¶
Getting Help¶
Log Collection¶
Report Issues¶
- Check existing issues: GitHub Issues
- Create new issue with:
- Nova AI version
- Python version
- Error message
- Steps to reproduce
What's Next?¶
-
Changelog
Recent updates
-
Contributing
Help improve Nova AI