This guide walks you through the fastest path to a working Blueprint in iBlueprint. You will sign up for an account, connect an AI provider, create a Blueprint with a prompt node, execute it, and inspect the result in the execution log.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.
Create your account
Go to app.iblueprint.ai and click Sign up. Enter your email address and a password of at least six characters, then follow the confirmation link sent to your inbox.
If you prefer passwordless sign-in, use Sign in with magic link on the login page — iBlueprint will email you a one-time link instead.
Connect an AI provider
Before you can run a prompt node, you need at least one AI provider key.
- Open Settings from the sidebar, then select AI Connections.
- Click Add provider key.
- Choose a provider — OpenAI, Anthropic, Google, or Ollama — and paste your API key.
- Give the key a name (for example,
OpenAI production) and toggle Set as default if you want this provider selected by default in new nodes. - Click Save.
Create a Blueprint
- Click New Blueprint in the left sidebar.
- Give your Blueprint a name — for example,
Summarize article. - Click Create. The visual editor opens with an empty canvas.
Add a prompt node
- Click Add node (or the + button on the canvas) and select Prompt.
- In the node settings panel that opens on the right, choose your AI provider and model.
- Write your prompt in the System prompt or User message field. For a first test, try something simple:
{{input}} placeholder is a variable that you can supply at runtime.- Click Save node.
Run the Blueprint
Click Run in the top-right toolbar. If your Blueprint has variables, iBlueprint shows an input panel — fill in the values and click Execute.You can also run any Blueprint from the CLI. First install the CLI:Then execute your Blueprint by ID:When execution starts, the CLI prints the execution ID:Use that ID to check the status at any time:
Check the execution log
Back in the web app, open the Executions tab on your Blueprint. Each row shows the execution timestamp, status, and duration. Click any row to expand the full trace — you can inspect the input and output for every node in the chain, along with token usage and latency.
Executions are stored and searchable. You can replay any previous execution with the same inputs by clicking Re-run on its detail page.
Next steps
Now that your first Blueprint is running, explore what else you can build:Node types
Add API, function, MCP, and conditional nodes to your chain.
Variables
Pass dynamic data into any node at runtime.
CLI reference
Full reference for all CLI commands: list, get, execute, status.
AI providers
Connect additional providers and manage per-key rate limits.
