@intuned/cli) is a command-line tool for developing, testing, deploying, and managing Intuned automation projects. It supports TypeScript and Python, and lets you manage deployed Projects, Runs, Jobs, and Auth Sessions from the terminal.
Installation
Install the Intuned CLI globally with npm:Requires Node.js and npm.
Authentication
The CLI supports two authentication methods:-
Browser-based login — Run
intuned loginto authenticate via browser-based OAuth. Credentials are stored locally and reused across sessions. -
API key — Set the
INTUNED_API_KEYenvironment variable. Requires a workspace ID from theINTUNED_WORKSPACE_IDenvironment variable orworkspaceIdin your settings file.
Configuration
Settings file
The CLI reads project settings from a file in the root of your project directory. Supported formats (checked in order):Intuned.jsonIntuned.jsoncIntuned.yaml/Intuned.ymlIntuned.toml
Environment variables
Key environment variables for CLI configuration:| Variable | Description |
|---|---|
INTUNED_API_KEY | API key for authentication. Takes priority over browser-based login. |
INTUNED_WORKSPACE_ID | Workspace ID. Required when using API key authentication if not set in the settings file. |
INTUNED_CHROMIUM_PATH | Path to a custom Chromium executable for the dev browser. |
These are CLI configuration variables. For project-level environment variables and secrets used in your automations, see Environment variables and secrets.
Key capabilities
Local development
Theintuned dev command group provides tools for developing and testing automations locally—run APIs, manage auth sessions, generate traces for debugging, and deploy your project when it’s ready.
See Local development for a complete walkthrough.
Platform management
Theintuned platform command group lets you manage projects on the Intuned platform. You can view and start Runs and Jobs, manage Auth Sessions and Environment Variables, and more.
See Platform reference for available commands.
Project scaffolding
Create a new Intuned project with a template:Related resources
Local development
Complete guide to local development workflow
CLI reference
Full command reference and usage details
CLI configuration
Settings files, environment variables, and authentication
Quickstart
Build your first automation
Intuned.json reference
Full settings file schema and options