interception.spec.ts 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. import { describe, expect, it } from 'vitest'
  2. import { Context } from 'cordis'
  3. import LlmService, { CallId, type Message } from '@deepseek-ai/dsh-llm'
  4. import SessionStore, { SessionId, type SessionEvent, type TurnEndReason } from '@deepseek-ai/dsh-session'
  5. import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  6. import ToolRegistry, { defineTool, type PostToolDecision, type PreToolDecision } from '@deepseek-ai/dsh-tools'
  7. import AgentRegistry, { type Agent, type ContinuationDecision, type PromptDecision, type SessionStartSource } from '@deepseek-ai/dsh-agent'
  8. import AgentLoop from '@deepseek-ai/dsh-agent-loop'
  9. import { MockAdapter, textResponse, toolCallResponse } from './mock-adapter.ts'
  10. /**
  11. * The interception seams introduced by the hooks taxonomy: `agent/prompt-submit`,
  12. * `agent/session-start`, the reshaped `agent/turn-continuation`
  13. * ({@link ContinuationDecision}), and the `tools/pre-execute` / `tools/post-execute`
  14. * split with `additionalContexts` buffering. These verify the canonical event
  15. * surface a hook bridge (or a native plugin) programs against, WITHOUT any
  16. * external protocol — a native plugin uses the typed decisions directly.
  17. */
  18. async function harness(adapter: MockAdapter) {
  19. const ctx = new Context()
  20. await ctx.plugin(LlmService)
  21. await ctx.plugin(SessionStore)
  22. await ctx.plugin(SystemPrompt)
  23. await ctx.plugin(ToolRegistry)
  24. await ctx.plugin(AgentRegistry)
  25. await ctx.plugin(AgentLoop, { agents: [] })
  26. ctx.llm.registerAdapter(['mock'], adapter)
  27. return ctx
  28. }
  29. function waitForIdle(ctx: Context, agent: Agent): Promise<void> {
  30. return new Promise((resolve) => {
  31. const dispose = ctx.on('agent/status', (subject, status) => {
  32. if (subject === agent && status === 'idle') {
  33. dispose()
  34. resolve()
  35. }
  36. })
  37. })
  38. }
  39. function send(agent: Agent, text: string) {
  40. agent.send([{ type: 'text', text }])
  41. }
  42. function events(agent: Agent): SessionEvent[] {
  43. return [...agent.session.events]
  44. }
  45. describe('agent/prompt-submit', () => {
  46. it('allow (default via next) records the user/message unchanged', async () => {
  47. const adapter = new MockAdapter([textResponse('ok')])
  48. const ctx = await harness(adapter)
  49. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  50. const seen: string[] = []
  51. ctx.on('agent/prompt-submit', async (_agent, content, _source, next) => {
  52. seen.push(content.map(b => (b.type === 'text' ? b.text : '')).join(''))
  53. return next()
  54. })
  55. send(agent, 'hello')
  56. await waitForIdle(ctx, agent)
  57. expect(seen).toEqual(['hello'])
  58. const userMsg = events(agent).find(e => e.type === 'user/message')
  59. expect(userMsg?.type === 'user/message' && userMsg.data.content).toEqual([{ type: 'text', text: 'hello' }])
  60. })
  61. it('allow with content REWRITES the prompt before it is recorded', async () => {
  62. const adapter = new MockAdapter([textResponse('ok')])
  63. const ctx = await harness(adapter)
  64. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  65. ctx.on('agent/prompt-submit', async (): Promise<PromptDecision> =>
  66. ({ kind: 'allow', content: [{ type: 'text', text: 'REWRITTEN' }] }))
  67. send(agent, 'original')
  68. await waitForIdle(ctx, agent)
  69. const userMsg = events(agent).find(e => e.type === 'user/message')
  70. expect(userMsg?.type === 'user/message' && userMsg.data.content).toEqual([{ type: 'text', text: 'REWRITTEN' }])
  71. // the rewritten prompt is what reached the model
  72. expect(JSON.stringify(adapter.requests[0]!.messages)).toContain('REWRITTEN')
  73. expect(JSON.stringify(adapter.requests[0]!.messages)).not.toContain('original')
  74. })
  75. it('allow with additionalContexts injects separate context/message events into the turn', async () => {
  76. const adapter = new MockAdapter([textResponse('ok')])
  77. const ctx = await harness(adapter)
  78. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  79. const meta = { kind: 'prompt-context', version: 1 }
  80. ctx.on('agent/prompt-submit', async (): Promise<PromptDecision> =>
  81. ({
  82. kind: 'allow',
  83. additionalContexts: [{
  84. content: [{ type: 'text', text: '<system-reminder>extra ctx</system-reminder>' }],
  85. source: { kind: 'plugin', plugin: 'test' },
  86. envelope: 'raw',
  87. meta,
  88. }],
  89. }))
  90. send(agent, 'go')
  91. await waitForIdle(ctx, agent)
  92. const log = events(agent)
  93. const userMsg = log.find(e => e.type === 'user/message')
  94. const ctxMsg = log.find(e => e.type === 'context/message')
  95. expect(userMsg).toBeDefined()
  96. expect(ctxMsg?.type === 'context/message' && ctxMsg.data.content).toEqual([{ type: 'text', text: '<system-reminder>extra ctx</system-reminder>' }])
  97. expect(ctxMsg?.type === 'context/message' && ctxMsg.data.source).toEqual({ kind: 'plugin', plugin: 'test' })
  98. expect(ctxMsg?.type === 'context/message' && ctxMsg.data.envelope).toBe('raw')
  99. expect(ctxMsg?.type === 'context/message' && ctxMsg.data.meta).toEqual(meta)
  100. // both the prompt and the injected context reach the model
  101. const sent = JSON.stringify(adapter.requests[0]!.messages)
  102. expect(sent).toContain('extra ctx')
  103. })
  104. it('a prompt-submit rewrite + additionalContexts is VISIBLE to the agent/pre-step seam (merged ordering)', async () => {
  105. // Prompt rewrites and injected context land before `agent/pre-step`, so a
  106. // compaction listener measures the current surface before the single derive.
  107. const adapter = new MockAdapter([textResponse('ok')])
  108. const ctx = await harness(adapter)
  109. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  110. ctx.on('agent/prompt-submit', async (): Promise<PromptDecision> =>
  111. ({
  112. kind: 'allow',
  113. content: [{ type: 'text', text: 'REWRITTEN prompt' }],
  114. additionalContexts: [{ content: [{ type: 'text', text: 'injected ctx' }], source: { kind: 'plugin', plugin: 'test' } }],
  115. }))
  116. // The pre-step seam (where compaction lives) derives the surface it would act
  117. // on. Capture what it sees on the first step.
  118. let preStepDerived: string | undefined
  119. ctx.on('agent/pre-step', (subject, _turn, step) => {
  120. if (subject === agent && step === 1) preStepDerived = JSON.stringify(subject.session.deriveMessages())
  121. })
  122. send(agent, 'ORIGINAL prompt')
  123. await waitForIdle(ctx, agent)
  124. // The pre-step seam ran and saw BOTH the rewrite (not the original) and the
  125. // injected context — i.e. the prompt-submit effects landed before it.
  126. expect(preStepDerived).toBeDefined()
  127. expect(preStepDerived).toContain('REWRITTEN prompt')
  128. expect(preStepDerived).toContain('injected ctx')
  129. expect(preStepDerived).not.toContain('ORIGINAL prompt')
  130. })
  131. it('block drops the (only) prompt → zero-step turn ends rejected, model never called', async () => {
  132. const adapter = new MockAdapter([textResponse('should not run')])
  133. const ctx = await harness(adapter)
  134. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  135. ctx.on('agent/prompt-submit', async (): Promise<PromptDecision> =>
  136. ({ kind: 'block', reason: 'blocked by policy' }))
  137. const reasons: TurnEndReason[] = []
  138. ctx.on('session/event', (_s, event: SessionEvent) => { if (event.type === 'turn/end') reasons.push(event.data.reason) })
  139. send(agent, 'do something')
  140. await waitForIdle(ctx, agent)
  141. // the model was never called
  142. expect(adapter.requests).toHaveLength(0)
  143. // the turn opened and closed balanced, with no user/message and no step
  144. const log = events(agent)
  145. expect(log.some(e => e.type === 'turn/start')).toBe(true)
  146. expect(log.some(e => e.type === 'turn/end')).toBe(true)
  147. expect(log.some(e => e.type === 'user/message')).toBe(false)
  148. expect(log.some(e => e.type === 'step/start')).toBe(false)
  149. // the veto is recorded durably as a prompt/blocked in the open turn
  150. const blocked = log.find(e => e.type === 'prompt/blocked')
  151. expect(blocked?.type === 'prompt/blocked' && blocked.data).toMatchObject({
  152. content: [{ type: 'text', text: 'do something' }],
  153. reason: 'blocked by policy',
  154. })
  155. // ended rejected with the block reason
  156. expect(reasons).toEqual([{ kind: 'rejected', reason: 'blocked by policy' }])
  157. const turnEnd = log.findLast(e => e.type === 'turn/end')
  158. expect(turnEnd?.type === 'turn/end' && turnEnd.data.reason).toEqual({ kind: 'rejected', reason: 'blocked by policy' })
  159. })
  160. it('a mixed batch records a prompt/blocked for the vetoed prompt while the allowed one runs', async () => {
  161. // Blocking one prompt in a mixed batch must persist its reason even though
  162. // the allowed prompt keeps the turn from ending rejected.
  163. const adapter = new MockAdapter([textResponse('ran once')])
  164. const ctx = await harness(adapter)
  165. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  166. ctx.on('agent/prompt-submit', async (_agent, content, _source, next): Promise<PromptDecision> => {
  167. const text = content.map(b => (b.type === 'text' ? b.text : '')).join('')
  168. return text === 'secret' ? { kind: 'block', reason: 'policy: no secrets' } : next()
  169. })
  170. const reasons: TurnEndReason[] = []
  171. ctx.on('session/event', (_s, event: SessionEvent) => { if (event.type === 'turn/end') reasons.push(event.data.reason) })
  172. // both sends land before the loop drains → one batched turn
  173. send(agent, 'secret')
  174. send(agent, 'safe')
  175. await waitForIdle(ctx, agent)
  176. const log = events(agent)
  177. // the allowed prompt became a user/message and drove exactly one model call
  178. const userMsgs = log.filter(e => e.type === 'user/message')
  179. expect(userMsgs).toHaveLength(1)
  180. expect(userMsgs[0]?.type === 'user/message' && userMsgs[0].data.content).toEqual([{ type: 'text', text: 'safe' }])
  181. expect(adapter.requests.length).toBeGreaterThanOrEqual(1)
  182. // the blocked prompt is durably recorded, with its content + reason
  183. const blocked = log.filter(e => e.type === 'prompt/blocked')
  184. expect(blocked).toHaveLength(1)
  185. expect(blocked[0]?.type === 'prompt/blocked' && blocked[0].data).toMatchObject({
  186. content: [{ type: 'text', text: 'secret' }],
  187. reason: 'policy: no secrets',
  188. })
  189. // the turn did NOT reject — a sibling was allowed — so the boundary reason
  190. // alone would not have preserved the block
  191. expect(reasons.some(r => r.kind === 'rejected')).toBe(false)
  192. })
  193. it('a throwing prompt-submit listener ends the turn balanced (error), loop survives', async () => {
  194. const adapter = new MockAdapter([textResponse('after')])
  195. const ctx = await harness(adapter)
  196. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  197. let threw = false
  198. ctx.on('agent/prompt-submit', async () => {
  199. if (!threw) { threw = true; throw new Error('prompt hook broke') }
  200. return { kind: 'allow' as const }
  201. })
  202. const errors: Error[] = []
  203. ctx.on('agent/error', (_a, _t, _s, error) => void errors.push(error))
  204. send(agent, 'first')
  205. await waitForIdle(ctx, agent)
  206. expect(errors.map(e => e.message)).toEqual(['prompt hook broke'])
  207. // turn balanced
  208. const log = events(agent)
  209. expect(log.filter(e => e.type === 'turn/start')).toHaveLength(1)
  210. expect(log.filter(e => e.type === 'turn/end')).toHaveLength(1)
  211. // loop survives: a second prompt runs normally
  212. send(agent, 'second')
  213. await waitForIdle(ctx, agent)
  214. expect(adapter.requests.length).toBeGreaterThanOrEqual(1)
  215. })
  216. })
  217. describe('agent/session-start', () => {
  218. it('fires once with source "startup" for a fresh create, before the first turn', async () => {
  219. const adapter = new MockAdapter([textResponse('ok')])
  220. const ctx = await harness(adapter)
  221. const sources: SessionStartSource[] = []
  222. ctx.on('agent/session-start', (_agent, source) => void sources.push(source))
  223. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  224. // fires synchronously at create, before any turn
  225. expect(sources).toEqual(['startup'])
  226. expect(events(agent).some(e => e.type === 'turn/start')).toBe(false)
  227. send(agent, 'go')
  228. await waitForIdle(ctx, agent)
  229. // still only one session-start
  230. expect(sources).toEqual(['startup'])
  231. })
  232. it('a session-start listener can inject context the first request sees', async () => {
  233. const adapter = new MockAdapter([textResponse('ok')])
  234. const ctx = await harness(adapter)
  235. ctx.on('agent/session-start', (agent) => {
  236. agent.inject([{ type: 'text', text: 'session preamble' }], { source: { kind: 'plugin', plugin: 'test' } })
  237. })
  238. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  239. send(agent, 'go')
  240. await waitForIdle(ctx, agent)
  241. // the injected context reached the model on the first (only) request
  242. expect(JSON.stringify(adapter.requests[0]!.messages)).toContain('session preamble')
  243. // and is recorded with the plugin source, never mislabeled as a user prompt
  244. const ctxMsg = events(agent).find(e => e.type === 'context/message')
  245. expect(ctxMsg?.type === 'context/message' && ctxMsg.data.source).toEqual({ kind: 'plugin', plugin: 'test' })
  246. })
  247. it('a throwing session-start listener does not abort agent construction', async () => {
  248. const adapter = new MockAdapter([textResponse('ok')])
  249. const ctx = await harness(adapter)
  250. ctx.on('agent/session-start', () => { throw new Error('session-start hook broke') })
  251. // create must not throw — the listener error is contained/logged
  252. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  253. expect(agent.id).toBe(SessionId('a1'))
  254. // and the agent still runs
  255. send(agent, 'go')
  256. await waitForIdle(ctx, agent)
  257. expect(adapter.requests).toHaveLength(1)
  258. })
  259. })
  260. describe('agent/session-prefix', () => {
  261. it('dispatches to global and matching agent-scope listeners only', async () => {
  262. const adapter = new MockAdapter([textResponse('a done'), textResponse('b done')])
  263. const ctx = await harness(adapter)
  264. const agentA = ctx.agentLoop.create(SessionId('prefix-a'), { provider: 'mock', model: 'mock' })
  265. const agentB = ctx.agentLoop.create(SessionId('prefix-b'), { provider: 'mock', model: 'mock' })
  266. const seen: string[] = []
  267. ctx.on('agent/session-prefix', async (agent, _prefix, _signal, next) => {
  268. seen.push(`global:${agent.id}`)
  269. return next()
  270. })
  271. agentA.ctx.on('agent/session-prefix', async (agent, _prefix, _signal, next) => {
  272. seen.push(`a:${agent.id}`)
  273. return next()
  274. })
  275. agentB.ctx.on('agent/session-prefix', async (agent, _prefix, _signal, next) => {
  276. seen.push(`b:${agent.id}`)
  277. return next()
  278. })
  279. send(agentA, 'run a')
  280. await waitForIdle(ctx, agentA)
  281. send(agentB, 'run b')
  282. await waitForIdle(ctx, agentB)
  283. expect(seen).toEqual([
  284. 'global:prefix-a', 'a:prefix-a',
  285. 'global:prefix-b', 'b:prefix-b',
  286. ])
  287. })
  288. it('composes once per loop instance and fronts every request; the header records it; history stays untouched', async () => {
  289. const adapter = new MockAdapter([
  290. toolCallResponse('c1', 'echo', { text: 'ping' }),
  291. textResponse('done'),
  292. textResponse('again'),
  293. ])
  294. const ctx = await harness(adapter)
  295. ctx.tools.register(defineTool({
  296. name: 'echo', description: 'echo', parameters: { text: { type: 'string' } },
  297. async execute(args) { return [{ type: 'text', text: String(args.text) }] },
  298. }))
  299. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  300. const reminder: Message = { role: 'user', content: [{ type: 'text', text: '<system-reminder>catalog</system-reminder>' }] }
  301. let composed = 0
  302. ctx.on('agent/session-prefix', async (_agent, _prefix, _signal, next): Promise<Message[]> => {
  303. composed += 1
  304. return [...await next(), reminder]
  305. })
  306. send(agent, 'go')
  307. await waitForIdle(ctx, agent)
  308. send(agent, 'next turn')
  309. await waitForIdle(ctx, agent)
  310. // Three requests (two turns), ONE composition: the frozen product is
  311. // reused verbatim, so the prefix cannot drift mid-session.
  312. expect(adapter.requests).toHaveLength(3)
  313. expect(composed).toBe(1)
  314. for (const request of adapter.requests) {
  315. expect(request.messages[0]).toEqual(reminder)
  316. }
  317. // The anchoring snapshot is the prefix's durable record — and the ONLY
  318. // header event: reuse means no changed snapshot ever.
  319. const headerEvents = events(agent).filter(e => e.type === 'request/header')
  320. expect(headerEvents).toHaveLength(1)
  321. expect(headerEvents[0]?.type === 'request/header' && headerEvents[0].data.header.messagePrefix).toEqual([reminder])
  322. // Never session history: the derivation starts at the real user prompt.
  323. expect(agent.session.deriveMessages()[0]).toEqual({ role: 'user', content: [{ type: 'text', text: 'go' }] })
  324. })
  325. it('composes before the first pre-step and hands the prefix to the seam (pressure gates see the real value)', async () => {
  326. const adapter = new MockAdapter([textResponse('ok')])
  327. const ctx = await harness(adapter)
  328. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  329. const reminder: Message = { role: 'user', content: [{ type: 'text', text: 'opener' }] }
  330. const order: string[] = []
  331. ctx.on('agent/session-prefix', async (_agent, _prefix, _signal, next): Promise<Message[]> => {
  332. order.push('compose')
  333. return [reminder, ...await next()]
  334. })
  335. const seen: (readonly Message[])[] = []
  336. ctx.on('agent/pre-step', (_agent, _turn, _step, _system, sessionPrefix) => {
  337. order.push('pre-step')
  338. seen.push(sessionPrefix)
  339. })
  340. send(agent, 'hi')
  341. await waitForIdle(ctx, agent)
  342. // Composition precedes the pre-step seam, and the seam receives THIS
  343. // instance's composed prefix — a token-pressure gate (compaction) counts
  344. // what the request will actually carry, never a stale logged prefix.
  345. expect(order).toEqual(['compose', 'pre-step'])
  346. expect(seen[0]).toEqual([reminder])
  347. })
  348. it('the canonical prepend pattern composes contributions in registration order', async () => {
  349. const adapter = new MockAdapter([textResponse('ok')])
  350. const ctx = await harness(adapter)
  351. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  352. // Both listeners use the canonical `[mine, ...await next()]` prepend: the
  353. // waterfall unwinds innermost-first (the second listener's array is built
  354. // first), so prepending puts the FIRST-registered contribution first.
  355. ctx.on('agent/session-prefix', async (_agent, _prefix, _signal, next): Promise<Message[]> => {
  356. return [{ role: 'user', content: [{ type: 'text', text: 'first' }] }, ...await next()]
  357. })
  358. ctx.on('agent/session-prefix', async (_agent, _prefix, _signal, next): Promise<Message[]> => {
  359. return [{ role: 'user', content: [{ type: 'text', text: 'second' }] }, ...await next()]
  360. })
  361. send(agent, 'hi')
  362. await waitForIdle(ctx, agent)
  363. const texts = adapter.requests[0]!.messages.map(m => m.content[0]?.type === 'text' ? m.content[0].text : '')
  364. expect(texts).toEqual(['first', 'second', 'hi'])
  365. })
  366. it('with no contributions the header omits messagePrefix and the request is the bare derivation', async () => {
  367. const adapter = new MockAdapter([textResponse('ok')])
  368. const ctx = await harness(adapter)
  369. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  370. // A listener that delegates without contributing — the canonical no-op.
  371. ctx.on('agent/session-prefix', async (_agent, _prefix, _signal, next) => next())
  372. send(agent, 'hi')
  373. await waitForIdle(ctx, agent)
  374. const headerEvent = events(agent).find(e => e.type === 'request/header')
  375. expect(headerEvent?.type === 'request/header' && 'messagePrefix' in headerEvent.data.header).toBe(false)
  376. expect(adapter.requests[0]!.messages).toEqual([{ role: 'user', content: [{ type: 'text', text: 'hi' }] }])
  377. })
  378. it('the frozen seed rejects in-place mutation — a contribution is a returned extension', async () => {
  379. const adapter = new MockAdapter([textResponse('ok')])
  380. const ctx = await harness(adapter)
  381. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  382. let mutationError: unknown
  383. ctx.on('agent/session-prefix', async (_agent, prefix, _signal, next): Promise<Message[]> => {
  384. try {
  385. prefix.push({ role: 'user', content: [{ type: 'text', text: 'smuggled' }] })
  386. } catch (error: unknown) {
  387. mutationError = error
  388. }
  389. return next()
  390. })
  391. send(agent, 'hi')
  392. await waitForIdle(ctx, agent)
  393. expect(mutationError).toBeInstanceOf(TypeError)
  394. expect(adapter.requests[0]!.messages).toEqual([{ role: 'user', content: [{ type: 'text', text: 'hi' }] }])
  395. })
  396. it('mutating a listener-held reference after composition cannot alter later requests (the cache is a frozen clone)', async () => {
  397. const adapter = new MockAdapter([
  398. toolCallResponse('c1', 'echo', { text: 'ping' }),
  399. textResponse('done'),
  400. ])
  401. const ctx = await harness(adapter)
  402. ctx.tools.register(defineTool({
  403. name: 'echo', description: 'echo', parameters: { text: { type: 'string' } },
  404. async execute(args) { return [{ type: 'text', text: String(args.text) }] },
  405. }))
  406. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  407. const held: Message = { role: 'user', content: [{ type: 'text', text: 'v1' }] }
  408. ctx.on('agent/session-prefix', async (_agent, _prefix, _signal, next): Promise<Message[]> => [...await next(), held])
  409. send(agent, 'go')
  410. await waitForIdle(ctx, agent)
  411. // The listener mutates the object it contributed AFTER composition; the
  412. // cached prefix is a deep-frozen clone, so step 2's request is unchanged.
  413. held.content = [{ type: 'text', text: 'v2' }]
  414. expect(adapter.requests[1]!.messages[0]).toEqual({ role: 'user', content: [{ type: 'text', text: 'v1' }] })
  415. expect(events(agent).filter(e => e.type === 'request/header')).toHaveLength(1)
  416. })
  417. })
  418. describe('agent/turn-continuation (ContinuationDecision)', () => {
  419. it('a continue decision with a reason records next-step steering in the same turn', async () => {
  420. const adapter = new MockAdapter([textResponse('step 1 no tools'), textResponse('step 2')])
  421. const ctx = await harness(adapter)
  422. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  423. let forced = false
  424. ctx.on('agent/turn-continuation', async (_agent, _turn, _default, next): Promise<ContinuationDecision> => {
  425. if (!forced) {
  426. forced = true
  427. return { action: 'continue', reason: { content: [{ type: 'text', text: 'keep going on the goal' }], source: { kind: 'plugin', plugin: 'goal' } } }
  428. }
  429. return next()
  430. })
  431. send(agent, 'go')
  432. await waitForIdle(ctx, agent)
  433. const log = events(agent)
  434. // The continuation stays in the turn, is logged with provenance before step 2,
  435. // and reaches that step's request.
  436. expect(log.filter(e => e.type === 'turn/start')).toHaveLength(1)
  437. expect(log.filter(e => e.type === 'step/start')).toHaveLength(2)
  438. const steering = log.find(e => e.type === 'steering/message')
  439. expect(steering?.type === 'steering/message' && steering.data.content).toEqual([{ type: 'text', text: 'keep going on the goal' }])
  440. expect(steering?.type === 'steering/message' && steering.data.source).toEqual({ kind: 'plugin', plugin: 'goal' })
  441. expect(JSON.stringify(adapter.requests[1]!.messages)).toContain('keep going on the goal')
  442. })
  443. it('a stop decision ends the turn even when the step had tool calls', async () => {
  444. const adapter = new MockAdapter([toolCallResponse('c1', 'echo', { text: 'hi' })])
  445. const ctx = await harness(adapter)
  446. ctx.tools.register(defineTool({
  447. name: 'echo', description: 'echo', parameters: { text: { type: 'string' } },
  448. async execute(args) { return [{ type: 'text', text: String(args.text) }] },
  449. }))
  450. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  451. ctx.on('agent/turn-continuation', async (): Promise<ContinuationDecision> => ({ action: 'stop' }))
  452. send(agent, 'go')
  453. await waitForIdle(ctx, agent)
  454. // default would have continued (had tool calls), but the stop decision wins
  455. expect(adapter.requests).toHaveLength(1)
  456. expect(events(agent).some(e => e.type === 'tool/result')).toBe(true)
  457. })
  458. })
  459. describe('tool additionalContexts buffering across a step', () => {
  460. it('appends each call\'s contexts only AFTER all tool/results, preserving adjacency', async () => {
  461. // One assistant step with TWO tool calls; the second model response stops.
  462. const twoCalls = [
  463. { type: 'block-start' as const, index: 0, blockType: 'tool-call' as const },
  464. { type: 'block-end' as const, index: 0, block: { type: 'tool-call' as const, id: CallId('c1'), name: 'echo', arguments: '{"text":"a"}' } },
  465. { type: 'block-start' as const, index: 1, blockType: 'tool-call' as const },
  466. { type: 'block-end' as const, index: 1, block: { type: 'tool-call' as const, id: CallId('c2'), name: 'echo', arguments: '{"text":"b"}' } },
  467. { type: 'usage' as const, usage: { inputTokens: 5, outputTokens: 5 } },
  468. { type: 'finish' as const, reason: { kind: 'tool-calls' as const } },
  469. ]
  470. const adapter = new MockAdapter([twoCalls, textResponse('done')])
  471. const ctx = await harness(adapter)
  472. ctx.tools.register(defineTool({
  473. name: 'echo', description: 'echo', parameters: { text: { type: 'string' } },
  474. async execute(args) { return [{ type: 'text', text: String(args.text) }] },
  475. }))
  476. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  477. // Each call attaches one context naming itself.
  478. ctx.on('tools/post-execute', async (exec, _result): Promise<PostToolDecision> =>
  479. ({
  480. kind: 'accept',
  481. additionalContexts: [{
  482. content: [{ type: 'text', text: `ctx-${exec.callId}` }],
  483. source: { kind: 'plugin', plugin: 'p' },
  484. envelope: 'raw',
  485. meta: { callId: exec.callId },
  486. }],
  487. }))
  488. send(agent, 'go')
  489. await waitForIdle(ctx, agent)
  490. // Event order in the log: both tool/results, THEN both context/messages —
  491. // never interleaved (which would break tool-call/result adjacency).
  492. const types = events(agent).map(e => e.type)
  493. const firstResult = types.indexOf('tool/result')
  494. const lastResult = types.lastIndexOf('tool/result')
  495. const firstCtx = types.indexOf('context/message')
  496. expect(firstResult).toBeGreaterThanOrEqual(0)
  497. expect(lastResult).toBeGreaterThan(firstResult) // two results
  498. expect(firstCtx).toBeGreaterThan(lastResult) // context only after ALL results
  499. // both contexts present
  500. const ctxTexts = events(agent)
  501. .filter(e => e.type === 'context/message')
  502. .flatMap(e => (e.type === 'context/message' ? e.data.content : []))
  503. .map(b => (b.type === 'text' ? b.text : ''))
  504. expect(ctxTexts).toEqual(['ctx-c1', 'ctx-c2'])
  505. const contextEvents = events(agent).filter(e => e.type === 'context/message')
  506. expect(contextEvents.map(e => e.type === 'context/message' && e.data.envelope)).toEqual(['raw', 'raw'])
  507. expect(contextEvents.map(e => e.type === 'context/message' && e.data.meta)).toEqual([{ callId: 'c1' }, { callId: 'c2' }])
  508. })
  509. it('appends multiple contexts deferred by one composite tool after its outer result', async () => {
  510. const adapter = new MockAdapter([toolCallResponse('c1', 'composite', {}), textResponse('done')])
  511. const ctx = await harness(adapter)
  512. ctx.tools.register(defineTool({
  513. name: 'composite', description: 'composite', parameters: {},
  514. async execute(_args, exec) {
  515. exec.deferContext({ content: [{ type: 'text', text: 'nested-a' }], source: { kind: 'plugin', plugin: 'a' }, meta: { order: 1 } })
  516. exec.deferContext({ content: [{ type: 'text', text: 'nested-b' }], source: { kind: 'plugin', plugin: 'b' }, envelope: 'raw', meta: { order: 2 } })
  517. return [{ type: 'text', text: 'outer result' }]
  518. },
  519. }))
  520. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  521. send(agent, 'go')
  522. await waitForIdle(ctx, agent)
  523. const log = events(agent)
  524. const resultIndex = log.findIndex(event => event.type === 'tool/result')
  525. const contextEvents = log.filter(event => event.type === 'context/message')
  526. expect(resultIndex).toBeGreaterThanOrEqual(0)
  527. expect(log.findIndex(event => event === contextEvents[0])).toBeGreaterThan(resultIndex)
  528. expect(contextEvents.map(event => event.type === 'context/message' && event.data.source)).toEqual([
  529. { kind: 'plugin', plugin: 'a' },
  530. { kind: 'plugin', plugin: 'b' },
  531. ])
  532. expect(contextEvents.map(event => event.type === 'context/message' && event.data.meta)).toEqual([{ order: 1 }, { order: 2 }])
  533. })
  534. })
  535. describe('tools/pre-execute gate (native-plugin permission pattern, end-to-end through the loop)', () => {
  536. it('deny short-circuits dispatch into an isError result the model sees', async () => {
  537. const adapter = new MockAdapter([toolCallResponse('c1', 'danger', {}), textResponse('ok')])
  538. const ctx = await harness(adapter)
  539. let ran = false
  540. ctx.tools.register(defineTool({
  541. name: 'danger', description: 'danger', parameters: {},
  542. async execute() { ran = true; return [{ type: 'text', text: 'should not run' }] },
  543. }))
  544. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  545. ctx.on('tools/pre-execute', async (exec, next): Promise<PreToolDecision> => {
  546. if (exec.name === 'danger') return { kind: 'deny', reason: 'blocked dangerous tool' }
  547. return next()
  548. })
  549. send(agent, 'go')
  550. await waitForIdle(ctx, agent)
  551. expect(ran).toBe(false)
  552. const result = events(agent).find(e => e.type === 'tool/result')
  553. expect(result?.type === 'tool/result' && result.data.isError).toBe(true)
  554. expect(result?.type === 'tool/result'
  555. && result.data.content.some(b => b.type === 'text' && b.text.includes('blocked dangerous tool'))).toBe(true)
  556. })
  557. })
  558. describe('worked example: a native hook plugin is just a cordis plugin on the seams', () => {
  559. // The whole point of the interception taxonomy: a "native hook" needs no dsh-hook-protocol,
  560. // no external command, no hook/* log — it is an ordinary cordis plugin subscribing to the
  561. // canonical events and returning typed decisions.
  562. const NativeGuard = {
  563. name: 'native-guard',
  564. apply(ctx: Context) {
  565. // 1. SessionStart: seed a standing instruction.
  566. ctx.on('agent/session-start', (agent, source) => {
  567. agent.inject(
  568. [{ type: 'text', text: `policy active (started: ${source})` }],
  569. { source: { kind: 'plugin', plugin: 'native-guard' } },
  570. )
  571. })
  572. // 2. PromptSubmit: block a forbidden prompt, annotate the rest.
  573. ctx.on('agent/prompt-submit', async (_agent, content, _source, next): Promise<PromptDecision> => {
  574. const text = content.map(b => (b.type === 'text' ? b.text : '')).join('')
  575. if (text.includes('rm -rf')) return { kind: 'block', reason: 'destructive prompt blocked' }
  576. return next()
  577. })
  578. // 3. PreToolUse: deny a dangerous tool by name.
  579. ctx.on('tools/pre-execute', async (exec, next): Promise<PreToolDecision> => {
  580. if (exec.name === 'danger') return { kind: 'deny', reason: 'danger tool denied' }
  581. return next()
  582. })
  583. // 4. PostToolUse: attach context after a tool runs.
  584. ctx.on('tools/post-execute', async (_exec, _result, next): Promise<PostToolDecision> => {
  585. const decision = await next()
  586. if (decision.kind === 'accept') {
  587. return { kind: 'accept', additionalContexts: [{ content: [{ type: 'text', text: 'audited' }], source: { kind: 'plugin', plugin: 'native-guard' } }] }
  588. }
  589. return decision
  590. })
  591. },
  592. }
  593. it('all four seams fire for a real allowed turn with a tool call', async () => {
  594. const adapter = new MockAdapter([toolCallResponse('c1', 'echo', { text: 'hi' }), textResponse('done')])
  595. const ctx = await harness(adapter)
  596. await ctx.plugin(NativeGuard)
  597. ctx.tools.register(defineTool({
  598. name: 'echo', description: 'echo', parameters: { text: { type: 'string' } },
  599. async execute(args) { return [{ type: 'text', text: String(args.text) }] },
  600. }))
  601. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  602. send(agent, 'please echo hi')
  603. await waitForIdle(ctx, agent)
  604. const log = events(agent)
  605. // session-start preamble injected
  606. expect(log.some(e => e.type === 'context/message'
  607. && e.data.content.some(b => b.type === 'text' && b.text.includes('policy active (started: startup)')))).toBe(true)
  608. // prompt allowed → user/message recorded
  609. expect(log.some(e => e.type === 'user/message')).toBe(true)
  610. // tool ran (echo allowed) and post-execute attached "audited" context
  611. expect(log.some(e => e.type === 'tool/result' && !e.data.isError)).toBe(true)
  612. expect(log.some(e => e.type === 'context/message'
  613. && e.data.content.some(b => b.type === 'text' && b.text === 'audited'))).toBe(true)
  614. // NO hook/* events — a native plugin needs none
  615. expect(log.some(e => e.type.startsWith('hook/'))).toBe(false)
  616. })
  617. it('the same plugin blocks a destructive prompt → rejected turn, model never called', async () => {
  618. const adapter = new MockAdapter([textResponse('should not run')])
  619. const ctx = await harness(adapter)
  620. await ctx.plugin(NativeGuard)
  621. const agent = ctx.agentLoop.create(SessionId('a2'), { provider: 'mock', model: 'mock' })
  622. const reasons: TurnEndReason[] = []
  623. ctx.on('session/event', (_s, event: SessionEvent) => { if (event.type === 'turn/end') reasons.push(event.data.reason) })
  624. send(agent, 'run rm -rf /')
  625. await waitForIdle(ctx, agent)
  626. expect(adapter.requests).toHaveLength(0)
  627. expect(reasons).toEqual([{ kind: 'rejected', reason: 'destructive prompt blocked' }])
  628. })
  629. it('HMR-safety: disposing the plugin fiber removes all four listeners', async () => {
  630. const adapter = new MockAdapter([textResponse('ok')])
  631. const ctx = await harness(adapter)
  632. const fiber = await ctx.plugin(NativeGuard)
  633. await fiber.dispose()
  634. // After disposal, a destructive prompt is NOT blocked (the listener is gone).
  635. const agent = ctx.agentLoop.create(SessionId('a3'), { provider: 'mock', model: 'mock' })
  636. send(agent, 'run rm -rf /')
  637. await waitForIdle(ctx, agent)
  638. // the prompt ran (not rejected) — proving the prompt-submit listener was disposed
  639. expect(adapter.requests).toHaveLength(1)
  640. expect(events(agent).some(e => e.type === 'user/message')).toBe(true)
  641. })
  642. })