Workflows are Cyberwave’s automation primitive. They turn a graph of nodes — triggers, models, twins, conditions, integrations — into a runnable artifact that can fire on a schedule, an MQTT message, a webhook, or every camera frame on a Raspberry Pi.Documentation Index
Fetch the complete documentation index at: https://docs.cyberwave.com/llms.txt
Use this file to discover all available pages before exploring further.
Three ways to build one
You never have to pick between a low-code graph and “real” code. Cyberwave keeps the two in sync.Visual editor
Drag nodes from the palette, wire ports, configure parameters. Great for
prototyping and for handing flows to non-engineers.
Python SDK
Build, list, trigger, and monitor workflows from
cw.workflows. Anything you can do in the UI
you can do in code.With an agent
Describe the automation in plain English to Claude, Cursor, or any MCP
client — Cyberwave’s MCP server and
Claude skill wire up the graph for you.
Cloud, edge, or both — in one graph
A workflow can span both sides of your stack. Trigger and ML nodes that run on the cloud coordinate with the same workflow’s edge half via the edge worker runtime. A common shape: The video frame never leaves the device unanonymized, the VLM runs on a GPU in the cloud, and an email goes out — all from a single workflow definition. The unified edge compiler decides what runs where based on the graph itself. You don’t manage model downloads, hardware compatibility, or reconnects. Cyberwave provisions the right model into the right runtime — edge YOLO forcamera_frame, cloud VLMs for call_model — and keeps it healthy when the network blinks.
Same workflow, sim or real
Workflows run unchanged against simulation or live hardware. Flip the mode on your environment (or the SDK) and the same graph drives a MuJoCo twin in CI, then a real robot in your cell:What workflows are good at
Orchestrating multiple twins
Synchronise robots and sensors — swarm formations, multi-arm cells, or a
fleet of cameras feeding a single inspection job. Wire any twin from the
catalog into the same graph.
Reacting to the real world
Camera-frame,
MQTT, schedule, webhook, and email
triggers wake the workflow up
without you wiring anything custom.
Calling out to anything
http_request, send_email, and send_alert nodes plug Cyberwave into
the rest of your stack — PagerDuty, Slack, your warehouse system, a Notion
page.Start from a template
Don’t start from a blank canvas. Cyberwave ships a library of workflow templates — motion detection, pick-and-place, intrusion alerts, voice control — and you can publish your own for your team or the world.acme/workflows/my-template), and editable after cloning — they’re a starting point, not a black box.
What to read next
Workflows reference
Node taxonomy, trigger types, edge sync, and the full editor walkthrough.
Workflow API
REST schemas:
WorkflowSchema,
WorkflowExecuteSchema,
WorkflowNodeSchema.Edge-to-cloud VLM tutorial
Build the anonymize-on-edge + VLM-on-cloud workflow end-to-end.