Skills for Adobe Commerce App Management — scaffold and configure Commerce apps using the aio-commerce-sdk.
74
92%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
import { defineConfig } from "@adobe/aio-commerce-lib-app/config";
export default defineConfig({
metadata: {
description: "A Commerce app built with aio-commerce-sdk.", // max 255 chars
displayName: "My Commerce App", // shown in App Management UI, max 50 chars
id: "my-commerce-app", // alphanumeric + hyphens only, max 100 chars
upgradeMode: "manual", // optional; currently defaults to "manual" while upgrade execution stabilizes (will default to "auto" once ready); "auto" (experimental) runs upgrades after deploy, "manual" returns the plan without executing it
version: "1.0.0", // Major.Minor.Patch only, no pre-release identifiers
},
});