Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/cli/asset-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 "";
}
Expand All @@ -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 <name> copy a ${type} into .zenrows/`);
lines.push(` install <name> copy ${type === "eval" ? "an" : "a"} ${type} into .zenrows/`);
if (type === "skill") lines.push(" install --all install every available skill");
lines.push(` explain <name> print metadata + docs for a ${type}`);
lines.push(` explain <name> print metadata + docs for ${type === "eval" ? "an" : "a"} ${type}`);
lines.push(` update [name] reinstall (refresh) installed ${type}s`);
lines.push(` remove <name> remove an installed ${type}`);
if (type === "template") lines.push(" create <name> --output <dir> instantiate a template into <dir>");
Expand Down
3 changes: 2 additions & 1 deletion src/cli/commands/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* show
* get <key>
* set <key> <value>
* reset
*/
import { defaultConfig, loadConfig, saveConfig } from "../../core/config.ts";
import { log } from "../../core/logger.ts";
Expand All @@ -26,7 +27,7 @@ const SETTABLE: Record<string, (c: ToolkitConfig, v: string) => void> = {
export const config: Command = {
name: "config",
summary: "View or update toolkit configuration (non-secret).",
usage: "zenrows config <show|get <key>|set <key> <value>>",
usage: "zenrows config <show|get <key>|set <key> <value>|reset>",
run(argv: string[], ctx: RunContext): number {
const [sub, key, value] = argv;
const cfg = loadConfig();
Expand Down
1 change: 0 additions & 1 deletion src/installers/mcp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export const MCP_CLIENTS: Record<string, McpClientSpec> = {
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",
Expand Down
Loading