Pimcore Expert Pro
Enterprise-grade agent for expert, pimcore, development, assistant. Includes structured workflows, validation checks, and reusable patterns for expert advisors.
Pimcore Expert Pro
Your specialized agent for building enterprise Digital Experience Platforms with Pimcore ā covering CMS, DAM, PIM, e-commerce, and data management with Symfony-based architecture.
When to Use This Agent
Choose Pimcore Expert Pro when:
- Building Pimcore-based CMS, PIM, or DAM solutions
- Implementing Pimcore data objects, documents, and assets
- Customizing Pimcore with Symfony bundles and event listeners
- Designing Pimcore data models for product information management
- Integrating Pimcore with external systems (ERPs, CRMs, e-commerce platforms)
Consider alternatives when:
- You need general Symfony development ā use a Symfony agent
- You need WordPress or Drupal ā use a CMS-specific agent
- You need standalone e-commerce ā use a Shopify or WooCommerce agent
Quick Start
# .claude/agents/pimcore-expert.yml name: Pimcore Expert Pro model: claude-sonnet tools: - Read - Write - Edit - Bash - Glob - Grep description: Pimcore DXP specialist for CMS, PIM, DAM, data modeling, and Symfony-based enterprise solutions
Example invocation:
claude "Design a Pimcore PIM data model for a B2B product catalog with hierarchical categories, multi-language attributes, variant products, and automated data quality scoring"
Core Concepts
Pimcore Architecture
| Layer | Component | Purpose |
|---|---|---|
| Content | Documents | Web pages, snippets, links, emails |
| Data | Data Objects | Structured business data (PIM, MDM) |
| Assets | Assets | Files, images, videos (DAM) |
| Logic | Symfony Bundles | Custom business logic |
| Integration | Data Hub, REST API | External system connectivity |
| Presentation | Twig Templates | Frontend rendering |
Pimcore Data Object Model
DataObject\Product
āāā Attributes
ā āāā name (Localized Input)
ā āāā description (Localized Wysiwyg)
ā āāā sku (Input, unique, indexed)
ā āāā price (Numeric)
ā āāā category (Many-to-Many Relation ā Category)
ā āāā images (Image Gallery)
ā āāā specifications (Structured Table)
āāā Classification Store
ā āāā Dynamic attributes by category
āāā Variants (Object Brick)
ā āāā Color, size, material combinations
āāā Workflow
āāā Draft ā Review ā Published
Configuration
| Parameter | Description | Default |
|---|---|---|
pimcore_version | Pimcore version | 11 |
php_version | PHP runtime version | 8.2 |
data_model_focus | Primary data model (pim, cms, dam, combined) | combined |
api_type | API integration (datahub-graphql, rest, both) | datahub-graphql |
deployment | Deployment target (docker, kubernetes, managed) | docker |
Best Practices
-
Design your data object class hierarchy before building anything. Pimcore's data objects are the foundation of PIM and CMS. Map out class inheritance, field types, relation types, and classification stores on paper first. Restructuring data objects after data is loaded is expensive.
-
Use Classification Stores for dynamic attributes. When products in different categories need different attributes (electronics have voltage, clothing has fabric), use Classification Stores instead of putting all fields on one class. This keeps the data model clean and scalable.
-
Implement data quality workflows with Pimcore's workflow engine. Define quality gates (required fields, image resolution, translation completeness) and workflow states (draft, review, published). This prevents incomplete data from reaching production.
-
Use Pimcore's Data Hub for GraphQL APIs instead of custom endpoints. Data Hub provides auto-generated GraphQL schemas from your data objects, with built-in authentication, pagination, and filtering. Custom REST endpoints should supplement Data Hub, not replace it.
-
Leverage Symfony events for business logic, not Pimcore hooks. While Pimcore maintains some legacy hooks, Symfony event listeners are the standard pattern. Use
preUpdate,postUpdateevents on data objects for validation, enrichment, and synchronization.
Common Issues
Data object class definitions conflict between environments. Pimcore stores class definitions as PHP files and database schemas. When multiple developers modify the same class, merge conflicts occur. Use a single development branch for class changes and apply them sequentially.
Asset processing (thumbnails, metadata extraction) is slow. Large media libraries with thousands of assets create processing bottlenecks. Configure background processing for thumbnails, use Redis for caching, and offload heavy processing to queue workers.
Multi-language content management becomes unwieldy with many locales. Supporting 20+ languages creates complex editing interfaces and translation workflows. Use Pimcore's localized fields selectively (only on fields that actually need translation), and integrate with translation management systems for automated translation workflows.
Reviews
No reviews yet. Be the first to review this template!
Similar Templates
API Endpoint Builder
Agent that scaffolds complete REST API endpoints with controller, service, route, types, and tests. Supports Express, Fastify, and NestJS.
Documentation Auto-Generator
Agent that reads your codebase and generates comprehensive documentation including API docs, architecture guides, and setup instructions.
Ai Ethics Advisor Partner
All-in-one agent covering ethics, responsible, development, specialist. Includes structured workflows, validation checks, and reusable patterns for ai specialists.