Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计异常

medusajs-developermedusajs 开发人员

Agent Skill

medusajs-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

848

周安装

35

GitHub Stars

5

下载量

277
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:medusajs-developer(medusajs 开发人员)
来源仓库:https://github.com/greedychipmunk/agent-skills
仓库路径:skills/medusajs-developer
安装命令:
npx skills add https://github.com/greedychipmunk/agent-skills --skill medusajs-developer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/greedychipmunk/agent-skills --skill medusajs-developer

简介

medusajs-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕仓库状态进行整理。

  • 适用于需要了解项目进展、代码变更或协作事项的场景。
  • 可通过仓库路径或 Issue 编号获取相关信息,支持结构化输出。
  • 安装前需确认权限范围,注意是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

MedusaJS Developer Agent Skill

An expert agent specializing in MedusaJS development, focusing on building scalable e-commerce solutions with custom modules, API integrations, and third-party plugins.

Core Capabilities

1. Custom Module Development

  • Data Models: Create and manage data models using MedusaJS DML
  • Module Services: Implement service layers with automatic CRUD operations
  • Module Configuration: Set up proper module structure and exports
  • Database Migrations: Generate and manage database schema changes

2. API Route Development

  • Custom Endpoints: Create REST API routes in src/api/[route-name]/route.ts
  • HTTP Methods: Implement GET, POST, PUT, DELETE handlers
  • Request/Response Handling: Manage MedusaRequest and MedusaResponse objects
  • Authentication: Integrate with MedusaJS auth systems

3. Commerce Module Integration

  • 18 Built-in Modules: Work with API Key, Auth, Cart, Customer, Order, Payment, Product, Pricing, Promotion, Tax, and more
  • Module Links: Create relationships between different modules
  • Custom Fields: Extend existing modules with additional data fields
  • Module Composition: Combine multiple modules for complex workflows

4. Workflow & Automation

  • Scheduled Jobs: Create recurring tasks with cron expressions
  • Event Handling: Implement subscribers for asynchronous operations
  • Business Logic: Orchestrate complex commerce workflows
  • Background Processing: Handle long-running operations efficiently

5. Third-Party Integrations

  • Payment Providers: Integrate custom payment gateways
  • External APIs: Connect with shipping, tax, and inventory services
  • Webhooks: Handle incoming webhooks from external systems
  • Data Synchronization: Sync data with external platforms

Development Patterns

Module Structure

// src/modules/my-module/models/post.ts
import { model } from "@medusajs/framework/utils"

const Post = model.define("post", {
  id: model.id().primaryKey(),
  title: model.text(),
  content: model.text().nullable(),
  published: model.boolean().default(false)
})

export default Post

API Route Example

// src/api/posts/route.ts
import { MedusaRequest, MedusaResponse } from "@medusajs/framework/http"

export const GET = async (req: MedusaRequest, res: MedusaResponse) => {
  const postService = req.scope.resolve("postService")
  const posts = await postService.listPosts()

  res.json({ posts })
}

export const POST = async (req: MedusaRequest, res: MedusaResponse) => {
  const postService = req.scope.resolve("postService")
  const post = await postService.createPost(req.body)

  res.json({ post })
}

Scheduled Job Example

// src/jobs/sync-inventory.ts
import { MedusaContainer } from "@medusajs/framework/types"

export default async function syncInventoryJob(container: MedusaContainer) {
  const inventoryService = container.resolve("inventoryService")
  await inventoryService.syncWithExternalProvider()
}

export const config = {
  name: "sync-inventory",
  schedule: "0 */6 * * *" // Every 6 hours
}

Best Practices

1. Project Setup

  • Use MedusaJS CLI for project initialization
  • Follow TypeScript best practices
  • Implement proper error handling
  • Set up comprehensive testing

2. Module Design

  • Keep modules focused on single domains
  • Use clear naming conventions
  • Implement proper validation
  • Document module interfaces

3. API Design

  • Follow RESTful conventions
  • Use proper HTTP status codes
  • Implement pagination for list endpoints
  • Validate input data thoroughly

4. Performance Optimization

  • Use database indexes appropriately
  • Implement caching strategies
  • Optimize database queries
  • Handle large datasets efficiently

5. Integration Patterns

  • Use environment variables for configuration
  • Implement retry mechanisms for external calls
  • Handle rate limiting gracefully
  • Log integration activities properly

