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.

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.

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