Check in this order:
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionucpExecute the skills CLI command in your project's root directory to begin installation:
Fetches ucp from vercel-labs/agentic-commerce-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate ucp. Access via /ucp in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
1
total installs
1
this week
11
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
11
stars
ucp.config.jsonCheck in this order:
./ucp/ — User's local copy (use as-is)./.ucp-spec/ — Previously cloned spec (update it)When cloning is needed:
git clone --depth 1 https://github.com/Universal-Commerce-Protocol/ucp.git .ucp-spec
If HTTPS fails, try SSH:
git clone --depth 1 [email protected]:Universal-Commerce-Protocol/ucp.git .ucp-spec
When ./.ucp-spec/ exists:
cd .ucp-spec && git pull && cd ..
After cloning, ensure .ucp-spec/ is in .gitignore:
.gitignore if it exists.ucp-spec/ or .ucp-spec is already listed.ucp-spec/ on a new linedocs/specification/overview.md
docs/specification/checkout.md
docs/specification/checkout-rest.md
docs/specification/checkout-mcp.md
docs/specification/checkout-a2a.md
docs/specification/embedded-checkout.md
docs/specification/order.md
docs/specification/fulfillment.md
docs/specification/discount.md
docs/specification/buyer-consent.md
docs/specification/identity-linking.md
docs/specification/ap2-mandates.md
docs/specification/payment-handler-guide.md
docs/specification/tokenization-guide.md
spec/services/shopping/rest.openapi.json
spec/services/shopping/mcp.openrpc.json
spec/services/shopping/embedded.openrpc.json
spec/handlers/tokenization/openapi.json
spec/schemas/shopping/*
spec/discovery/profile_schema.json
./ucp.config.json at project root
{
"$schema": "./ucp.config.schema.json",
"ucp_version": "2026-01-11",
"roles": ["business"],
"runtime": "nodejs",
"capabilities": {
"core": ["dev.ucp.shopping.checkout"],
"extensions": []
},
"transports": ["rest"],
"transport_priority": ["rest", "mcp", "a2a", "embedded"],
"payment_handlers": [],
"features": {
"ap2_mandates": false,
"identity_linking": false,
"multi_destination_fulfillment": false
},
"domain": "",
"existing_apis": {},
"policy_urls": {
"privacy": "",
"terms": "",
"refunds": "",
"shipping": ""
},
"scaffold_depth": "full",
"generated_files": [],
"answers": {},
"deployment": {
"platform": "vercel",
"region": "iad1",
"mcp": {
"enabled": false,
"max_duration": 60
}
}
}
| Field | Type | Description |
|---|---|---|
ucp_version |
string | UCP spec version (date-based) |
roles |
string[] | One or more of: business, platform, payment_provider, host_embedded |
runtime |
string | nodejs (default) or bun |
capabilities.core |
string[] | Required capabilities to implement |
capabilities.extensions |
string[] | Optional extensions to implement |
transports |
string[] | Enabled transports: rest, mcp, a2a, embedded |
transport_priority |
string[] | Order to implement transports |
payment_handlers |
string[] | Payment handler IDs to support |
features.ap2_mandates |
boolean | Enable AP2 mandate signing |
features.identity_linking |
boolean | Enable OAuth identity linking |
features.multi_destination_fulfillment |
boolean | Enable multi-destination shipping |
domain |
string | Business domain for /.well-known/ucp |
existing_apis |
object | Map of existing API endpoints to analyze |
policy_urls |
object | URLs for privacy, terms, refunds, shipping policies |
scaffold_depth |
string | types | scaffolding | full |
generated_files |
string[] | Files created by scaffold (for tracking) |
answers |
object | Raw answers to qualifying questions |
User runs /ucp with no sub-command
Display help listing all available sub-commands:
UCP Skill — Universal Commerce Protocol Implementation
Available commands:
/ucp init — Initialize UCP in this project (clone spec, create config)
/ucp consult — Full consultation: answer qualifying questions, build roadmap
/ucp plan — Generate detailed implementation plan
/ucp gaps — Analyze existing code against UCP requirements
/ucp scaffold — Generate full working UCP implementation
/ucp validate — Validate implementation against UCP schemas
/ucp profile — Generate /.well-known/ucp discovery profile
/ucp test — Generate unit tests for UCP handlers
/ucp docs — Generate internal documentation
Typical workflow:
/ucp init → /ucp consult → /ucp plan → /ucp scaffold → /ucp profile → /ucp test → /ucp validate
Configuration: ./ucp.config.json
Spec location: ./ucp/ or ./.ucp-spec/
User runs /ucp init
Bootstrap UCP in a project: clone spec, create config, ask essential questions.
./ucp/ exists
./.ucp-spec/ exists
git pull to update.ucp-spec/ to .gitignore./ucp.config.json existsQ1: What role(s) are you implementing?
If user selects multiple roles, WARN:
"Implementing multiple roles is unusual. This is typically for marketplace/aggregator scenarios. Are you sure?"
Q2: What runtime will you use?
NOTE: If user mentions Edge, respond:
"Edge runtime is not supported for UCP implementations. Please choose Node.js or Bun."
Q3: What is your business domain?
/.well-known/ucpshop.example.comQ4: Which transports do you need at launch?
Create ./ucp.config.json with:
ucp_version set to latest from specUCP initialized successfully!
Config: ./ucp.config.json
Spec: ./.ucp-spec/ (or ./ucp/)
Role: {role}
Domain: {domain}
Next steps:
/ucp consult — Complete full consultation (recommended)
/ucp plan — Skip to implementation planning
/ucp gaps — Analyze existing code first
User runs /ucp consult
Walk through all 12 qualifying questions, update config, produce implementation roadmap.
/ucp init first)Read ./ucp.config.json and use existing answers as defaults.
Ask each question. If already answered in config, show current value and ask to confirm or change.
Q1: Are we implementing the business side, the platform side, or both?
roles in configQ2: Which UCP version and which capabilities/extensions are in scope?
dev.ucp.shopping.checkout (required)dev.ucp.shopping.fulfillmentdev.ucp.shopping.discountdev.ucp.shopping.buyer_consentdev.ucp.shopping.ap2_mandatedev.ucp.shopping.orderdev.ucp.common.identity_linkingQ3: Which payment handlers do we need?
Q4: Do we need AP2 mandates and signing key infrastructure?
features.ap2_mandates: truefeatures.ap2_mandates: falseQ5: Do we need fulfillment options and multi-group/multi-destination support?
features.multi_destination_fulfillment: trueQ6: Do we need discounts, buyer consent capture, or identity linking?
dev.ucp.shopping.discount to extensionsdev.ucp.shopping.buyer_consent to extensionsdev.ucp.common.identity_linking, set features.identity_linking: trueQ7: What are the existing checkout and order APIs we should map to UCP?
existing_apis object/api/checkout, /api/cart, /api/ordersQ8: What are the required policy URLs?
policy_urls objectQ9: What authentication model is required for checkout endpoints?
answers.authentication_modelQ10: Who will receive order webhooks and what event cadence is required?
order.created, order.updated, order.fulfilled, order.canceledanswers.webhook_configQ11: Do we need to support MCP, A2A, or embedded checkout at launch?
transports arraytransport_priority orderQ12: What is the business domain that will host /.well-known/ucp?
domain fieldWrite all answers to ./ucp.config.json
Based on answers, produce a roadmap:
UCP Implementation Roadmap
==========================
Role: Business (merchant)
Version: 2026-01-11
Domain: shop.example.com
Capabilities to implement:
✓ dev.ucp.shopping.checkout (core)
✓ dev.ucp.shopping.fulfillment
✓ dev.ucp.shopping.discount
○ dev.ucp.shopping.order
Transports (in order):
1. REST
2. MCP
Payment handlers:
- Stripe tokenization
Key implementation tasks:
1. Create /.well-known/ucp discovery profile
2. Implement checkout session endpoints (create, get, update, complete)
3. Implement fulfillment options logic
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
ucp is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
ucp reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for ucp matched our evaluation — installs cleanly and behaves as described in the markdown.
ucp is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
ucp is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: ucp is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: ucp is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in ucp — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Registry listing for ucp matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for ucp matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 31