π Professional-grade global help indexer with BLUX integration
# Using curl
curl -sSL https://raw.githubusercontent.com/Outer-Void/god/main/install_deps.sh | bash
# Using wget
wget -q -O - https://raw.githubusercontent.com/Outer-Void/god/main/install_deps.sh | bash# From PyPI
pip install god-cli
# From source
git clone https://github.com/Outer-Void/god.git
cd god
./install_deps.sh
source activate_god.sh# Console summary
god build -f console --limit 20
# Save documentation
god build -o docs/help.md # Markdown
god build -f html -o docs/help.html # HTML
god build -f json -o docs/help.json # JSON
# Search & Info
god search docker
god stats
god info python
- Security: Risk assessment = (LOW/MEDIUM/HIGH/CRITICAL)
- Performance: Parallel processing with ThreadPoolExecutor
- Multi-format: Markdown, JSON, HTML, Console output
- Cross-platform: Windows, macOS, Linux
- BLUX Integration: Soft routes for ecosystem tools
# Quick console view
god build -f console --limit 50
# Generate reports
god build -f md -o docs/commands.md
god build -f html -o security-audit.html
god build -f json -o catalog.json# Search help text
god search docker
# Search names only (faster)
god search --names-only ssh# View statistics with risk breakdown
god stats
# Get detailed command info
god info python# Use more workers for faster processing
god build --max-workers 16 --limit 100
# Balance performance
god search "network" --max-workers 8god blux q --help
god blux dat --version
god blux lrc --help
god blux scan --help# Install with dev dependencies
./install_deps.sh --dev
# Or using pip
pip install -e ".[dev]"
# Run tests
make test
# Lint code
make lint
# Format code
make format
# Clean artifacts
make clean
# Build package
make buildΒ· Python 3.8+ Β· pip (latest version recommended)
python -m venv god_env
source god_env/bin/activate # Linux/macOS
# OR
god_env\Scripts\activate # Windows
pip install god-cli# If installation fails, try:
pip install --upgrade pip
pip install god-cli
# Permission issues on Linux/macOS:
pip install --user god-cli
# Or use sudo (not recommended):
sudo pip install god-cliΒ· typer>=0.20.0 - CLI framework
Β· rich>=13.8.0 - Beautiful terminal output
Β· click>=8.1.7 - Command line interfaceMIT License - See LICENSE
See CHANGELOG.md for version history and updates.
