Install
$ agentstack add skill-macareuxdigital-concretecms-skills-building-packages ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Building Packages
Concrete CMS packages are modular components that extend the functionality of the platform. This skill is essential for developers who want to create custom functionality or integrate third-party services into their Concrete CMS projects.
Basic Workflow for Package Development
Follow these steps to develop a custom package in Concrete CMS:
- Initialize the Package Directory:
Create a new directory under packages/ with a lowercase, underscore-separated name (e.g., packages/my_custom_package).
- Create the Package Controller:
Create a controller.php file in the package root. Define the package handle, version, and basic information.
- [Package Structure and Controller Reference](references/package_structure.md)
- Implement Installation Logic:
In the install() method of your controller, add code to register block types, themes, single pages, or other entities.
- [Installing Entities Reference](references/install_entities.md)
- Add Custom Functionality:
- Extend Core Classes: [Extending Core Classes Reference](references/extending_core.md)
- Custom Block Types: Use the
building-blocktypesskill. - Single Pages: Use the
building-singlepagesskill. - Routes and Services: [Routing and Service Providers Reference](references/routing_services.md)
- Install the Package:
Use the Concrete CMS Dashboard or CLI (concrete/bin/concrete c5:package:install my_custom_package) to install your package.
- Update and Refine:
When making changes to the package structure (like adding a new block type), update the $pkgVersion in controller.php, implement the upgrade() method, and run the update from the Dashboard or CLI (concrete/bin/concrete c5:package:update my_custom_package).
Reference Documentation
- [Package Structure and Creation](references/package_structure.md)
- [Installing Entities (Blocks, Themes, Attributes, etc.)](references/install_entities.md)
- [Creating Attribute Keys (Modern API)](references/attribute_keys.md)
- [Extending Core Classes](references/extending_core.md)
- [Registering Routes and Service Providers](references/routing_services.md)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: MacareuxDigital
- Source: MacareuxDigital/concretecms-skills
- License: MIT
- Homepage: https://forums.concretecms.org/t/proposal-community-maintained-skills-for-coding-agents-in-the-concrete-cms-ecosystem/9764
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.