zuora-order-migration-build

zuora-order-migration-build is a skill for Claude Code from zuora/zuora-coding-agent. It costs 33 tokens per session (7,519 once invoked), scanned B, original, MIT.

A code-conversion tool for moving Zuora subscription integration code to the Order API, Zuora's newer order-based interface.

In plain words
What is it for?
Use it to convert code for creating, updating, cancelling, suspending, resuming, or renewing subscriptions, in either preview or create mode.
Why use it?
It helps replace older Subscription, Amendment, or Subscribe Action API code without manually mapping every operation and endpoint.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Codex.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the zuora-coding-agent plugin — 40 skills, 10 commands shipped together

Good fit Use it to convert code for creating, updating, cancelling, suspending, resuming, or renewing subscriptions, in either preview or create mode.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add zuora/zuora-coding-agent
Claude Code
/plugin install zuora-coding-agent

Made for: Claude Code.

Or install zuora-coding-agent, the plugin that ships this one along with the rest of its 40 skills, 10 commands.

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 zuora-order-migration-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/zuora/zuora-coding-agent/zuora-order-migration-build.svg)](https://agentmods.dev/skills/zuora/zuora-coding-agent/zuora-order-migration-build)
Your own site
<a href="https://agentmods.dev/skills/zuora/zuora-coding-agent/zuora-order-migration-build"><img src="https://agentmods.dev/badge/skills/zuora/zuora-coding-agent/zuora-order-migration-build.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00033 $0.07519
Opus 5 $0.00016 $0.03759
Sonnet 5 $0.00007 $0.01504
Haiku 4.5 $0.00003 $0.00752

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

Security

Grade B, and why

zuora-order-migration-build scanned grade B with 2 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 7d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

response = requests.post( "https://rest.zuora.com/v1/orders",

Makes network callslowCapability

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

response = requests.post(
skills/zuora-order-migration-build/SKILL.md · 924 lines

How it starts

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

Codex-only path resolution: When an instruction refers to ${CLAUDE_PLUGIN_ROOT}, treat it as the root of this installed plugin. In Codex, resolve that root as the ancestor directory containing skills/, references/, and .codex-plugin/.

You are generating Order API implementation code by converting customer integration code from Subscription/Amendment API and Subscribe Action API. The Subscribe Action API supports two distinct modes (preview vs create) which map to different Order API endpoints. The user should have a migration plan (from /zuora-order-migration-design) or provide their source code directly.

Input

The user's request: $ARGUMENTS

This could be:

  • Customer source code file paths
  • Reference to a migration plan document
  • Specific operations to convert (cancel, suspend, resume, renew, create, update)

Tool routing

Use local file reads and edits for conversion work, bundled mapping references for known S/A-to-Order transformations, and mcp__zuora-mcp__zuora_codegen for exact Order API endpoint/model details. Use subscription MCP tools only for their specific create/cancel/renew operations when validation requires them. mcp__zuora-mcp__ask_zuora is allowed only as a fallback for a specific Order API capability or migration-tradeoff question that remains after references and codegen are checked. If business intent is ambiguous, ask the user to confirm the mapping.

Workflow

⚠️ CRITICAL PRINCIPLE: Always Modify Existing Files

When converting customer integration code:

  • ✅ DO: Use Edit tool to modify existing customer files in-place
  • ✅ DO: Comment out old code and add converted code in the same location
  • ✅ DO: Create clear BEFORE/AFTER markers in the same file
  • ❌ DON'T: Create new files like *_converted.py or *_order_api.py
  • ❌ DON'T: Use Write tool for existing integration files

Why: PR reviews need to see the diff between old and new code. New files hide the changes and make it impossible to review what actually changed.

Read the full file on GitHub · 924 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. 7d ago First seen · 924 lines · 33 tokens per session scan B e15023df6145

Subscribe to this mod's changes

zuora-order-migration-build is a skill published in the GitHub repository zuora/zuora-coding-agent (2 stars, last pushed 6d ago), licensed MIT. It adds 33 tokens to every session and 7,519 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, 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

convex-billing

Add Stripe billing/payments to the Convex app via @convex-dev/stripe (checkout + webhook + gating).

openclaw/clawhub · 29 tokens

cloudbase-wechat-integration

A guide for connecting CloudBase applications to WeChat services, including payments, official accounts, and user identity.

TencentCloudBase/CloudBase-AI-Toolkit · 94 tokens

commerce-app-business-config

Manage custom business configuration in an Adobe Commerce app. Use when the user wants to add, modify, or remove merchant-configurable settings (config fields, admin config, store configuration) exposed through Commerce Admin. Creates typed config fields (text, password, email, url, tel, boolean, list) in…

adobe/skills · 80 tokens

baselinker-webhooks

Receive BaseLinker (Base.com) webhooks. Use when building a BaseLinker order or warehouse callback receiver, because BaseLinker is not a normal webhook source: deliveries arrive as HTTP HEAD requests with NO body, the entire payload is in the query string (observed params: orderid, state), there is NO signature…

hookdeck/webhook-skills · 131 tokens

tiktok-shop-webhooks

Receive and verify TikTok Shop webhooks. Use when setting up TikTok Shop webhook handlers, debugging Authorization-header signature verification, or handling events like ORDERSTATUSCHANGE, PACKAGEUPDATE, RECIPIENTADDRESSUPDATE, PRODUCTSTATUSCHANGE, or SELLERDEAUTHORIZATION.

hookdeck/webhook-skills · 59 tokens

gplay-purchase-verification

Server-side purchase verification for in-app products and subscriptions using Google Play Developer API. Use when implementing receipt validation in your backend.

hanamizuki/solopreneur · 32 tokens