The iBlueprint CLI gives you direct terminal access to the iBlueprint platform, letting you list blueprints, trigger execution chains, and monitor results without opening a browser. It connects to the iBlueprint API using a simple environment variable and authenticates with an API key you generate from your account settings.Documentation Index
Fetch the complete documentation index at: https://docs.iblueprint.ai/llms.txt
Use this file to discover all available pages before exploring further.
Installation
Install the CLI globally using npm:1.0.0 printed to your terminal.
Configuration
The CLI connects to the iBlueprint API using theIBP_API_URL environment variable. If you do not set this variable, it defaults to http://localhost:4000 — useful for local development but not for production.
Set IBP_API_URL to point at your iBlueprint instance:
.bashrc, .zshrc, etc.).
Authentication
The CLI authenticates with the iBlueprint API using an API key passed as a Bearer token. Generate a key in Settings → API Keys, then make it available to the CLI:API keys are scoped to your user account. Never commit them to source control. Use environment variables or a secrets manager instead.
Available commands
| Command | Description |
|---|---|
iblueprint list | List all blueprints in a table |
iblueprint get <id> | Fetch full blueprint details as JSON |
iblueprint execute <id> | Execute a blueprint chain |
iblueprint status <execId> | Check the status of an execution |
Next steps
Commands reference
Full documentation for every CLI command, including flags and example output.
API keys
Learn how to create and manage the API keys the CLI uses to authenticate.
