mirror of
https://github.com/cexll/myclaude.git
synced 2026-02-10 03:14:32 +08:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5532652383 | ||
|
|
44b96c0498 | ||
|
|
9304573cc6 | ||
|
|
8a84a05fa0 | ||
|
|
894952decd |
@@ -78,9 +78,6 @@
|
|||||||
"./agents/bmad-qa.md",
|
"./agents/bmad-qa.md",
|
||||||
"./agents/bmad-orchestrator.md",
|
"./agents/bmad-orchestrator.md",
|
||||||
"./agents/bmad-review.md"
|
"./agents/bmad-review.md"
|
||||||
],
|
|
||||||
"output-styles": [
|
|
||||||
"./output-styles/bmad.md"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -155,4 +152,4 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
56
README-zh.md
56
README-zh.md
@@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
[](https://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](https://claude.ai/code)
|
[](https://claude.ai/code)
|
||||||
[](https://github.com/)
|
[](https://github.com/)
|
||||||
|
[](https://docs.claude.com/en/docs/claude-code/plugins)
|
||||||
|
|
||||||
> 企业级敏捷开发工作流自动化与多智能体编排
|
> 企业级敏捷开发工作流自动化与多智能体编排
|
||||||
|
|
||||||
@@ -52,7 +53,15 @@ graph LR
|
|||||||
|
|
||||||
## 🚀 快速开始
|
## 🚀 快速开始
|
||||||
|
|
||||||
### 一键安装
|
### 安装方法
|
||||||
|
|
||||||
|
#### 方法1:插件系统(推荐)🎯
|
||||||
|
|
||||||
|
```bash
|
||||||
|
/plugin github.com/cexll/myclaude
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 方法2:传统安装
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 克隆仓库
|
# 克隆仓库
|
||||||
@@ -107,7 +116,44 @@ BMAD 工作流使用专门的输出样式:
|
|||||||
- 处理确认门控
|
- 处理确认门控
|
||||||
- 支持 Codex CLI 集成
|
- 支持 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 之间的自动审查
|
- **bmad-review**:Dev 和 QA 之间的自动审查
|
||||||
@@ -214,8 +260,10 @@ MIT 许可证 - 查看 [LICENSE](LICENSE) 文件
|
|||||||
## 🙋 支持
|
## 🙋 支持
|
||||||
|
|
||||||
- **文档**:查看 `/commands/` 和 `/agents/` 目录
|
- **文档**:查看 `/commands/` 和 `/agents/` 目录
|
||||||
|
- **插件指南**:查看 [PLUGIN_README.md](PLUGIN_README.md) 了解插件系统详情
|
||||||
- **问题**:GitHub issues 用于报告 bug 和功能请求
|
- **问题**:GitHub issues 用于报告 bug 和功能请求
|
||||||
- **Makefile 帮助**:运行 `make help` 查看所有部署选项
|
- **Makefile 帮助**:运行 `make help` 查看所有部署选项
|
||||||
|
- **Claude Code 文档**:[插件系统](https://docs.claude.com/en/docs/claude-code/plugins)
|
||||||
|
|
||||||
### 可用的 Make 命令
|
### 可用的 Make 命令
|
||||||
|
|
||||||
@@ -235,4 +283,6 @@ make help # 显示所有可用命令
|
|||||||
|
|
||||||
**使用 BMAD 转型您的开发** - 一条命令,完整敏捷工作流,质量保证。
|
**使用 BMAD 转型您的开发** - 一条命令,完整敏捷工作流,质量保证。
|
||||||
|
|
||||||
|
*通过 `/plugin install bmad-agile-workflow` 安装或使用传统安装方法。*
|
||||||
|
|
||||||
*让专业的 AI 智能体处理专业工作。*
|
*让专业的 AI 智能体处理专业工作。*
|
||||||
|
|||||||
57
README.md
57
README.md
@@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
[](https://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](https://claude.ai/code)
|
[](https://claude.ai/code)
|
||||||
[](https://github.com/)
|
[](https://github.com/)
|
||||||
|
[](https://docs.claude.com/en/docs/claude-code/plugins)
|
||||||
|
|
||||||
> Enterprise-grade agile development workflow automation with multi-agent orchestration
|
> Enterprise-grade agile development workflow automation with multi-agent orchestration
|
||||||
|
|
||||||
@@ -52,7 +53,16 @@ graph LR
|
|||||||
|
|
||||||
## 🚀 Quick Start
|
## 🚀 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
|
```bash
|
||||||
# Clone the repository
|
# Clone the repository
|
||||||
@@ -107,7 +117,44 @@ The BMAD workflow uses a specialized output style that:
|
|||||||
- Handles approval gates
|
- Handles approval gates
|
||||||
- Supports Codex CLI integration
|
- 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
|
### Independent Code Review Agent
|
||||||
- **bmad-review**: Automated review between Dev and QA
|
- **bmad-review**: Automated review between Dev and QA
|
||||||
@@ -214,8 +261,10 @@ MIT License - see [LICENSE](LICENSE) file
|
|||||||
## 🙋 Support
|
## 🙋 Support
|
||||||
|
|
||||||
- **Documentation**: Check `/commands/` and `/agents/` directories
|
- **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
|
- **Issues**: GitHub issues for bugs and features
|
||||||
- **Makefile Help**: Run `make help` for all deployment options
|
- **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
|
### 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.
|
**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.*
|
*Let specialized AI agents handle specialized work.*
|
||||||
|
|||||||
Reference in New Issue
Block a user