AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Project Settings

skill-intuned-skills-project-settings · by Intuned

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.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-intuned-skills-project-settings

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-intuned-skills-project-settings)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Project Settings? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Intuned Project Settings

Configuration for Intuned.json at the project root — controls how the project runs locally and on the Intuned Platform.

Many settings have their own home: stealth and the CAPTCHA solver in the bot-detection skill; proxy in the proxy skill; auth sessions in the auth-sessions skill; project identity (projectName) via intuned dev provision (see create-intuned-project). Read this page to understand what the fields mean when you inspect or edit Intuned.json; reach for search_intunedquery_docs_filesystem_intuned for anything not covered here.

Core properties

| Field | Type | Notes | | ------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | replication | object | maxConcurrentRequests (number, default 1) + size ("standard" \| "large" \| "x-large", default "standard") | | apiAccess.enabled | boolean | default true. Set false for jobs-only projects | | authSessions | object | enabled (bool), type ("API" \| "MANUAL"); MANUAL also needs startUrl, finishUrl, browserMode ("fullscreen" \| "kiosk"). Full flow lives in the auth-sessions skill | | headful | boolean | default false. Required true for CAPTCHA solving | | browserSize | object | width 200–3840 (default 1024), height 200–2160 (default 800) | | region | string | default "us". Options: us, au, ca, nl, mx, ro, se, sg, es, za, de, in, hk, jp, pl, fr, gb |

Anti-bot toggles — stealthMode / captchaSolver

  • stealthMode.enabled and captchaSolver.enabled are configured in Intuned.json (the captchaSolver solver also needs the wait_for_captcha_solve / waitForCaptchaSolve code helpers, and captchaSolver requires headful: true). The bot-detection skill owns the full config and decision flow.
  • These engage on deployed runs — they don't activate during local dev, so configure them now and they take effect once the project runs on the platform. A normal user-supplied proxy (see the proxy skill) is the one anti-bot lever that also works locally.

Default sinks — defaults.sink

Sinks deliver Run results to an external system (webhook or S3-compatible bucket). You can set a project-wide default in Intuned.json under defaults.sink, scoped per environment (dev for local runs, deployed for platform runs). Per-Job sinks in intuned-resources/jobs/*.job.json override this default.

{
  "defaults": {
    "sink": {
      "dev": {
        "type": "webhook",
        "url": "https://example.com/hook",
        "skipOnFail": false
      },
      "deployed": {
        "type": "s3",
        "bucket": "my-bucket",
        "accessKeyId": "...",
        "secretAccessKey": "...",
        "skipOnFail": false
      }
    }
  }
}

Shape — every sink has type ("webhook" \| "s3"), skipOnFail (required bool), apisToSend (optional string array).

  • webhook: adds url (required), headers (optional map).
  • s3: adds bucket, accessKeyId, secretAccessKey (required); region, prefix, endpoint, forcePathStyle (optional).

For per-Job sink placement and advanced cases, see the manage-jobs skill and the Intuned docs.

Reference shape

A representative Intuned.json — not every field is required; use this to orient when reading an existing file.

{
  "workspaceId": "ws_...",
  "projectName": "my-project",
  "replication": { "maxConcurrentRequests": 1, "size": "standard" },
  "apiAccess": { "enabled": true },
  "authSessions": {
    "enabled": false,
    "type": "API"
  },
  "headful": false,
  "browserSize": { "width": 1024, "height": 800 },
  "region": "us",
  "stealthMode": { "enabled": false },
  "captchaSolver": { "enabled": false },
  "defaults": {
    "sink": {
      "deployed": {
        "type": "webhook",
        "url": "https://example.com/hook",
        "skipOnFail": false
      }
    }
  }
}

When to search the docs

Go to search_intunedquery_docs_filesystem_intuned when you need:

  • Fields not listed here (integrations, metadata, other defaults keys like proxy / retry / requestTimeout)
  • The full CAPTCHA-provider catalog with provider-specific notes
  • Region availability changes or new machine sizes

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.