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 +2 -0
- package/dist/relay-client.js +3 -0
- package/package.json +1 -1
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
|
package/dist/relay-client.js
CHANGED