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. Learn more about Intuned Agent’s full capabilities in the overview.Prerequisites
- An active Intuned account (sign up here). No credit card required—Intuned has a free plan.
What you’ll build
You’ll instruct Intuned Agent to build a scraper that scrapes Apple’s career page. The scraper will:- Extract job postings with a defined JSON schema
- Paginate through the full job list
- Capture detailed information for each posting
Create your first scraper
Enter your prompt
- Go to app.intuned.io/agent.
- Paste the prompt below into the input and send it.
Prompt

Answer the agent's questions
As the agent explores the site, it asks clarifying questions to shape the scraper—such as which language to use, how to handle pagination, and what to name the project. Answer each question as it appears.

Approve the plan
Once the agent has finished exploring, it presents a full plan: the start URL, entity structure, navigation instructions, and schema. Review it and select Approve Plan to proceed, or Suggest Changes to adjust.
Expected result: The agent begins building your scraper.

Wait for the agent to build
The agent writes the code, runs end-to-end tests, and validates the output. This typically takes 30–60 minutes.

Review results and deploy
When the agent finishes, it shows a work summary with a description of what was built and the E2E test results. Select View Code to inspect the generated code, or Merge Branch to deploy.
Select View Code and open the Artifacts tab to inspect the actual scraped data from the agent’s test run before deploying.
When you’re satisfied, select Merge Branch. In the dialog, choose Merge & Deploy to create an Intuned project and deploy it immediately, or Merge only to merge the code without deploying.
Expected result: Your scraper is deployed and ready to run via API, scheduled Jobs, or direct triggers.



What’s next?
- Intuned Agent — Learn more about Intuned Agent’s capabilities, including editing existing projects and fixing failed runs.
- Jobs — Jobs are the common way to run scrapers. Configure a schedule (daily, hourly, or custom) and define a sink to send your scraper results to a webhook, S3 bucket, or other destination.
- Authentication — For scrapers that require login, Intuned provides built-in authentication support. You define how to log in and how to verify a session, and Intuned handles the rest—validating sessions before runs, reusing them when possible, and recreating them when expired.
- Monitoring and traces — Every run generates detailed logs, browser traces, and session recordings. Use these tools to debug failures, verify your scraper is working correctly, and understand what happened during execution.
- Online IDE — Learn more about the Intuned IDE, which you can use to manually edit the scraper you just created.