Intuned browser automation for your coding agent.
The full Intuned automation agent, running locally in your own project: the workflow and capability skills, the browser MCP, and the CDP hooks. Use it to build, edit, test, and debug browser automations from the command line.
Requirements:
-
Intuned CLI, installed and signed in — the plugin drives it:
npm install -g @intuned/cli intuned auth login
-
uvon yourPATH— uv provides the Python the browser tooling needs and launches the MCP server viauvx intuned-agent-mcp. Install it with the uv installation guide.
Open Claude Code and run these commands to add this repo as a marketplace and install the plugin:
/plugin marketplace add Intuned/skills
/plugin install intuned-agent-plugin@intuned-skills
/reload-plugins
Run /intuned:agent for an overview.
Add this repo as a plugin marketplace, then install:
codex plugin marketplace add Intuned/skills
codex plugin add intuned@intuned-skills(Or browse and install interactively via /plugins inside Codex.) Then start a
new session and invoke $intuned:agent, or just describe what you want
automated.
Sandbox approvals: the plugin drives the intuned CLI, which needs
network access and a few home-directory paths that Codex's default
workspace-write sandbox blocks, so Codex will ask for approval on nearly
every command. If you don't want to be bothered with approvals, add this to
~/.codex/config.toml:
[sandbox_workspace_write]
network_access = true
writable_roots = ["~/.intuned", "~/.npm", "~/.cache"]If you'd rather not change your Codex config, pass the same settings as flags for a single session:
codex -c sandbox_workspace_write.network_access=true \
-c 'sandbox_workspace_write.writable_roots=["~/.intuned","~/.npm","~/.cache"]'or run Codex with the sandbox disabled (codex --sandbox danger-full-access).
The scoped settings above are the safer option.
One exception either way: intuned dev browser start cannot run inside the
macOS sandbox (Chromium's process model requires mach-port registration the
sandbox denies), so approve the one-time escalation Codex requests for it.
See intuned-agent-plugin/ for what the plugin
provides and how it works.
A collection of agent skills for working with Intuned — authoring, migrating, deploying, and operating browser automations on the Intuned platform. Install them into Claude Code, Cursor, Codex, and any other skills.sh-compatible agent with one command.
All skills at once, via the skills CLI:
npx skills@latest add Intuned/skillsA single skill:
npx skills@latest add Intuned/skills --skill webwright-to-intunedUpdate later with npx skills@latest update. No skills CLI? Run
scripts/install-local.sh to symlink the skills straight into ~/.claude/skills/.
| Skill | What it does |
|---|---|
webwright-to-intuned |
Turn a Webwright "Crafted CLI" into a deployed, verified Intuned project. Includes 4 example crafts to port under examples/. |
More skills coming.
Want to add a skill? See CLAUDE.md for conventions.
MIT — see LICENSE.