CLI Getting Started

Enterprise

Enterprise Command-Line Scanner

The Agnech 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 Agnech 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 Agnech CLI globally using npm.

Terminal
Bash
1# Install globally
2npm install -g @agnech/cli
3
4# Verify installation
5agnech --version
6
7# View help
8agnech --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
2agnech license activate YOUR_LICENSE_KEY
3
4# Check license status
5agnech license status
6
7# Deactivate (for moving to new machine)
8agnech 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)
2agnech scan ./src
3
4# Deep scan with all 7 engines
5agnech scan --deep ./src
6
7# Scan with executive report
8agnech scan --report executive ./src
9
10# Scan specific file types
11agnech scan --include "**/*.ts" --include "**/*.tsx" ./src

Live Demo

agnech scan ./src
$

Common Commands

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

Next Steps