31695e89a8
Claude Code CLI adapter for the workflow engine, mirroring workflow-agent-hermes architecture. Spawns `claude -p` with `--output-format json` for structured output parsing. Refs #391
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
import { describe, expect, test } from "bun:test";
|
|
import type { AgentContext } from "@uncaged/workflow-agent-kit";
|
|
import { buildClaudeCodePrompt } from "../src/claude-code.js";
|
|
|
|
function makeCtx(overrides: Partial<AgentContext> = {}): AgentContext {
|
|
return {
|
|
workflow: {
|
|
roles: {
|
|
developer: {
|
|
goal: "Write code",
|
|
capabilities: ["coding"],
|
|
procedure: "1. Read spec\n2. Write code",
|
|
output: "List files changed",
|
|
meta: null,
|
|
},
|
|
},
|
|
conditions: {},
|
|
graph: {},
|
|
},
|
|
role: "developer",
|
|
start: { prompt: "Fix the bug", workflowHash: "abc123", threadId: "t1" },
|
|
steps: [],
|
|
store: {} as AgentContext["store"],
|
|
outputFormatInstruction: "Use YAML frontmatter",
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
describe("buildClaudeCodePrompt", () => {
|
|
test("assembles outputFormatInstruction + role prompt + task prompt", () => {
|
|
const result = buildClaudeCodePrompt(makeCtx());
|
|
expect(result).toMatch(/^Use YAML frontmatter/);
|
|
expect(result).toContain("Write code");
|
|
expect(result).toContain("## Task\nFix the bug");
|
|
});
|
|
|
|
test("includes previous steps as history summary", () => {
|
|
const ctx = makeCtx({
|
|
steps: [{ role: "planner", output: '{"plan":"do X"}', agent: "hermes" }],
|
|
});
|
|
const result = buildClaudeCodePrompt(ctx);
|
|
expect(result).toContain("## Previous Steps");
|
|
expect(result).toContain("Step 1: planner");
|
|
expect(result).toContain("do X");
|
|
});
|
|
|
|
test("omits history section when steps array is empty", () => {
|
|
const result = buildClaudeCodePrompt(makeCtx({ steps: [] }));
|
|
expect(result).not.toContain("## Previous Steps");
|
|
});
|
|
|
|
test("works without outputFormatInstruction", () => {
|
|
const result = buildClaudeCodePrompt(makeCtx({ outputFormatInstruction: "" }));
|
|
expect(result).not.toMatch(/^\s*\n/);
|
|
expect(result).toContain("Write code");
|
|
expect(result).toContain("## Task");
|
|
});
|
|
});
|