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

Webwright To Intuned

skill-intuned-skills-webwright-to-intuned · by Intuned

>-

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

Install

$ agentstack add skill-intuned-skills-webwright-to-intuned

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

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

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-webwright-to-intuned)

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 Webwright To Intuned? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Webwright → Intuned

Port a Webwright Crafted CLI into a deployed Intuned project and verify it end to end. The contract is a faithful 1:1 port: one craft function → one Intuned automation API, re-fitted only at Intuned's boundary.

Prerequisites

  • The Intuned CLI is installed and authenticated. If the intuned command isn't

found, install it first: npm i -g @intuned/cli. Then confirm auth with intuned auth whoami (it should show a workspace). The skill never logs the user in or creates accounts — if whoami fails, stop and ask the user to authenticate.

  • Input is a Webwright craft output directory (contains final_script.py

with an argparse wrapper, plan.md, task.json). If it isn't, stop and say so.

Read first

Supporting docs live in resources/ beside this file.

  1. resources/transformation-rules.md — the step-by-step transform and gates.
  2. resources/intuned-contract.md — the exact target (API signature, SDK, CLI,

manifest), all verified against real scaffolds.

  1. resources/gotchas.md — the hardening layer. **Re-read before every port and

add to it after every failure.**

  1. resources/CONTEXT.md — canonical vocabulary. resources/DECISIONS.md — why

the key decisions hold.

Workflow (one port)

  1. Validate the input is a real craft; else fail loudly.
  2. Scaffold `intuned dev init --template

--language python --install-deps --non-interactive [--stealth] into intuned_projects//`.

  1. Transform per resources/transformation-rules.md:
  • strip the browser bootstrap + asyncio.run wrapper; the inner async body

becomes async def automation(page, params=None, **_kwargs);

  • map surviving params (snake_case preserved, harness params dropped+logged)

into Params, a pydantic schema if needed, and .parameters/.../default.json so empty params reproduce the task;

  • replace page.gotogo_to_url; drop screenshots/file-writes; log()print();

return substantive data minus harness fields;

  • set apiAccess.enabled: true and the Playground default input in Intuned.jsonc.
  1. Local gate: intuned dev run api '{}'; compare output to the craft's

final_runs/ known-good shape/count. If the run is blocked by anti-bot defenses, don't keep fighting it locally — stealth/captcha/proxy only apply on the deployed platform (see step 6 and the bot-detection note below).

  1. Deploy: after the local gate passes, **ask the user whether to deploy to

Intuned** (surface the target workspace when you ask). Only on a yes, run intuned dev deploy --non-interactive; otherwise stop here.

  1. Platform run (final gate): `intuned platform runs start '{"api":"","parameters":{}}'

-p ; poll intuned platform runs get ` until terminal.

  1. On any failure, root-cause into a resources/gotchas.md entry, fix, re-run.

Exceptions to faithful-port (decide deliberately)

  • Auth craft → AuthSessions (resources/DECISIONS.md §2): decompose login into

auth-sessions/create.py + a derived check.py, enable authSessions; the automation assumes a valid session. Test with dev run authsession create then --auth-session.

  • Bot-detection block (resources/DECISIONS.md §3): if a run is blocked by

anti-bot defenses, don't conclude the port is broken — stealth, captcha solving, and proxies run only on the deployed platform. Set headful + stealthMode in the manifest and verify with a deployed run; add captchaSolver/proxy if the deployed run is still walled. Configure per the Intuned docs: https://intunedhq.com/docs/main/02-features/stealth-mode-captcha-solving-proxies

  • No crawl fan-out by default — a crawl returns a flat list from one API;

extend_payload is opt-in only.

Guardrails

  • Never launch a browser in automation (page is injected).
  • Never invent Intuned APIs the craft didn't imply; this is a port, not a rewrite.
  • Deploy goes to the user's own workspace — surface which workspace before first deploy.
  • Don't try to beat bot-detection locally; that's what the deployed run is for.

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.