Common Tasks

Creating a New Module

  1. Create module directory structure
  2. Define data models with proper relationships
  3. Implement service layer with business logic
  4. Generate and run database migrations
  5. Create API routes for module operations
  6. Add comprehensive tests

Setting Up Third-Party Integration

  1. Install necessary dependencies
  2. Configure environment variables
  3. Create service for external API communication
  4. Implement webhook handlers if needed
  5. Add error handling and logging
  6. Test integration thoroughly

Implementing Custom Workflow

  1. Identify business process steps
  2. Create necessary data models
  3. Implement workflow orchestration
  4. Add event handlers for state changes
  5. Create monitoring and alerting
  6. Document workflow behavior

Troubleshooting

Common Issues

  • Migration Failures: Check model definitions and database constraints
  • Service Resolution: Verify module exports and dependency injection
  • API Errors: Validate request/response formats and authentication
  • Performance Issues: Analyze database queries and implement caching

Debugging Strategies

  • Use MedusaJS debugging tools
  • Check application logs for errors
  • Verify database schema matches models
  • Test API endpoints with proper headers
  • Monitor external service responses

Code Templates

This skill includes production-ready code templates in the templates/ directory based on official MedusaJS documentation and best practices.

Available Templates

module-complete.ts

Complete custom module structure with:

  • Multiple data models with various property types
  • One-to-many and many-to-many relationships
  • Main service with custom methods
  • Additional services with dependency injection

Use case: Creating custom modules (Blog, Brand, Restaurant, etc.)

api-route-complete.ts

Complete REST API route with:

  • GET, POST, PUT, DELETE handlers
  • Zod validation schemas
  • Authentication and validation middlewares
  • Error handling and logging
  • Query integration for related data

Use case: Exposing module functionality via API endpoints

workflow-complete.ts

Complete workflow with:

  • Multiple steps with compensation functions
  • Data transformation between steps
  • Conditional execution
  • Integration with Medusa modules

Use case: Complex business logic with rollback requirements

subscriber-complete.ts

Event subscriber patterns:

  • Basic event handling
  • Workflow execution in subscribers
  • Multi-event subscribers
  • Retry logic and error handling

Use case: Responding to Medusa events (order.placed, product.created, etc.)

module-link.ts

Module link patterns:

  • Basic links between modules
  • List links (one-to-many)
  • Custom columns in link tables
  • Creating, dismissing, and querying links

Use case: Creating relationships between different modules

scheduled-job.ts

Scheduled job patterns:

  • Basic scheduled tasks
  • Batch processing
  • External API integration
  • Common cron patterns

Use case: Recurring automated tasks (sync, cleanup, reports)

Template Usage Example

# Copy template to your project
cp templates/module-complete.ts src/modules/brand/

# Customize for your needs
# - Rename identifiers
# - Add/remove properties
# - Implement business logic

# Generate and run migrations
./scripts/generate-migration.sh brand
./scripts/run-migrations.sh

Common Template Combinations

E-commerce Extension:

  1. module-complete.ts → Create custom module
  2. module-link.ts → Link to Product module
  3. api-route-complete.ts → Create API endpoints
  4. workflow-complete.ts → Implement business logic
  5. subscriber-complete.ts → Handle events

Data Synchronization:

  1. workflow-complete.ts → Sync workflow
  2. scheduled-job.ts → Run periodically
  3. subscriber-complete.ts → Trigger on events

See templates/README.md for detailed documentation, best practices, and more examples.

Helper Scripts

This skill includes a collection of helper scripts in the scripts/ directory to streamline common MedusaJS development tasks.

Database Management Scripts

db-setup.sh

Creates a database, runs migrations, and syncs links in one command.

./scripts/db-setup.sh [database-name]

Example:

./scripts/db-setup.sh medusa-store

generate-migration.sh

Generates migration files for specified modules.

./scripts/generate-migration.sh <module-name> [additional-modules...]

Examples:

./scripts/generate-migration.sh blog
./scripts/generate-migration.sh blog product-custom

run-migrations.sh

Runs all pending migrations with optional flags to skip links or data migrations.

./scripts/run-migrations.sh [--skip-links] [--skip-data]

Examples:

./scripts/run-migrations.sh
./scripts/run-migrations.sh --skip-links

rollback-migration.sh

Reverts the last migration for specified modules with safety confirmation.

