Troubleshooting
CLI
Command not found
Verify the CLI is installed and in your PATH:
which composioIf not found, reinstall:
curl -fsSL https://composio.dev/install | bashOr add to PATH:
echo 'export PATH="$HOME/.composio:$PATH"' >> ~/.bashrc && source ~/.bashrcAuthentication errors
Check current authentication:
composio whoamiRe-authenticate if needed:
composio logout
composio loginFor CI/CD, use environment variable:
export COMPOSIO_API_KEY="your-api-key"Type generation issues
Project type not detected
Use language-specific commands:
composio ts generate # TypeScript
composio py generate # PythonOutput directory missing
Specify output directory explicitly:
composio generate --output-dir ./my-typesDebug CLI issues
Enable debug logging:
composio --log-level debug [command]Check version compatibility:
composio versionCommon issues
- API key not found: Run
composio login - Project type detection fails: Use language-specific commands or ensure you're in project root
- Network timeout: Check internet connection and proxy settings
- Permission denied: Check directory write permissions
Getting help
- Email: support@composio.dev
- Discord: #support-form
- GitHub: Create an issue