20/08/2026
🧩 You saw the agent create a full Spryker product from one plain sentence, live on the storefront. The interesting part is not what it does. It is how it is built.
Here is what is actually running, and why it all stays in PHP:
🔹 It is not a chatbot bolted onto Spryker. The agent runs inside the back office, in the same stack that already runs the store. You enable it from the admin config and it is there. No separate AI service to host and keep in sync.
🔹 Structured extraction first. One sentence becomes concrete fields: product name, SKU, description, variants, price, stock per unit, category, tax set. The model reads intent, the framework turns it into a typed plan the back office can act on.
🔹 It acts through tools, not prompts. The agent calls real back office functions: list_categories, list_tax_sets, set_product_stock, assign_product_to_category, approve_product. Each is a defined tool with a defined result, not text it hopes is right.
🔹 Missing data does not break it. When the category is missing, a rigid script stops with an error. The agent notices, asks, searches the store for the closest existing category, and binds the product to it. That is a workflow with state, not a single call.
🔹 A human stays in the loop by design. Before it writes anything, it shows the exact tools it will call and a summary of the product. Nothing is created until you approve.
🔍 This is the line between a framework and a wrapper. You can follow every step: the plan, the tool calls, the state between them. When something looks off, you can see why. An agent you can inspect is one you can actually run in a real back office.
And all of it stays in PHP, inside Spryker. No rewrite, no separate service, no leaving your stack. What scales is not typing product forms by hand, it is reviewing one plan per product while the agent does the rest.
Full demo built by Hidran Arias, running inside a Spryker back office on Neuron.
Neuron, the framework that brought AI agents to PHP.
▶️ Full demo by Hidran Arias: https://www.youtube.com/watch?v=HIMS4LGxCoQ
I walk through the full flow: enabling the product creation agent i...