Skip to main content
Run the Intuned agent locally in your own coding agent instead of the hosted agent. The Intuned Agent Plugin gives it the same skills and browser tooling the hosted agent uses, so you can build, edit, test, and debug automations from your own terminal and IDE. Currently supported in Claude Code, with support for more coding agents coming soon.

Requirements

  • Node.js and npm — used to install the Intuned CLI.
  • uv and Python on your PATH — the browser tooling launches via uvx intuned-agent-mcp.

Install

Install the Intuned CLI and sign in:
npm install -g @intuned/cli
intuned auth login
Add the marketplace and install the Intuned Agent Plugin. Open Claude and run these commands:
/plugin marketplace add Intuned/skills
/plugin install intuned-agent-plugin@intuned-skills
/reload-plugins
Then run the following inside Claude for a guided overview of what the agent can do:
/intuned:agent

Use it

Once installed, the agent loads its skills automatically from plain-English requests — you don’t have to name them. Describe what you want and it picks the right workflow. You can also invoke a skill directly — skills are namespaced under intuned.
  • Create a new automation for a site.
    /intuned:create-intuned-project create a scraper for Amendments on https://sandbox.intuned.dev/lists/table. Scrape ID, Name, Supplier Name, Supplier Phone Number (as a raw number), and Effective Date, filtered on Active Contract.
    
  • Edit, fix, or extend an existing project.
    /intuned:edit-intuned-project for this project, filter the data based on the Deadline submission.
    
  • Run and test automations.
    /intuned:test-intuned-project run an e2e test job for the "scrape-list" API in this project, pass {"max_pages":{}} as the parameter so it walks over all the pages.
    
  • Diagnose and fix failing runs, including Playwright traces.
    /intuned:investigate-and-fix check why job jr_abcde had 5 failed runs and fix it.
    

Works with Connected projects

The external agent works on the same project files as local development. Connect a project locally with the CLI, then let the agent build and edit it in place — version control, your IDE, and your own tools all stay in the loop. When the project is ready, deploy it with the CLI.

Intuned Agent overview

The hosted agent and what it can do

Local development

Build Connected projects with the local CLI

Using the agent

Workflows and prompt examples

CLI reference

Complete CLI command documentation