Files
openclaw/src/cli/skills-cli.commands.test.ts
2026-06-26 18:33:19 +10:00

1470 lines
50 KiB
TypeScript

// Skills CLI command tests cover skill command registration and subcommand behavior.
import { Command } from "commander";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { registerSkillsCli } from "./skills-cli.js";
const mocks = vi.hoisted(() => {
const runtimeLogs: string[] = [];
const runtimeStdout: string[] = [];
const runtimeErrors: string[] = [];
const stringifyArgs = (args: unknown[]) => args.map((value) => String(value)).join(" ");
const skillStatusReportFixture = {
workspaceDir: "/tmp/workspace",
managedSkillsDir: "/tmp/workspace/skills",
skills: [
{
name: "calendar",
description: "Calendar helpers",
source: "bundled",
bundled: false,
filePath: "/tmp/workspace/skills/calendar/SKILL.md",
baseDir: "/tmp/workspace/skills/calendar",
skillKey: "calendar",
emoji: "📅",
homepage: "https://example.com/calendar",
always: false,
disabled: false,
blockedByAllowlist: false,
eligible: true,
primaryEnv: "CALENDAR_API_KEY",
requirements: {
bins: [],
anyBins: [],
env: ["CALENDAR_API_KEY"],
config: [],
os: [],
},
missing: {
bins: [],
anyBins: [],
env: [],
config: [],
os: [],
},
configChecks: [],
install: [],
},
],
};
const defaultRuntime = {
log: vi.fn((...args: unknown[]) => {
runtimeLogs.push(stringifyArgs(args));
}),
error: vi.fn((...args: unknown[]) => {
runtimeErrors.push(stringifyArgs(args));
}),
writeStdout: vi.fn((value: string) => {
runtimeStdout.push(value.endsWith("\n") ? value.slice(0, -1) : value);
}),
writeJson: vi.fn((value: unknown, space = 2) => {
runtimeStdout.push(JSON.stringify(value, null, space > 0 ? space : undefined));
}),
exit: vi.fn((code: number) => {
if (code === 0) {
return;
}
throw new Error(`__exit__:${code}`);
}),
};
const buildWorkspaceSkillStatusMock = vi.fn((workspaceDir: string, options?: unknown) => {
void workspaceDir;
void options;
return skillStatusReportFixture;
});
return {
callGatewayMock: vi.fn(),
loadConfigMock: vi.fn(() => ({})),
resolveDefaultAgentIdMock: vi.fn((_configForTest: unknown) => "main"),
resolveAgentIdByWorkspacePathMock: vi.fn(
(_configForTest: unknown, _workspacePath: string): string | undefined => undefined,
),
resolveAgentWorkspaceDirMock: vi.fn(
(_configForTest: unknown, _agentId: string) => "/tmp/workspace",
),
searchSkillsFromClawHubMock: vi.fn(),
installSkillFromClawHubMock: vi.fn(),
installSkillFromSourceMock: vi.fn(),
updateSkillsFromClawHubMock: vi.fn(),
readTrackedClawHubSkillSlugsMock: vi.fn(),
readVerifiedClawHubSkillSourceUrlMock: vi.fn(),
resolveClawHubSkillVerificationTargetMock: vi.fn(),
readClawHubSkillsLockfileStatusSyncMock: vi.fn((..._args: unknown[]) => ({ kind: "missing" })),
resolveClawHubSkillStatusLinkSyncMock: vi.fn(),
resolveLocalSkillCardStatusSyncMock: vi.fn(),
fetchClawHubSkillVerificationMock: vi.fn(),
fetchClawHubSkillCardMock: vi.fn(),
buildWorkspaceSkillStatusMock,
skillStatusReportFixture,
defaultRuntime,
runtimeLogs,
runtimeStdout,
runtimeErrors,
};
});
const {
callGatewayMock,
loadConfigMock,
resolveDefaultAgentIdMock,
resolveAgentIdByWorkspacePathMock,
resolveAgentWorkspaceDirMock,
searchSkillsFromClawHubMock,
installSkillFromClawHubMock,
installSkillFromSourceMock,
updateSkillsFromClawHubMock,
readTrackedClawHubSkillSlugsMock,
readVerifiedClawHubSkillSourceUrlMock,
resolveClawHubSkillVerificationTargetMock,
readClawHubSkillsLockfileStatusSyncMock,
resolveClawHubSkillStatusLinkSyncMock,
resolveLocalSkillCardStatusSyncMock,
fetchClawHubSkillVerificationMock,
fetchClawHubSkillCardMock,
buildWorkspaceSkillStatusMock,
skillStatusReportFixture,
defaultRuntime,
runtimeLogs,
runtimeStdout,
runtimeErrors,
} = mocks;
function mockCall(mock: unknown, index = 0): Array<unknown> {
const calls = (mock as { mock?: { calls?: Array<Array<unknown>> } }).mock?.calls ?? [];
const call = calls.at(index);
if (!call) {
throw new Error(`Expected mock call ${index + 1}`);
}
return call;
}
function mockFirstObjectArg(mock: unknown): Record<string, unknown> {
const [arg] = mockCall(mock);
if (!arg || typeof arg !== "object") {
throw new Error("expected first mock argument object");
}
return arg as Record<string, unknown>;
}
function expectObjectFields(value: unknown, expected: Record<string, unknown>): void {
if (!value || typeof value !== "object") {
throw new Error("expected object fields");
}
const record = value as Record<string, unknown>;
for (const [key, expectedValue] of Object.entries(expected)) {
expect(record[key], key).toEqual(expectedValue);
}
}
function expectLogger(value: unknown): void {
if (!value || typeof value !== "object") {
throw new Error("expected logger object");
}
}
function expectStatusWorkspaceCall(workspaceDir: string): void {
const [actualWorkspaceDir, options] = mockCall(buildWorkspaceSkillStatusMock);
expect(actualWorkspaceDir).toBe(workspaceDir);
expectObjectFields(options, { config: {} });
}
vi.mock("../runtime.js", () => ({
defaultRuntime: mocks.defaultRuntime,
}));
vi.mock("../gateway/call.js", () => ({
callGateway: (...args: unknown[]) => mocks.callGatewayMock(...args),
}));
vi.mock("../utils.js", async (importOriginal) => ({
...(await importOriginal<typeof import("../utils.js")>()),
CONFIG_DIR: "/tmp/openclaw-config",
}));
vi.mock("../config/config.js", () => ({
getRuntimeConfig: () => mocks.loadConfigMock(),
loadConfig: () => mocks.loadConfigMock(),
}));
vi.mock("../agents/agent-scope.js", () => ({
resolveAgentIdByWorkspacePath: (config: unknown, workspacePath: string) =>
mocks.resolveAgentIdByWorkspacePathMock(config, workspacePath),
resolveDefaultAgentId: (config: unknown) => mocks.resolveDefaultAgentIdMock(config),
resolveAgentWorkspaceDir: (config: unknown, agentId: string) =>
mocks.resolveAgentWorkspaceDirMock(config, agentId),
}));
vi.mock("../skills/lifecycle/clawhub.js", () => ({
searchSkillsFromClawHub: (...args: unknown[]) => mocks.searchSkillsFromClawHubMock(...args),
installSkillFromClawHub: (...args: unknown[]) => mocks.installSkillFromClawHubMock(...args),
updateSkillsFromClawHub: (...args: unknown[]) => mocks.updateSkillsFromClawHubMock(...args),
readTrackedClawHubSkillSlugs: (...args: unknown[]) =>
mocks.readTrackedClawHubSkillSlugsMock(...args),
readVerifiedClawHubSkillSourceUrl: (...args: unknown[]) =>
mocks.readVerifiedClawHubSkillSourceUrlMock(...args),
resolveClawHubSkillVerificationTarget: (...args: unknown[]) =>
mocks.resolveClawHubSkillVerificationTargetMock(...args),
readClawHubSkillsLockfileStatusSync: (...args: unknown[]) =>
mocks.readClawHubSkillsLockfileStatusSyncMock(...args),
resolveClawHubSkillStatusLinkSync: (...args: unknown[]) =>
mocks.resolveClawHubSkillStatusLinkSyncMock(...args),
resolveLocalSkillCardStatusSync: (...args: unknown[]) =>
mocks.resolveLocalSkillCardStatusSyncMock(...args),
}));
vi.mock("../infra/clawhub.js", () => ({
fetchClawHubSkillVerification: (...args: unknown[]) =>
mocks.fetchClawHubSkillVerificationMock(...args),
fetchClawHubSkillCard: (...args: unknown[]) => mocks.fetchClawHubSkillCardMock(...args),
}));
vi.mock("../skills/lifecycle/source-install.js", () => ({
installSkillFromSource: (...args: unknown[]) => mocks.installSkillFromSourceMock(...args),
isSkillSourceInstallSpec: (raw: string) =>
raw.startsWith("git:") ||
raw.startsWith("./") ||
raw.startsWith("../") ||
raw.startsWith("~/") ||
raw.startsWith("/"),
}));
vi.mock("../skills/discovery/status.js", async (importOriginal) => ({
...(await importOriginal<typeof import("../skills/discovery/status.js")>()),
buildWorkspaceSkillStatus: (workspaceDir: string, options?: unknown) =>
mocks.buildWorkspaceSkillStatusMock(workspaceDir, options),
}));
describe("skills cli commands", () => {
const createProgram = () => {
const program = new Command();
program.exitOverride();
registerSkillsCli(program);
return program;
};
const runCommand = async (argv: string[]) => {
try {
await createProgram().parseAsync(argv, { from: "user" });
} catch (error) {
if (error instanceof Error && error.message === "__exit__:0") {
return;
}
throw error;
}
};
beforeEach(() => {
runtimeLogs.length = 0;
runtimeStdout.length = 0;
runtimeErrors.length = 0;
callGatewayMock.mockReset();
loadConfigMock.mockReset();
resolveDefaultAgentIdMock.mockReset();
resolveAgentIdByWorkspacePathMock.mockReset();
resolveAgentWorkspaceDirMock.mockReset();
searchSkillsFromClawHubMock.mockReset();
installSkillFromClawHubMock.mockReset();
installSkillFromSourceMock.mockReset();
updateSkillsFromClawHubMock.mockReset();
readTrackedClawHubSkillSlugsMock.mockReset();
readVerifiedClawHubSkillSourceUrlMock.mockReset();
resolveClawHubSkillVerificationTargetMock.mockReset();
readClawHubSkillsLockfileStatusSyncMock.mockReset();
resolveClawHubSkillStatusLinkSyncMock.mockReset();
resolveLocalSkillCardStatusSyncMock.mockReset();
fetchClawHubSkillVerificationMock.mockReset();
fetchClawHubSkillCardMock.mockReset();
buildWorkspaceSkillStatusMock.mockReset();
callGatewayMock.mockRejectedValue(new Error("gateway unavailable"));
loadConfigMock.mockReturnValue({});
resolveDefaultAgentIdMock.mockReturnValue("main");
resolveAgentIdByWorkspacePathMock.mockReturnValue(undefined);
resolveAgentWorkspaceDirMock.mockReturnValue("/tmp/workspace");
searchSkillsFromClawHubMock.mockResolvedValue([]);
installSkillFromClawHubMock.mockResolvedValue({
ok: false,
error: "install disabled in test",
});
installSkillFromSourceMock.mockResolvedValue({
ok: false,
error: "source install disabled in test",
});
updateSkillsFromClawHubMock.mockResolvedValue([]);
readTrackedClawHubSkillSlugsMock.mockResolvedValue([]);
readVerifiedClawHubSkillSourceUrlMock.mockReturnValue(undefined);
readClawHubSkillsLockfileStatusSyncMock.mockReturnValue({ kind: "missing" });
resolveClawHubSkillStatusLinkSyncMock.mockReturnValue(undefined);
resolveLocalSkillCardStatusSyncMock.mockReturnValue(undefined);
resolveClawHubSkillVerificationTargetMock.mockResolvedValue({
ok: true,
slug: "agentreceipt",
baseUrl: "https://private.example.com/clawhub",
version: "1.2.3",
tag: undefined,
resolution: {
source: "installed",
selector: "installed-version",
registry: "https://private.example.com/clawhub",
skillDir: "/tmp/workspace/skills/agentreceipt",
installedVersion: "1.2.3",
},
});
fetchClawHubSkillVerificationMock.mockResolvedValue({
schema: "clawhub.skill.verify.v1",
ok: true,
decision: "pass",
reasons: [],
skill: { slug: "agentreceipt", displayName: "Agent Receipt" },
publisher: { handle: "openclaw" },
version: { version: "1.2.3" },
card: {
available: true,
url: "https://private.example.com/clawhub/api/v1/skills/agentreceipt/card?version=1.2.3",
},
artifact: {
sourceFingerprint: "source-fingerprint",
bundleFingerprints: ["generated-bundle-fingerprint"],
},
provenance: null,
security: { status: "clean" },
signature: { status: "unsigned" },
});
fetchClawHubSkillCardMock.mockResolvedValue("# Agent Receipt\n\nGenerated by ClawHub.\n");
buildWorkspaceSkillStatusMock.mockReturnValue(skillStatusReportFixture);
defaultRuntime.log.mockClear();
defaultRuntime.error.mockClear();
defaultRuntime.writeStdout.mockClear();
defaultRuntime.writeJson.mockClear();
defaultRuntime.exit.mockClear();
});
async function withCwd(cwd: string, run: () => Promise<void>) {
const cwdSpy = vi.spyOn(process, "cwd").mockReturnValue(cwd);
try {
await run();
} finally {
cwdSpy.mockRestore();
}
}
function routeWorkspaceByAgent() {
resolveAgentWorkspaceDirMock.mockImplementation(
(configForTest: unknown, agentId: string) => `/tmp/workspace-${agentId}`,
);
}
it("searches ClawHub skills from the native CLI", async () => {
searchSkillsFromClawHubMock.mockResolvedValue([
{
slug: "calendar",
displayName: "Calendar",
summary: "CalDAV helpers",
version: "1.2.3",
},
]);
await runCommand(["skills", "search", "calendar"]);
expect(searchSkillsFromClawHubMock).toHaveBeenCalledWith({
query: "calendar",
limit: undefined,
});
expect(
runtimeLogs.some((line) => line.includes("calendar v1.2.3 Calendar")),
"search result log",
).toBe(true);
});
it("rejects partial numeric search limits", async () => {
await expect(runCommand(["skills", "search", "calendar", "--limit", "10ms"])).rejects.toThrow(
"--limit must be a positive integer.",
);
expect(searchSkillsFromClawHubMock).not.toHaveBeenCalled();
});
it("installs a skill from ClawHub into the active workspace", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace/skills/calendar",
});
await runCommand(["skills", "install", "calendar", "--version", "1.2.3"]);
const installArgs = mockFirstObjectArg(installSkillFromClawHubMock);
expectObjectFields(installArgs, {
workspaceDir: "/tmp/workspace",
slug: "calendar",
version: "1.2.3",
force: false,
});
expectLogger(installArgs.logger);
expect(
runtimeLogs.some((line) =>
line.includes("Installed calendar@1.2.3 -> /tmp/workspace/skills/calendar"),
),
).toBe(true);
});
it("passes owner-qualified ClawHub skill refs through to the installer", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace/skills/calendar",
});
await runCommand(["skills", "install", "@demo-owner/calendar"]);
const installArgs = mockFirstObjectArg(installSkillFromClawHubMock);
expectObjectFields(installArgs, {
workspaceDir: "/tmp/workspace",
slug: "@demo-owner/calendar",
force: false,
});
expect(installSkillFromSourceMock).not.toHaveBeenCalled();
expect(
runtimeLogs.some((line) =>
line.includes("Installed calendar@1.2.3 -> /tmp/workspace/skills/calendar"),
),
).toBe(true);
});
it("documents owner-qualified ClawHub install refs in command help", () => {
const skillsCommand = createProgram().commands.find((command) => command.name() === "skills");
const installCommand = skillsCommand?.commands.find((command) => command.name() === "install");
const output: string[] = [];
installCommand?.configureOutput({
writeOut: (value) => output.push(value),
writeErr: (value) => output.push(value),
});
installCommand?.outputHelp();
const help = output.join("");
expect(help).toContain("<skill-ref>");
expect(help).toContain("@owner/slug");
expect(help).toContain("openclaw skills install @owner/weather");
expect(help).not.toContain("openclaw skills install weather");
});
it("documents owner-qualified ClawHub verify refs in command help", () => {
const skillsCommand = createProgram().commands.find((command) => command.name() === "skills");
const verifyCommand = skillsCommand?.commands.find((command) => command.name() === "verify");
const output: string[] = [];
verifyCommand?.configureOutput({
writeOut: (value) => output.push(value),
writeErr: (value) => output.push(value),
});
verifyCommand?.outputHelp();
const help = output.join("");
expect(help).toContain("<skill-ref>");
expect(help).toContain("@owner/slug");
expect(help).toContain("openclaw skills verify @owner/weather");
expect(help).not.toContain("openclaw skills verify weather");
});
it("installs a skill from a git source into the active workspace", async () => {
installSkillFromSourceMock.mockResolvedValue({
ok: true,
slug: "tools",
targetDir: "/tmp/workspace/skills/tools",
source: "git",
});
await runCommand(["skills", "install", "git:owner/tools"]);
const installArgs = mockFirstObjectArg(installSkillFromSourceMock);
expectObjectFields(installArgs, {
workspaceDir: "/tmp/workspace",
spec: "git:owner/tools",
force: false,
});
expect(installArgs.slug).toBeUndefined();
expectLogger(installArgs.logger);
expect(installSkillFromClawHubMock).not.toHaveBeenCalled();
expect(
runtimeLogs.some((line) =>
line.includes("Installed tools from git -> /tmp/workspace/skills/tools"),
),
).toBe(true);
});
it("accepts git refs for skill source installs", async () => {
installSkillFromSourceMock.mockResolvedValue({
ok: true,
slug: "tools",
targetDir: "/tmp/workspace/skills/tools",
source: "git",
});
await runCommand(["skills", "install", "git:owner/tools@main"]);
expect(mockFirstObjectArg(installSkillFromSourceMock).spec).toBe("git:owner/tools@main");
expect(installSkillFromClawHubMock).not.toHaveBeenCalled();
});
it("installs a skill from a local directory", async () => {
installSkillFromSourceMock.mockResolvedValue({
ok: true,
slug: "local-skill",
targetDir: "/tmp/workspace/skills/local-skill",
source: "path",
});
await runCommand(["skills", "install", "./local-skill"]);
const installArgs = mockFirstObjectArg(installSkillFromSourceMock);
expectObjectFields(installArgs, {
workspaceDir: "/tmp/workspace",
spec: "./local-skill",
force: false,
});
expect(installArgs.slug).toBeUndefined();
expectLogger(installArgs.logger);
expect(installSkillFromClawHubMock).not.toHaveBeenCalled();
expect(
runtimeLogs.some((line) =>
line.includes("Installed local-skill from path -> /tmp/workspace/skills/local-skill"),
),
).toBe(true);
});
it("passes --as as the source install slug override", async () => {
installSkillFromSourceMock.mockResolvedValue({
ok: true,
slug: "custom-name",
targetDir: "/tmp/workspace/skills/custom-name",
source: "path",
});
await runCommand(["skills", "install", "./local-skill", "--as", "custom-name"]);
expectObjectFields(mockFirstObjectArg(installSkillFromSourceMock), {
spec: "./local-skill",
slug: "custom-name",
});
});
it("rejects --version for git and local source installs", async () => {
await expect(
runCommand(["skills", "install", "git:owner/tools", "--version", "1.2.3"]),
).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("--version is only supported for ClawHub skill installs.");
expect(installSkillFromClawHubMock).not.toHaveBeenCalled();
expect(installSkillFromSourceMock).not.toHaveBeenCalled();
});
it("installs a skill into the cwd-inferred agent workspace", async () => {
routeWorkspaceByAgent();
resolveAgentIdByWorkspacePathMock.mockReturnValue("writer");
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace-writer/skills/calendar",
});
await withCwd("/tmp/workspace-writer/project", async () => {
await runCommand(["skills", "install", "calendar"]);
});
expect(resolveAgentIdByWorkspacePathMock).toHaveBeenCalledWith(
{},
"/tmp/workspace-writer/project",
);
expect(mockFirstObjectArg(installSkillFromClawHubMock).workspaceDir).toBe(
"/tmp/workspace-writer",
);
});
it("lets --agent override cwd-inferred workspace for installs", async () => {
routeWorkspaceByAgent();
resolveAgentIdByWorkspacePathMock.mockReturnValue("writer");
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace-main/skills/calendar",
});
await withCwd("/tmp/workspace-writer", async () => {
await runCommand(["skills", "install", "calendar", "--agent", "main"]);
});
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
expect(resolveAgentWorkspaceDirMock).toHaveBeenCalledWith({}, "main");
expect(mockFirstObjectArg(installSkillFromClawHubMock).workspaceDir).toBe(
"/tmp/workspace-main",
);
});
it("honors parent --agent for subcommands", async () => {
routeWorkspaceByAgent();
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace-writer/skills/calendar",
});
await runCommand(["skills", "--agent", "writer", "install", "calendar"]);
expect(resolveAgentWorkspaceDirMock).toHaveBeenCalledWith({}, "writer");
expect(mockFirstObjectArg(installSkillFromClawHubMock).workspaceDir).toBe(
"/tmp/workspace-writer",
);
});
it("installs a skill into the shared global skills directory", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/openclaw-config/skills/calendar",
});
await runCommand(["skills", "install", "calendar", "--global"]);
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
expect(resolveDefaultAgentIdMock).not.toHaveBeenCalled();
expect(resolveAgentWorkspaceDirMock).not.toHaveBeenCalled();
expect(installSkillFromClawHubMock).toHaveBeenCalledWith(
expect.objectContaining({
workspaceDir: "/tmp/openclaw-config",
}),
);
});
it("passes --force-install through for ClawHub skill installs", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace/skills/calendar",
});
await runCommand(["skills", "install", "calendar", "--force-install"]);
expect(installSkillFromClawHubMock).toHaveBeenCalledWith(
expect.objectContaining({
workspaceDir: "/tmp/workspace",
slug: "calendar",
forceInstall: true,
}),
);
});
it("passes --acknowledge-clawhub-risk through for ClawHub skill installs", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: true,
slug: "calendar",
version: "1.2.3",
targetDir: "/tmp/workspace/skills/calendar",
});
await runCommand(["skills", "install", "calendar", "--acknowledge-clawhub-risk"]);
expect(installSkillFromClawHubMock).toHaveBeenCalledWith(
expect.objectContaining({
workspaceDir: "/tmp/workspace",
slug: "calendar",
acknowledgeClawHubRisk: true,
}),
);
});
it("prints acknowledgement guidance for unacknowledged ClawHub skill installs", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: false,
code: "clawhub_risk_acknowledgement_required",
error:
"Install cancelled; rerun with --acknowledge-clawhub-risk to continue after reviewing the warning.",
warning: "WARNING - ClawHub found security risks in this release",
});
await expect(runCommand(["skills", "install", "calendar"])).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain(
"Install cancelled; rerun with --acknowledge-clawhub-risk to continue after reviewing the warning.",
);
});
it("prints blocked ClawHub skill install failures when no trust warning was emitted", async () => {
installSkillFromClawHubMock.mockResolvedValue({
ok: false,
code: "clawhub_download_blocked",
error:
'ClawHub blocked artifact download for "calendar@1.2.3"; install was not started. ClawHub /api/v1/skills/calendar/versions/1.2.3/download failed (403): blocked.',
});
await expect(runCommand(["skills", "install", "calendar"])).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain(
'ClawHub blocked artifact download for "calendar@1.2.3"; install was not started. ClawHub /api/v1/skills/calendar/versions/1.2.3/download failed (403): blocked.',
);
});
it("rejects using --global and --agent together for installs", async () => {
await expect(
runCommand(["skills", "install", "calendar", "--global", "--agent", "main"]),
).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("Use either --global or --agent, not both.");
expect(installSkillFromClawHubMock).not.toHaveBeenCalled();
});
it("rejects using parent --agent with install --global", async () => {
await expect(
runCommand(["skills", "--agent", "writer", "install", "calendar", "--global"]),
).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("Use either --global or --agent, not both.");
expect(installSkillFromClawHubMock).not.toHaveBeenCalled();
});
it("updates all tracked ClawHub skills", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/workspace/skills/calendar",
},
]);
await runCommand(["skills", "update", "--all"]);
expect(readTrackedClawHubSkillSlugsMock).toHaveBeenCalledWith("/tmp/workspace");
const updateAllArgs = mockFirstObjectArg(updateSkillsFromClawHubMock);
expectObjectFields(updateAllArgs, {
workspaceDir: "/tmp/workspace",
slug: undefined,
});
expect(updateAllArgs.config).toEqual({});
expectLogger(updateAllArgs.logger);
expect(
runtimeLogs.some((line) => line.includes("Updated calendar: 1.2.2 -> 1.2.3")),
"update result log",
).toBe(true);
expect(runtimeErrors).toStrictEqual([]);
});
it("does not bootstrap configured skills during update all", async () => {
loadConfigMock.mockReturnValueOnce({
agents: {
defaults: {
skills: ["apple-notes"],
},
},
});
readTrackedClawHubSkillSlugsMock.mockResolvedValue([]);
await runCommand(["skills", "update", "--all"]);
expect(readTrackedClawHubSkillSlugsMock).toHaveBeenCalledWith("/tmp/workspace");
expect(updateSkillsFromClawHubMock).not.toHaveBeenCalled();
expect(runtimeLogs).toContain("No tracked ClawHub skills to update.");
expect(runtimeErrors).toStrictEqual([]);
});
it("passes --force-install through for ClawHub skill updates", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/workspace/skills/calendar",
},
]);
await runCommand(["skills", "update", "--all", "--force-install"]);
expect(updateSkillsFromClawHubMock).toHaveBeenCalledWith(
expect.objectContaining({
workspaceDir: "/tmp/workspace",
slug: undefined,
forceInstall: true,
}),
);
});
it("passes --acknowledge-clawhub-risk through for ClawHub skill updates", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/workspace/skills/calendar",
},
]);
await runCommand(["skills", "update", "--all", "--acknowledge-clawhub-risk"]);
expect(updateSkillsFromClawHubMock).toHaveBeenCalledWith(
expect.objectContaining({
workspaceDir: "/tmp/workspace",
acknowledgeClawHubRisk: true,
}),
);
});
it("prints acknowledgement guidance for unacknowledged ClawHub skill updates", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: false,
code: "clawhub_risk_acknowledgement_required",
error:
"Update cancelled; rerun with --acknowledge-clawhub-risk to continue after reviewing the warning.",
warning: "WARNING - ClawHub found security risks in this release",
},
]);
await expect(runCommand(["skills", "update", "calendar"])).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain(
"Update cancelled; rerun with --acknowledge-clawhub-risk to continue after reviewing the warning.",
);
});
it("updates tracked ClawHub skills in the cwd-inferred agent workspace", async () => {
routeWorkspaceByAgent();
resolveAgentIdByWorkspacePathMock.mockReturnValue("writer");
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/workspace-writer/skills/calendar",
},
]);
await withCwd("/tmp/workspace-writer", async () => {
await runCommand(["skills", "update", "--all"]);
});
expect(readTrackedClawHubSkillSlugsMock).toHaveBeenCalledWith("/tmp/workspace-writer");
const updateInferredArgs = mockFirstObjectArg(updateSkillsFromClawHubMock);
expectObjectFields(updateInferredArgs, {
workspaceDir: "/tmp/workspace-writer",
slug: undefined,
});
expectLogger(updateInferredArgs.logger);
});
it("lets --agent override cwd-inferred workspace for updates", async () => {
routeWorkspaceByAgent();
resolveAgentIdByWorkspacePathMock.mockReturnValue("writer");
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/workspace-main/skills/calendar",
},
]);
await withCwd("/tmp/workspace-writer", async () => {
await runCommand(["skills", "update", "calendar", "--agent", "main"]);
});
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
const updateOverrideArgs = mockFirstObjectArg(updateSkillsFromClawHubMock);
expectObjectFields(updateOverrideArgs, {
workspaceDir: "/tmp/workspace-main",
slug: "calendar",
});
expectLogger(updateOverrideArgs.logger);
});
it("updates tracked ClawHub skills in the shared global skills directory", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/openclaw-config/skills/calendar",
},
]);
await runCommand(["skills", "update", "--all", "--global"]);
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
expect(resolveDefaultAgentIdMock).not.toHaveBeenCalled();
expect(resolveAgentWorkspaceDirMock).not.toHaveBeenCalled();
expect(readTrackedClawHubSkillSlugsMock).toHaveBeenCalledWith("/tmp/openclaw-config");
expect(updateSkillsFromClawHubMock).toHaveBeenCalledWith({
workspaceDir: "/tmp/openclaw-config",
slug: undefined,
logger: expect.any(Object),
config: {},
});
});
it("updates a single tracked ClawHub skill in the shared global skills directory", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: true,
slug: "calendar",
previousVersion: "1.2.2",
version: "1.2.3",
changed: true,
targetDir: "/tmp/openclaw-config/skills/calendar",
},
]);
await runCommand(["skills", "update", "calendar", "--global"]);
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
expect(resolveDefaultAgentIdMock).not.toHaveBeenCalled();
expect(resolveAgentWorkspaceDirMock).not.toHaveBeenCalled();
expect(readTrackedClawHubSkillSlugsMock).toHaveBeenCalledWith("/tmp/openclaw-config");
expect(updateSkillsFromClawHubMock).toHaveBeenCalledWith({
workspaceDir: "/tmp/openclaw-config",
slug: "calendar",
logger: expect.any(Object),
config: {},
});
});
it("exits nonzero when a tracked ClawHub skill update fails", async () => {
readTrackedClawHubSkillSlugsMock.mockResolvedValue(["calendar"]);
updateSkillsFromClawHubMock.mockResolvedValue([
{
ok: false,
error: "blocked by install policy: calendar is not approved",
},
]);
await expect(runCommand(["skills", "update", "calendar"])).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("blocked by install policy: calendar is not approved");
expect(runtimeLogs).toStrictEqual([]);
});
it("rejects using --global and --agent together for updates", async () => {
await expect(
runCommand(["skills", "update", "--all", "--global", "--agent", "main"]),
).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("Use either --global or --agent, not both.");
expect(readTrackedClawHubSkillSlugsMock).not.toHaveBeenCalled();
expect(updateSkillsFromClawHubMock).not.toHaveBeenCalled();
});
it("rejects using parent --agent with update --global", async () => {
await expect(
runCommand(["skills", "--agent", "writer", "update", "--all", "--global"]),
).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("Use either --global or --agent, not both.");
expect(readTrackedClawHubSkillSlugsMock).not.toHaveBeenCalled();
expect(updateSkillsFromClawHubMock).not.toHaveBeenCalled();
});
it("verifies ClawHub skills with JSON output by default", async () => {
await runCommand(["skills", "verify", "agentreceipt"]);
expect(resolveClawHubSkillVerificationTargetMock).toHaveBeenCalledWith({
workspaceDir: "/tmp/workspace",
slug: "agentreceipt",
version: undefined,
tag: undefined,
});
expect(fetchClawHubSkillVerificationMock).toHaveBeenCalledWith({
slug: "agentreceipt",
version: "1.2.3",
tag: undefined,
baseUrl: "https://private.example.com/clawhub",
});
expect(defaultRuntime.writeJson).toHaveBeenCalledTimes(1);
const payload = JSON.parse(runtimeStdout.at(-1) ?? "{}") as Record<string, unknown>;
expect(payload.schema).toBe("clawhub.skill.verify.v1");
expect(payload.ok).toBe(true);
expect(payload.signature).toEqual({ status: "unsigned" });
expect(payload.openclaw).toEqual({
resolution: {
source: "installed",
selector: "installed-version",
registry: "https://private.example.com/clawhub",
installedVersion: "1.2.3",
},
});
expect(defaultRuntime.exit).not.toHaveBeenCalled();
});
it("passes owner-qualified installed verification targets to ClawHub verification", async () => {
resolveClawHubSkillVerificationTargetMock.mockResolvedValueOnce({
ok: true,
slug: "weather",
ownerHandle: "demo-owner",
baseUrl: "https://private.example.com/clawhub",
version: "1.2.3",
tag: undefined,
resolution: {
source: "installed",
selector: "installed-version",
registry: "https://private.example.com/clawhub",
skillDir: "/tmp/workspace/skills/weather",
installedVersion: "1.2.3",
},
});
await runCommand(["skills", "verify", "weather"]);
expect(fetchClawHubSkillVerificationMock).toHaveBeenCalledWith({
slug: "weather",
ownerHandle: "demo-owner",
version: "1.2.3",
tag: undefined,
baseUrl: "https://private.example.com/clawhub",
});
});
it("passes owner-qualified verify refs and selectors through the resolver", async () => {
resolveClawHubSkillVerificationTargetMock.mockResolvedValueOnce({
ok: true,
slug: "weather",
ownerHandle: "demo-owner",
baseUrl: "https://private.example.com/clawhub",
version: undefined,
tag: "latest",
resolution: {
source: "registry",
selector: "tag",
registry: "https://private.example.com/clawhub",
skillDir: undefined,
installedVersion: undefined,
},
});
await runCommand(["skills", "verify", "@demo-owner/weather", "--tag", "latest", "--card"]);
expect(resolveClawHubSkillVerificationTargetMock).toHaveBeenCalledWith({
workspaceDir: "/tmp/workspace",
slug: "@demo-owner/weather",
version: undefined,
tag: "latest",
});
expect(fetchClawHubSkillVerificationMock).toHaveBeenCalledWith({
slug: "weather",
ownerHandle: "demo-owner",
version: undefined,
tag: "latest",
baseUrl: "https://private.example.com/clawhub",
});
expect(fetchClawHubSkillCardMock).toHaveBeenCalledWith({
url: "https://private.example.com/clawhub/api/v1/skills/agentreceipt/card?version=1.2.3",
baseUrl: "https://private.example.com/clawhub",
});
});
it("passes explicit verify selectors and shared workspace options to the resolver", async () => {
await runCommand(["skills", "verify", "agentreceipt", "--version", "2.0.0", "--global"]);
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
expect(resolveDefaultAgentIdMock).not.toHaveBeenCalled();
expect(resolveAgentWorkspaceDirMock).not.toHaveBeenCalled();
expect(resolveClawHubSkillVerificationTargetMock).toHaveBeenCalledWith({
workspaceDir: "/tmp/openclaw-config",
slug: "agentreceipt",
version: "2.0.0",
tag: undefined,
});
});
it("includes verified ClawHub source URLs in verify JSON output", async () => {
const provenance = {
source: "server-resolved-github-import",
repo: "openclaw/skills",
commit: "0123456789abcdef0123456789abcdef01234567",
path: "agentreceipt",
};
const verifiedSourceUrl =
"https://github.com/openclaw/skills/tree/0123456789abcdef0123456789abcdef01234567/agentreceipt";
readVerifiedClawHubSkillSourceUrlMock.mockReturnValueOnce(verifiedSourceUrl);
fetchClawHubSkillVerificationMock.mockResolvedValueOnce({
schema: "clawhub.skill.verify.v1",
ok: true,
decision: "pass",
reasons: [],
skill: { slug: "agentreceipt", displayName: "Agent Receipt" },
publisher: { handle: "openclaw" },
version: { version: "1.2.3" },
card: {
available: true,
url: "https://private.example.com/clawhub/api/v1/skills/agentreceipt/card?version=1.2.3",
},
artifact: {
sourceFingerprint: "source-fingerprint",
bundleFingerprints: ["generated-bundle-fingerprint"],
},
provenance,
security: { status: "clean" },
signature: { status: "unsigned" },
});
await runCommand(["skills", "verify", "agentreceipt"]);
expect(readVerifiedClawHubSkillSourceUrlMock).toHaveBeenCalledWith(provenance);
const payload = JSON.parse(runtimeStdout.at(-1) ?? "{}") as {
openclaw?: { verifiedSourceUrl?: string };
};
expect(payload.openclaw?.verifiedSourceUrl).toBe(verifiedSourceUrl);
expect(defaultRuntime.exit).not.toHaveBeenCalled();
});
it("fetches generated Skill Card markdown for --card", async () => {
fetchClawHubSkillVerificationMock.mockResolvedValueOnce({
schema: "clawhub.skill.verify.v1",
ok: true,
decision: "pass",
reasons: [],
skill: { slug: "agentreceipt", displayName: "Agent Receipt" },
publisher: { handle: "openclaw" },
version: { version: "1.2.3" },
card: {
available: true,
url: "https://cards.example.test/generated/agentreceipt.md",
},
artifact: {
sourceFingerprint: "source-fingerprint",
bundleFingerprints: ["generated-bundle-fingerprint"],
},
provenance: null,
security: { status: "clean" },
signature: { status: "unsigned" },
});
await runCommand(["skills", "verify", "agentreceipt", "--tag", "latest", "--card"]);
expect(resolveClawHubSkillVerificationTargetMock).toHaveBeenCalledWith({
workspaceDir: "/tmp/workspace",
slug: "agentreceipt",
version: undefined,
tag: "latest",
});
expect(fetchClawHubSkillCardMock).toHaveBeenCalledWith({
url: "https://cards.example.test/generated/agentreceipt.md",
baseUrl: "https://private.example.com/clawhub",
});
expect(defaultRuntime.writeStdout).toHaveBeenCalledTimes(1);
expect(runtimeStdout.at(-1)).toBe("# Agent Receipt\n\nGenerated by ClawHub.");
expect(defaultRuntime.writeJson).not.toHaveBeenCalled();
});
it("fails --card when the verified Skill Card is unavailable", async () => {
fetchClawHubSkillVerificationMock.mockResolvedValueOnce({
schema: "clawhub.skill.verify.v1",
ok: false,
decision: "fail",
reasons: ["card.missing"],
skill: { slug: "agentreceipt" },
publisher: null,
version: { version: "1.2.3" },
card: { available: false },
artifact: null,
provenance: null,
security: { status: "clean" },
signature: { status: "unsigned" },
});
await expect(runCommand(["skills", "verify", "agentreceipt", "--card"])).rejects.toThrow(
"__exit__:1",
);
expect(runtimeErrors).toContain("Skill Card is not available.");
expect(fetchClawHubSkillCardMock).not.toHaveBeenCalled();
expect(defaultRuntime.writeJson).not.toHaveBeenCalled();
});
it.each([
{ label: "missing card", card: null },
{ label: "missing card URL", card: { available: true } },
])("fails --card when the verification response has $label metadata", async ({ card }) => {
fetchClawHubSkillVerificationMock.mockResolvedValueOnce({
schema: "clawhub.skill.verify.v1",
ok: true,
decision: "pass",
reasons: [],
skill: { slug: "agentreceipt" },
publisher: null,
version: { version: "1.2.3" },
card,
artifact: null,
provenance: null,
security: { status: "clean" },
signature: { status: "unsigned" },
});
await expect(runCommand(["skills", "verify", "agentreceipt", "--card"])).rejects.toThrow(
"__exit__:1",
);
expect(runtimeErrors).toContain(
"ClawHub verification response did not include a Skill Card URL.",
);
expect(fetchClawHubSkillCardMock).not.toHaveBeenCalled();
expect(defaultRuntime.writeJson).not.toHaveBeenCalled();
});
it("exits non-zero when the ClawHub verification envelope fails", async () => {
fetchClawHubSkillVerificationMock.mockResolvedValueOnce({
schema: "clawhub.skill.verify.v1",
ok: false,
decision: "fail",
reasons: ["security.status_not_clean"],
skill: { slug: "agentreceipt" },
publisher: null,
version: { version: "1.2.3" },
card: { available: true },
artifact: null,
provenance: null,
security: { status: "malicious" },
signature: { status: "unsigned" },
});
await expect(runCommand(["skills", "verify", "agentreceipt"])).rejects.toThrow("__exit__:1");
const payload = JSON.parse(runtimeStdout.at(-1) ?? "{}") as Record<string, unknown>;
expect(payload.ok).toBe(false);
expect(runtimeErrors).toStrictEqual([]);
});
it.each([
{ label: "unknown decision", ok: true, decision: "quarantined" },
{ label: "non-boolean ok", ok: "false", decision: "pass" },
])("fails closed for malformed verification envelopes with $label", async ({ ok, decision }) => {
fetchClawHubSkillVerificationMock.mockResolvedValueOnce({
schema: "clawhub.skill.verify.v1",
ok,
decision,
reasons: [],
skill: { slug: "agentreceipt" },
publisher: null,
version: { version: "1.2.3" },
card: {
available: true,
url: "https://private.example.com/clawhub/api/v1/skills/agentreceipt/card?version=1.2.3",
},
artifact: null,
provenance: null,
security: { status: "clean" },
signature: { status: "unsigned" },
});
await expect(runCommand(["skills", "verify", "agentreceipt"])).rejects.toThrow("__exit__:1");
const payload = JSON.parse(runtimeStdout.at(-1) ?? "{}") as Record<string, unknown>;
expect(payload.ok).toBe(ok);
expect(payload.decision).toBe(decision);
expect(runtimeErrors).toStrictEqual([]);
});
it("fails before fetching when verification target resolution fails", async () => {
resolveClawHubSkillVerificationTargetMock.mockResolvedValueOnce({
ok: false,
error: "Use either --version or --tag.",
});
await expect(
runCommand(["skills", "verify", "agentreceipt", "--version", "1.0.0", "--tag", "latest"]),
).rejects.toThrow("__exit__:1");
expect(runtimeErrors).toContain("Use either --version or --tag.");
expect(fetchClawHubSkillVerificationMock).not.toHaveBeenCalled();
expect(fetchClawHubSkillCardMock).not.toHaveBeenCalled();
});
it("does not register a redundant --json option for verify", () => {
const skills = createProgram().commands.find((command) => command.name() === "skills");
const verify = skills?.commands.find((command) => command.name() === "verify");
expect(verify?.options.map((option) => option.long)).toEqual([
"--version",
"--tag",
"--card",
"--global",
"--agent",
]);
});
it.each([
{
label: "list",
argv: ["skills", "list", "--json"],
assert: (payload: Record<string, unknown>) => {
const skills = payload.skills as Array<Record<string, unknown>>;
expect(skills).toHaveLength(1);
expect(skills[0]?.name).toBe("calendar");
},
},
{
label: "info",
argv: ["skills", "info", "calendar", "--json"],
assert: (payload: Record<string, unknown>) => {
expect(payload.name).toBe("calendar");
expect(payload.primaryEnv).toBe("CALENDAR_API_KEY");
},
},
{
label: "check",
argv: ["skills", "check", "--json"],
assert: (payload: Record<string, unknown>) => {
expectObjectFields(payload.summary, {
total: 1,
eligible: 1,
});
},
},
])("routes skills $label JSON output through stdout", async ({ argv, assert }) => {
await runCommand(argv);
expectStatusWorkspaceCall("/tmp/workspace");
expect(defaultRuntime.writeStdout).toHaveBeenCalledTimes(1);
expect(defaultRuntime.writeJson).not.toHaveBeenCalled();
expect(defaultRuntime.log).not.toHaveBeenCalled();
expect(defaultRuntime.exit).not.toHaveBeenCalled();
expect(runtimeErrors).toStrictEqual([]);
expect(runtimeStdout).toHaveLength(1);
const payload = JSON.parse(runtimeStdout.at(-1) ?? "{}") as Record<string, unknown>;
assert(payload);
});
it.each([
["list", ["skills", "list", "--json"]],
["info", ["skills", "info", "calendar", "--json"]],
["check", ["skills", "check", "--json"]],
["default", ["skills"]],
])("routes skills %s through the cwd-inferred agent workspace", async (_label, argv) => {
routeWorkspaceByAgent();
resolveAgentIdByWorkspacePathMock.mockReturnValue("writer");
await withCwd("/tmp/workspace-writer", async () => {
await runCommand(argv);
});
expectStatusWorkspaceCall("/tmp/workspace-writer");
});
it("uses gateway skills.status for read-only status commands when reachable", async () => {
routeWorkspaceByAgent();
const gatewayReport = {
...skillStatusReportFixture,
agentId: "writer",
workspaceDir: "/gateway/workspace-writer",
skills: [
{
...skillStatusReportFixture.skills[0],
name: "apple-notes",
description: "Notes helpers",
eligible: true,
modelVisible: true,
commandVisible: true,
requirements: {
bins: ["memo"],
anyBins: [],
env: [],
config: [],
os: ["darwin"],
},
missing: {
bins: [],
anyBins: [],
env: [],
config: [],
os: [],
},
},
],
};
callGatewayMock.mockResolvedValue(gatewayReport);
await runCommand(["skills", "check", "--agent", "writer", "--json"]);
expect(callGatewayMock).toHaveBeenCalledWith({
config: {},
method: "skills.status",
params: { agentId: "writer" },
timeoutMs: 1_500,
clientName: "cli",
mode: "cli",
});
expect(buildWorkspaceSkillStatusMock).not.toHaveBeenCalled();
const output = JSON.parse(runtimeStdout.at(-1) ?? "{}") as {
workspaceDir?: string;
eligible?: string[];
missingRequirements?: Array<{ name: string }>;
};
expect(output.workspaceDir).toBe("/gateway/workspace-writer");
expect(output.eligible).toEqual(["apple-notes"]);
expect(output.missingRequirements).toEqual([]);
});
it.each([
["list", ["skills", "list", "--agent", "writer", "--json"]],
["info", ["skills", "info", "calendar", "--agent", "writer", "--json"]],
["check", ["skills", "check", "--agent", "writer", "--json"]],
["default", ["skills", "--agent", "writer"]],
])("routes skills %s through the explicit agent workspace", async (_label, argv) => {
routeWorkspaceByAgent();
resolveAgentIdByWorkspacePathMock.mockReturnValue("main");
await withCwd("/tmp/workspace-main", async () => {
await runCommand(argv);
});
expect(resolveAgentIdByWorkspacePathMock).not.toHaveBeenCalled();
expectStatusWorkspaceCall("/tmp/workspace-writer");
});
it("falls back to the default agent outside configured workspaces", async () => {
routeWorkspaceByAgent();
resolveDefaultAgentIdMock.mockReturnValue("main");
resolveAgentIdByWorkspacePathMock.mockReturnValue(undefined);
await withCwd("/tmp/unrelated", async () => {
await runCommand(["skills", "list", "--json"]);
});
expect(resolveAgentIdByWorkspacePathMock).toHaveBeenCalledWith({}, "/tmp/unrelated");
expect(resolveDefaultAgentIdMock).toHaveBeenCalledWith({});
expectStatusWorkspaceCall("/tmp/workspace-main");
});
it("keeps non-JSON skills list output on stdout with human-readable formatting", async () => {
await runCommand(["skills", "list"]);
expect(defaultRuntime.writeStdout).toHaveBeenCalledTimes(1);
expect(defaultRuntime.log).not.toHaveBeenCalled();
expect(runtimeErrors).toStrictEqual([]);
expect(runtimeStdout.at(-1)).toContain("calendar");
expect(runtimeStdout.at(-1)).toContain("openclaw skills search");
});
});