Hurozo Agentic Platform CLI
Project description
Hurozo CLI
Hurozo is a visual agent builder and execution platform. You compose agents as graphs of nodes, connect inputs and outputs, and save them to run via API calls, webhooks, or the UI. The Hurozo CLI helps you:
- Scaffold runnable Python projects for your saved agents
- List available agents in your account
- Run agents programmatically using Python
The CLI is designed for quick prototyping and integration into scripts or services.
Features
- Scaffold a minimal Python project with
main.pyfor selected agents - Instantiate agents by name (existing definitions are fetched automatically)
- Prefill input keys in the scaffolded script (when the agent defines required inputs)
- Lightweight
Agentclass for invoking agents via the Hurozo API - Compose agents programmatically via the
Nodebuilder and run/save them withAgent
Installation
Install from PyPI:
pip install hurozo
This will provide the hurozo console command and the hurozo Python package.
Authentication
The CLI and the Agent class use a bearer token to access your Hurozo account.
HUROZO_API_TOKEN: required. A user or org API token.
Example:
export HUROZO_API_TOKEN=...your token...
Commands
-
hurozo init [dirname]- Interactively select one or more agents from your account
- Scaffolds a minimal project in
dirname(createsrequirements.txtandmain.py) main.pyinstantiates each selected agent by display name and pre-fills.input({...})if inputs are defined- When run,
main.pywill execute all selected agents and print their results
-
hurozo list- Lists accessible agents with their display names and UUIDs
-
hurozo nodes list- Prints the node catalog stored in
.hurozo/nodes.json
- Prints the node catalog stored in
-
hurozo nodes refresh- Fetches the latest node catalog from the backend into
.hurozo/nodes.json(requiresHUROZO_API_TOKEN)
- Fetches the latest node catalog from the backend into
-
hurozo help [command]- Shows help for a specific command
Python API
The packaged Python module exposes helpers for both running existing agents and for composing new graphs locally.
from hurozo import Agent
# Loads the remote agent (or creates an empty placeholder if it does not exist yet)
agent = Agent("My Remote Agent")
# Run the agent on Hurozo using the current input payload
agent.input({"naam": "De Hengst"})
print(agent.run())
# Inspect or update the agent's saved JSON graph
print(agent.to_agent_graph())
# Environment variables mirror the "Env" tab in the UI
agent.set_env("OPENAI_MODEL", "gpt-4o-mini")
print(agent.list_env())
If you already know the agent UUID you can pass Agent("uuid-value", True) to
skip the name lookup. When the provided identifier is not found the SDK creates
a new remote agent with an empty graph so subsequent operations behave
consistently.
Building local graphs with Node
from hurozo import Agent, Node
inputs = Node("Basic/Input/TextArea").set_property("text", "Hello")
separator = Node("Basic/Input/TextArea").set_property("text", ", ")
name = Node("Basic/Input/TextArea").set_property("text", "world")
concat = Node("Text/String/ConcatStrings")
concat(inputs, name, separator=separator)
agent = Agent("CLI Demo")
agent.addNodes(concat)
result = agent.run() # Executes locally while nodes are staged
agent.save("CLI Demo") # Persists the graph via /api/agents
Node instances load their input/output definitions from .hurozo/nodes.json
and automatically wrap literal inputs with the appropriate constant nodes.
Agent(name) loads the remote definition if it already exists; otherwise it
creates an empty remote placeholder. When you call addNodes(...) the SDK keeps
the staged graph locally—run() executes it immediately, and save() replaces
the remote graph with the current staged version.
Managing environment variables
Remote agents support lightweight environment variables that are hydrated at execution time (the same values you configure in the web UI under Env). The SDK exposes helpers for reading and mutating them:
from hurozo import Agent
agent = Agent("My Remote Agent")
agent.set_env("OPENAI_MODEL", "gpt-4o-mini")
print(agent.get_env("OPENAI_MODEL"))
for name, value in agent.list_env().items():
print(name, value)
agent.delete_env("OPENAI_MODEL")
These methods require HUROZO_API_TOKEN and always target the remote agent.
If the agent does not exist yet, the SDK creates an empty placeholder so the
environment helpers operate consistently.
Scaffolded Project Layout
When you run hurozo init my-agent, the CLI generates:
requirements.txt– dependencies:hurozo,python-dotenv,requestsmain.py– a runnable script that:- imports
Agentfromhurozo - defines one variable per selected agent using its display name
- fills in
.input({...})from the agent’s defined input keys (if available) - calls
.run()for each agent and prints the results
- imports
.env(optional) – if not present, a template is created with aHUROZO_API_TOKENplaceholder
Run it with:
cd my-agent
pip install -r requirements.txt
export HUROZO_API_TOKEN=...your token... (or set it in .env)
python main.py
Environment Variables
HUROZO_API_TOKEN– required for both listing agents and executing themHUROZO_TOKEN– optional alias read by theRemoteAgenthelper (falls back toHUROZO_API_TOKEN)HUROZO_API_URL/HUROZO_SERVER_URI– override the default backend host (https://hurozo.com)HUROZO_NODES_FILE– override the location of.hurozo/nodes.jsonwhen loading node definitions programmaticallyHUROZO_DEBUG– set to1to emit verbose RemoteAgent logs (registration attempts, Firebase token minting, Firestore events, etc.)NO_COLOR– if set, disables colored output in the CLI
Remote Agents
The packaged RemoteAgent helper now mirrors the Hurozo UI: it listens to Firestore
for pending requests and writes results/events back in real time, no polling loop required.
from hurozo import RemoteAgent
def hello(name):
return {"greeting": f"Hello {name}"}
RemoteAgent(hello, {
"inputs": ["name"],
"outputs": ["greeting"]
})
Requirements:
- Set
HUROZO_API_TOKEN(orHUROZO_TOKEN) with a read/write API token. - Optionally set
HUROZO_API_URLif you are targeting a self-hosted deployment.
The helper:
- Registers the remote agent metadata with
/api/remote_agents/register(keeps it fresh). - Calls
/api/firebase_tokenwith your API token and exchanges the custom token for Firebase credentials. - Opens a Firestore gRPC watch on
users/<uid>/remote_requestsscoped to your agent. - Invokes your handler, patches the Firestore document with status/outputs (or error details), and emits execution events for the UI.
When HUROZO_DEBUG=1 is present, the helper prints each handshake step (registration, Firebase token mint, Firestore listen, request updates) so you can trace the realtime flow end‑to‑end.
Designing agents
- Go to https://hurozo.com/ to design your agents visually. Save your agent, create an API token, and scaffold a project with
hurozo init.
Troubleshooting
- Missing token: ensure
HUROZO_API_TOKENis set in your shell or.env - Name resolution fails: the CLI falls back to using the provided string; switch to UUID-based invocation by passing
Trueas the secondAgentargument - Inputs missing at runtime: open the agent in the Hurozo UI and ensure inputs are defined; re-run
hurozo initto regenerate a script with updated keys
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hurozo-0.4.1.tar.gz.
File metadata
- Download URL: hurozo-0.4.1.tar.gz
- Upload date:
- Size: 45.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9cb169f4327db4f95533e9df71f590f6ece168756eaaa2af3aafe53714c9c73
|
|
| MD5 |
bb2f4cf005c446890894fa9be93b82db
|
|
| BLAKE2b-256 |
6d4407eb866bfdd02441909cc7d77e38755e7708de805af3fab02192df624bbe
|
File details
Details for the file hurozo-0.4.1-py3-none-any.whl.
File metadata
- Download URL: hurozo-0.4.1-py3-none-any.whl
- Upload date:
- Size: 39.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77983041450593f3e52a72c350ce5b357f448e298c1ce27b1a424244be2c7f8f
|
|
| MD5 |
91dc0edeac07f2850c85976404b73357
|
|
| BLAKE2b-256 |
c5d04c0c35f7df861c38dd2247e695d10688f1030ef94531a331f721bde6f906
|