Persist canonical namespaced skill keys, split adapter runtime names from skill keys, and update portability/import flows to carry the canonical identity end-to-end. Co-Authored-By: Paperclip <noreply@paperclip.ing>
89 lines
2.8 KiB
TypeScript
89 lines
2.8 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { afterEach, describe, expect, it } from "vitest";
|
|
import {
|
|
listGeminiSkills,
|
|
syncGeminiSkills,
|
|
} from "@paperclipai/adapter-gemini-local/server";
|
|
|
|
async function makeTempDir(prefix: string): Promise<string> {
|
|
return fs.mkdtemp(path.join(os.tmpdir(), prefix));
|
|
}
|
|
|
|
describe("gemini local skill sync", () => {
|
|
const paperclipKey = "paperclipai/paperclip/paperclip";
|
|
const cleanupDirs = new Set<string>();
|
|
|
|
afterEach(async () => {
|
|
await Promise.all(Array.from(cleanupDirs).map((dir) => fs.rm(dir, { recursive: true, force: true })));
|
|
cleanupDirs.clear();
|
|
});
|
|
|
|
it("reports configured Paperclip skills and installs them into the Gemini skills home", async () => {
|
|
const home = await makeTempDir("paperclip-gemini-skill-sync-");
|
|
cleanupDirs.add(home);
|
|
|
|
const ctx = {
|
|
agentId: "agent-1",
|
|
companyId: "company-1",
|
|
adapterType: "gemini_local",
|
|
config: {
|
|
env: {
|
|
HOME: home,
|
|
},
|
|
paperclipSkillSync: {
|
|
desiredSkills: [paperclipKey],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
const before = await listGeminiSkills(ctx);
|
|
expect(before.mode).toBe("persistent");
|
|
expect(before.desiredSkills).toContain(paperclipKey);
|
|
expect(before.entries.find((entry) => entry.key === paperclipKey)?.required).toBe(true);
|
|
expect(before.entries.find((entry) => entry.key === paperclipKey)?.state).toBe("missing");
|
|
|
|
const after = await syncGeminiSkills(ctx, [paperclipKey]);
|
|
expect(after.entries.find((entry) => entry.key === paperclipKey)?.state).toBe("installed");
|
|
expect((await fs.lstat(path.join(home, ".gemini", "skills", "paperclip"))).isSymbolicLink()).toBe(true);
|
|
});
|
|
|
|
it("keeps required bundled Paperclip skills installed even when the desired set is emptied", async () => {
|
|
const home = await makeTempDir("paperclip-gemini-skill-prune-");
|
|
cleanupDirs.add(home);
|
|
|
|
const configuredCtx = {
|
|
agentId: "agent-2",
|
|
companyId: "company-1",
|
|
adapterType: "gemini_local",
|
|
config: {
|
|
env: {
|
|
HOME: home,
|
|
},
|
|
paperclipSkillSync: {
|
|
desiredSkills: [paperclipKey],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
await syncGeminiSkills(configuredCtx, [paperclipKey]);
|
|
|
|
const clearedCtx = {
|
|
...configuredCtx,
|
|
config: {
|
|
env: {
|
|
HOME: home,
|
|
},
|
|
paperclipSkillSync: {
|
|
desiredSkills: [],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
const after = await syncGeminiSkills(clearedCtx, []);
|
|
expect(after.desiredSkills).toContain(paperclipKey);
|
|
expect(after.entries.find((entry) => entry.key === paperclipKey)?.state).toBe("installed");
|
|
expect((await fs.lstat(path.join(home, ".gemini", "skills", "paperclip"))).isSymbolicLink()).toBe(true);
|
|
});
|
|
});
|