CLI Getting Started

Enterprise

Enterprise Command-Line Scanner

The Bloodhound CLI provides enterprise-grade security scanning with 6 professional report formats, CI/CD integration, and compliance documentation.

Enterprise License Required

The CLI tool requires an enterprise license. Contact sales@agnech.com to get started or request a trial.
Install CLI
Install globally via npm
Activate License
Enter your enterprise key
Run Scan
Scan your codebase
Generate Reports
Create professional reports

Overview

The Bloodhound CLI is designed for enterprise environments where you need automated security scanning, professional reports, and CI/CD integration.

7
Scan Engines
6
Report Formats
5
Scan Modes
3
CI/CD Platforms

Installation

Install the Bloodhound CLI globally using npm.

Terminal
Bash
1# Install globally
2npm install -g @agnech/cli
3
4# Verify installation
5bloodhound --version
6
7# View help
8bloodhound --help

System Requirements

  • • Node.js 18.0 or later
  • • 8GB RAM recommended
  • • Internet connection (for license validation)

License Activation

Activate your enterprise license to unlock all features.

Terminal
Bash
1# Activate with your license key
2bloodhound license activate YOUR_LICENSE_KEY
3
4# Check license status
5bloodhound license status
6
7# Deactivate (for moving to new machine)
8bloodhound license deactivate

License Details

Enterprise licenses include unlimited scans, all report formats, and priority support. See the License Management page for more details.

Your First Scan

Run your first security scan on a project directory.

Terminal
Bash
1# Quick scan (Pattern + SAST + CVE + Graph)
2bloodhound scan ./src
3
4# Deep scan with all 7 engines
5bloodhound scan --deep ./src
6
7# Scan with executive report
8bloodhound scan --report executive ./src
9
10# Scan specific file types
11bloodhound scan --include "**/*.ts" --include "**/*.tsx" ./src

Live Demo

bloodhound scan ./src
$

Common Commands

bloodhound scan <path>Scan a directory or file
bloodhound scan --deep <path>Run all 7 engines including AI verification
bloodhound scan --report <format> <path>Scan and generate report
bloodhound report <format> <path>Generate report from existing scan
bloodhound license statusCheck license status
bloodhound config set <key> <value>Set configuration value
bloodhound --helpShow all available commands

Next Steps