akemon 0.1.9 → 0.1.10

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/dist/cli.js CHANGED
@@ -26,6 +26,7 @@ program
26
26
  .option("-m, --model <model>", "Model to use (e.g. claude-sonnet-4-6, gpt-4o)")
27
27
  .option("--engine <engine>", "Engine: claude, codex, opencode, gemini, human, or any CLI", "claude")
28
28
  .option("--desc <description>", "Agent description (for discovery)")
29
+ .option("--tags <tags>", "Comma-separated tags (e.g. vue,frontend,review)")
29
30
  .option("--public", "Allow anyone to call this agent without a key")
30
31
  .option("--max-tasks <n>", "Maximum tasks per day (PP)")
31
32
  .option("--approve", "Review every task before execution")
@@ -67,6 +68,7 @@ program
67
68
  description: opts.desc,
68
69
  isPublic: opts.public,
69
70
  engine,
71
+ tags: opts.tags ? opts.tags.split(",").map((t) => t.trim()) : undefined,
70
72
  });
71
73
  });
72
74
  program
@@ -92,6 +92,9 @@ export function connectRelay(options) {
92
92
  access_token: options.credentials.accessKey,
93
93
  },
94
94
  };
95
+ if (options.tags && options.tags.length > 0) {
96
+ reg.tags = options.tags;
97
+ }
95
98
  ws.send(JSON.stringify(reg));
96
99
  startHeartbeat();
97
100
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akemon",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Agent work marketplace — train your agent, let it work for others",
5
5
  "type": "module",
6
6
  "license": "MIT",