143 lines
5.3 KiB
TypeScript
143 lines
5.3 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, test } from "bun:test";
|
|
import * as fs from "node:fs/promises";
|
|
import * as os from "node:os";
|
|
import * as path from "node:path";
|
|
import { disableProvider, enableProvider } from "@oh-my-pi/pi-coding-agent/capability";
|
|
import { clearCache as clearFsCache } from "@oh-my-pi/pi-coding-agent/capability/fs";
|
|
import {
|
|
clearOmpExtensionCliRoots,
|
|
injectOmpExtensionCliRoots,
|
|
} from "@oh-my-pi/pi-coding-agent/discovery/omp-extension-roots";
|
|
import { discoverAgents } from "@oh-my-pi/pi-coding-agent/task/discovery";
|
|
import { removeWithRetries } from "@oh-my-pi/pi-utils";
|
|
|
|
const OMP_AGENT_MD = [
|
|
"---",
|
|
"name: omp-test-agent",
|
|
"description: OMP-native test agent.",
|
|
"---",
|
|
"You are an OMP task agent.",
|
|
].join("\n");
|
|
|
|
const OMP_PLUGIN_AGENT_MD = [
|
|
"---",
|
|
"name: loom-verify-spec",
|
|
"description: Plugin-shipped verification agent.",
|
|
"---",
|
|
"You verify the loom spec.",
|
|
].join("\n");
|
|
|
|
const CLAUDE_AGENT_MD = [
|
|
"---",
|
|
"name: cc-test-agent",
|
|
"description: Test Claude Code agent.",
|
|
"tools: Read, Grep, Glob, Bash",
|
|
"model: sonnet",
|
|
"color: purple",
|
|
"---",
|
|
"You are a Claude Code custom subagent.",
|
|
].join("\n");
|
|
|
|
async function writeOmpPluginAgent(home: string): Promise<void> {
|
|
const userPluginsRoot = path.join(home, ".omp", "plugins");
|
|
const pluginRoot = path.join(userPluginsRoot, "node_modules", "loom");
|
|
await fs.mkdir(path.join(pluginRoot, "agents"), { recursive: true });
|
|
await fs.writeFile(
|
|
path.join(pluginRoot, "package.json"),
|
|
JSON.stringify({ name: "loom", version: "1.0.0", omp: { version: "1.0.0" } }),
|
|
);
|
|
await fs.writeFile(
|
|
path.join(userPluginsRoot, "package.json"),
|
|
JSON.stringify({
|
|
name: "omp-plugins-root",
|
|
version: "0.0.0",
|
|
dependencies: { loom: "1.0.0" },
|
|
}),
|
|
);
|
|
await fs.writeFile(path.join(pluginRoot, "agents", "loom-verify-spec.md"), OMP_PLUGIN_AGENT_MD);
|
|
}
|
|
|
|
describe("discoverAgents", () => {
|
|
let tempHome: string;
|
|
let projectDir: string;
|
|
|
|
beforeEach(async () => {
|
|
tempHome = await fs.mkdtemp(path.join(os.tmpdir(), "omp-task-agent-discovery-"));
|
|
projectDir = path.join(tempHome, "project");
|
|
await fs.mkdir(projectDir, { recursive: true });
|
|
});
|
|
|
|
afterEach(async () => {
|
|
enableProvider("omp-plugins");
|
|
clearOmpExtensionCliRoots();
|
|
clearFsCache();
|
|
await removeWithRetries(tempHome);
|
|
});
|
|
|
|
test("loads OMP agents but skips Claude Code custom agents", async () => {
|
|
await fs.mkdir(path.join(projectDir, ".omp", "agents"), { recursive: true });
|
|
await fs.writeFile(path.join(projectDir, ".omp", "agents", "omp-test-agent.md"), OMP_AGENT_MD);
|
|
|
|
await fs.mkdir(path.join(tempHome, ".claude", "agents"), { recursive: true });
|
|
await fs.writeFile(path.join(tempHome, ".claude", "agents", "user-cc-test-agent.md"), CLAUDE_AGENT_MD);
|
|
await fs.mkdir(path.join(projectDir, ".claude", "agents"), { recursive: true });
|
|
await fs.writeFile(path.join(projectDir, ".claude", "agents", "project-cc-test-agent.md"), CLAUDE_AGENT_MD);
|
|
|
|
const { agents, projectAgentsDir } = await discoverAgents(projectDir, tempHome);
|
|
const names = agents.map(agent => agent.name);
|
|
|
|
expect(names).toContain("omp-test-agent");
|
|
expect(names).not.toContain("cc-test-agent");
|
|
expect(projectAgentsDir).toBe(path.join(projectDir, ".omp", "agents"));
|
|
});
|
|
|
|
test("loads agents from OMP npm plugins under <home>/.omp/plugins/node_modules", async () => {
|
|
await writeOmpPluginAgent(tempHome);
|
|
|
|
const { agents } = await discoverAgents(projectDir, tempHome);
|
|
const names = agents.map(agent => agent.name);
|
|
|
|
expect(names).toContain("loom-verify-spec");
|
|
});
|
|
|
|
test("excludes OMP npm plugin agents when omp-plugins is disabled", async () => {
|
|
await writeOmpPluginAgent(tempHome);
|
|
disableProvider("omp-plugins");
|
|
|
|
const { agents } = await discoverAgents(projectDir, tempHome);
|
|
const names = agents.map(agent => agent.name);
|
|
|
|
expect(names).not.toContain("loom-verify-spec");
|
|
});
|
|
|
|
test("CLI extension agents win over project `extensions:` settings on dedup", async () => {
|
|
// listOmpExtensionRoots returns roots in source-precedence order
|
|
// (CLI > project settings > user settings > installed plugins). Agents
|
|
// must honor that order so the `task` surface dedups identically to
|
|
// the skills/hooks/tools surface in discovery/omp-plugins.ts.
|
|
const cliExt = path.join(tempHome, "cli-ext");
|
|
const projectExt = path.join(tempHome, "project-ext");
|
|
await fs.mkdir(path.join(cliExt, "agents"), { recursive: true });
|
|
await fs.mkdir(path.join(projectExt, "agents"), { recursive: true });
|
|
await fs.writeFile(
|
|
path.join(cliExt, "agents", "collide.md"),
|
|
["---", "name: collide", "description: from-cli", "---", "cli body"].join("\n"),
|
|
);
|
|
await fs.writeFile(
|
|
path.join(projectExt, "agents", "collide.md"),
|
|
["---", "name: collide", "description: from-project-settings", "---", "project body"].join("\n"),
|
|
);
|
|
|
|
await fs.mkdir(path.join(projectDir, ".omp"), { recursive: true });
|
|
await fs.writeFile(path.join(projectDir, ".omp", "settings.json"), JSON.stringify({ extensions: [projectExt] }));
|
|
injectOmpExtensionCliRoots([cliExt], tempHome, projectDir);
|
|
|
|
const { agents } = await discoverAgents(projectDir, tempHome);
|
|
const collide = agents.find(agent => agent.name === "collide");
|
|
|
|
expect(collide).toBeDefined();
|
|
expect(collide?.description).toBe("from-cli");
|
|
expect(collide?.filePath).toBe(path.join(cliExt, "agents", "collide.md"));
|
|
});
|
|
});
|