npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intuned/cli

v0.1.7

Published

CLI tool for the Intuned browser automation platform

Readme

@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

Platform Support

Windows support is coming soon. Currently, the CLI is supported on macOS and Linux.

Authentication

Login (recommended)

intuned auth login
intuned auth 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-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

Links