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/zillownpx skills add AgentComputerAI/torch --skill zillowgit 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.00112 | $0.02381 |
| Opus 5 | $0.00056 | $0.01190 |
| Sonnet 5 | $0.00022 | $0.00476 |
| Haiku 4.5 | $0.00011 | $0.00238 |
Grade A, and why
zillow scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
description: Proven scraping playbook for zillow.com /homes/for_sale/ search pages. CloudFront + PerimeterX (HumanSecurity) gates raw curl with HTTP 403 `x-px-blocked: 1`. A puppeteer.connect() to the user's real Chrome How it starts
The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Zillow (zillow.com)
Server-rendered Next.js search pages behind CloudFront + PerimeterX. Once a session is flagged ("Access to this page has been denied"), every subsequent navigation in that browser context returns the deny page until cookies are cleared. The fix is mechanical: clear cookies, hit Google first, then go to the search URL. After that, all 41 results for a city search are sitting in
__NEXT_DATA__as a single JSON blob — no API replay, no scrolling tricks needed.
Detection
| Signal | Value |
|---|---|
| CDN | CloudFront (server: CloudFront, via: 1.1 …cloudfront.net) |
| Anti-bot | PerimeterX / HumanSecurity (x-px-blocked: 1 on block, _px* cookies on allow) |
| Framework | Next.js (__NEXT_DATA__ JSON blob) |
| Auth | None for search results |
| Robots | Disallows /search-results, but /homes/ listing pages are public |
Bare curl/fetch returns HTTP 403 with a 5.8KB CAPTCHA HTML. Even a real Chrome session gets stuck on "Access to this page has been denied" once a previous tab in that profile got flagged — the deny verdict is sticky in cookies.
Architecture
/homes/for_sale/<city>-<state>/is server-rendered. The full first page of ~41 listings is embedded in<script id="__NEXT_DATA__" type="application/json">atprops.pageProps.searchPageState.cat1.searchResults.listResults(or any nestedlistResultsarray — walk the tree).- The zillow.com homepage and search pages share the same PerimeterX cookie (
_pxhd,_px3). A clean session fetched via Google → search URL gets a clean PX challenge that auto-passes. - Pagination uses
?searchQueryState=<urlencoded JSON>with apagination.currentPagefield. Cursor-style; not needed for a scout run.
Strategy used
- Phase 0 (curl): 403,
x-px-blocked: 1. Skip. - Phase 1 (framework recon): Confirmed Next.js, but couldn't fetch HTML to parse. Skip.
- Phase 2 (browser via the real Chrome debug port): Works after cookie clear + Google warmup. This is the canonical path.
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 · 182 lines · 0 tokens per session scan A 4d24b64f7d62
zillow is a skill published in the GitHub repository AgentComputerAI/torch (5 stars, last pushed 4mo ago), licensed MIT. It adds 112 tokens to every session and 2,381 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a…
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.
tutti-workspace-app-factory
Create, convert, or repair one Tutti workspace app as either a self-contained publishable package under package/ or a Chrome-style local debug app under .tutti/dev-app/. Use for mention://workspace-app-factory/create handoffs, mention://workspace-app-factory handoffs, standalone app generation, adapting existing…
computer-use
Read and drive native desktop applications through the accessibility layer — list on-screen apps, snapshot one window as a numbered element tree, then click / type / set a value / scroll / drag / run a named action, by element index or by screen coordinates. Use for work in a desktop app rather than a web page. Full…
tutti-record-agent-session-replay
From a Tutti checkout, run, audit, freshly replay, publish, or diagnose Session Replay cassettes that are driven by case-repository scenario scripts (CDP), not by interactive UI recording. Use for real-Provider capture while a scenario.mjs executes, cassette transport or semantic-state mismatches, fresh replay…
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…