Claude Skill
OdradekAI/bundles-forge
Bundles Forge is an agentic skills framework and bundle-plugin engineering toolkit for building, packaging, and deploying Claude Skills as reusable bundle plugins. Compatible with Claude Code and C...
Overview
Repository
Install this Skill
git clone https://github.com/OdradekAI/bundles-forge.gitRegistry
Summary
Bundles Forge is an agentic skills framework and bundle-plugin engineering toolkit that enables developers to build, package, and deploy Claude Skills as reusable bundle plugins. It provides a structured workflow for creating agent-compatible skills with minimal overhead.
一个行之有效的智能技能框架与捆绑插件工程工具包。
Key features
- Agentic skills framework for Claude Skill development
- Bundle-plugin engineering toolkit with reusable packaging
- Streamlined workflow for skill creation and deployment
- Compatible with Claude Code and Cursor plugin ecosystems
Use cases
- Building custom Claude Skills for agent workflows
- Packaging agent skills as reusable bundle plugins
- Integrating skills into Claude Code or Cursor environments
- Rapid prototyping of agent-compatible toolchains
README excerpt
# Bundles Forge [中文](README.zh.md) A toolkit for building **bundle-plugins** — AI coding plugins organized around collaborative skill workflows — across Claude Code, Cursor, Codex, OpenCode, Gemini CLI, and OpenClaw. ## What is a Bundle-Plugin? A single skill (`SKILL.md`) does one thing — an AI agent discovers it by its `description` field and loads it on demand. A **bundle-plugin** takes this further: multiple skills reference each other and form a workflow, where one skill's output feeds the next. ```mermaid graph LR A["Skill A"] -->|output feeds| B["Skill B"] B -->|output feeds| C["Skill C"] C -->|validates| A ``` bundles-forge itself is a bundle-plugin — `blueprinting` produces a design, `scaffolding` generates a project from it, `auditing` validates the result, and `optimizing` iterates on issues found. **If your plugin has 3+ skills that form a workflow, you're building a bundle-plugin.** This toolkit gives you scaffolding, quality gates, and multi-platform publishing for that pattern. ## Quick Start ### Install (Claude Code) 1. **Add the marketplace**: ```bash /plugin marketplace add OdradekAI/bundles-forge ``` 2. **Install the plugin**: ```bash /plugin install bundles-forge@bundles-forge-dev ``` Or clone locally for development: ```bash git clone https://github.com/OdradekAI/bundles-forge.git cd bundles-forge # Add your local marketplace /plugin marketplace add ./ # Install the plugin /plugin install bundles-forge@bundles-forge-dev ``` > Other platforms: see [Platform Support](#platform-support) below. ### Path A: Build a New Bundle-Plugin ``` bundles-forge:blueprinting ``` This starts a structured interview to design your project — scope, platform targets, skill decomposition. When the design is ready, the agent