New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@intuned/cli

Package Overview
Dependencies
Maintainers
10
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@intuned/cli

CLI tool for the Intuned browser automation platform

latest
npmnpm
Version
0.1.1
Version published
Weekly downloads
203
118.28%
Maintainers
10
Weekly downloads
 
Created
Source

@intuned/cli

Command-line interface for the Intuned browser automation platform. Manage runs, jobs, deployments, auth sessions, local development browsers, and more directly from your terminal.

Installation

npm install -g @intuned/cli

Authentication

intuned login
intuned logout

API Key

export INTUNED_API_KEY=your-api-key
export INTUNED_WORKSPACE_ID=your-workspace-id

Project Configuration

Create an Intuned.json (or .jsonc, .yaml, .yml, .toml) in your project root:

{
  "projectName": "my-automation-project"
}

Commands

Runs

# List runs
intuned platform runs list --project-name my-project
intuned platform runs list --limit 20 --filter "status=SUCCEEDED" --json

# Get a run
intuned platform runs get <run-id> --project-name my-project

# Start a run
intuned platform runs start '{"input": {"url": "https://example.com"}}' --project-name my-project
intuned platform runs start @input.json --project-name my-project

Attempts

# Get attempt details
intuned platform attempts get <run-id> --project-name my-project
intuned platform attempts get <run-id> 1 --json

# Download logs
intuned platform attempts log <run-id> 1 -o my-logs.jsonl

# Download Playwright trace
intuned platform attempts trace <run-id> 1 -o my-trace.zip

Jobs

# List / get jobs
intuned platform jobs list --project-name my-project
intuned platform jobs get <job-id> --project-name my-project

# Create a job
intuned platform jobs create ./job-config.json --project-name my-project

# Trigger a job manually
intuned platform jobs trigger <job-id> --project-name my-project

Job Runs

intuned platform jobruns list <job-id> --project-name my-project
intuned platform jobruns get <job-id> <job-run-id> --project-name my-project

Dev Browser

Manage persistent browser instances for local development:

# Start / stop
intuned dev browser start --name my-browser
intuned dev browser stop --name my-browser

# List tabs
intuned dev browser tabs list
intuned dev browser tabs create --url https://example.com
intuned dev browser tabs close <tab-id>

Deployment

intuned dev provision --project-name my-project
intuned dev deploy --project-name my-project

FAQs

Package last updated on 31 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts