Bot Detection
Get past bot-detection blocks, IP restrictions, and CAPTCHAs: detect the block, pick the right lever (proxy / stealth mode / CAPTCHA solver), configure stealth and the CAPTCHA solver in Intuned.json, and wire the CAPTCHA wait helpers into automation code. Load whenever a page is blocked, shows a CAPTCHA, or returns bot-detection signals.
Edit Intuned Project
Add, change, or extend APIs in an existing local Intuned project. Must Use whenever working on an existing Intuned project, example: add a feature, change a schema, update selectors, fix an API, or edit Intuned.json/job config.
Intuned Overview
What Intuned is and its core concepts — projects, the project layout, what an API is and how its file is structured, jobs, and attachments. Load for orientation when you're new to how an Intuned project and the platform fit together.
Self Healing
Concept reference for Intuned self-healing, advanced-monitoring and project Issues — what an Issue is, how the platform raises and groups them from run anomalies, the issue record fields, the dismiss-vs-re-raise lifecycle, and the platform auto-fix/auto-merge/auto-deploy toggles. Load when working with a project's Issues (e.g. the fix-open-issues or investigate-and-fix flows) to understand where…
Proxy
Route browser traffic through a proxy to beat IP blocks, geo-restrictions, and rate limiting — either a user-supplied proxy (works in local dev and once deployed) or Intuned's platform auto proxy (deployed only, no proxy of your own needed). Load when a site IP-blocks, geo-restricts, or rate-limits you.
Initialize Project
Turn an empty workspace into an Intuned project — pick the language and template and install dependencies. Use when the workspace has no project files yet.
Implement Api
Write correct, robust Intuned API code: the right file shapes, a filled DATA_SCHEMA with validation, Intuned helpers over raw Playwright, timeout handling, and the common best-practice and validation pitfalls to avoid.
Trace Debugging
Debug an automation failure by reading its Playwright trace (.zip): extract it, pinpoint the failure, propose and verify a fix. Includes the Playwright trace file-format reference (.trace/.network/.stacks and resources/).
Manage Jobs
Create, edit, and manage Intuned Jobs — the .job.json schema, code-origin vs api-origin handling, name-uniqueness rules, schedules, auth_session, sinks, and intuned platform jobs commands. Load when creating or editing a job config or managing platform jobs.
Build Selectors
Build reliable selectors for an Intuned API using the browser selector tools — never by hand. Load whenever you need selectors for a page before writing or fixing API code, including auth-session login flows.
Investigate And Fix
Investigate and fix a broken Intuned project. Use when the user reports something failing or returning wrong data, or gives a Run ID, Job Run ID, Issue ID, or free-text symptom. Pulls platform data, reproduces locally, diagnoses, fixes, and tests.
Handle Attachments
Capture downloadable files (PDFs, .docx/.xlsx/.csv/.zip, export/download links) as Intuned attachments — download them, upload to S3, and return the Attachment object for an attachment-type schema field. Load whenever a page exposes downloadable files you need to capture.
Auth Sessions
How authentication works in Intuned projects — login flows, auth session APIs, CLI, and calling site backends after auth. Load when the task requires logging in, or the website has gated content, CSRF/API 403s, OAuth Login, SSO, or restricted resources.
Create Intuned Project
Create a new Intuned project for something the user wants automated on a website — scraping/data extraction, action automation, Crawlers, or RPA. Use when no Intuned project exists yet for what they're asking, including one-time needs. Explores the site with the user, plans, then builds and tests the APIs locally.
Intuned Browser
Reference for the intuned_browser / @intuned/browser helper library — navigation, waiting, extraction, pagination, and file/attachment handling. Load when writing or fixing automation code.
Fix Open Issues
Sweep, triage, and fix all open issues on a deployed Intuned project. Use when the user wants to clear open issues: 'fix my open issues', 'what issues are open / what's broken on my project', 'resolve all my issues', 'self-heal my project', 'go through my issues and fix them', or 'run self-healing'. Discovers open issues from the platform, fixes them, then stops at a deploy gate and guides the re…
Browser Management
Start, stop, and manage the tabs of the persistent local browser that Intuned automations and the selector tools run against (`intuned dev browser`). Must Load when you need to start a browser or tab to work in, when creating separate tabs so parallel work doesn't collide, When no browser executable is found or when the browser is stuck and needs recovering.
Project Settings
Reference for the `Intuned.json` project configuration file — what each field means (replication, apiAccess, headful, browserSize, region, authSessions, stealthMode, captchaSolver) and how to set default result sinks. Load when inspecting or editing Intuned.json settings.
Find Network Requests
Identify and document the network request(s) an Intuned API depends on, using the on-disk traffic captures. Load when an API depends on a backend/XHR/fetch request rather than DOM scraping.
Webwright To Intuned
>-
Test Intuned Project
Run a local API test or Run and monitor a platform end-to-end test job for Intuned APIs. Use to validate the full chained run on the platform — when the user mentions testing an API, testing a code change, or platform test, test job, e2e test.
Intuned Cli
Reference for the intuned CLI — what each command does and when to use it. Load when you need the right command for a browser, dev, or platform operation. Also includes CLI-Hooks guide and how-to install.
Agent
Entry point and user guide for the Intuned plugin: what Intuned is, what you can ask the agent to do, and recommended patterns. Use on any user request that is related to Intuned, including Creating Browser automation projects, Creating scrappers, crawlers, RPAs, or editing them. Also use when investigating and debugging Intuned related erros, like failed jobs, failed runs, incorrect data, and al…
Platform Errors
Understand and resolve Intuned platform errors — Execution Timeout, Result Too Big / Out of Memory, CAPTCHA Solving Timeout, and related codes. Covers how to identify each in logs and traces, which are code-fixable vs platform-level, and how to remediate. Load when diagnosing a platform error code or failure.
Manage Env Vars
Give an Intuned project's APIs the environment variables and secrets they need (API keys, tokens, endpoints, config) — deciding between a local `.env`, project-scoped, or workspace-scoped store, and getting the AUTHORING/PUBLISHED environments right so the value is actually available where it runs. Load when an API needs a secret or configurable value, or when you're collecting config that isn't…