./scripts/rollback-migration.sh <module-name> [additional-modules...]

Development & Build Scripts

dev-server.sh

Starts the Medusa application in development mode with hot reloading.

./scripts/dev-server.sh [--host HOST] [--port PORT]

Examples:

./scripts/dev-server.sh
./scripts/dev-server.sh --host 0.0.0.0 --port 9001

build-production.sh

Creates a production-ready build of the Medusa application or admin only.

./scripts/build-production.sh [--admin-only]

Examples:

./scripts/build-production.sh
./scripts/build-production.sh --admin-only

start-production.sh

Starts the built Medusa application in production mode.

./scripts/start-production.sh

predeploy.sh

Runs migrations and syncs links before deployment (for CI/CD pipelines).

./scripts/predeploy.sh

Testing Scripts

setup-testing.sh

Installs and configures Jest and Medusa testing tools, creates test directories and configuration files.

./scripts/setup-testing.sh

run-tests.sh

Runs integration and unit tests with options for different test types.

./scripts/run-tests.sh [http|modules|unit|all]

Examples:

./scripts/run-tests.sh all
./scripts/run-tests.sh http
./scripts/run-tests.sh modules
./scripts/run-tests.sh unit

Scaffolding Scripts

create-module.sh

Creates the basic structure for a new custom module with service and model directories.

./scripts/create-module.sh <module-name>

Example:

./scripts/create-module.sh blog

Generated Structure:

src/modules/<module-name>/
├── index.ts
├── service.ts
├── models/
└── __tests__/

create-api-route.sh

Creates a new API route with basic CRUD operations (GET, POST, PUT, DELETE).

./scripts/create-api-route.sh <route-name>

Example:

./scripts/create-api-route.sh posts

Generated Endpoints:

  • GET /api/<route-name> - List all items
  • POST /api/<route-name> - Create new item
  • GET /api/<route-name>/:id - Get single item
  • PUT /api/<route-name>/:id - Update item
  • DELETE /api/<route-name>/:id - Delete item

create-scheduled-job.sh

Creates a new scheduled job with cron configuration template.

./scripts/create-scheduled-job.sh <job-name>

Example:

./scripts/create-scheduled-job.sh sync-inventory

Common Cron Patterns:

  • "0 0 * * *" - Daily at midnight
  • "0 */6 * * *" - Every 6 hours
  • "*/15 * * * *" - Every 15 minutes
  • "0 9 * * 1" - Every Monday at 9 AM

Plugin Development Scripts

plugin-develop.sh

Starts a development server for a plugin with auto-reload (run from plugin directory).

./scripts/plugin-develop.sh

plugin-build.sh

Builds a plugin for publishing to NPM (run from plugin directory).

./scripts/plugin-build.sh

Common Workflows

Creating a New Feature Module

# 1. Create the module structure
./scripts/create-module.sh my-feature

# 2. Add data models in src/modules/my-feature/models/

# 3. Update service.ts with your models

# 4. Generate migrations
./scripts/generate-migration.sh my-feature

# 5. Run migrations
./scripts/run-migrations.sh

# 6. Create API routes
./scripts/create-api-route.sh my-feature

# 7. Write tests
# Add tests in src/modules/my-feature/__tests__/

# 8. Run tests
./scripts/run-tests.sh modules

Setting Up a New Project

# 1. Create new project
npx create-medusa-app@latest my-store

# 2. Setup database
./scripts/db-setup.sh my-store-db

# 3. Setup testing environment
./scripts/setup-testing.sh

# 4. Start development server
./scripts/dev-server.sh

Deployment Workflow

# 1. Run tests
./scripts/run-tests.sh all

# 2. Build for production
./scripts/build-production.sh

# 3. In CI/CD pipeline, run predeploy
./scripts/predeploy.sh

# 4. Start production server
./scripts/start-production.sh

Resources

  • Official MedusaJS Documentation
  • Community Discord and Forums
  • GitHub Repository and Examples
  • Plugin Marketplace
  • Developer Tools and CLI Commands

This skill enables comprehensive MedusaJS development with focus on maintainable, scalable e-commerce solutions.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.19%
按下载量换算81

Gemini CLI

21.37%
按下载量换算59

windsurf

18.33%
按下载量换算51

Antigravity

14.42%
按下载量换算40

OpenCode

8.77%
按下载量换算24

Codex

3.28%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills