@zshuangmu/agenthub 0.4.0 → 0.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zshuangmu/agenthub",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "AI Agent 打包与分发平台 - 一句话打包上传,一键下载获得能力",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
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
@@ -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
- // 从工作区名称生成 slug
73
- const slug = path.basename(workspace).toLowerCase().replace(/[^a-z0-9-]/g, "-");
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,