feat(FN-3791): add agent provisioning approval guards and policy enforcemen

Implements approval guards for agent provisioning (FN-3791), adding policy-gated create/delete flows with dedupe logic, CLI tool alignment, engine run-audit coverage, and corresponding test suites, plus documentation updates and a regression fix for verification/tool docs sync.

Fusion-Task-Id: FN-3791
This commit is contained in:
Fusion
2026-05-10 22:44:50 -07:00
committed by gsxdsm
parent 7fd3ccc68b
commit a39985cabf
10 changed files with 316 additions and 19 deletions

View File

@@ -0,0 +1,42 @@
import { describe, it, expect } from "vitest";
import { mkdtemp, rm } from "node:fs/promises";
import { join } from "node:path";
import { tmpdir } from "node:os";
import kbExtension from "../extension.js";
function createMockAPI() {
const tools = new Map<string, any>();
return {
registerTool(def: any) {
tools.set(def.name, def);
},
registerCommand() {},
registerShortcut() {},
registerFlag() {},
on() {},
tools,
} as any;
}
describe("extension agent provisioning tools", () => {
it("creates and deletes agents as privileged user caller", async () => {
const cwd = await mkdtemp(join(tmpdir(), "fn-ext-provision-"));
try {
const api = createMockAPI();
kbExtension(api);
const createTool = api.tools.get("fn_agent_create");
const deleteTool = api.tools.get("fn_agent_delete");
const name = `Provisioned-${Date.now()}`;
const createResult = await createTool.execute("call-1", { name, role: "executor" }, undefined, undefined, { cwd });
expect(createResult.details.outcome).toBe("created");
const createdId = createResult.details.agentId as string;
expect(createdId).toBeTruthy();
const deleteResult = await deleteTool.execute("call-2", { agent_id: createdId }, undefined, undefined, { cwd });
expect(deleteResult.details.outcome).toBe("deleted");
} finally {
await rm(cwd, { recursive: true, force: true });
}
});
});