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/bug-ops/zeph/web-scrapenpx skills add bug-ops/zeph --skill web-scrapegit clone --depth 1 https://github.com/bug-ops/zephWhat 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.00082 | $0.02764 |
| Opus 5 | $0.00041 | $0.01382 |
| Sonnet 5 | $0.00016 | $0.00553 |
| Haiku 4.5 | $0.00008 | $0.00276 |
Grade A, and why
web-scrape 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 2d 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 — 292 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Page Data Extraction
Extract structured data from web pages by specifying a URL, a CSS selector to target elements, and an extraction mode.
Command Format
{"url": "URL", "select": "CSS_SELECTOR", "extract": "MODE", "limit": N}
Parameters
| Parameter | Required | Description |
|---|---|---|
url |
Yes | Full URL of the page (use HTTPS) |
select |
Yes | CSS selector to target elements |
extract |
No | Extraction mode: text (default), html, or attr:NAME |
limit |
No | Maximum number of elements to return |
Extract Modes
| Mode | Description | Example Output |
|---|---|---|
text |
Inner text content, stripped of HTML tags | Hello World |
html |
Inner HTML markup | <strong>Hello</strong> World |
attr:href |
Value of the specified attribute | https://example.com |
attr:src |
Value of the src attribute |
/images/logo.png |
attr:class |
Value of the class attribute |
btn btn-primary |
attr:id |
Value of the id attribute |
main-content |
attr:data-* |
Value of any data attribute | 42 |
CSS Selector Reference
Basic Selectors
| Selector | Description | Example |
|---|---|---|
element |
All elements of that type | p, div, h1, table |
.class |
Elements with a specific class | .article, .btn-primary |
#id |
Element with a specific ID | #content, #main |
* |
All elements | * |
element.class |
Element with a specific class | div.container, p.intro |
element#id |
Element with a specific ID | div#header |
Attribute Selectors
| Selector | Description | Example |
|---|---|---|
[attr] |
Has the attribute | [href], [data-id] |
[attr=val] |
Attribute equals value exactly | [type="text"], [lang="en"] |
[attr~=val] |
Attribute contains word (space-separated) | [class~="active"] |
[attr|=val] |
Attribute starts with value or value followed by - |
[lang|="en"] |
[attr^=val] |
Attribute starts with value | [href^="https"] |
[attr$=val] |
Attribute ends with value | [href$=".pdf"] |
[attr*=val] |
Attribute contains value anywhere | [href*="example"] |
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.
- 2d ago First seen · 292 lines · 82 tokens per session scan A dcdc65e0aae1
web-scrape is a skill published in the GitHub repository bug-ops/zeph (57 stars, last pushed 8d ago), licensed MIT. It adds 82 tokens to every session and 2,764 once invoked, about $0.0004 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-30.
Other skills, from other repositories
verify
Drive an engine app headlessly in a pty, record a video of the whole verification, and open a summary page (video + timeline + checks) with pixel open.
axum-docs
Axum 0.8.9 — Rust web framework. Routing, extractors, middleware (Tower), state, WebSocket, SSE, testing.
verify
Run Chimeraforge's canonical verification gate end-to-end and report the real output before claiming work done or committing. Failing output gets pasted, fixed, and re-run — never summarized away.
performance
Optimize web performance for faster loading and better user experience. Use when asked to "speed up my site", "optimize performance", "reduce load time", "fix slow loading", "improve page speed", or "performance audit".
dioxus-docs
Dioxus 0.7 — fullstack cross-platform Rust app framework. Web, Desktop, Mobile, SSR. RSX, signals, hooks, router.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.