Compare commits

...

5 Commits
v3.2 ... v3.3

Author SHA1 Message Date
cexll
5532652383 Update README-zh.md 2025-10-15 15:52:51 +08:00
cexll
44b96c0498 Update README.md 2025-10-15 15:52:29 +08:00
cexll
9304573cc6 Update marketplace.json 2025-10-15 15:51:00 +08:00
ben chen
8a84a05fa0 Update Chinese README with v3.2 plugin system documentation
- Update version badge to v3.2 and add Plugin Ready badge
- Add plugin system as recommended installation method (方法1)
- Document comprehensive v3.2 plugin system section
- Update support section with plugin documentation references
- Sync with English README plugin features

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-10 12:02:02 +08:00
ben chen
894952decd Update README with v3.2 plugin system documentation
- Update version badge to v3.2 and add Plugin Ready badge
- Add plugin system as recommended installation method
- Document /plugin command usage and available plugins
- Add comprehensive plugin system section with feature details
- Update support section with plugin documentation references

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-10 11:30:35 +08:00
3 changed files with 108 additions and 10 deletions

View File

@@ -78,9 +78,6 @@
"./agents/bmad-qa.md",
"./agents/bmad-orchestrator.md",
"./agents/bmad-review.md"
],
"output-styles": [
"./output-styles/bmad.md"
]
},
{
@@ -155,4 +152,4 @@
]
}
]
}
}

View File

