woocommerce-browser-interaction

woocommerce-browser-interaction is a skill for Claude Code, Codex from vladolaru/claude-code-plugins. It costs 59 tokens per session (2,263 once invoked), scanned A, original, MIT.

A browser-interaction guide for checking WooCommerce shops and their administration screens. It supports investigating interface problems, testing store flows, verifying changes, and taking screenshots with browser automation.

In plain words
What is it for?
Use it to test WooCommerce storefronts, inspect admin pages, debug UI issues, verify checkout-related changes, and capture screenshots.
Why use it?
It helps reproduce and verify WooCommerce behavior in a real browser, including shop, cart, checkout, and account pages. It also defines a required process for finding and accessing the site.

Skill for Claude CodeCodex

Part of the pirategoat-tools plugin — 22 skills shipped together

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/vladolaru/claude-code-plugins/woocommerce-browser-interaction
Any agent
npx skills add vladolaru/claude-code-plugins --skill woocommerce-browser-interaction
Clone the repo
git clone --depth 1 https://github.com/vladolaru/claude-code-plugins

Made for: Claude Code, Codex.

Or install pirategoat-tools, the plugin that ships this one along with the rest of its 22 skills.

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 woocommerce-browser-interaction

README.md
[![agentmods](https://agentmods.dev/badge/skills/vladolaru/claude-code-plugins/woocommerce-browser-interaction.svg)](https://agentmods.dev/skills/vladolaru/claude-code-plugins/woocommerce-browser-interaction)
Your own site
<a href="https://agentmods.dev/skills/vladolaru/claude-code-plugins/woocommerce-browser-interaction"><img src="https://agentmods.dev/badge/skills/vladolaru/claude-code-plugins/woocommerce-browser-interaction.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,263 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.00059 $0.02263
Opus 5 $0.00030 $0.01131
Sonnet 5 $0.00012 $0.00453
Haiku 4.5 $0.00006 $0.00226

Measured yesterday against content hash 1e46ea299da6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

woocommerce-browser-interaction 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Verify site is running: `curl -s -o /dev/null -w "%{http_code}" {base_url}` → expect 200/301/302.
plugins/pirategoat-tools/skills/woocommerce-browser-interaction/SKILL.md · 261 lines

How it starts

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

WooCommerce Browser Interaction

Browser automation for WooCommerce debugging, verification, and testing.

REQUIRED: First read and follow the pirategoat-tools:browser-interaction skill for MCP detection, tool mapping, RULE 0, error handling, and browser closing. This skill adds WooCommerce-specific patterns.

Complete the browser task requested. Do not add extra checks or improvements beyond what is explicitly asked.


Required Setup Before Browser Use

Get site URL first. Ask using the current host's input mechanism:

Question: "What is the WordPress site URL?"
Header: "Site URL"
Options:
  - "http://localhost:8888" (wp-env default)
  - "http://localhost:8080" (alternate local)
  - "http://localhost:8082" (custom port)

Also gather admin credentials (username/password) if authentication is needed.

Verify site is running: curl -s -o /dev/null -w "%{http_code}" {base_url} → expect 200/301/302.


Login and Navigate Workflow

1. Navigate → {base_url}/wp-admin/
2. If wp-login.php → fill #user_login, #user_pass → click #wp-submit
3. Navigate directly to target URL via address bar
4. Take snapshot → Interact → Verify

Use direct URL navigation. Menu clicking is slow and unreliable. URLs are in the Navigation Reference below.

Authentication Errors

Symptom Cause Resolution
Redirects back to wp-login.php Wrong credentials Ask user for correct username/password
"Invalid username" error User doesn't exist Verify username with user
"Incorrect password" error Wrong password Ask user to verify password
"Too many failed attempts" Rate limited Wait 15 min or ask user to unlock
Captcha/reCAPTCHA appears Bot protection Ask user to login manually first
2FA/MFA prompt Two-factor enabled Ask user to provide code or login manually

Login selector fallbacks:

Primary:    #user_login, #user_pass, #wp-submit
Fallback:   input[name="log"], input[name="pwd"], input[type="submit"]

Read the full file on GitHub · 261 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. yesterday First seen · 261 lines · 59 tokens per session scan A 1e46ea299da6

Subscribe to this mod's changes

woocommerce-browser-interaction is a skill published in the GitHub repository vladolaru/claude-code-plugins (8 stars, last pushed yesterday), licensed MIT. It adds 59 tokens to every session and 2,263 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

amazon-bestseller-listing

Amazon Best Sellers listing scraper: extract product cards from any Amazon Best Sellers (zgbs) or /gp/bestsellers/ category page — returns rank (position on chart), asin, title, url, image, imageAlt, price, stars, reviewCount, ratingRaw per item, plus category metadata (categoryName, categoryFullName, categoryUrl) and…

browser-act/skills · 300 tokens

amazon-search-listing

Amazon search and category listing scraper: extract product listings from any Amazon search results page, keyword search URL, or category browse page and return per-item cards (asin, title, url, image, price, listPrice, stars, reviewCount, badges, isAmazonChoice, isBestSeller, isSponsored, delivery, boughtInPast…

browser-act/skills · 341 tokens

ebay-search-listing

Extracts product listings from any eBay search or category page URL, returning per-item cards (itemNumber, url, title, subtitle, caption, price, priceWithCurrency, currency, wasPrice, bids, shipping, seller, sellerFeedbackCount, sellerPositiveRating, reviewsCount, starRating, image) plus pagination state (currentPage…

browser-act/skills · 221 tokens

etsy-product-detail

Etsy product detail scraper: given an Etsy listing URL, returns full product detail including listingId, title, priceCurrent, priceOriginal, currency, images (all), description, shopName, shopUrl, rating, reviewCount, favorites, inCartCount, variations (with per-option price ranges), highlights, listedDate…

browser-act/skills · 187 tokens

walmart-product-detail

Walmart product detail page extractor: given a walmart.com product URL (walmart.com/ip/...), extract full product data including itemId, title, brand, model, UPC, price, wasPrice, currency, availability, category path, seller info, all images, shortDescription, longDescription, product highlights, full specifications…

browser-act/skills · 252 tokens

ecommerce-listing

Extract product list from any e-commerce category page, search results page, or keyword search with filters. Returns paginated product arrays with URL, name, price, currency, image, rating, review count per item. Supports URL input, keyword search, and site-scoped search with filters: price range, brand, category…

browser-act/skills · 182 tokens