Skip to Content
GuidesTroubleshooting

Troubleshooting

Common issues and how to resolve them.

Installation Issues

CLI not found after install

Add the install directory to your PATH:

export PATH="$HOME/.intentra/bin:$PATH"

Add this to your ~/.zshrc or ~/.bashrc.

Permission denied during install

Run with elevated permissions:

sudo curl -fsSL https://install.intentra.sh | sh

Hook Issues

Hooks not firing

Verify hooks are installed:

intentra hooks status

If not installed:

intentra hooks install cursor --force

IDE not detecting hooks

Restart your IDE after installing hooks.

Wrong hook version

Reinstall hooks to update:

intentra hooks install cursor --force intentra hooks install claude --force intentra hooks install gemini --force

Database Issues

Database locked

If you see “database is locked” errors:

# Check for other intentra processes ps aux | grep intentra # Reset the database lock intentra db unlock

Database corruption

Reset the local database:

# Backup existing data cp ~/.intentra/intentra.db ~/.intentra/intentra.db.backup # Reinitialize intentra db init --force

Sync Issues

Authentication failed

Re-authenticate:

intentra auth logout intentra auth login

Sync not working

Check sync status:

intentra sync status

Force a sync:

intentra sync push --force

Getting Help

If you’re still having issues:

  1. Check verbose output: intentra --verbose <command>
  2. Search GitHub issues 
  3. Open a new issue with debug logs