shopping-admin-browser-automation

shopping-admin-browser-automation is a skill for Claude Code, Codex from MassLab-SII/open-agent-skills. It costs 48 tokens per session (1,343 once invoked), scanned A, original, Apache-2.0.

A set of browser-automation tools for Magento, an online-store management system. It helps carry out common tasks in Magento’s administrator panel through a web browser.

In plain words
What is it for?
Use it to log in to Magento Admin, create customers, manage customer groups, and perform other listed admin-panel tasks such as searching store data.
Why use it?
It reduces the need to repeat clicks and form entries in the store’s admin area. This can make routine customer and account-management tasks more consistent.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to log in to Magento Admin, create customers, manage customer groups, and perform other listed admin-panel tasks such as searching store data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/masslab-sii/open-agent-skills/shopping_admin
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.

Any agent
npx skills add MassLab-SII/open-agent-skills --skill shopping_admin
Clone the repo
git clone --depth 1 https://github.com/MassLab-SII/open-agent-skills

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 shopping-admin-browser-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/masslab-sii/open-agent-skills/shopping_admin/github.svg)](https://agentmods.dev/skills/masslab-sii/open-agent-skills/shopping_admin)
Your own site
<a href="https://agentmods.dev/skills/masslab-sii/open-agent-skills/shopping_admin"><img src="https://agentmods.dev/badge/skills/masslab-sii/open-agent-skills/shopping_admin/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shopping-admin-browser-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/masslab-sii/open-agent-skills/shopping_admin"><img src="https://agentmods.dev/badge/skills/masslab-sii/open-agent-skills/shopping_admin.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,343 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00048 $0.01343
Opus 5 $0.00024 $0.00672
Sonnet 5 $0.00010 $0.00269
Haiku 4.5 $0.00005 $0.00134

Measured 11d ago against content hash 5dd888296900, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

shopping-admin-browser-automation 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 11d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (scripts/admin_login.py, scripts/browser_client.py, scripts/browser_server.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/shopping_admin/SKILL.md · 218 lines

How it starts

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

Shopping Admin Browser Automation Skill

This skill is based on Playwright MCP tools, providing automation capabilities for Magento Admin panel.

Core Concepts

In admin panel automation, we distinguish two types of operations:

  1. Skill: Meaningful combinations of multiple tool calls, encapsulated as independent Python scripts
  2. Basic Tools: Single function calls used for atomic operations.

I. Skills

1. Admin Login

Use Cases:

  • Login to Magento Admin panel at the start of admin tasks
  • Authenticate with admin credentials

Prerequisites:

  • Get ref values for form fields

Usage:

# Usage:
#   python admin_login.py <admin_url> <username> <password> <username_ref> <password_ref> <signin_ref>
# Example:
python admin_login.py http://localhost:7780/admin admin admin1234 e15 e20 e23

2. Create Customer

Use Cases:

  • Create a new customer after clicking "Add New Customer" button
  • Add customers to specific customer groups

Usage:

# Usage:
#   python create_customer.py <first_name> <last_name> <email> <group> <group_ref> <fname_ref> <lname_ref> <email_ref> <save_btn_ref>
# Example:
python create_customer.py "Isabella" "Romano" "[email protected]" "Premium Europe" e92 e112 e124 e136 e61

II. Basic Tools (When to Use Single Functions)

Below are the basic tool functions and their use cases. These are atomic operations for flexible combination.

Note: Code should be written without line breaks.

How to Run

# Standard format (browser persists across calls)
python run_browser_ops.py -c "await browser.navigate('http://localhost:7780/admin')"

Navigation Tools

navigate(url: str)

Use Cases:

  • Open admin panel URL
  • Navigate to specific admin pages

Example:

python run_browser_ops.py -c "await browser.navigate('http://localhost:7780/admin')"

navigate_back()

Use Cases:

  • Go back to previous page
  • Return to list page after viewing details

Read the full file on GitHub · 218 lines

Files

What ships with it

7 files 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. 11d ago First seen · 218 lines · 48 tokens per session scan A 5dd888296900

Subscribe to this mod's changes

shopping-admin-browser-automation is a skill published in the GitHub repository MassLab-SII/open-agent-skills (133 stars, last pushed 8mo ago), licensed Apache-2.0. It adds 48 tokens to every session and 1,343 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

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

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

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