Skip to main content
The Intuned CLI provides platform commands to manage projects, runs, attempts, and jobs on the Intuned platform. These commands allow you to interact with your automations running on the platform, retrieve logs and traces, and manage job executions.

Commands

Runs List

List runs for a project.
intuned platform runs list [options]
Options
    -p, --project-name <name>
    -l, --limit <number>
    -o, --offset <number>
    -f, --filter <filter...>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
-f, --filter
string[]
Filter results by field. Can be specified multiple times. Supported fields: status, api_name, id, run_duration, started_at, run_type, job_id, job_run_id.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Runs Get

Get detailed information about a run.
intuned platform runs get <run-id> [options]
<run-id>
string
required
The ID of the run to retrieve.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Runs Start

Start a new Run.
intuned platform runs start <data> [options]
<data>
string
required
Run configuration. Accepts a JSON string or a path to a JSON file.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Attempts Get

Get detailed information about a specific Attempt.
intuned platform attempts get <run-id> [attempt-number] [options]
<run-id>
string
required
The ID of the Run containing the Attempt.
[attempt-number]
int
The attempt number to retrieve. If omitted, an interactive prompt is shown to select from available attempts.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Attempts Log

Download automation logs for a specific Attempt.
intuned platform attempts log <run-id> [attempt-number] [options]
<run-id>
string
required
The ID of the Run containing the Attempt.
[attempt-number]
int
The attempt number to download logs for. If omitted, an interactive prompt is shown.
Options
    -p, --project-name <name>
    -o, --output-file <path>
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-o, --output-file
string
Output file path. Defaults to log_<run-id>_<attempt-number>.jsonl.
-h, --help
Display help for command. Will not execute the command.

Attempts Trace

Download a Playwright trace for a specific Attempt.
intuned platform attempts trace <run-id> [attempt-number] [options]
<run-id>
string
required
The ID of the Run containing the Attempt.
[attempt-number]
int
The attempt number to download the trace for. If omitted, an interactive prompt is shown.
Options
    -p, --project-name <name>
    -o, --output-file <path>
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-o, --output-file
string
Output file path. Defaults to trace_<run-id>_<attempt-number>.zip.
-h, --help
Display help for command. Will not execute the command.

Auth Sessions List

List auth sessions for a project.
intuned platform authsessions list [options]
Options
    -p, --project-name <name>
    -l, --limit <number>
    -o, --offset <number>
    -f, --filter <filter...>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
-f, --filter
string[]
Filter results by field. Can be specified multiple times.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Auth Sessions Get

Get detailed information about an auth session.
intuned platform authsessions get <auth-session-id> [options]
<auth-session-id>
string
required
The ID of the auth session to retrieve.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Auth Sessions Create

Create a new auth session.
intuned platform authsessions create <auth-session-id> [options]
<auth-session-id>
string
required
The ID for the new auth session.
Options
    -p, --project-name <name>
    --input <json-or-file>
    --proxy <url>
    --wait [duration]
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--input
string
Credentials parameters as a JSON string or a path to a JSON file (prefixed with @).
--proxy
string
Proxy URL to use for the auth session creation.
--wait
string
Wait for completion. Accepts an optional duration (e.g., 5m, 30s). Defaults to 10m if no duration is specified.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Auth Sessions Update

Update an existing auth session.
intuned platform authsessions update <auth-session-id> [options]
<auth-session-id>
string
required
The ID of the auth session to update.
Options
    -p, --project-name <name>
    --input <json-or-file>
    --proxy <url>
    --wait [duration]
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--input
string
Credentials parameters as a JSON string or a path to a JSON file (prefixed with @).
--proxy
string
Proxy URL to use for the auth session update.
--wait
string
Wait for completion. Accepts an optional duration (e.g., 5m, 30s). Defaults to 10m if no duration is specified.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Auth Sessions Validate

Validate an existing auth session.
intuned platform authsessions validate <auth-session-id> [options]
<auth-session-id>
string
required
The ID of the auth session to validate.
Options
    -p, --project-name <name>
    --timeout <seconds>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--timeout
int
default:"300"
Timeout in seconds for the validation operation.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Auth Sessions Delete

Delete an auth session.
intuned platform authsessions delete <auth-session-id> [options]
<auth-session-id>
string
required
The ID of the auth session to delete.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Jobs List

List Jobs for a project.
intuned platform jobs list [options]
Options
    -p, --project-name <name>
    -l, --limit <number>
    -o, --offset <number>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Jobs Get

Get detailed information about a Job.
intuned platform jobs get <job-id> [options]
<job-id>
string
required
The ID of the Job to retrieve.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Jobs Create

Create a new Job.
intuned platform jobs create <data> [options]
<data>
string
required
Job configuration. Accepts a JSON string or a path to a JSON file.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Jobs Trigger

Manually trigger a Job run.
intuned platform jobs trigger <job-id> [options]
<job-id>
string
required
The ID of the job to trigger.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

JobRuns List

List JobRuns for a specific job.
intuned platform jobruns list <job-id> [options]
<job-id>
string
required
The ID of the Job to list runs for.
Options
    -p, --project-name <name>
    -l, --limit <number>
    -o, --offset <number>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

