AgentStack
SKILL verified MIT Self-run

Building Packages

skill-macareuxdigital-concretecms-skills-building-packages · by MacareuxDigital

Create and manage Concrete CMS packages. Use this skill when the user asks to create a custom package or manage existing packages.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-macareuxdigital-concretecms-skills-building-packages

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Building Packages? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Initialize the Package Directory:

Create a new directory under packages/ with a lowercase, underscore-separated name (e.g., packages/my_custom_package).

  1. 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)
  1. 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)
  1. Add Custom Functionality:
  • Extend Core Classes: [Extending Core Classes Reference](references/extending_core.md)
  • Custom Block Types: Use the building-blocktypes skill.
  • Single Pages: Use the building-singlepages skill.
  • Routes and Services: [Routing and Service Providers Reference](references/routing_services.md)
  1. Install the Package:

Use the Concrete CMS Dashboard or CLI (concrete/bin/concrete c5:package:install my_custom_package) to install your package.

  1. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.