@zshuangmu/agenthub 0.2.1 → 0.2.3
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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,6 +87,28 @@ agenthub serve --registry ./.registry --port 3000
|
|
|
87
87
|
|
|
88
88
|
访问 http://localhost:3000 查看你的 Agent!
|
|
89
89
|
|
|
90
|
+
### 🎯 试用样板 Agent
|
|
91
|
+
|
|
92
|
+
我们提供了一个官方样板 Agent,帮助你快速体验:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
# 1. 克隆仓库
|
|
96
|
+
git clone https://github.com/itshaungmu/AgentHub.git
|
|
97
|
+
cd AgentHub
|
|
98
|
+
|
|
99
|
+
# 2. 打包样板 Agent
|
|
100
|
+
agenthub pack --workspace ./samples/code-review-assistant --config ./samples/code-review-assistant/openclaw.json
|
|
101
|
+
|
|
102
|
+
# 3. 发布到本地 Registry
|
|
103
|
+
agenthub publish ./bundles/code-review-assistant-1.0.0.agent --registry ./.registry
|
|
104
|
+
|
|
105
|
+
# 4. 安装到你的 workspace
|
|
106
|
+
agenthub install code-review-assistant --registry ./.registry --target-workspace ./my-workspace
|
|
107
|
+
|
|
108
|
+
# 5. 校验安装
|
|
109
|
+
agenthub verify code-review-assistant --registry ./.registry --target-workspace ./my-workspace
|
|
110
|
+
```
|
|
111
|
+
|
|
90
112
|
---
|
|
91
113
|
|
|
92
114
|
## 📖 命令文档
|