# Ghost Auto

> Ghost Auto — Ghost's autonomous trading wallet. Fund Ghost with SOL, enable auto-trading, Ghost trades on cluster convergence signals with safety rails.

- Skill: `alsk1992/ghost-auto` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add alsk1992/ghost-auto`
- Raw SKILL.md: https://api.skillmd.com/api/skills/alsk1992/ghost-auto/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: alsk1992 (https://skillmd.com/u/alsk1992)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/alsk1992/ghost-auto

---


# Ghost Auto — Autonomous Trading Wallet

Ghost has its own Solana wallet and can trade autonomously based on alpha signals.

## Wallet Management

```
/ghost fund                             Show Ghost's wallet address + balance
/ghost balance                          Ghost's current SOL balance
```

## Auto-Trading Control

```
/ghost auto on                          Enable autonomous trading
/ghost auto off                         Disable autonomous trading
/ghost auto config                      View current config
/ghost auto config <key> <value>        Update config
```

## Position Management

```
/ghost positions                        Open positions
/ghost history [--limit N]              Trade history
/ghost close <trade-id>                 Close specific position
/ghost close-all                        Close all positions
/ghost stats                            Performance stats
```

## Safety Rails

| Setting | Default | Description |
|---------|---------|-------------|
| `maxPositionSol` | 0.1 | Max SOL per trade |
| `maxExposureSol` | 1.0 | Max total SOL in open positions |
| `circuitBreakerLosses` | 3 | Stop after N consecutive losses |
| `slippagePct` | 15 | Slippage tolerance |
| `minClusterScore` | 5 | Min cluster score to trade on |
| `minConvergenceWallets` | 3 | Min wallets in convergence alert |
| `takeProfitPct` | 100 | Auto TP at +100% (2x) |
| `stopLossPct` | -50 | Auto SL at -50% |

## How It Works

1. **Fund Ghost** — send SOL to Ghost's wallet address
2. **Enable auto-trading** — `/ghost auto on`
3. **Ghost watches for signals** — when the clustering engine fires a convergence alert (3+ smart wallets buying the same new token), Ghost evaluates it
4. **Auto-buy** — if the signal meets minimum requirements (cluster score, wallet count), Ghost buys
5. **Auto-exit** — positions are monitored for take-profit and stop-loss
6. **Circuit breaker** — Ghost stops after 3 consecutive losses

## Setup

Ghost's wallet is auto-generated on first use. Just fund it with SOL:

```bash
# 1. Get Ghost's address
/ghost fund

# 2. Send SOL from your wallet
# (use any Solana wallet to send SOL to the displayed address)

# 3. Enable auto-trading
/ghost auto on
```

Requires the Ghost Alpha clustering engine to be running (`/alpha start`).

