4.6. Interactive Mode#
FlareInspect includes an interactive shell for running commands without repeating the full CLI prefix each time.
4.6.1. Starting Interactive Mode#
Run flareinspect with no arguments to launch the interactive shell:
flareinspect
You will see a banner and a flareinspect> prompt.
4.6.2. Available Commands#
Command |
Description |
|---|---|
|
Run a Cloudflare security assessment (same options as CLI) |
|
Export assessment results to a different format |
|
Display help information |
|
Display IONSEC.IO information |
|
Clear the terminal screen |
|
Exit interactive mode |
4.6.3. Passing Options#
All flags available in CLI mode work inside the interactive shell. For example:
flareinspect> assess --token YOUR_CLOUDFLARE_TOKEN --zones example.com
4.6.4. When to Use Interactive Mode#
Exploratory assessments: Quickly run targeted checks against different zones or categories without re-typing the full command.
Debugging: Use
--debuginteractively to inspect API calls and scoring decisions.Ad-hoc workflows: Chain an
assessthen anexportwithout leaving the shell.
For CI/CD and scripted environments, use the standard CLI commands instead — interactive mode requires a TTY.