import { beforeEach, describe, expect, it, vi } from "vitest"; const callGatewayMock = vi.fn(); vi.mock("../gateway/call.js", () => ({ callGateway: (opts: unknown) => callGatewayMock(opts), })); let configOverride: ReturnType<(typeof import("../config/config.js"))["loadConfig"]> = { session: { mainKey: "main", scope: "per-sender", }, }; vi.mock("../config/config.js", async (importOriginal) => { const actual = await importOriginal(); return { ...actual, loadConfig: () => configOverride, resolveGatewayPort: () => 18789, }; }); import { createClawdbotTools } from "./clawdbot-tools.js"; import { resetSubagentRegistryForTests } from "./subagent-registry.js"; describe("clawdbot-tools: subagents", () => { beforeEach(() => { configOverride = { session: { mainKey: "main", scope: "per-sender", }, }; }); it("sessions_spawn allows cross-agent spawning when configured", async () => { resetSubagentRegistryForTests(); callGatewayMock.mockReset(); configOverride = { session: { mainKey: "main", scope: "per-sender", }, agents: { list: [ { id: "main", subagents: { allowAgents: ["beta"], }, }, ], }, }; let childSessionKey: string | undefined; callGatewayMock.mockImplementation(async (opts: unknown) => { const request = opts as { method?: string; params?: unknown }; if (request.method === "agent") { const params = request.params as { sessionKey?: string } | undefined; childSessionKey = params?.sessionKey; return { runId: "run-1", status: "accepted", acceptedAt: 5000 }; } if (request.method === "agent.wait") { return { status: "timeout" }; } return {}; }); const tool = createClawdbotTools({ agentSessionKey: "main", agentChannel: "whatsapp", }).find((candidate) => candidate.name === "sessions_spawn"); if (!tool) throw new Error("missing sessions_spawn tool"); const result = await tool.execute("call7", { task: "do thing", agentId: "beta", }); expect(result.details).toMatchObject({ status: "accepted", runId: "run-1", }); expect(childSessionKey?.startsWith("agent:beta:subagent:")).toBe(true); }); it("sessions_spawn allows any agent when allowlist is *", async () => { resetSubagentRegistryForTests(); callGatewayMock.mockReset(); configOverride = { session: { mainKey: "main", scope: "per-sender", }, agents: { list: [ { id: "main", subagents: { allowAgents: ["*"], }, }, ], }, }; let childSessionKey: string | undefined; callGatewayMock.mockImplementation(async (opts: unknown) => { const request = opts as { method?: string; params?: unknown }; if (request.method === "agent") { const params = request.params as { sessionKey?: string } | undefined; childSessionKey = params?.sessionKey; return { runId: "run-1", status: "accepted", acceptedAt: 5100 }; } if (request.method === "agent.wait") { return { status: "timeout" }; } return {}; }); const tool = createClawdbotTools({ agentSessionKey: "main", agentChannel: "whatsapp", }).find((candidate) => candidate.name === "sessions_spawn"); if (!tool) throw new Error("missing sessions_spawn tool"); const result = await tool.execute("call8", { task: "do thing", agentId: "beta", }); expect(result.details).toMatchObject({ status: "accepted", runId: "run-1", }); expect(childSessionKey?.startsWith("agent:beta:subagent:")).toBe(true); }); });