Magento
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.
Before you start
Section titled “Before you start”PHP
Composer
Licence
Install every module in one command
Section titled “Install every module in one command”-
Register the AgenticEcom repository (once per store):
Terminal window composer config repositories.agenticecom composer https://repo.agenticecom.net -
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 -
Require the suite metapackage — this pulls in every module you’re entitled to:
Terminal window composer require agenticecom/suite -
Apply it in Magento:
Terminal window php bin/magento setup:upgradephp bin/magento setup:di:compilephp bin/magento cache:flush
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:flushPrefer to add modules individually? Every module’s guide has its own composer require snippet —
for example composer require agenticecom/module-smtp. Your one licence key works for all of them.
Keep it up to date
Section titled “Keep it up to date”New modules and updates ship through the same repository. To pull the latest versions your licence allows:
composer update "agenticecom/*"php bin/magento setup:upgrade && php bin/magento setup:di:compile && php bin/magento cache:flushThe Astro storefront
Section titled “The Astro storefront”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.