139 lines
5.4 KiB
TypeScript
139 lines
5.4 KiB
TypeScript
|
|
import { describe, expect, test } from "bun:test"
|
||
|
|
import { createToolExecuteBeforeHandler } from "./tool-execute-before"
|
||
|
|
import type { CreatedHooks } from "../create-hooks"
|
||
|
|
|
||
|
|
describe("createToolExecuteBeforeHandler", () => {
|
||
|
|
describe("task tool subagent_type normalization", () => {
|
||
|
|
const emptyHooks = {} as CreatedHooks
|
||
|
|
|
||
|
|
function createCtxWithSessionMessages(messages: Array<{ info?: { agent?: string; role?: string } }> = []) {
|
||
|
|
return {
|
||
|
|
client: {
|
||
|
|
session: {
|
||
|
|
messages: async () => ({ data: messages }),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
} as unknown as Parameters<typeof createToolExecuteBeforeHandler>[0]["ctx"]
|
||
|
|
}
|
||
|
|
|
||
|
|
test("sets subagent_type to sisyphus-junior when category is provided without subagent_type", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages()
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { category: "quick", description: "Test" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("sisyphus-junior")
|
||
|
|
})
|
||
|
|
|
||
|
|
test("preserves existing subagent_type when explicitly provided", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages()
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { subagent_type: "plan", description: "Plan test" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("plan")
|
||
|
|
})
|
||
|
|
|
||
|
|
test("sets subagent_type to sisyphus-junior when category provided with different subagent_type", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages()
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { category: "quick", subagent_type: "oracle", description: "Test" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("sisyphus-junior")
|
||
|
|
})
|
||
|
|
|
||
|
|
test("resolves subagent_type from session first message when session_id provided without subagent_type", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages([
|
||
|
|
{ info: { role: "user" } },
|
||
|
|
{ info: { role: "assistant", agent: "explore" } },
|
||
|
|
{ info: { role: "assistant", agent: "oracle" } },
|
||
|
|
])
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { session_id: "ses_abc123", description: "Continue task", prompt: "fix it" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("explore")
|
||
|
|
})
|
||
|
|
|
||
|
|
test("falls back to 'continue' when session has no agent info", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages([
|
||
|
|
{ info: { role: "user" } },
|
||
|
|
{ info: { role: "assistant" } },
|
||
|
|
])
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { session_id: "ses_abc123", description: "Continue task", prompt: "fix it" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("continue")
|
||
|
|
})
|
||
|
|
|
||
|
|
test("preserves subagent_type when session_id is provided with explicit subagent_type", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages()
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { session_id: "ses_abc123", subagent_type: "explore", description: "Continue explore" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("explore")
|
||
|
|
})
|
||
|
|
|
||
|
|
test("does not modify args for non-task tools", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages()
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "bash", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { command: "ls" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBeUndefined()
|
||
|
|
})
|
||
|
|
|
||
|
|
test("does not set subagent_type when neither category nor session_id is provided and subagent_type is present", async () => {
|
||
|
|
//#given
|
||
|
|
const ctx = createCtxWithSessionMessages()
|
||
|
|
const handler = createToolExecuteBeforeHandler({ ctx, hooks: emptyHooks })
|
||
|
|
const input = { tool: "task", sessionID: "ses_123", callID: "call_1" }
|
||
|
|
const output = { args: { subagent_type: "oracle", description: "Oracle task" } as Record<string, unknown> }
|
||
|
|
|
||
|
|
//#when
|
||
|
|
await handler(input, output)
|
||
|
|
|
||
|
|
//#then
|
||
|
|
expect(output.args.subagent_type).toBe("oracle")
|
||
|
|
})
|
||
|
|
})
|
||
|
|
})
|