homedepot

homedepot is a skill for Claude Code, Codex from AgentComputerAI/torch. It costs 124 tokens per session (2,359 once invoked), scanned A, original, MIT.

A scraping guide for collecting product listings from Home Depot search pages. It explains how the pages are protected and where product details appear in the page.

In plain words
What is it for?
Use it to collect product names, prices, stock details, and links from Home Depot search results. It is intended for browser-based scraping with Puppeteer and HTML parsing.
Why use it?
It avoids failed requests caused by Home Depot’s anti-bot protection and avoids unnecessary API work. It also explains how to remove duplicate product entries.

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/agentcomputerai/torch/homedepot
Any agent
npx skills add AgentComputerAI/torch --skill homedepot
Clone the repo
git clone --depth 1 https://github.com/AgentComputerAI/torch

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 homedepot

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentcomputerai/torch/homedepot.svg)](https://agentmods.dev/skills/agentcomputerai/torch/homedepot)
Your own site
<a href="https://agentmods.dev/skills/agentcomputerai/torch/homedepot"><img src="https://agentmods.dev/badge/skills/agentcomputerai/torch/homedepot.svg" alt="Measured on agentmods" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,359 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 $0.00124 $0.02359
Opus 5 $0.00062 $0.01179
Sonnet 5 $0.00025 $0.00472
Haiku 4.5 $0.00012 $0.00236

Measured 3d ago against content hash a2f4c8f8c626, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

homedepot 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 3d 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 homedepot.com search results (/s/<query>). Akamai Bot Manager hard-blocks raw curl with HTTP 403 (AkamaiGHost), but a puppeteer connection to the user's real Chrome via the real
skills/sites/homedepot/SKILL.md · 151 lines

How it starts

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

Home Depot (homedepot.com)

Akamai-protected Next.js site. Curl is dead on arrival (403 AkamaiGHost). Real Chrome via 127.0.0.1:9222 passes silently. Once inside, product data is fully server-rendered in HTML — cheerio parses it. No API replay needed.

Detection

Signal Value
CDN / WAF AkamaiGHost + Akamai Bot Manager (bm_ss, bm_so, akavpau)
Framework Next.js (React SSR, #__NEXT_DATA__ present but minimal)
Anti-bot Akamai sensor challenge — 403 on curl, silent pass in real Chrome
Auth Not required for search
Store / geo Prices and stock are localized; uses signed-in store cookie

Architecture

  • /s/<query> is an SSR search results page. All 24 product tiles are present in the initial HTML.
  • Each product tile is rendered twice in the DOM (likely mobile + desktop layout variants). Dedupe by product ID parsed from the /p/.../<id> href, or by the id itself. Expect pods.length == 48 and unique == 24.
  • #__NEXT_DATA__ exists but is not needed — direct cheerio selectors on [data-testid="product-pod"] give everything.
  • No XHR/API replay necessary. No need to scroll, click, or dismiss modals. Just domcontentloaded + waitForSelector.

Strategy used

  • Phase 0 (curl) — fails. curl -sL https://www.homedepot.com/s/drill → HTTP 403 AkamaiGHost, 2.3KB sensor challenge body. Do not waste time here.
  • Phase 1 (framework JSON)__NEXT_DATA__ is present but the searchModel payload is not populated (SSR streams tiles as HTML, not JSON). Skip.
  • Phase 2 (browser)puppeteer.connect({ browserURL: the real Chrome debug port })page.goto(url, { waitUntil: "domcontentloaded" })waitForSelector('[data-testid="product-pod"]'). Passes with zero friction. No stealth plugin needed — it IS the user's Chrome.

Read the full file on GitHub · 151 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. 3d ago First seen · 151 lines · 124 tokens per session scan A a2f4c8f8c626

Subscribe to this mod's changes

homedepot is a skill published in the GitHub repository AgentComputerAI/torch (5 stars, last pushed 4mo ago), licensed MIT. It adds 124 tokens to every session and 2,359 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.

Related

Other skills, from other repositories

review-local-branch

Deep code review of the branch you are standing on, before it becomes a PR. Scope is merge-base..working-tree, so it covers commits, staged and unstaged changes together. Runs the same review lanes as review-pr — implementation, verification, approach, security — against the local checkout through the sandbox CLI, and…

nrwl/nx · 107 tokens

update-cnw-templates

Update the CNW (create-nx-workspace) template repos (nrwl/empty-template, nrwl/react-template, etc.) to a target nx version via nx migrate, verify each repo, and open a PR per repo. Clones repos it needs - assumes no local checkout. Use when asked to "update the CNW templates", "migrate the templates to nx X", "bump…

nrwl/nx · 107 tokens

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.

leon-ai/leon · 42 tokens

Apify

Scrapes social platforms, business data, and e-commerce via Apify actors — Instagram, LinkedIn, TikTok, YouTube, Facebook, Google Maps, Amazon, and web crawls — filtering in code. USE WHEN scrape Instagram, scrape LinkedIn, scrape TikTok, scrape YouTube, scrape Facebook, Google Maps leads, Amazon reviews, business…

danielmiessler/LifeOS · 150 tokens

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.

VoltAgent/voltagent · 52 tokens

taobao-keyword-search

Search Taobao and Tmall product listings by keyword, returning paginated product cards with title, price, shop, image, sales, and tags. Use when user asks to search Taobao, find products on Taobao/Tmall, scrape Taobao search results, get product listings from Taobao, collect Taobao items by keyword, 搜索淘宝, 淘宝关键词搜索…

browser-act/skills · 122 tokens