robot-training

robot-training is a skill for Claude Code, Codex from Crawlio-app/crawlio-browser. It costs 56 tokens per session (1,053 once invoked), scanned A, original, Apache-2.0.

A skill for teaching an agent to repeat a task from a recorded browser demonstration. It captures the actions, page state, network requests, and responses needed to make the task repeatable.

In plain words
What is it for?
Use it to record website workflows, identify the requests behind button actions, create replay instructions, generate an OpenAPI description, or prepare scheduled automation.
Why use it?
It removes the need to describe every step or rebuild the workflow by hand after showing the task once.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/crawlio-app/crawlio-browser/robot-training
Any agent
npx skills add Crawlio-app/crawlio-browser --skill robot-training
Clone the repo
git clone --depth 1 https://github.com/Crawlio-app/crawlio-browser

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for robot-training

README.md
[![agentmods](https://agentmods.dev/badge/skills/crawlio-app/crawlio-browser/robot-training.svg)](https://agentmods.dev/skills/crawlio-app/crawlio-browser/robot-training)
Your own site
<a href="https://agentmods.dev/skills/crawlio-app/crawlio-browser/robot-training"><img src="https://agentmods.dev/badge/skills/crawlio-app/crawlio-browser/robot-training.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,053 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.01053
Opus 5 $0.00028 $0.00526
Sonnet 5 $0.00011 $0.00211
Haiku 4.5 $0.00006 $0.00105

Measured 5d ago against content hash 1e1d402515bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

robot-training scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/robot-training/SKILL.md · 111 lines

How it starts

The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Robot Training

Robot training turns one real browser demonstration into durable artifacts:

  • interaction timeline from Crawlio session recording
  • DOM/storage state snapshots streamed into extension-owned IndexedDB
  • CDP network entries and response bodies
  • portable request/response traces in flows.jsonl
  • replay inputs for agent_session_* background sessions

Use this when speed and repeatability matter. The human can teach the flow once; agents later replay by API contract or semantic browser actions instead of primary mouse events.

Capture Protocol

Start with a fresh run:

{
  "action": "training_start",
  "url": "https://target.example/",
  "outputDir": "/absolute/path/to/runs/target-take-1",
  "maxDurationSec": 600,
  "maxInteractions": 500,
  "active": true,
  "captureStorageValues": false
}

Call observe with action: "training_start" before the user begins. The extension opens a fresh tab, starts network capture and recording, installs an event-driven monitor for the current and future documents, and retains the run locally. The MCP server writes manifest.json, but it does not own collection.

During the demonstration, poll with:

{ "action": "training_status", "runId": "rt_..." }

Call observe with action: "training_stop" and the same runId after the demonstration. The extension fetches bounded/redacted response bodies before stopping Network, returns its resident export, and the server materializes:

  • raw-dump.json
  • recording.json
  • network.json
  • bodies.json
  • state-log.json
  • state.json
  • flows.jsonl
  • causal-graph.json
  • CAUSAL.md
  • recipe.json
  • REGISTRY.md
  • api.openapi.yaml
  • manifest.json

If MCP disconnects during the demonstration, do nothing in the page. The extension continues collecting. Reconnect, query training_status, and stop with the original runId.

After the canonical files have been verified, delete the extension-retained record only when the user asks to remove it:

Read the full file on GitHub · 111 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 111 lines · 56 tokens per session scan A 1e1d402515bb

Subscribe to this mod's changes

robot-training is a skill published in the GitHub repository Crawlio-app/crawlio-browser (6 stars, last pushed 26d ago), licensed Apache-2.0. It adds 56 tokens to every session and 1,053 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

nekoro-browser

浏览器自动化——打开网页、搜索、点击、截图、执行 JS、填表、上传文件、处理对话框。通过 Chrome 扩展的 chrome.debugger API 操控用户日常浏览器,保留登录态,不开调试端口。触发词:"浏览器"、"打开网页"、"搜索"、"截图"、"点击"、"填表"、"上传文件"、"自动化操作"。.

zeshuochen/nekoro-browser · 102 tokens

owb

Open Web Bridge (OWB) — drive the user's own real browser with the owb command. Read pages behind their existing logins, gather and cross-check information, fill forms, walk multi-step flows, debug their site, audit responsive/accessibility behavior, and capture or reverse-engineer network traffic. Use this whenever…

woniu9524/open-web-bridge · 143 tokens

browser

Use this skill when the user says browser, /browser, test in Chrome, inspect a webpage, verify a localhost app, capture screenshots, check console/network errors, run browser QA, or automate browser flows with the Mochi browser MCP.

DevZonayed/Mochi · 50 tokens

control-chrome-bridge

Drive the user's real Chrome browser — their own profile, tabs, cookies and logged-in sessions — through the chrome-bridge MCP server. Use for tasks that need existing browser state: reading a page behind a login, filling a form on a site the user is signed into, testing a local app in a real browser, or inspecting…

ShalomObongo/chrome-bridge-mcp · 114 tokens

tabrix_browser

Route AI assistant browser tasks to Tabrix first. Use when the user needs to control their real Chrome session, reuse existing login state or tabs, operate a remote browser over Streamable HTTP, or troubleshoot Tabrix browser automation. Prefer Tabrix over shell commands, synthetic browser sandboxes, or alternative…

guodaxia103/tabrix · 76 tokens

aipex-browser

AI-powered browser automation using the AIPex Chrome Extension via MCP bridge. Use this skill when the agent needs to control a Chrome browser — navigating pages, clicking elements, filling forms, capturing screenshots, managing tabs, or downloading content — by connecting to the AIPex MCP bridge.

AIPexStudio/AIPex · 61 tokens