Getting Started

Get up and running with PhantomDev in minutes.

Installation

One-Click Installer (Recommended)

curl -sSL https://john-varghese-eh.github.io/PhantomDev/install.sh | bash

From crates.io

cargo install phantomdev

From Source

git clone https://github.com/John-Varghese-EH/PhantomDev.git cd PhantomDev cargo build --release cargo install --path crates/cli
Requirements: Rust 1.70 or later, Git 2.0 or later

Quick Start

Step 1: Go to your project

cd your-project

Step 2: Stage your files

git add your-files

Step 3: Check your code

phantomdev

This will show your stealth score and suggest what to do next.

Step 4: Fix AI patterns

phantomdev fix

That's it! Your code is now humanized.

Basic Commands

phantomdev

Check status and get suggestions. This is the default command - just run phantomdev to see your stealth score.

phantomdev fix

Auto-fix AI patterns in staged files. This is the main command you'll use to humanize your code.

phantomdev scan

See what AI patterns are detected in your files without making changes.

phantomdev score

Check your stealth score with detailed breakdown of detected patterns.

phantomdev dashboard

Launch the visual TUI dashboard for real-time monitoring.

phantomdev config

View or change PhantomDev settings.

phantomdev install

Install IDE integration for Claude Code, Cursor, Windsurf, or Antigravity.

Typical Workflow

1

Stage your files

git add your-files
2

Check what's detected

phantomdev scan
3

Fix AI patterns

phantomdev fix
4

Commit

git commit -m "your message"

Advanced Options

Fix specific files

phantomdev fix --files src/main.rs

See what would change without applying

phantomdev fix --dry-run

Detailed score breakdown

phantomdev score --detailed

Reset settings to defaults

phantomdev config --reset

Install IDE integration

phantomdev install --ide claude phantomdev install --ide all

Next Steps