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/crawlio-app/crawlio-browser/dossiernpx skills add Crawlio-app/crawlio-browser --skill dossiergit clone --depth 1 https://github.com/Crawlio-app/crawlio-browserWrote 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.
[](https://agentmods.dev/skills/crawlio-app/crawlio-browser/dossier)<a href="https://agentmods.dev/skills/crawlio-app/crawlio-browser/dossier"><img src="https://agentmods.dev/badge/skills/crawlio-app/crawlio-browser/dossier.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00019 | $0.00868 |
| Opus 5 | $0.00010 | $0.00434 |
| Sonnet 5 | $0.00004 | $0.00174 |
| Haiku 4.5 | $0.00002 | $0.00087 |
Grade A, and why
dossier 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.
How it starts
The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dossier — Competitive Intelligence
Compare a target site against 2-4 competitors across all 11 comparison dimensions. Aggregate strengths, weaknesses, and opportunities as structured findings.
When to Use
- Building a competitive analysis across multiple sites
- Comparing tech stacks, performance, accessibility, SEO head-to-head
- Identifying where a target leads or lags vs competitors
- Producing a structured strengths/weaknesses/opportunities report
Protocol
- search for comparison commands:
search("compare pages")orsearch("extract page") - connect_tab to the target URL with
{ background: true } - execute Code Mode to run
smart.comparePages()for each target-vs-competitor pair - Emit one
smart.finding()per dimension per pair - After all pairs, return
smart.findings()grouped by dimension
Code Example
const target = "https://target.com";
const competitors = ["https://comp-a.com", "https://comp-b.com"];
// Compare target vs each competitor
for (const comp of competitors) {
const comparison = await smart.comparePages(target, comp);
for (const dim of comparison.scaffold.dimensions) {
if (!dim.comparable) continue;
smart.finding({
claim: `${dim.name}: ${target} vs ${comp}`,
evidence: [
`target (${dim.siteA.type}): ${JSON.stringify(dim.siteA.value)}`,
`competitor (${dim.siteB.type}): ${JSON.stringify(dim.siteB.value)}`
],
sourceUrl: target,
confidence: "high",
method: "comparePages",
dimension: dim.name
});
}
// comparePages returns PageEvidence, not technographic results. Detect each stack explicitly.
const compTech = (await smart.detectTechnologies()).technologies.map(t => t.name);
await smart.navigate(target);
const targetTech = (await smart.detectTechnologies()).technologies.map(t => t.name);
if (targetTech.length || compTech.length) {
smart.finding({
claim: `Tech stacks differ: target [${targetTech.join(", ")}] vs ${comp} [${compTech.join(", ")}]`,
evidence: [`target: ${targetTech.join(", ")}`, `competitor: ${compTech.join(", ")}`],
sourceUrl: target,
confidence: "high",
method: "detectTechnologies",
dimension: "framework"
});
}
}
// Visual reference of target
await smart.scrollCapture();
return { findings: smart.findings(), totalComparisons: competitors.length };
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.
- 5d ago First seen · 97 lines · 19 tokens per session scan A 0dbbfe55f624
dossier is a skill published in the GitHub repository Crawlio-app/crawlio-browser (6 stars, last pushed 26d ago), licensed Apache-2.0. It adds 19 tokens to every session and 868 once invoked, about $0.0001 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
nekoro-browser
浏览器自动化——打开网页、搜索、点击、截图、执行 JS、填表、上传文件、处理对话框。通过 Chrome 扩展的 chrome.debugger API 操控用户日常浏览器,保留登录态,不开调试端口。触发词:"浏览器"、"打开网页"、"搜索"、"截图"、"点击"、"填表"、"上传文件"、"自动化操作"。.
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…
browsertap-default
浏览器自动化默认入口。任何打开网页、填表、点击、截图、抓取或复用已登录 Chrome/Edge 的任务,优先使用 browsertap-mcp (BTAP) MCP 工具。.
browsertap-bridge-recovery
恢复 browsertap-mcp (BTAP) 的 CDP 桥连。触发:桥断了 / MCP 浏览器工具挂住 / getsetupstatus 转圈 / listtabs 拿不到 tab / Unknown command: downloads。分层排错:netstat → /link curl → listtabs,别把 MCP 层挂当成桥断。.
changing-daedalus
Use when changing anything in this repository - before running its suites, adding a tracked file, growing a size-baselined module, writing a regression test, judging a CI failure, or filing, claiming and labelling an issue.
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.