Skip to main content

CyberMind Docs

Start Here

Windows setup and realistic expectations

Windows is the chat-first environment. The deepest automated offensive chains remain Linux-first.

$(iwr https://cybermindcli1.vercel.app/install.ps1 -UseBasicParsing).Content | iex

One-command install

Run this in PowerShell (Admin recommended for System32 install):

# Basic install
(iwr https://cybermindcli1.vercel.app/install.ps1 -UseBasicParsing).Content | iex

# Install with API key pre-saved
$env:CYBERMIND_KEY="cp_live_xxxxx"; (iwr https://cybermindcli1.vercel.app/install.ps1 -UseBasicParsing).Content | iex

Set or update your API key after install

Run this in any terminal to update your saved key:

cybermind --key cp_live_xxxxx

# Verify
cybermind whoami

What Windows supports well

Use Windows when you primarily want the CLI shell, AI guidance, local history, and model routing without the full Linux attack chain.

  • Interactive AI chat.
  • Command guidance and payload ideation.
  • History and prompt-first workflows.
  • General operator support before you switch into Linux.

What stays Linux-only

The upstream product posture is clear about the split, so the docs stay clear too.

  • /recon
  • /hunt
  • Abhimanyu mode
  • Broader toolchain orchestration

Uninstall on Windows

Run in PowerShell:

# Built-in command
cybermind uninstall

# Manual removal
Remove-Item -Force "$env:SystemRoot\System32\cybermind.exe" -ErrorAction SilentlyContinue
Remove-Item -Recurse -Force "$env:USERPROFILE\.cybermind" -ErrorAction SilentlyContinue