Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/dpaguba/shopware-skill/shopware6npx skills add dpaguba/shopware-skill --skill shopware6git clone --depth 1 https://github.com/dpaguba/shopware-skillWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/dpaguba/shopware-skill/shopware6)<a href="https://agentmods.dev/skills/dpaguba/shopware-skill/shopware6"><img src="https://agentmods.dev/badge/skills/dpaguba/shopware-skill/shopware6.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00153 | $0.02925 |
| Opus 5 | $0.00077 | $0.01463 |
| Sonnet 5 | $0.00031 | $0.00585 |
| Haiku 4.5 | $0.00015 | $0.00293 |
Grade A, and why
shopware6 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 252 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Shopware 6 Development
Core Architecture
Shopware 6 is a PHP/Symfony platform. Clarify which layer is being targeted before generating code:
| Layer | Tech | Where |
|---|---|---|
| Core / PHP | PHP 8.2+, Symfony 7.4 (SW 6.7) / Symfony 7.0 (SW 6.6) | src/ — Services, DAL, Events |
| Storefront | Twig 3, SCSS, Vanilla JS, Vite dev server (6.7.11+) | src/Resources/views/storefront/ |
| Admin | Vue 3, Pinia, Meteor components (mt-*), Vite build |
src/Resources/app/administration/ |
| App System | manifest.xml (schema 3.0 in 6.7), App Scripts | External server or Twig scripts (no PHP needed) |
Plugin vs App System: Use Plugin for self-hosted installs needing direct PHP/DB access. Use App System for SaaS/multi-tenant or when targeting the Shopware Store.
Which version is this?
Ask or infer the target version before generating code. The current line is 6.7.13.x; 6.8 is planned for 2027. 6.7 broke a lot of plugin-facing API, so code that is correct for 6.6 is often wrong for 6.7:
| Topic | SW 6.6 | SW 6.7 |
|---|---|---|
| Payment handler | Synchronous/AsynchronousPaymentHandlerInterface |
AbstractPaymentHandler |
| Admin components | sw-button, sw-card, sw-text-field |
mt-button, mt-card, mt-text-field |
| Admin state | Vuex Shopware.State (deprecated) |
Pinia Shopware.Store only |
| Admin build | Webpack | Vite |
EntityExtension |
getDefinitionClass() |
plus abstract getEntityName() |
| Plugin custom entities | entities.xml |
removed, use EntityDefinition |
IdsCollection |
Shopware\Core\Framework\Test\ |
Shopware\Core\Test\Stub\Framework\ |
Full list in references/migration-6.7.md. When the version is unknown, target 6.7 and mention what differs on 6.6.
Plugin Structure
PluginName/
├── composer.json
├── src/
│ ├── PluginName.php # Bootstrap class
│ ├── Resources/
│ │ ├── config/
│ │ │ └── services.xml # Symfony DI container
│ │ ├── views/
│ │ │ └── storefront/ # Twig template overrides
│ │ └── app/
│ │ └── administration/ # Vue.js admin extensions
│ └── Migration/ # Database migrations
└── tests/
What ships with it
33 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/custom-entity/composer.json 560 B
- examples/custom-entity/README.md 2.8 KB
- examples/custom-entity/src/Core/Content/WishlistItem/WishlistItemCollection.php 383 B
- examples/custom-entity/src/Core/Content/WishlistItem/WishlistItemDefinition.php 2.2 KB
- examples/custom-entity/src/Core/Content/WishlistItem/WishlistItemEntity.php 1.3 KB
- examples/custom-entity/src/Migration/Migration1746000000CreateWishlistItemTable.php 1.6 KB
- examples/custom-entity/src/Resources/config/services.xml 499 B
- examples/custom-entity/src/WishlistPlugin.php 755 B
- examples/storefront-subscriber/composer.json 603 B
- examples/storefront-subscriber/README.md 2.3 KB
- examples/storefront-subscriber/src/MyPlugin.php 135 B
- examples/storefront-subscriber/src/Resources/config/services.xml 740 B
- examples/storefront-subscriber/src/Resources/snippet/de_DE/messages.de-DE.json 111 B
- examples/storefront-subscriber/src/Resources/snippet/en_GB/messages.en-GB.json 110 B
- examples/storefront-subscriber/src/Resources/views/storefront/page/product-detail/index.html.twig 1.2 KB
- examples/storefront-subscriber/src/Service/RelatedArticlesService.php 1.3 KB
- examples/storefront-subscriber/src/Subscriber/ProductPageSubscriber.php 1006 B
- references/admin.md 16 KB
- references/advanced.md 18 KB
- references/api.md 15 KB
- references/app-system.md 12 KB
- references/cart.md 11 KB
- references/dal.md 21 KB
- references/devops.md 10 KB
- references/integrations.md 19 KB
- references/migration-6.7.md 7.9 KB
- references/performance.md 11 KB
- references/plugin-structure.md 23 KB
- references/security.md 14 KB
- references/seo-mail.md 17 KB
- references/storefront.md 9.4 KB
- references/testing.md 15 KB
- references/themes.md 7.8 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 252 lines · 153 tokens per session scan A 0dac04c146e2
shopware6 is a skill published in the GitHub repository dpaguba/shopware-skill (2 stars, last pushed 9d ago), licensed MIT. It adds 153 tokens to every session and 2,925 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
ecom-details-image
生成电商商品视觉方案:主图概念、场景图、详情页视觉方向和 AI 生图 Prompt。 当用户说"商品主图""详情页视觉""电商配图方案""商品场景图""带货视觉""产品视觉方向""详情页设计"时使用。 本 SKILL 出视觉方案+生图 Prompt(策划);实际抠白底图用 remove-bg,实际生成图片用 ai-image-gen。.
skill-campaign-planner
活动/营销策划(国内本地化):为节日营销、电商大促(618/双11/年货节)、新品发布、活动造势 制定完整方案——目标拆解、营销节奏(预热-爆发-返场)、多平台内容矩阵、互动玩法、KOL 分层、 预算分配、风险合规、效果指标。当用户说"营销方案""活动策划""大促方案""618/双11 怎么做" "节日营销""新品发布方案""造势""campaign""营销节奏""怎么搞活动"时使用。.
xml-config-migrating
Use this skill when a Shopware plugin or app-server extension needs its XML configuration migrated to PHP — phrases like "migrate services.xml", "convert my plugin config to PHP", "xml to php migration", "fix the XML deprecation", "prepare my plugin for Shopware 6.8 / Symfony 8", or when a deprecation like "The XML…
dev-environment-bootstrapping
Use this skill when the user asks to bootstrap, set up, create, or initialize a Shopware development environment from scratch — phrases like "set up a Shopware dev environment", "clone and install Shopware", "initialize a Shopware plugin project", "bootstrap Shopware and a new plugin called X", "get a fresh Shopware…
sapcc-skill
SAP Commerce Cloud skill for querying, administrating and operating a SAP CC (Hybris / CCv2) instance, including Cloud Portal DevOps operations. Use this skill when the user asks to query, inspect, modify or administrate SAP Commerce Cloud data (products, orders, customers, cronjobs, business logic) via HAC, or to…
kinde-billing
Kinde Billing: models organization or user plan groups, features, and prices; connects test Stripe and publishes pricing; integrates plan selection, portal, and entitlements; records metered usage or handles billing webhooks and workflows; and troubleshoots subscriptions, trials, or tax. Use for Kinde billing work or…