Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

magento-upgrade-specialistmagento 升级专家

Agent Skill

magento-upgrade-specialist 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,746

周安装

75

GitHub Stars

9

下载量

612
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/maxnorm/magento2-agent-skills --skill magento-upgrade-specialist

简介

magento-upgrade-specialist 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 该技能适用于 Magento 2 版本升级相关的信息检索与方案筛选需求。

SKILL.md

Magento 2 Upgrade Specialist

Expert specialist in ensuring smooth, risk-free transitions between Magento versions while maintaining business continuity and preserving custom functionality.

When to Use

  • Upgrading Magento 2 versions (minor or major)
  • Migrating from Magento 1.x to Magento 2.x
  • Planning upgrade strategies and timelines
  • Assessing extension compatibility
  • Handling breaking changes
  • Post-upgrade optimization

Upgrade Process Framework

1. Pre-Upgrade Assessment

  • Current System Audit: Comprehensive analysis of existing Magento installation
  • Custom Code Review: Evaluate all custom modules, themes, and modifications
  • Extension Compatibility: Check third-party extension compatibility with target version
  • Data Integrity Check: Verify database consistency and identify potential issues
  • Performance Baseline: Establish current performance metrics for comparison

2. Compatibility Analysis

  • Static Code Analysis: Use automated tools to identify compatibility issues
  • API Change Review: Analyze breaking changes in core APIs and interfaces
  • Deprecated Feature Assessment: Identify and plan replacement for deprecated functionality
  • Database Schema Changes: Review required database modifications
  • Configuration Changes: Identify system configuration updates needed

3. Migration Planning

  • Upgrade Path Strategy: Choose optimal upgrade path (direct vs. incremental)
  • Environment Setup: Plan development, staging, and production upgrade environments
  • Downtime Minimization: Develop strategies to reduce production downtime
  • Data Migration Strategy: Plan for large dataset migrations and optimizations
  • Contingency Planning: Prepare for various failure scenarios and recovery procedures

4. Implementation Execution

  • Code Migration: Update custom code to work with target Magento version
  • Database Upgrade: Execute database schema and data migrations
  • Configuration Migration: Transfer and update system configurations
  • Extension Updates: Upgrade or replace third-party extensions
  • Testing Validation: Comprehensive testing of all upgraded functionality

Upgrade Categories

Minor Version Upgrades (2.4.x to 2.4.y)

  • Security Patches: Apply critical security updates
  • Bug Fixes: Resolve known issues and stability improvements
  • Feature Enhancements: Leverage minor feature additions
  • Compatibility Updates: Maintain extension and custom code compatibility
  • Performance Improvements: Benefit from performance optimizations

Major Version Upgrades (2.3.x to 2.4.x)

  • PHP Version Updates: Handle PHP version compatibility requirements
  • Composer Dependencies: Update package dependencies and constraints
  • API Changes: Adapt to breaking changes in core APIs
  • New Architecture: Leverage new architectural improvements
  • Migration Tools: Utilize official migration utilities and scripts

Legacy Migrations (Magento 1.x to 2.x)

  • Data Migration: Comprehensive data structure transformation
  • Theme Migration: Complete frontend redesign and implementation
  • Extension Replacement: Find and implement Magento 2 equivalents
  • Custom Code Rewrite: Rebuild custom functionality for Magento 2
  • Training Requirements: Team training on Magento 2 architecture

Upgrade Commands

Pre-Upgrade

# Check current version
bin/magento --version

# Check database status
bin/magento setup:db:status

# Backup database
mysqldump -u user -p database > backup.sql

# Check extension compatibility
composer show | grep magento

During Upgrade

# Update composer dependencies
composer require magento/product-community-edition:2.4.x --no-update
composer update

# Run upgrade
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy -f
bin/magento cache:flush
bin/magento indexer:reindex

Post-Upgrade

# Verify installation
bin/magento setup:db:status
bin/magento setup:upgrade

# Test functionality
# Run automated tests
# Manual testing checklist

Common Upgrade Challenges

Breaking Changes

  • API Changes: Update code using deprecated APIs
  • Class Changes: Update class references and namespaces
  • Configuration Changes: Update XML configuration files
  • Database Schema: Handle schema changes and migrations
  • Frontend Changes: Update templates and layouts

Extension Compatibility

  • Version Conflicts: Resolve composer dependency conflicts
  • API Compatibility: Update extensions using deprecated APIs
  • Replacement Extensions: Find Magento 2 equivalents for incompatible extensions
  • Custom Patches: Create patches for minor compatibility issues

Data Migration

  • Schema Changes: Handle database structure changes
  • Data Transformation: Transform data to new formats
  • Custom Attributes: Migrate custom EAV attributes
  • Media Files: Migrate images and media files

Best Practices

Planning

  • Timeline Planning: Create realistic upgrade schedules with proper testing phases
  • Risk Analysis: Identify potential breaking changes and their business impact
  • Resource Planning: Estimate effort, downtime, and team requirements
  • Rollback Strategy: Plan comprehensive rollback procedures

Execution

  • Environment Testing: Test thoroughly in development and staging
  • Incremental Approach: Consider incremental upgrades for major version changes
  • Documentation: Document all changes and customizations
  • Communication: Keep stakeholders informed throughout the process

Post-Upgrade

  • Performance Validation: Ensure performance meets or exceeds baseline
  • Functionality Testing: Comprehensive testing of all features
  • Security Review: Verify security improvements are properly implemented
  • Monitoring: Monitor system health and performance post-upgrade

Testing Strategy

  • Unit Tests: Run and update unit tests
  • Integration Tests: Test module integration with core
  • Functional Tests: End-to-end test scenarios
  • Performance Tests: Validate performance under load
  • Security Tests: Verify security compliance

References

Focus on smooth, risk-free upgrades that maintain business continuity while leveraging new Magento capabilities.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.42%
按下载量换算217

Claude

28.81%
按下载量换算176

Cursor

19.34%
按下载量换算118

Gemini CLI

10.39%
按下载量换算64

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills