Help us improve
Share bugs, ideas, or general feedback.
From magento2-commerce
Sets up Magento 2 Open Source: verifies system reqs (PHP/MySQL/OpenSearch/Redis), installs via Composer, configures services, runs installer, enables dev mode/cron. For new projects or dev envs.
npx claudepluginhub orcaqubits/agentic-commerce-skills-plugins --plugin magento2-commerceHow this skill is triggered — by the user, by Claude, or both
Slash command
/magento2-commerce:magento-setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. **Fetch system requirements**: Fetch `https://experienceleague.adobe.com/en/docs/commerce-operations/installation-guide/system-requirements` for current PHP, MySQL, OpenSearch, Redis, and Varnish versions
Deploys Magento 2 to production: modes, static content, DI compilation, CLI commands, zero-downtime strategies (blue-green, symlinks), CI/CD pipelines.
Sets up Medusa v2 development environment: CLI scaffolding with create-medusa-app, PostgreSQL/Redis prerequisites, medusa-config.ts configuration, directory structure, environment variables. Use when starting a new Medusa project.
Sets up Saleor dev environment: saleor-platform Docker Compose stack, CLI tooling, PostgreSQL/Redis prereqs, manage.py commands, env vars, project structure. For new Saleor projects.
Share bugs, ideas, or general feedback.
https://experienceleague.adobe.com/en/docs/commerce-operations/installation-guide/system-requirements for current PHP, MySQL, OpenSearch, Redis, and Varnish versionssite:experienceleague.adobe.com commerce installation guide for step-by-step setupmagento open source latest version release for the current GA releaseGuides through complete Magento 2 environment setup:
composer create-project from repo.magento.combin/magento setup:install with all required parametersmemory_limit >= 2GB, and extensions: bcmath, ctype, curl, dom, gd, hash, iconv, intl, mbstring, openssl, pdo_mysql, simplexml, soap, spl, xsl, zip, sodium, sockets.
# 1. Create project
composer create-project --repository-url=https://repo.magento.com/ \
magento/project-community-edition <install-dir>
# 2. Install (with all services configured)
bin/magento setup:install \
--base-url=<url> \
--db-host=<host> --db-name=<name> --db-user=<user> --db-password=<pass> \
--search-engine=opensearch --opensearch-host=<host> --opensearch-port=9200 \
--session-save=redis --session-save-redis-host=<host> \
--cache-backend=redis --cache-backend-redis-server=<host> \
--admin-firstname=<first> --admin-lastname=<last> \
--admin-email=<email> --admin-user=<user> --admin-password=<pass>
# 3. Post-install
bin/magento deploy:mode:set developer
bin/magento cron:install
bin/magento setup:upgrade
bin/magento cache:flush
Fetch the installation guide for exact CLI flags, service configuration, and file permission setup before proceeding.