@zshuangmu/agenthub 0.4.0 → 0.4.2
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 +15 -0
- package/package.json +1 -1
- package/src/cli.js +2 -0
- package/src/commands/pack.js +5 -3
package/README.md
CHANGED
|
@@ -161,6 +161,9 @@ agenthub verify code-review-assistant --registry ./.registry --target-workspace
|
|
|
161
161
|
### HTTP API
|
|
162
162
|
|
|
163
163
|
```bash
|
|
164
|
+
# 健康检查
|
|
165
|
+
curl http://localhost:3001/api/health
|
|
166
|
+
|
|
164
167
|
# 列出所有 Agent
|
|
165
168
|
curl http://localhost:3001/api/agents
|
|
166
169
|
|
|
@@ -170,8 +173,20 @@ curl "http://localhost:3001/api/agents?q=react"
|
|
|
170
173
|
# 获取 Agent 详情
|
|
171
174
|
curl http://localhost:3001/api/agents/my-agent
|
|
172
175
|
|
|
176
|
+
# 下载 Agent Bundle
|
|
177
|
+
curl http://localhost:3001/api/agents/my-agent/download
|
|
178
|
+
|
|
173
179
|
# 获取统计信息
|
|
174
180
|
curl http://localhost:3001/api/stats
|
|
181
|
+
|
|
182
|
+
# 获取下载排行
|
|
183
|
+
curl "http://localhost:3001/api/stats/ranking?limit=10"
|
|
184
|
+
|
|
185
|
+
# 发布 Agent (POST)
|
|
186
|
+
curl -X POST http://localhost:3001/api/publish -H "Content-Type: application/json" -d '{"slug":"my-agent","version":"1.0.0"}'
|
|
187
|
+
|
|
188
|
+
# 上传发布 Agent (POST)
|
|
189
|
+
curl -X POST http://localhost:3001/api/publish-upload -H "Content-Type: application/json" -d '{"bundleData":"..."}'
|
|
175
190
|
```
|
|
176
191
|
|
|
177
192
|
### AI 自动发现
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -111,6 +111,7 @@ agenthub pack - 打包 Agent
|
|
|
111
111
|
--workspace <dir> OpenClaw 工作区目录 (必需)
|
|
112
112
|
--config <file> openclaw.json 配置文件路径 (必需)
|
|
113
113
|
--output <dir> 输出目录 (默认: ./bundles)
|
|
114
|
+
--name <name> Agent 名称 (默认: 工作区目录名)
|
|
114
115
|
--version <ver> 版本号 (默认: 1.0.0)
|
|
115
116
|
--tags <tags> 标签,逗号分隔
|
|
116
117
|
--category <cat> 分类
|
|
@@ -118,6 +119,7 @@ agenthub pack - 打包 Agent
|
|
|
118
119
|
示例:
|
|
119
120
|
agenthub pack --workspace ./my-agent --config ./openclaw.json
|
|
120
121
|
agenthub pack --workspace ./my-agent --config ./openclaw.json --version 2.0.0
|
|
122
|
+
agenthub pack --workspace ./my-agent --config ./openclaw.json --name "Code Helper"
|
|
121
123
|
`,
|
|
122
124
|
publish: `
|
|
123
125
|
agenthub publish - 发布 Agent
|
package/src/commands/pack.js
CHANGED
|
@@ -68,9 +68,11 @@ export async function packCommand(options) {
|
|
|
68
68
|
const output = path.resolve(options.output ?? "./bundles");
|
|
69
69
|
const configPath = options.config ? path.resolve(options.config) : null;
|
|
70
70
|
const version = options.version || "1.0.0";
|
|
71
|
+
const customName = options.name || null;
|
|
71
72
|
|
|
72
|
-
//
|
|
73
|
-
const
|
|
73
|
+
// 从工作区名称或自定义名称生成 slug
|
|
74
|
+
const baseName = customName || path.basename(workspace);
|
|
75
|
+
const slug = baseName.toLowerCase().replace(/[^a-z0-9-]/g, "-");
|
|
74
76
|
const bundleDir = path.join(output, `${slug}-${version}.agent`);
|
|
75
77
|
|
|
76
78
|
// 1. 扫描工作区
|
|
@@ -93,7 +95,7 @@ export async function packCommand(options) {
|
|
|
93
95
|
// 4. 生成 MANIFEST
|
|
94
96
|
const manifest = createManifest({
|
|
95
97
|
slug,
|
|
96
|
-
name: path.basename(workspace),
|
|
98
|
+
name: customName || path.basename(workspace),
|
|
97
99
|
memoryCounts,
|
|
98
100
|
openclawTemplate: template,
|
|
99
101
|
skills: workspaceFiles.skills,
|