Skip to main content

CyberMind Docs

Installation Guide

CyberMind CLI works on Windows and macOS. One command installs everything — AI chat + AI coding assistant. No admin rights needed. Key passed via environment variable — never in shell history.

🪟 Windows 10/11🍎 macOS 12+⚡ No admin rights⚡ 2 min setup

Does the AI coding assistant need admin rights?

No. The AI coding assistant installs to C:\Users\YourName\.cybermind\ on Windows and /usr/local/bin/ on macOS (requires sudo once for macOS).

Reads/writes files in YOUR project folder
Creates/deletes files as YOU — your terminal permissions
Runs terminal commands as YOU — no elevation
Creates folders in your workspace — no restrictions
Never touches C:\Windows\ or C:\Program Files\
Never modifies system files or registry

How it works: The AI coding assistant runs as your user process. When you run cybermind in your project folder, it has exactly the same file permissions as you do in that terminal session. It can read/write any file you can read/write — nothing more, nothing less.

0

Get your API key first

One key works for both AI chat and AI coding assistant. Looks like cp_live_xxxxxxxxxxxx

Get your key → Dashboard

Free account — no credit card required.

🪟

Windows Installation

Windows 10 / Windows 11 — PowerShell required

1

Open PowerShell as Administrator

Press Win + X → click Windows PowerShell (Admin) or Terminal (Admin)

Verify PowerShell version (must be 5.1+):

$PSVersionTable.PSVersion
2

Run the install command

Replace YOUR_KEY with your actual API key from the dashboard:

$$env:CYBERMIND_KEY="YOUR_KEY"; (iwr https://cybermindcli1.vercel.app/install.ps1 -UseBasicParsing).Content | iex

The key is passed as an environment variable — it never appears in your shell history or ps aux output.

3

Verify installation

After install completes, verify it works:

$cybermind --version
$cybermind --whoami
4

Launch AI Coding Assistant

Navigate to your project folder and launch the AI coding assistant:

$cd C:\Users\YourName\my-project
$cybermind

✓ The AI coding assistant will index your project and launch the interactive TUI

⚠️ Windows Troubleshooting

ExecutionPolicy error?

Run this first, then retry the install:

$Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Command not found after install?

Close and reopen PowerShell. The PATH update requires a new session.

Windows Defender blocks the download?

Add an exclusion for the CyberMind install directory, or download manually from the install page.

🍎

macOS Installation

macOS 12 Monterey or later — Terminal required

1

Open Terminal

Press + Space → type Terminal → Enter. Or use iTerm2 for a better experience.

2

Run the install command

Replace YOUR_KEY with your API key:

$CYBERMIND_KEY=YOUR_KEY curl -sL https://cybermindcli1.vercel.app/install-mac.sh | bash
3

Verify installation

$cybermind --version
$cybermind --whoami
4

Launch AI Coding Assistant

$cd ~/my-project
$cybermind

⚠️ macOS Troubleshooting

"Cannot be opened because the developer cannot be verified"?

Go to System Settings → Privacy & Security → click "Allow Anyway" next to the cybermind binary.

curl not found?

Install Xcode Command Line Tools first:

$xcode-select --install

Command not found after install?

Reload your shell config:

$source ~/.zshrc

What to do after installing

Launch AI coding assistant

$cybermind

Opens the AI coding assistant in your current directory

AI chat (security mode)

$cybermind chat

Interactive AI chat with security context

Check your plan & key

$cybermind --whoami

Shows your tier, provider, model, and masked key

Run diagnostics

$cybermind doctor

Checks your setup and fixes common issues

Security scan mode

$cybermind /scan <target>

Runs security scan mode

Update to latest version

$cybermind update

Downloads and installs the latest release

AI Coding Assistant — First session

Once the AI coding assistant launches, here is what you will see and how to use it:

⚡ CyberMind AI v2.5.0 | Workspace: ~/my-project (1,247 files)

Model: MiniMax M2.5 | Provider: OpenRouter | Mode: Guard

> add JWT authentication to the Express API

◆ AI: Reading project structure...

✓ Found: src/routes/auth.js, src/middleware/

✓ Plan ready — 3 files to edit, 1 to create

[A]pply [S]kip [P]review [E]xplain

Type your task in plain English — the AI reads your codebase and makes targeted edits.

Press A to apply changes, S to skip, P to preview the diff first.

Type / to open the command menu — add files, change mode, undo, compress context.

Press Tab to cycle through edit modes (Guard → AutoEdit → Blueprint → Autopilot).