Install
openclaw skills install bool-cliDeploy sites to Bool.com via the bool CLI. Use when creating, deploying, updating, or managing Bool projects.
openclaw skills install bool-cliCLI tool for managing projects on Bool.com. Requires Node.js >=18.
npm install -g bool-cliBOOL_API_KEY env var, or run bool auth login interactivelybool auth status to confirm the connectionThe API key is saved to ~/.config/bool-cli/config.json. The BOOL_API_KEY environment variable takes precedence over the saved config.
The bool auth login and bool bools delete <slug> commands are interactive (they prompt for input). When using them from an agent:
BOOL_API_KEY environment variable instead of running bool auth login-y / --yes to skip the confirmation prompt: bool bools delete <slug> -ybool auth login # Interactive: prompts for API key
bool auth status # Check auth + API health (non-interactive)
bool bools list [count] # List Bools (default: 5)
bool bools create <name> # Create a new Bool
bool bools info [slug] # Show Bool details + latest version info
bool bools update [slug] --name "New Name" --description "desc" --visibility public
bool bools delete [slug] -y # Delete a Bool (always use -y to skip prompt)
bool bools open [slug] # Open Bool in browser
bool bools visibility [slug] # Show current visibility
bool bools visibility [slug] --set private # Change visibility
Visibility options: private, team, unlisted, public
bool versions [slug] # List version history
bool deploy [slug] [dir] -m "commit message" # Deploy local files (auto-creates Bool if needed)
bool pull [slug] [dir] --version N # Download files locally
Ship a project without needing an API key:
bool shipit [directory] # Create anonymous Bool + deploy
bool shipit --slug <slug> -m "update message" # Update existing anonymous Bool
bool shipit --name "My Project" # Set a custom name
The shipit command stores the slug and secret in .bool/config so subsequent runs in the same directory automatically update the same Bool.
All commands support --json for machine-readable output. Always use --json when you need to parse output programmatically.
bool bools list --json
bool bools info my-project --json
bool versions my-project --json
.bool/config)When you deploy, pull, or shipit in a directory, bool-cli stores project metadata in .bool/config:
{
"slug": "my-project",
"name": "My Project",
"secret": "optional_anonymous_secret"
}
This allows you to omit the [slug] argument on subsequent commands when working in the same directory. For example:
# First time: specify slug explicitly
bool deploy my-project ./src -m "Initial deploy"
# After that, run from the same directory and slug is read from .bool/config
bool deploy -m "Another deploy"
bool versions
bool bools info
Add .bool/ to your .gitignore to keep secrets local.
bool bools create "My Project"
# note the slug from the output, e.g. "my-project"
bool deploy my-project ./src -m "Initial deploy"
# Deploy without a slug—a new Bool is created automatically
bool deploy ./src -m "Initial deploy"
This creates a Bool named after the directory and displays the live URL.
bool shipit ./my-project
# outputs: https://<slug>.bool01.com
# subsequent updates from same directory:
bool shipit ./my-project -m "Updated version"
bool pull my-project ./my-project
# ... make changes to files in ./my-project/ ...
bool deploy my-project ./my-project -m "Updated files"
bool bools info my-project # See latest version summary
bool versions my-project # See full version history
bool pull my-project ./tmp # Download current files to inspect
bool bools visibility my-project # Show current visibility
bool bools visibility my-project --set private # Make it private
bool bools visibility my-project --set public # Make it public
bool deploy my-project ./src --exclude "*.test.js" --exclude "*.spec.js" -m "Production build"
bool deploy recursively reads the directory and uploads all text files.bool/config exists), a new Bool is created automatically, named after the directory.git, node_modules, __pycache__, .DS_Store, .bool--exclude <pattern> (repeatable) for additional patterns.boolignore: If a .boolignore file exists in the deploy directory, it is respected (gitignore syntax)bool pull <slug> downloads files to ./<slug>/ by defaultbool pull <slug> ./my-dirbool pull <slug> --version 3| Variable | Purpose | Default |
|---|---|---|
BOOL_API_KEY | API key (overrides saved config) | — |
BOOL_API_URL | API base URL | https://bool.com/api |
BOOL_BASE_URL | Base URL for shipit | https://bool.com |
"Bool not found")No API key configured. Run: bool auth loginbool bools list --json | jq '.[].slug' to get all slugs for scriptingbool bools create, the slug is derived from the name (e.g., "My Project" -> my-project)bool bools info <slug> --json to get the latest version number programmaticallyhttps://<slug>.bool01.com