AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Acp Extensions Authoring

skill-orcaqubits-agentic-commerce-skills-plugins-acp-extensions-authoring · by OrcaQubits

Author custom ACP extensions — composable protocol add-ons with JSONPath targeting, schema composition, and independent versioning. Use when building proprietary or domain-specific extensions beyond the built-in ones.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-orcaqubits-agentic-commerce-skills-plugins-acp-extensions-authoring

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-orcaqubits-agentic-commerce-skills-plugins-acp-extensions-authoring)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Acp Extensions Authoring? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ACP Custom Extension Authoring

Before writing code

Fetch live docs:

  1. Web-search site:github.com agentic-commerce-protocol rfcs extensions for the extensions framework RFC
  2. Web-search site:github.com agentic-commerce-protocol examples for extension examples
  3. Fetch https://developers.openai.com/commerce/specs/checkout/ for how extensions integrate with checkout
  4. Study the built-in discount extension as a reference: web-search site:github.com agentic-commerce-protocol rfcs discount_extension

Conceptual Architecture

What Extensions Are

Extensions are composable, optional add-ons that augment ACP's core capabilities. They allow the protocol to grow without bloating the core spec — new features are added as extensions with independent lifecycles.

Extension Properties

Every extension defines:

  • Name — Core extensions use simple names (discount); third-party use reverse-domain (com.example.loyalty)
  • Version — Calendar versioned (YYYY-MM-DD)
  • Parent capabilityextends field linking to the parent (e.g., extends checkout)
  • JSONPath targets — Where in the core schema this extension adds fields
  • Schema — JSON Schema for the extension's data

JSONPath Targeting

Extensions use JSONPath (RFC 9535) to inject fields into core schema locations:

  • $.CheckoutSessionCreateRequest.discounts — Add fields to the create request
  • $.CheckoutSession.discounts — Add fields to the response
  • Multiple targets per extension are allowed

Extension Lifecycle

draft → experimental → stable → deprecated → retired
  • draft — In development, not for production
  • experimental — Available for testing, may change
  • stable — Production-ready, backwards-compatible changes only
  • deprecated — Still functional, but replacement available
  • retired — No longer supported

Schema Composition Rules

  • Extension schemas are composed alongside (not inside) core schemas
  • Extensions must not conflict with core fields
  • Extensions must not introduce authentication bypasses
  • Extension data follows the same PCI/PII rules as core fields
  • Extensions can reference other extensions (dependency chain)

Naming Conventions

  • Core extensions: Simple lowercase names — discount, intent_traces, affiliate_attribution
  • Third-party: Reverse-domain notation — com.mycompany.loyalty, io.myplatform.subscription

Built-in Extensions as Reference

Study these before authoring custom extensions:

  1. Discount — Discount codes, applied/rejected discounts, allocations
  2. Intent Traces — Cart abandonment signals with reason codes
  3. Affiliate Attribution — Privacy-preserving attribution tracking

Custom Extension Ideas

  • Loyalty program integration
  • Subscription management
  • Gift wrapping options
  • Delivery instructions
  • Tax exemption certificates
  • Custom buyer preferences

Best Practices

  • Start in draft lifecycle, graduate through experimental to stable
  • Use reverse-domain naming for all non-core extensions
  • Define clear JSON Schemas with validation rules
  • Document the extension's purpose, fields, and interaction with core checkout
  • Test that your extension survives capability negotiation pruning
  • Version independently from the core protocol

Fetch the extensions framework RFC for the exact extension manifest structure, JSONPath targeting syntax, and schema composition rules before implementing.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.