Skip to main content

CyberMind Docs

Start Here

Installation on Linux and Kali

The main installation path targets Kali and Linux because that is where the automated recon, hunt, and Abhimanyu workflows are strongest.

$curl -sL https://cybermindcli1.vercel.app/install.sh | bash

One-command install (recommended)

This downloads the binary, installs it to /usr/local/bin, and optionally saves your API key if you pass it via environment variable.

# Basic install
curl -sL https://cybermindcli1.vercel.app/install.sh | bash

# Install with API key pre-saved
CYBERMIND_KEY=cp_live_xxxxx curl -sL https://cybermindcli1.vercel.app/install.sh | bash

Manual install (if curl fails)

Download the binary directly and install it yourself.

# Download binary
wget https://cybermindcli1.vercel.app/cybermind-linux-amd64 -O /tmp/cybermind

# Make executable
chmod +x /tmp/cybermind

# Install to PATH
sudo mv /tmp/cybermind /usr/local/bin/cybermind

# Save your API key
mkdir -p ~/.cybermind
echo '{"key":"cp_live_xxxxx"}' > ~/.cybermind/config.json
chmod 600 ~/.cybermind/config.json

Set or update your API key after install

If you need to change your API key at any time, run this command. It overwrites the saved key immediately.

cybermind --key cp_live_xxxxx

# Verify it worked
cybermind whoami

First commands after install

Do these before you touch a real target.

cybermind --version
cybermind /doctor
cybermind

Uninstall

To fully remove CyberMind CLI from your Linux system:

# Built-in command (recommended)
cybermind uninstall

# Manual removal (if binary is already gone)
sudo rm -f /usr/local/bin/cybermind /usr/bin/cybermind
rm -rf ~/.cybermind