@zshuangmu/agenthub 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,6 +48,27 @@ AgentHub 是一个专为 **OpenClaw** 设计的 Agent 打包与分发平台,
|
|
|
48
48
|
- ❌ 需要 Prompt 收藏夹(请使用专门的 Prompt 工具)
|
|
49
49
|
- ❌ 单个 Skill 分发(请使用 ClawHub)
|
|
50
50
|
|
|
51
|
+
## 🎯 官方样板 Agent
|
|
52
|
+
|
|
53
|
+
我们提供了 3 个官方样板 Agent,帮助你快速上手:
|
|
54
|
+
|
|
55
|
+
| Agent | 描述 | 适用场景 |
|
|
56
|
+
|-------|------|----------|
|
|
57
|
+
| **code-review-assistant** | 代码审查助手 | 代码质量审查、安全漏洞识别 |
|
|
58
|
+
| **team-knowledge-assistant** | 团队知识问答 | 项目信息检索、新员工入职 |
|
|
59
|
+
| **product-doc-writer** | 产品文档撰写 | 功能文档、用户指南、API 文档 |
|
|
60
|
+
|
|
61
|
+
### 快速试用
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# 打包任意样板 Agent
|
|
65
|
+
agenthub pack --workspace ./samples/code-review-assistant --config ./samples/code-review-assistant/openclaw.json
|
|
66
|
+
|
|
67
|
+
# 发布并安装
|
|
68
|
+
agenthub publish ./bundles/code-review-assistant-1.0.0.agent --registry ./.registry
|
|
69
|
+
agenthub install code-review-assistant --registry ./.registry --target-workspace ./workspace
|
|
70
|
+
```
|
|
71
|
+
|
|
51
72
|
## 📸 Screenshots
|
|
52
73
|
|
|
53
74
|

|
|
@@ -157,6 +178,13 @@ curl http://localhost:3001/api/stats
|
|
|
157
178
|
curl http://localhost:3001/api/skills/agenthub-discover
|
|
158
179
|
```
|
|
159
180
|
|
|
181
|
+
## 📚 教程文档
|
|
182
|
+
|
|
183
|
+
| 教程 | 描述 |
|
|
184
|
+
|------|------|
|
|
185
|
+
| [3 步复刻 Agent](./docs/quick-start-3-steps.md) | 10 分钟快速上手指南 |
|
|
186
|
+
| [团队分发指南](./docs/team-distribution-guide.md) | 如何把团队 Agent 标准化分发 |
|
|
187
|
+
|
|
160
188
|
## 🏗️ 架构
|
|
161
189
|
|
|
162
190
|
```
|