> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Strict Tools CLI

> CLI commands for strict dependency checking

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Run template with strict tools mode (fail-fast on missing deps)
praisonai templates run my-template --strict-tools

# Combine with offline mode
praisonai templates run my-template --strict-tools --offline

# With tool overrides
praisonai templates run my-template --strict-tools --tools ./custom_tools.py

# Example output when dependencies are missing:
# ✗ Strict mode check failed:
# Missing tools: youtube_tool, whisper_tool
# Missing packages: opencv-python
# Missing environment variables: YOUTUBE_API_KEY
#
# To fix:
#   - Tool 'youtube_tool': pip install praisonai-tools[video]
#   - Tool 'whisper_tool': pip install praisonai-tools[audio]
#   - Package 'opencv-python': pip install opencv-python
#   - Environment variable 'YOUTUBE_API_KEY': export YOUTUBE_API_KEY=<value>

# Example output when all dependencies satisfied:
# ✓ All dependencies satisfied (strict mode)
# Running template...
```
