Quick Start
This guide walks you through creating and running your first Orvanta workflow from scratch.
Prerequisites: An Orvanta account (cloud or self-hosted) and the Orvanta CLI installed. See Installation if you haven’t done that yet.
-
Log in via the CLI
Terminal window orvanta loginThis opens your browser for authentication. Once complete, your session token is stored locally.
-
Create a new workflow
Terminal window orvanta workflows create my-first-workflowOrvanta creates a new workflow and prints its ID.
-
Open the workflow editor
Navigate to your Orvanta dashboard and open my-first-workflow in the node-based editor. You’ll see a blank canvas ready for nodes.
-
Add a Script node
Click Add Node → Script and select or create a simple script. For example, a Bash script that prints a greeting:
#!/usr/bin/env bashecho "Hello from Orvanta!" -
Trigger a run
Click Run in the editor, or use the CLI:
Terminal window orvanta runs trigger --workflow my-first-workflow -
Inspect the output
Terminal window orvanta runs list --workflow my-first-workfloworvanta runs logs <run-id>You should see
Hello from Orvanta!in the output.
What next?
Section titled “What next?”- Concepts: Workflows — Understand how workflows are structured.
- CLI Reference — Explore all available commands.
- ConsentGate — Add a human approval step to sensitive workflows.