CLI Reference
Complete reference for all Poliage CLI commands and options.
Global Options
These options are available on all commands:
Commands
poliage init
Initialize a new Poliage project in the current directory.
poliage init [options]Options:
Example:
poliage init --project my-docspoliage login
Authenticate with the Poliage platform.
poliage login [options]Options:
Example:
# Interactive login
poliage login
# Non-interactive (for CI)
poliage login --token $POLIAGE_TOKENpoliage whoami
Display current authenticated user information.
poliage whoamipoliage capture
Capture commands for managing and running captures.
poliage capture run
Execute captures defined in config.
poliage capture run [options]Options:
Example:
# Run all captures
poliage capture run
# Run specific captures
poliage capture run --filter homepage,dashboard
# Run with more parallelism
poliage capture run --parallel 5poliage capture add
Add a new capture configuration.
poliage capture add [options]Options:
poliage capture interactive
Launch interactive capture mode.
poliage capture interactive [options]Options:
poliage sync
Sync local captures to the Poliage platform.
poliage sync [options]Options:
Example:
# Standard sync
poliage sync -m "Updated login screenshots"
# Preview changes
poliage sync --dry-runpoliage status
Show current project status and pending changes.
poliage statusOutput includes:
- Number of local captures
- Changes since last sync
- Current project information
poliage config
Manage configuration settings.
poliage config get
Get a configuration value.
poliage config get <key>poliage config set
Set a configuration value.
poliage config set <key> <value>Example:
poliage config set defaultViewport.width 1920
poliage config get defaultViewport.width