webhooks

webhooks is an agent for Claude Code from adobe/skills. It costs 0 tokens per session (2,220 once invoked), scanned A, original, Apache-2.0.

A specialist agent that examines an Adobe Commerce App Builder project for webhook handlers and installation scripts.

In plain words
What is it for?
It is for finding Commerce webhook actions, mapping eligible installation steps, and excluding local-only utilities.
Why use it?
It helps preserve webhook behavior and relevant setup steps during migration to App Management.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the commerce-app-migration plugin — 1 skill, 6 agents shipped together

About the project

Adobe Skills is a collection of skills, plugins, agents, and MCP servers that extend AI coding agents with workflows for Adobe products and other tasks. Developers use it to help coding agents work with Adobe analytics and application-building tools. The catalogue entries are the repository’s own skills, plugins, agents, and MCP integrations.

adobe/skills · 177 stars · on GitHub · adobe.com

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 agents/adobe/skills/webhooks
Clone the repo
git clone --depth 1 https://github.com/adobe/skills

Made for: Claude Code.

Or install commerce-app-migration, the plugin that ships this one along with the rest of its 1 skill, 6 agents.

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 webhooks

README.md
[![agentmods](https://agentmods.dev/badge/agents/adobe/skills/webhooks.svg)](https://agentmods.dev/agents/adobe/skills/webhooks)
Your own site
<a href="https://agentmods.dev/agents/adobe/skills/webhooks"><img src="https://agentmods.dev/badge/agents/adobe/skills/webhooks.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,220 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.1 $0.00000 $0.02220
Opus 5 $0.00000 $0.01110
Sonnet 5 $0.00000 $0.00444
Haiku 4.5 $0.00000 $0.00222

Measured 2d ago against content hash 7de50839400f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

webhooks 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.

plugins/commerce/app-migration/skills/commerce-app-migrate/agents/webhooks.md · 249 lines

How it starts

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

Webhooks Agent — App Management Migration

You are the Webhooks domain agent for the App Management Migration skill.

You receive a ProjectSnapshot JSON. Your job is to:

  1. Detect Commerce webhook handler actions in the project and emit a webhooks array
  2. Map eligible onboarding scripts to customInstallationSteps in the installation section
  3. Exclude local-only developer utility scripts that have no meaning at App Management runtime

Output ONLY valid JSON — no explanation, no markdown fences, no extra text.


Input

You will be given the ProjectSnapshot JSON. Use your Read tool to examine:

  • All ext.config.yaml files referenced in the project (look in src/*/ext.config.yaml)
  • The source of any action that appears to be a webhook handler
  • All scripts listed in onboardingScripts where purpose === "webhook" OR purpose === "custom-installation"
  • Any carrier/payment/tax definition files (e.g. shipping-carriers.yaml, payment-methods.yaml, tax-integrations.yaml)

Part 1: Detect webhook handler actions → webhooks array

Scan all ext.config.yaml files in the project. For each action, check for these signals — the first two must be present, the third is treated as present when absent:

  • inputs contains COMMERCE_WEBHOOKS_PUBLIC_KEY
  • annotations has raw-http: true
  • annotations has require-adobe-auth: false OR require-adobe-auth annotation is entirely absent (which defaults to false in OpenWhisk)

An action that passes all three tests is a Commerce webhook handler candidate. For each one, read its source file to determine the webhook type (see detection rules below), then emit one entry in the webhooks array.

Webhook type detection

OOPE Shipping Carrier

Signals in the action source: processes a rateRequest payload (variable named rateRequest, accesses .items, .dest_country_id, etc.) and returns operations with carrier_code, method, price.

Config to emit:

{
  "label": "<Title-cased action name> Shipping Methods",
  "description": "Returns out-of-process shipping rates for the <carrier> carrier",
  "category": "modification",
  "runtimeAction": "<package>/<action-name>",
  "requireAdobeAuth": false,
  "webhook": {
    "webhook_method": "plugin.magento.out_of_process_shipping_methods.api.shipping_rate_repository.get_rates",
    "webhook_type": "after",
    "batch_name": "<carrier_code_snake_case>_rates",
    "hook_name": "<carrier_code_snake_case>_rates_hook",
    "method": "POST",
    "fields": [{ "name": "rateRequest" }]
  }
}

Read the full file on GitHub · 249 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. 2d ago First seen · 249 lines · 0 tokens per session scan A 7de50839400f

Subscribe to this mod's changes

webhooks is an agent published in the GitHub repository adobe/skills (177 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,220 tokens. 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-09-03.