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.
npx agentmods add skills/agentcomputerai/torch/capmonsternpx skills add AgentComputerAI/torch --skill capmonstergit clone --depth 1 https://github.com/AgentComputerAI/torchWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00104 | $0.02230 |
| Opus 5 | $0.00052 | $0.01115 |
| Sonnet 5 | $0.00021 | $0.00446 |
| Haiku 4.5 | $0.00010 | $0.00223 |
Grade A, and why
capmonster 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 284 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CapMonster Cloud
CapMonster Cloud is an AI-based CAPTCHA solver. Unlike 2Captcha (human workers), CapMonster uses trained models, which makes it faster (10-30s) and cheaper ($0.60/1K for reCAPTCHA v2) but slightly less reliable on novel challenge variants.
Use this skill when:
- You need to solve the same CAPTCHA types as 2Captcha, but want lower cost
- You're scraping at volume (>10K solves) where $0.40/1K savings matter
- You need
cf_clearancecookies for Cloudflare Challenge pages (CapMonster has a dedicated task type for this) - 2Captcha returns
ERROR_CAPTCHA_UNSOLVABLE— try CapMonster as fallback
For the 2Captcha equivalent, see 2captcha. The task shape is similar but the client API is different.
Installation
Two npm packages exist. Prefer the official ZennoLab client:
# Official — maintained by capmonster.cloud
npm install @zennolab_com/capmonstercloud-client
# Community alternative — node-capmonster — only use if you need TypeScript types or features not in the official client
npm install node-capmonster
Examples below use the official client.
Setup
import {
CapMonsterCloudClientFactory,
ClientOptions,
} from "@zennolab_com/capmonstercloud-client";
const client = CapMonsterCloudClientFactory.Create(
new ClientOptions({ clientKey: process.env.CAPMONSTER_API_KEY })
);
Read the key from process.env.CAPMONSTER_API_KEY — torch loads .env automatically.
Check balance
const balance = await client.getBalance();
console.log(`CapMonster balance: $${balance}`);
Pay-per-success billing: you're only charged for tasks that returned a valid token.
Cloudflare Turnstile
Simple Turnstile (no proxy)
import { TurnstileRequest } from "@zennolab_com/capmonstercloud-client";
const req = new TurnstileRequest({
websiteURL: "https://example.com/login",
websiteKey: "0x4AAAAAAABUYP0XeMJF0xoy",
});
const res = await client.Solve(req);
const token = res.solution.token;
// Inject into the hidden field
await page.evaluate((t) => {
document.querySelector('input[name="cf-turnstile-response"]').value = t;
}, token);
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.
- yesterday First seen · 284 lines · 104 tokens per session scan A 0e4e8d7d8765
capmonster is a skill published in the GitHub repository AgentComputerAI/torch (5 stars, last pushed 4mo ago), licensed MIT. It adds 104 tokens to every session and 2,230 once invoked, about $0.0005 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.
Other skills, from other repositories
tiny-web-crawler
Crawl from one or more starting web pages, fetch readable content, search within pages, follow relevant links, and stop when the requested information is found or a bounded limit is reached.
playwright-cli
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
browserstack
../../../engineering-team/playwright-pro/skills/browserstack/SKILL.md.
analyze-performance-traces
Analyze Chrome, Chromium, Electron, React DevTools, or Perfetto-compatible JSON traces and audit user-reported profiling findings without loading large artifacts into context; prove trigger-to-render/layout chains, separate measured facts from source inference, find exact code choke points, classify forced layout and…
feature-demo-recording
Record a demo video of a web feature from a real browser. Two modes -- a NARRATED film where measured voiceover drives the timeline (designed slides, subtitles, punch-in camera, rendered from an HTML timeline), and a SILENT evidence clip for a PR or a QA pass. Use when the user asks to record a video, demo, or screen…
browser-recording
Record a browser flow as a video/GIF for evidence — animations, transitions, and multi-step interactions that a still screenshot cannot prove. Drives the project's own Playwright through a bundled runner, then converts to mp4 + GIF via ffmpeg. Use when the user asks to record a demo, capture a GIF or video of the UI…