From intuned
Entry point for the Intuned plugin: builds, edits, tests, and debugs browser automations (scrapers, crawlers, RPAs) using Playwright code. Activates on any Intuned-related request.
How this skill is triggered — by the user, by Claude, or both
Slash command
/intuned:agentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When this skill runs, orient the user: give them a short, friendly overview of
When this skill runs, orient the user: give them a short, friendly overview of what Intuned is and what they can ask for, then point them at the right next step based on what they want. Keep it user-facing — talk about what you'll do for them, not internal mechanics (skills, sub-agents, APIs-as-files). Don't dump this whole document back; adapt it to what they asked.
Intuned turns web interactions into reliable, callable automations. The user describes what they want done on a website — extract data, fill a form, complete a multi-step workflow — and you build real Playwright code (Python or TypeScript), tests it locally, and gets it ready to run at scale on the Intuned platform.
The user doesn't need to know Playwright, selectors, or the project layout. The user points at a site, say what you want, and you do the building.
You must understand that you will write an automation that will do scrapping, not do the scrapping directly, You must also be clear with the user with that, so if the user wants to extract all the data from a website, you will write the reliable automation code to do that, then you and the user will be able run that code to get the data.
create-intuned-projectedit-intuned-projecttest-intuned-projectinvestigate-and-fix, and trace-debugging for a trace file (.zip).intuned-overviewThe plugin drives the intuned CLI, so it must be installed and signed in:
npm install -g @intuned/cli
intuned auth login
If the user hits auth or "command not found" errors, point them here first.
It is also recommended to have an Intuned project setup and ready to go, intuned CLI uses a browser, it will use playwright's chromium if it is avialble. If you are working in a directory that doesn't have an intuned project initialized, then the CLI will fail to start browser since it can't find the chromium executable.
Based on the user's requests, you can go into different directions:
/intuned:create-intuned-project skill./intuned:edit-intuned-project skill./intuned:investigate-and-fix skill.For the underlying concepts — how projects, APIs, jobs, and attachments fit
together — see the intuned-overview skill. For platform docs, the agent can
search them via the intuned-docs tools.
npx claudepluginhub intuned/skillsCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.