20 lines
558 B
TypeScript
20 lines
558 B
TypeScript
/** Test-only Loader plugin that creates a goal at the first real step edge. */
|
|
|
|
import type { Context } from 'cordis'
|
|
import type {} from '@deepseek-ai/dsh-goal'
|
|
|
|
export const name = 'seed-goal'
|
|
export const inject = ['goals']
|
|
|
|
export function apply(ctx: Context): void {
|
|
ctx.on('agent/pre-step', (agent, _messages, _context, next) => {
|
|
if (ctx.goals.get(agent) === undefined) {
|
|
ctx.goals.create(agent, {
|
|
objective: 'Prove the composed goal survives in the session log',
|
|
maxGoalRounds: 7,
|
|
})
|
|
}
|
|
return next()
|
|
})
|
|
}
|