module-plugin

A Magento 2 extension point that changes the behaviour of an existing public method without editing its original class.

In plain words
What is it for?
Adding before, after, or around behaviour, configuring interception in di.xml, and managing plugin order or disabled plugins.
Why use it?
It lets a module adjust method inputs, outputs, or execution while preserving the original code and coordinating with other plugins.

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/caravanglory/magehub/module-plugin
Any agent
npx skills add caravanglory/magehub --skill module-plugin
Clone the repo
git clone --depth 1 https://github.com/caravanglory/magehub

Made for: Claude Code, Codex.

Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,970 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00024 $0.01970
Opus 5 $0.00012 $0.00985
Sonnet 5 $0.00005 $0.00394
Haiku 4.5 $0.00002 $0.00197

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

Security

Grade A, and why

module-plugin 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.

skills/module/module-plugin/SKILL.md · 275 lines

How it starts

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

Plugin Development

Activation

Use When
  • The task is to alter behavior of an existing public Magento method without modifying the original class.
  • The task mentions before/after/around plugins, interceptors, plugin sortOrder, disabled plugins, or di.xml plugin configuration.
Do Not Use When
  • The target method is final, static, non-public, constructor/destructor, or otherwise not interceptable.
  • A service contract implementation, observer, preference, event, or layout/config extension point is the safer project convention.
Required Inputs
  • Target class, public method signature, desired before/after/around behavior, area scope, and expected interaction with existing plugins.
  • Whether the plugin must preserve side effects, exceptions, and return-value contract exactly.

Workflow

  1. Inspect the target method signature, return type, visibility, existing plugins, and area-specific di.xml before choosing a plugin type.
  2. Prefer before plugins for argument normalization and after plugins for return-value decoration; use around only when skipping or wrapping execution is required.
  3. Create the plugin class with strict types, exact parameter/return typing, and minimal dependencies.
  4. Register the plugin in the narrowest applicable di.xml scope with an intentional name and sortOrder.
  5. Verify compile and targeted behavior after adding or changing the plugin.

Guardrails

  • Do not plugin final, static, private, protected, constructor, or destructor methods.
  • Around plugins must call and return $proceed() unless the task explicitly requires blocking execution.
  • Ask before pluginizing checkout, payment, customer authentication, inventory reservation, or price calculation flows. (approval required)

Verification

  • Run bin/magento setup:di:compile or the project wrapper after adding plugin classes or di.xml entries.
  • Run targeted unit/integration tests for the modified behavior and at least one pass-through case.
  • When changing plugin sortOrder, inspect sibling plugins and report the final execution order.

Read the full file on GitHub · 275 lines

Files

What ships with it

5 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. 2d ago First seen · 275 lines · 24 tokens per session scan A 61ae84eb18c0

Subscribe to this mod's changes

module-plugin is a skill published in the GitHub repository caravanglory/magehub (2 stars, last pushed 2mo ago), licensed MIT. It adds 24 tokens to every session and 1,970 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

cloudflare-registrar

Cloudflare Registrar: domain availability, prices, registration via mcporter.

steipete/agent-scripts · 20 tokens

etsy-category-listing

Etsy category page scraper: given an Etsy category URL (e.g. https://www.etsy.com/c/jewelry) and optional page number, returns paginated product listings with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping, badge from category and subcategory…

browser-act/skills · 209 tokens

amazon-reviews-api-skill

This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…

browser-act/skills · 124 tokens

amazon-competitor-analyzer

Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.

browser-act/skills · 48 tokens

shopify-functions

Shopify Functions allow developers to customize the backend logic that powers parts of Shopify. Available APIs: Discount, Cart and Checkout Validation, Cart Transform, Pickup Point Delivery Option Generator, Delivery Customization, Fulfillment Constraints, Local Pickup Delivery Option Generator, Order Routing Location…

Shopify/Shopify-AI-Toolkit · 61 tokens

shopify-shopifyql

Answer a merchant's analytics and reporting questions with ShopifyQL — Shopify's query language for aggregated store metrics that the Admin GraphQL API cannot compute. Choose this (not admin) whenever the ask is for numbers, totals, trends, or breakdowns rather than fetching or mutating individual records: including…

Shopify/Shopify-AI-Toolkit · 216 tokens