Working with AI
Adobe publishes agent skills that guide AI coding tools through building and migrating App Management apps. These skills follow the open agentskills.io standard, so they work with Claude Code, Cursor, VS Code Copilot, Gemini CLI, and other supported coding agents.
Two plugins are available in the adobe/skills repository:
- App Management — scaffolds a new app and adds extensibility features to it, one at a time.
- App Migration — converts an existing Integration Starter Kit or Checkout Starter Kit project to the App Management approach.
App Management skills
Use these skills when building a new App Builder application with App Management. Start with commerce-app-init to scaffold your app, then chain in any of the other skills to add the capabilities your app needs.
commerce-app-initcommerce-app-eventingcommerce-app-webhookscommerce-app-business-configcommerce-app-storagecommerce-app-admin-uiInstallation
Install skills with the npx skills command, run from your project directory. You only need the skills for the capabilities you plan to use — for example, an app that only needs events and webhooks only requires commerce-app-init, commerce-app-eventing, and commerce-app-webhooks.
npx skills add adobe/skills --skill commerce-app-init
npx skills add adobe/skills --skill commerce-app-eventing
npx skills add adobe/skills --skill commerce-app-webhooks
npx skills add adobe/skills --skill commerce-app-business-config
npx skills add adobe/skills --skill commerce-app-storage
npx skills add adobe/skills --skill commerce-app-admin-ui
Restart your coding agent to load the new skills.
App Migration skills
Use this skill when you already have an App Builder project built on the Integration Starter Kit, Checkout Starter Kit, or Admin UI SDK, and want to move it to App Management.
commerce-app-migrateInstallation
Install the skill with the npx skills command, run from your project directory.
npx skills add adobe/skills --skill commerce-app-migrate
Restart your coding agent to load the new skill.
Related information
AI developer tools for Commerce extensibility describes additional AI resources.