Claude Skill
OdradekAI/bundles-forge
Bundles Forge 是一个智能技能框架与捆绑插件工程工具包,用于构建、打包和部署可复用的 Claude Skill 捆绑插件,兼容 Claude Code 和 Cursor。
概览
仓库信息
安装这个 Skill
git clone https://github.com/OdradekAI/bundles-forge.gitRegistry 信息
项目简介
Bundles Forge 是一个智能技能框架与捆绑插件工程工具包,帮助开发者构建、打包和部署可复用的 Claude Skill 捆绑插件。它提供结构化的工作流,以最小开销创建兼容智能体的技能。
An agentic skills framework & bundle-plugin engineering toolkit that works.
要点
- 面向 Claude Skill 开发的智能技能框架
- 支持可复用打包的捆绑插件工程工具包
- 简化的技能创建与部署工作流
- 兼容 Claude Code 和 Cursor 插件生态系统
使用场景
- 为智能体工作流构建自定义 Claude Skill
- 将智能体技能打包为可复用的捆绑插件
- 将技能集成到 Claude Code 或 Cursor 环境中
- 快速原型开发兼容智能体的工具链
README 摘要
# 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