| file_type | documentation | ||||
|---|---|---|---|---|---|
| title | Plugin Bundles & Integration Strategy | ||||
| description | Ownership index for installable LightSpeed AI plugin bundles, plugin-family strategy, and integration guidelines. | ||||
| version | v0.3.1 | ||||
| created_date | 2026-05-29 | ||||
| last_updated | 2026-05-29 | ||||
| maintainer | LightSpeed Team | ||||
| authors |
|
||||
| license | GPL-3.0 | ||||
| stability | stable | ||||
| domain | governance | ||||
| tags |
|
This folder contains bundled plugin configurations, integration specifications, and plugin-family strategy documentation for deploying LightSpeed AI solutions.
Plugin bundles are curated collections of:
- Skills – Self-contained AI capabilities
- Agents – Specialised automation agents
- Hooks – Security and safety guardrails
- Workflows – Reproducible process templates
- Configuration – Platform-specific settings
Each bundle is designed for specific use cases (e.g., WordPress development, PR automation, documentation management).
Bundles are defined in PLUGIN_MANIFEST.json and include:
- Bundle ID – Unique identifier for the plugin
- Description – What the bundle does
- Components – Skills, agents, hooks, and workflows included
- Platform – Target platforms (Claude Code, GitHub, Slack, etc.)
- Installation – How to install and configure the bundle
- Version – Semantic versioning for updates
For comprehensive installation instructions, see PLUGIN_INSTALLATION_GUIDE.md.
- View Available Bundles – Check
PLUGIN_MANIFEST.json - Install Bundle – Run installation command for your platform
- Configure Settings – Update
.claude/settings.jsonor equivalent - Verify Installation – Test the bundle in your environment
- Enable Features – Activate specific skills and agents as needed
# Install a plugin bundle
claude code --install plugin:lightspeed-wordpress-dev@latest
# Or configure in settings.json
{
"plugins": {
"enabled": true,
"bundles": ["lightspeed-wordpress-dev"]
}
}# Reference bundle in workflow
- name: Install LightSpeed plugins
uses: lightspeedwp/.github/plugins@main
with:
bundle: lightspeed-wordpress-dev
auto-enable: trueTo create a new plugin bundle:
- Design the bundle composition (which skills, agents, hooks)
- Document the bundle in a README
- Add manifest entry to
PLUGIN_MANIFEST.json - Include installation and configuration instructions
- Write integration tests
- Submit PR for review
{
"id": "plugin-id",
"name": "Display Name",
"version": "v1.0.0",
"description": "What this plugin does",
"author": "LightSpeed Team",
"platforms": ["claude-code", "github"],
"components": {
"skills": ["skill-id"],
"agents": ["agent-id"],
"hooks": ["hook-id"],
"workflows": ["workflow-id"]
},
"dependencies": [],
"configuration": {
"required": ["key1"],
"optional": ["key2"]
}
}See PLUGIN_PACK_ROADMAP.md for:
- Planned plugin bundles
- Timeline for releases
- Feature priorities
- Deprecation notices
- Keep bundles focused – Each bundle solves one clear problem
- Document thoroughly – Include examples and troubleshooting
- Test integration – Verify bundles work across platforms
- Version carefully – Use semantic versioning for compatibility
- Communicate changes – Announce breaking changes early
- PLUGIN_PACK_ROADMAP.md – Plugin development roadmap
- PLUGIN_INSTALLATION_GUIDE.md – Installation and configuration
- AGENTS.md – Global AI rules for plugins
- agents/ – Available agents
- skills/ – Available skills
Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit! Contributors
Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit! Contributors