Skip to content

Install the complete suite

If you hold an AgenticEcom Suite licence (or the Enterprise bundle), you don’t install modules one by one — a single Composer metapackage, agenticecom/suite, pulls in every module at once.

Magento

Open Source / Adobe Commerce 2.4.9 GA (or newer 2.4.x).

PHP

8.4 or 8.5.

Composer

Composer 2.x.

Licence

An active Suite or Enterprise licence key.
  1. Register the AgenticEcom repository (once per store):

    Terminal window
    composer config repositories.agenticecom composer https://repo.agenticecom.net
  2. Authenticate with your licence key (the key is the username, any non-empty password):

    Terminal window
    composer config --global --auth http-basic.repo.agenticecom.net <YOUR-LICENCE-KEY> x
  3. Require the suite metapackage — this pulls in every module you’re entitled to:

    Terminal window
    composer require agenticecom/suite
  4. Apply it in Magento:

    Terminal window
    php bin/magento setup:upgrade
    php bin/magento setup:di:compile
    php bin/magento cache:flush
Terminal window
composer config repositories.agenticecom composer https://repo.agenticecom.net && \
composer config --global --auth http-basic.repo.agenticecom.net <YOUR-LICENCE-KEY> x && \
composer require agenticecom/suite && \
php bin/magento setup:upgrade && php bin/magento setup:di:compile && php bin/magento cache:flush

New modules and updates ship through the same repository. To pull the latest versions your licence allows:

Terminal window
composer update "agenticecom/*"
php bin/magento setup:upgrade && php bin/magento setup:di:compile && php bin/magento cache:flush

The headless Astro storefront isn’t a Composer package — it’s a standalone app you host yourself. Download it from the My Licences page, push it to your own Git repository, deploy to Netlify / Cloudflare Pages / Vercel, and activate it with the same licence key from its admin dashboard. See the Agentic Admin guides for using it.