atomic-framework-plugins

Guide Atomic Framework plugin lifecycle, registration, and helper APIs.

9|1|Updated Apr 29, 2026
One-click install
npx skills add https://github.com/MADEVAL/Atomic-Framework-Skills --skill atomic-framework-plugins
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: atomic-framework-plugins
Source: https://github.com/MADEVAL/Atomic-Framework-Skills/tree/main/atomic-framework-plugins
Command: npx skills add https://github.com/MADEVAL/Atomic-Framework-Skills --skill atomic-framework-plugins

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you build, register, activate, and maintain Atomic Framework plugins without guessing how the plugin lifecycle, bootstrap order, or integration points work.

Core Features & Use Cases

  • Plugin lifecycle management: Handle register, boot, activate, and deactivate flows for first-party and custom plugins.
  • PluginManager workflows: Use helper functions and bootstrap ordering to load core plugins and user plugins safely.
  • Built-in integrations: Work with Monopay, WordPress, WooCommerce, RSS Reader, GlobusStudio, Google, and GoogleAnalytics.
  • Real-world use case: Add a newsletter plugin with routes and migrations, then connect it to existing Atomic hooks and services.

Quick Start

Use this skill to explain how to create, register, and boot an Atomic Framework plugin with the correct lifecycle and helper patterns.

Frequently Asked Questions about atomic-framework-plugins

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How does plugin lifecycle management work in the Atomic Framework?

Plugin lifecycle management in the Atomic Framework controls the register, boot, activate, and deactivate flows for first-party and custom plugins. It uses dependency-aware bootstrap behavior to ensure core and user plugins load safely in the correct order.

How do I create and register an Atomic Framework plugin with routes and migrations?

To create an Atomic Framework plugin, you register it with the PluginManager, define its boot order, and add routes and migrations. You then connect it to existing Atomic hooks and services using safe extension patterns for production development.

Does the Atomic Framework support built-in integrations with WooCommerce and WordPress?

Yes, the Atomic Framework supports built-in integrations with WooCommerce and WordPress, alongside Monopay, RSS Reader, GlobusStudio, Google, and GoogleAnalytics, allowing plugins to connect directly to these external services.

What is the best way to handle boot order and dependency-aware bootstrap behavior for PHP plugins?

The best way to handle boot order is using PluginManager helper functions, which manage dependency-aware bootstrap behavior to load core and user plugins safely without guessing the lifecycle or integration points.

Why are my Atomic Framework user plugins not loading during the bootstrap phase?

User plugins fail to load during the Atomic Framework bootstrap phase when their dependency-aware boot order is incorrect. You must use PluginManager workflows to ensure helper functions register and activate plugins in the proper sequence.

Can I use the PluginManager helper APIs to safely extend production plugins?

Yes, you can use PluginManager helper APIs to safely extend production plugins in the Atomic Framework. They provide safe extension patterns that govern plugin registration, lifecycle flows, and dependency-aware bootstrap behavior.