Skip to main content

What is Intuned Agent?

Intuned Agent is an AI agent that builds, edits, and maintains browser automation Projects. It runs inside the Intuned platform with a real browser, full access to the platform via the Intuned CLI, and works in the background as long as needed.

Where to find the agent

Access the agent at app.intuned.io/agent. Chat with the agent, review its plan, approve changes, and deploy — all from one session.

What the agent can do

  • Scrapers for any website — public, login-protected, bot-protected, CAPTCHA-gated
  • RPA automations — form submissions, data entry, account actions
  • Crawlers — multi-page discovery, sitemaps, content indexing
  • AI-powered automations — Stagehand / Browser-Use
  • Pagination, infinite scroll, load more, detail pages, nested lists, iframes
  • AuthSessions — secure credential collection, auth session setup
  • Stealth, CAPTCHA, and proxies
  • Network interception — prefer XHR/GraphQL over DOM scraping
  • Fix from a failed Run — broken selectors, changed page structure, timeouts, wrong output
  • Fix from a failed JobRun — investigate issues across batched executions
  • Debug with Playwright trace analysis
Enable self-healing on any project and the agent monitors runs, detects issues, writes fixes, and redeploys — without manual intervention. See Self-healing projects.
The agent isn’t an external wrapper — it reads Run and JobRun results, traces, and logs, configures Jobs, and tests on the same infrastructure your Project uses in production.

Agent in the online IDE

The same agent is also available in the Intuned online IDE Chat tab. Use it to make quick edits to an existing Project directly in the code editor, without opening a full agent session.

Cost and billing

The agent consumes AI credits based on tokens used. Free plans include credits to get started. Track spend on the Usage page under the IntunedAgent project. See Plans and billing for plan limits and Usage and billing for tracking spend. You can also bring your own Anthropic API key (BYOK) instead of using AI credits.

FAQ

Yes. Review and iterate on the plan with Suggest Changes, or select Approve Plan. After the agent builds, review the diff and test results before selecting Create Project or Apply code change.
Yes. The agent enables stealth mode and CAPTCHA solving based on what it encounters — stealth mode for bot detection, CAPTCHA solving if a challenge is still visible after stealth, and proxies for IP-based blocking.
Yes. The agent securely collects credentials (never visible to the AI) and sets up AuthSession login flow APIs.
Yes. The agent auto-discovers the schema by exploring the site and analyzing the data available on the page. It includes the proposed schema in the plan for your review.
The agent explores and understands the site, generates and tests code, then runs a full validation. Complex automations with pagination, edge cases, and large data sets take longer.
Yes. The agent continues working in the background. Close your browser or navigate away — come back anytime to check progress or review results.
Both tools use AI to generate browser automation code, but they differ in execution:
Intuned AgentDirector
ExecutionDeterministic code by default, AI-driven code optionalAI agent controls the browser at runtime
Data extractionCode-based selectors — predictable, fastLLM-powered — flexible, slower
OutputComplete Playwright projectStagehand scripts
PlatformDeploys to Intuned with jobs, scheduling, and auth-
Intuned Agent produces deterministic code by default. It can also generate AI-driven automations using Stagehand or Browser-Use when requested.
Not yet, but coming soon. The agent will load your project’s CLAUDE.md and custom skills to understand your project’s structure, conventions, and extended capabilities.
Yes. Each session creates an auto-generated branch prefixed with agent/ (e.g. agent/fix-amazon-scraper-timeout). Your changes are isolated until you merge. View branches from the project’s overview page — both new and existing projects.
Yes. You can run concurrent agent sessions, subject to your workspace’s concurrency quota. See Plans and billing for limits.
TypeScript and Python. The language is chosen when creating a new project. When editing an existing project, the agent matches the language of the existing code.
Yes. The agent manages package.json (TypeScript) or pyproject.toml (Python) and can add or remove packages as needed.
Yes. The agent uses a secure tool to request environment variables and secrets — it never asks you to paste sensitive values into the chat.
No. Intuned Agent uses its own AI credits system, separate from any Claude Code or Anthropic Console subscription. You can bring your own Anthropic API key (BYOK) to use your own key instead of AI credits.
Not yet. A local plugin for coding agents is coming soon, allowing you to run the agent from your own development environment.

Guides

Using the agent

Workflows, prompt examples, and capability deep dives

Self-healing projects

Automated fix, merge, and deploy pipelines

Quickstart: Scraper

Build a scraper with the agent step by step

Quickstart: RPA

Build an RPA automation with the agent