storefront-best-practi…
ALWAYS use this skill when working on ecommerce storefronts, online stores, shopping sites. Use for ANY storefront component including checkout pages, cart,…
Load automatically when planning, researching, or implementing Medusa Admin dashboard UI (widgets, custom pages, forms, tables, data loading, navigation). REQUIRED for all admin UI work in ALL modes (planning, implementation, exploration). Contains design patterns, component
$ npx -y skills add medusajs/medusa-agent-skills --skill building-admin-dashboard-customizations --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/building-admin-dashboard-customizationsContext preview
The summary Claude sees to decide when to auto-load this skill.
Load automatically when planning, researching, or implementing Medusa Admin dashboard UI (widgets, custom pages, forms, tables, data loading, navigation). REQUIRED for all admin UI work in ALL modes (planning, implementation, exploration). Contains design patterns, component
name: building-admin-dashboard-customizations description: Load automatically when planning, researching, or implementing Medusa Admin dashboard UI (widgets, custom pages, forms, tables, data loading, navigation). REQUIRED for all admin UI work in ALL modes (planning, implementation, exploration). Contains design patterns, component usage, and data loading patterns that MCP servers don't provide.
Build custom UI extensions for the Medusa Admin dashboard using the Admin SDK and Medusa UI components.
**Note:** "UI Routes" are custom admin pages, different from backend API routes (which use building-with-medusa skill).
**Load this skill for ANY admin UI development task, including:**
**Also load these skills when:**
**The quick reference below is NOT sufficient for implementation.** You MUST load relevant reference files before writing code for that component.
**Load these references based on what you're implementing:**
**Minimum requirement:** Load at least 1-2 reference files relevant to your specific task before implementing.
**⚠️ CRITICAL: This skill should be consulted FIRST for planning and implementation.**
**Use this skill for (PRIMARY SOURCE):**
**Use MedusaDocs MCP server for (SECONDARY SOURCE):**
**Why skills come first:**
**CRITICAL:** Always use exact configuration - different values cause errors:
// src/admin/lib/client.ts
import Medusa from "@medusajs/js-sdk"
export const sdk = new Medusa({
baseUrl: import.meta.env.VITE_BACKEND_URL || "/",
debug: import.meta.env.DEV,
auth: {
type: "session",
},
})**CRITICAL:** Install peer dependencies BEFORE writing any code:
# Find exact version from dashboard pnpm list @tanstack/react-query --depth=10 | grep @medusajs/dashboard # Install that exact version pnpm add @tanstack/react-query@[exact-version] # If using navigation (Link component) pnpm list react-router-dom --depth=10 | grep @medusajs/dashboard pnpm add react-router-dom@[exact-version]
**npm/yarn users:** DO NOT install these packages - already available.
| Priority | Category | Impact | Prefix | |----------|----------|--------|--------| | 1 | Data Loading | CRITICAL | `data-` | | 2 | Design System | CRITICAL | `design-` | | 3 | Data Display | HIGH (includes CRITICAL price rule) | `display-` | | 4 | Typography | HIGH | `typo-` | | 5 | Forms & Modals | MEDIUM | `form-` | | 6 | Selection Patterns | MEDIUM | `select-` |
A collection of skills composed as Claude Code plugins for building Medusa applications with best practices and architectural patterns. These skills can be used with any agent, as explained in the Usage with Other Agents section.
Repo: medusajs/medusa-agent-skills
ALWAYS use this skill when working on ecommerce storefronts, online stores, shopping sites. Use for ANY storefront component including checkout pages, cart,…
Load automatically when user asks to learn Medusa development (e.g., "teach me how to build with medusa", "guide me through medusa", "I want to learn medusa").…
Execute mcloud authentication and context commands: login, logout, whoami, use, version, and signup. Use when setting up the CLI, switching accounts, verifying…
Execute mcloud deployments commands to list deployments, retrieve deployment details, and fetch build logs. Use when listing deployments, checking deployment…
Execute mcloud environments commands to list, get, create, delete, redeploy, or trigger builds for Cloud environments. Use when managing environment lifecycle,…
Execute mcloud local build to reproduce a Cloud build on the local machine. Use when debugging a build-failed deployment without pushing to the tracked branch,…