Install
$ agentstack add skill-anakin-inc-agent-skills-anakin-browser ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
Anakin: browser automation and saved sessions
Two related capabilities: driving a real cloud browser with natural language, and reusing saved login state so any tool can reach protected pages.
browser_task — the last resort, not the first
An AI agent drives a real cloud browser: navigating, clicking, typing, scrolling, extracting. Async, up to ~5 minutes, polls to completion.
Check cheaper options first, in this order:
scrape— one page, static contentscrapewithuseBrowser: true— one page, JS-renderedwire_discover— is there a pre-built action? **Wire actions are faster and
cheaper than driving a browser**
browser_task— only when the task is genuinely multi-step or interactive
and nothing above covers it
Use it for: multi-step flows, form filling, interactions behind clicks, and navigation too complex to express as a URL.
Parameters
prompt(required) — the task in natural language. Be specific about what to
extract or do.
url— where to start.output_schema— supply this whenever you know the shape you want. It is
the difference between prose you must re-parse and structured JSON.
session_id— for login-protected tasks (below).max_steps,timeout_ms— bound long-running tasks.
Returns the result plus run metadata (steps taken, duration, run_id).
Two hard rules
- Never put passwords in the
prompt. Usesession_id. A prompt is not a
credential store.
- It does not execute payments or transfer funds; such tasks are refused. Do not
attempt to work around this.
Tell the user before starting — several minutes of silence otherwise reads as a hang.
Saved browser sessions
A session is encrypted login state captured through the Anakin dashboard or Browser API. Its id is what you pass as sessionId to reach protected content from any of these:
| Tool | Parameter | |---|---| | scrape, crawl | sessionId (pair with useBrowser: true) | | monitor_create | sessionId | | browser_task | session_id |
session_list— your saved sessions, optionally filtered bydomain. Call
this first to find an id.
session_delete— permanently deletes a session and its encrypted login data.
When no session exists
You cannot create one from here. The user must log in once interactively in the Anakin dashboard — that flow handles 2FA and captchas. Say so plainly and point them there rather than attempting a login through browser_task.
Before deleting
session_delete is irreversible. The user must log in again through the dashboard to recreate it, and any monitors or requests referencing that sessionId lose authenticated access — a monitor may keep running and silently start recording logged-out content. Check monitor_list for dependents and confirm with the user before deleting.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Anakin-Inc
- Source: Anakin-Inc/agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.