JobRuns Get

Get detailed information about a JobRun.
intuned platform jobruns get <job-id> <job-run-id> [options]
<job-id>
string
required
The ID of the Job.
<job-run-id>
string
required
The ID of the JobRun to retrieve.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Issues List

List issues for a project.
intuned platform issues list [options]
Options
    -p, --project-name <name>
    -l, --limit <number>
    -o, --offset <number>
    -f, --filter <filter...>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
-f, --filter
string[]
Filter results by field. Can be specified multiple times.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Issues Get

Get detailed information about an issue.
intuned platform issues get <issue-ref> [options]
<issue-ref>
int
required
The issue reference number.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Env Vars List

List environment variables for a project.
intuned platform env-vars list [options]
Options
    -p, --project-name <name>
    -l, --limit <number>
    -o, --offset <number>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Env Vars Get

Get details of an environment variable by key.
intuned platform env-vars get <key> [options]
<key>
string
required
The environment variable key.
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Env Vars Create

Create a new environment variable.
intuned platform env-vars create [options]
Options
    -p, --project-name <name>
    --key <key>
    --value <value>
    --description <description>
    --envs <envs>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--key
string
required
Variable key. Must be 1–100 characters, alphanumeric or underscore, and cannot start with a digit.
--value
string
required
Variable value. Must be 1–1000 characters.
--description
string
Variable description. Up to 1000 characters.
--envs
string
default:"PUBLISHED"
Comma-separated environments. Supported values: AUTHORING, PUBLISHED.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Env Vars Update

Update an existing environment variable by key.
intuned platform env-vars update <current-key> [options]
<current-key>
string
required
The current key of the environment variable to update.
Options
    -p, --project-name <name>
    --key <key>
    --value <value>
    --description <description>
    --envs <envs>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--key
string
Updated variable key. Must be 1–100 characters, alphanumeric or underscore, and cannot start with a digit.
--value
string
Updated variable value. Must be 1–1000 characters.
--description
string
Updated variable description. Up to 1000 characters.
--envs
string
Updated comma-separated environments. Supported values: AUTHORING, PUBLISHED.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Env Vars Delete

Delete an environment variable by key.
intuned platform env-vars delete <key> [options]
<key>
string
required
The environment variable key to delete.
Options
    -p, --project-name <name>
    --force
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--force
default:"false"
Skip the confirmation prompt.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Workspace Env Vars List

List workspace-level environment variables.
intuned platform workspace env-vars list [options]
Options
    -l, --limit <number>
    -o, --offset <number>
    --json
    -h, --help
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Workspace Env Vars Get

Get details of a workspace environment variable by key.
intuned platform workspace env-vars get <key> [options]
<key>
string
required
The environment variable key.
Options
    --json
    -h, --help
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Workspace Env Vars Create

Create a new workspace-level environment variable.
intuned platform workspace env-vars create [options]
Options
    --key <key>
    --value <value>
    --description <description>
    --envs <envs>
    --json
    -h, --help
--key
string
required
Variable key. Must be 1–100 characters, alphanumeric or underscore, and cannot start with a digit.
--value
string
required
Variable value. Must be 1–1000 characters.
--description
string
Variable description. Up to 1000 characters.
--envs
string
default:"PUBLISHED"
Comma-separated environments. Supported values: AUTHORING, PUBLISHED.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Workspace Env Vars Update

Update an existing workspace environment variable by key.
intuned platform workspace env-vars update <current-key> [options]
<current-key>
string
required
The current key of the environment variable to update.
Options
    --key <key>
    --value <value>
    --description <description>
    --envs <envs>
    --json
    -h, --help
--key
string
Updated variable key. Must be 1–100 characters, alphanumeric or underscore, and cannot start with a digit.
--value
string
Updated variable value. Must be 1–1000 characters.
--description
string
Updated variable description. Up to 1000 characters.
--envs
string
Updated comma-separated environments. Supported values: AUTHORING, PUBLISHED.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Workspace Env Vars Delete

Delete a workspace environment variable by key.
intuned platform workspace env-vars delete <key> [options]
<key>
string
required
The environment variable key to delete.
Options
    --force
    --json
    -h, --help
--force
default:"false"
Skip the confirmation prompt.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Project List

List all projects in the workspace.
intuned platform project list [options]
Options
    -l, --limit <number>
    -o, --offset <number>
    --ai-enabled
    --json
    -h, --help
-l, --limit
int
default:"50"
Maximum number of results to return.
-o, --offset
int
default:"0"
Number of results to skip (for pagination).
--ai-enabled
default:"false"
Only show projects with AI enabled.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Project Get

Get detailed information about the current project.
intuned platform project get [options]
Options
    -p, --project-name <name>
    --json
    -h, --help
-p, --project-name
string
Project name. See Project Name Resolution.
--json
default:"false"
Output as JSON.
-h, --help
Display help for command. Will not execute the command.

Project Name Resolution

Commands that operate on a project resolve the project name in this order: --project-name flag > projectName field in settings file > Error

Reference