@forwardimpact/libeval 0.1.22 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/libeval",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Process Claude Code stream-json output into structured traces",
5
5
  "license": "Apache-2.0",
6
6
  "author": "D. Olsson <hi@senzilla.io>",
@@ -110,6 +110,7 @@ export class AgentRunner {
110
110
  prompt,
111
111
  options: {
112
112
  resume: this.sessionId,
113
+ model: this.model,
113
114
  permissionMode: PERMISSION_MODE,
114
115
  allowDangerouslySkipPermissions: true,
115
116
  abortController,
@@ -275,7 +275,14 @@ export function createSupervisedAgentToolServer(ctx) {
275
275
  }
276
276
 
277
277
  /**
278
- * Facilitator tools: Ask + Announce + Conclude + Redirect + RollCall.
278
+ * Facilitator tools: Ask + Announce + Conclude + RollCall.
279
+ *
280
+ * Redirect is intentionally omitted. In facilitated mode the facilitator
281
+ * can re-Ask a participant to course-correct — Ask overwrites the pending
282
+ * slot, giving the agent a proper round-trip path. Redirect (abort +
283
+ * direct message) belongs in supervised mode where a single agent is
284
+ * steered by a supervisor.
285
+ *
279
286
  * @param {object} ctx - Orchestration context
280
287
  * @returns {object} MCP server config (type: "sdk")
281
288
  */
@@ -301,12 +308,6 @@ export function createFacilitatorToolServer(ctx) {
301
308
  { summary: z.string() },
302
309
  createConcludeHandler(ctx),
303
310
  ),
304
- tool(
305
- "Redirect",
306
- "Interrupt a participant with replacement instructions. Use to='all' for all participants or a specific name.",
307
- { message: z.string(), to: z.string().optional() },
308
- createRedirectHandler(ctx),
309
- ),
310
311
  tool(
311
312
  "RollCall",
312
313
  "List all participants in the session.",