Pixshop CLI - AI Creative Platform command-line interface
Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pixshop) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Pixshop CLI
AI Creative Platform command-line interface. Generate images, videos, and use 48+ AI tools from your terminal.
Install
npminstall-g pixshop
Quick Start
# Login to your Pixshop account
pixshop login
# Generate an AI image
pixshop generate -p"a cute cat in space"-o cat.png
# Browse Nano Banana apps
pixshop apps
# Use AI tools
pixshop tools upscale -i photo.jpg -o photo-hd.jpg
# Check your credits
pixshop credits
Commands
Auth
Command
Description
pixshop login
Authenticate with email/password
pixshop logout
Remove stored credentials
pixshop whoami
Show current user info
Creative
Command
Description
pixshop generate -p <prompt>
Generate AI images
pixshop video -p <prompt>
Generate AI videos
pixshop apps
Browse Nano Banana AI apps
pixshop prompts
Browse prompt library
pixshop tools <tool>
Use AI tools (face-swap, upscale, try-on, etc.)
Management
Command
Description
pixshop credits
Check credit balance
pixshop projects
Manage agent projects
pixshop discover
Show AI tools catalog
pixshop config
Manage CLI settings
Global Options
Option
Description
--help, -h
Show help
--version, -v
Show version
--json
Output as JSON (for scripting)
--api-url <url>
Override API base URL
--no-color
Disable colored output
Configuration
Config is stored in ~/.pixshop/config.json.
# Set API URL for local development
pixshop config set api-url http://localhost:3000
# Set default locale
pixshop config set locale zh
Examples
# Generate with specific model and aspect ratio
pixshop generate -p"sunset over mountains"--model nano-banana --aspect-ratio 16:9 -o sunset.png
# Generate video from image
pixshop video -i photo.jpg -p"add gentle motion"-o animated.mp4
# Search prompt library
pixshop prompts -s"anime"--type image
# Face swap
pixshop tools face-swap -i face.jpg --image2 target.jpg -o swapped.jpg
# Virtual try-on
pixshop tools try-on -i person.jpg -p"blue jacket"-o tryon.jpg
# JSON output for scripting
pixshop apps --json| jq '.data.apps[].name'