Command Line Interface

PixelCloud CLI

Manage your game servers from the terminal. Works great with AI coding agents too.

Install

$npm install -g @pixelcloud/cli

Requires Node.js >= 18

Quick Start

1
pixel auth login

Authenticate via device code flow (opens browser)

2
pixel search image "minecraft"

Search for available game server images

3
pixel create --image-id 1 --plan 1

Create a new game server

4
pixel status

List all your servers

5
pixel prompt "create a minecraft server"

Let AI handle it with natural language

Agent Skill

Teach your AI coding agent how to manage game servers with the PixelCloud CLI.

Install via Skills CLI

Works with Claude Code, Copilot, Cursor, Codex, and 40+ other AI coding agents via the open skills ecosystem.

$npx skills add skyquakers/pixelcloud-skills

Manual Copy

Or copy this snippet into your agent's system prompt or skill configuration.

You have access to the `pixel` CLI for managing game servers on PixelCloud.

Available commands:
  pixel auth login                        # authenticate (opens browser)
  pixel create --image-id <id> --plan <id> [--name <n>] [--env K=V...]
  pixel start --server-id <id>
  pixel stop --server-id <id>
  pixel restart --server-id <id>
  pixel force-restart --server-id <id>
  pixel delete --server-id <id> [--yes]
  pixel search image [keywords]           # search game images
  pixel prompt <message>                  # AI assistant
  pixel status                            # list all servers
  pixel status --server-id <id>           # details of one server

Add --json to any command for machine-readable output.
Environment variables: PIXELCLOUD_TOKEN, PIXELCLOUD_API_URL, PIXELCLOUD_WEB_URL