@@ -2,7 +2,8 @@
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Claude Code](https://img.shields.io/badge/Claude-Code-blue)](https://claude.ai/code)
[![Version](https://img.shields.io/badge/Version-3.1-green)](https://github.com/)
[![Version](https://img.shields.io/badge/Version-3.2-green)](https://github.com/)
[![Plugin Ready](https://img.shields.io/badge/Plugin-Ready-purple)](https://docs.claude.com/en/docs/claude-code/plugins)
> 企业级敏捷开发工作流自动化与多智能体编排
@@ -52,7 +53,15 @@ graph LR
## 🚀 快速开始
### 一键安装
### 安装方法
#### 方法1插件系统推荐🎯
```bash
/plugin github.com/cexll/myclaude
```
#### 方法2传统安装
```bash
# 克隆仓库
@@ -107,7 +116,44 @@ BMAD 工作流使用专门的输出样式:
- 处理确认门控
- 支持 Codex CLI 集成
## ⚡ v3.1 新特性
## ⚡ v3.2 插件系统
### 🔌 原生插件支持(新增)
本项目现已包含原生 Claude Code 插件支持提供4个即装即用的插件包
#### 可用插件
| 插件 | 描述 | 命令 | 智能体 |
|------|------|------|--------|
| **bmad-agile-workflow** | 完整 BMAD 方法论及角色化智能体 | `/bmad-pilot` | bmad-po, bmad-architect, bmad-sm, bmad-dev, bmad-qa |
| **requirements-driven-development** | 精简需求工作流 | `/requirements-pilot` | requirements-generate, requirements-code, requirements-review |
| **development-essentials** | 核心开发命令 | `/code`, `/debug`, `/test`, `/optimize` | code, bugfix, debug, develop |
| **advanced-ai-agents** | GPT-5 深度分析集成 | - | gpt5 |
#### 使用插件
```bash
# 列出所有可用插件
/plugin list
# 获取插件详细信息
/plugin info bmad-agile-workflow
# 安装插件以激活其命令和智能体
/plugin install requirements-driven-development
# 移除已安装的插件
/plugin remove development-essentials
```
#### 插件配置
插件定义在 `.claude-plugin/marketplace.json`,遵循 Claude Code 插件规范。每个插件包含:
- 命令(斜杠命令)
- 智能体(专业 AI 智能体)
- 元数据(版本、作者、关键词)
- 类别分类
## ⚡ v3.1 特性
### 独立代码审查智能体
- **bmad-review**Dev 和 QA 之间的自动审查
@@ -214,8 +260,10 @@ MIT 许可证 - 查看 [LICENSE](LICENSE) 文件
## 🙋 支持
- **文档**:查看 `/commands/``/agents/` 目录
- **插件指南**:查看 [PLUGIN_README.md](PLUGIN_README.md) 了解插件系统详情
- **问题**GitHub issues 用于报告 bug 和功能请求
- **Makefile 帮助**:运行 `make help` 查看所有部署选项
- **Claude Code 文档**[插件系统](https://docs.claude.com/en/docs/claude-code/plugins)
### 可用的 Make 命令
@@ -235,4 +283,6 @@ make help # 显示所有可用命令
**使用 BMAD 转型您的开发** - 一条命令,完整敏捷工作流,质量保证。
*通过 `/plugin install bmad-agile-workflow` 安装或使用传统安装方法。*
*让专业的 AI 智能体处理专业工作。*

View File

@@ -2,7 +2,8 @@
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Claude Code](https://img.shields.io/badge/Claude-Code-blue)](https://claude.ai/code)
[![Version](https://img.shields.io/badge/Version-3.1-green)](https://github.com/)
[![Version](https://img.shields.io/badge/Version-3.2-green)](https://github.com/)
[![Plugin Ready](https://img.shields.io/badge/Plugin-Ready-purple)](https://docs.claude.com/en/docs/claude-code/plugins)
> Enterprise-grade agile development workflow automation with multi-agent orchestration
@@ -52,7 +53,16 @@ graph LR
## 🚀 Quick Start
### One-Command Installation
### Installation Methods
#### Method 1: Plugin System (Recommended) 🎯
```bash
# List available plugins
/plugin github.com/cexll/myclaude
```
#### Method 2: Traditional Installation
```bash
# Clone the repository
@@ -107,7 +117,44 @@ The BMAD workflow uses a specialized output style that:
- Handles approval gates
- Supports Codex CLI integration
## ⚡ v3.1 New Features
## ⚡ v3.2 Plugin System
### 🔌 Native Plugin Support (NEW)
This project now includes native Claude Code plugin support with 4 ready-to-use plugin packages:
#### Available Plugins
| Plugin | Description | Commands | Agents |
|--------|------------|----------|--------|
| **bmad-agile-workflow** | Full BMAD methodology with role-based agents | `/bmad-pilot` | bmad-po, bmad-architect, bmad-sm, bmad-dev, bmad-qa |
| **requirements-driven-development** | Streamlined requirements workflow | `/requirements-pilot` | requirements-generate, requirements-code, requirements-review |
| **development-essentials** | Core development commands | `/code`, `/debug`, `/test`, `/optimize` | code, bugfix, debug, develop |
| **advanced-ai-agents** | GPT-5 deep analysis integration | - | gpt5 |
#### Using Plugins
```bash
# List all available plugins
/plugin list
# Get detailed information about a plugin
/plugin info bmad-agile-workflow
# Install a plugin to activate its commands and agents
/plugin install requirements-driven-development
# Remove an installed plugin
/plugin remove development-essentials
```
#### Plugin Configuration
Plugins are defined in `.claude-plugin/marketplace.json` following the Claude Code plugin specification. Each plugin includes:
- Commands (slash commands)
- Agents (specialized AI agents)
- Metadata (version, author, keywords)
- Category classification
## ⚡ v3.1 Features
### Independent Code Review Agent
- **bmad-review**: Automated review between Dev and QA
@@ -214,8 +261,10 @@ MIT License - see [LICENSE](LICENSE) file
## 🙋 Support
- **Documentation**: Check `/commands/` and `/agents/` directories
- **Plugin Guide**: See [PLUGIN_README.md](PLUGIN_README.md) for plugin system details
- **Issues**: GitHub issues for bugs and features
- **Makefile Help**: Run `make help` for all deployment options
- **Claude Code Docs**: [Plugin System](https://docs.claude.com/en/docs/claude-code/plugins)
### Available Make Commands
@@ -235,4 +284,6 @@ make help # Show all available commands
**Transform your development with BMAD** - One command, complete agile workflow, quality assured.
*Install with `/plugin install bmad-agile-workflow` or use traditional installation methods.*
*Let specialized AI agents handle specialized work.*