diff --git a/src/cli/asset-command.ts b/src/cli/asset-command.ts index 8438cca..2c49946 100644 --- a/src/cli/asset-command.ts +++ b/src/cli/asset-command.ts @@ -87,8 +87,8 @@ export function makeAssetCommand(type: AssetType, summary: string): Command { function extraUsage(type: AssetType): string { if (type === "skill") return "|validate|generate"; if (type === "template") return "|create"; - if (type === "recipe") return "|run|explain"; - if (type === "workflow") return "|run|explain"; + if (type === "recipe") return "|run"; + if (type === "workflow") return "|run"; if (type === "eval") return "|run|report"; return ""; } @@ -97,9 +97,9 @@ function helpFor(type: AssetType): string { const lines = [`Manage ${type}s from the installable asset registry.`, ""]; lines.push("Subcommands:"); lines.push(` list list all ${type}s in the registry (status-aware)`); - lines.push(` install copy a ${type} into .zenrows/`); + lines.push(` install copy ${type === "eval" ? "an" : "a"} ${type} into .zenrows/`); if (type === "skill") lines.push(" install --all install every available skill"); - lines.push(` explain print metadata + docs for a ${type}`); + lines.push(` explain print metadata + docs for ${type === "eval" ? "an" : "a"} ${type}`); lines.push(` update [name] reinstall (refresh) installed ${type}s`); lines.push(` remove remove an installed ${type}`); if (type === "template") lines.push(" create --output instantiate a template into "); diff --git a/src/cli/commands/config.ts b/src/cli/commands/config.ts index e9db16d..009d3ea 100644 --- a/src/cli/commands/config.ts +++ b/src/cli/commands/config.ts @@ -3,6 +3,7 @@ * show * get * set + * reset */ import { defaultConfig, loadConfig, saveConfig } from "../../core/config.ts"; import { log } from "../../core/logger.ts"; @@ -26,7 +27,7 @@ const SETTABLE: Record void> = { export const config: Command = { name: "config", summary: "View or update toolkit configuration (non-secret).", - usage: "zenrows config |set >", + usage: "zenrows config |set |reset>", run(argv: string[], ctx: RunContext): number { const [sub, key, value] = argv; const cfg = loadConfig(); diff --git a/src/installers/mcp/index.ts b/src/installers/mcp/index.ts index 60461cf..8759053 100644 --- a/src/installers/mcp/index.ts +++ b/src/installers/mcp/index.ts @@ -36,7 +36,6 @@ export const MCP_CLIENTS: Record = { configFile: ".mcp.json (project) or run `claude mcp add`", format: "cli", autoConfigurable: true, - notes: "Confirmed: `claude mcp add zenrows -e ZENROWS_API_KEY=… -- npx -y @zenrows/mcp`.", }, cursor: { id: "cursor",