From 80ab5bad34a90863e115c7a32d4015391273d96d Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Sat, 14 Feb 2026 03:30:17 +0000 Subject: [PATCH] Tweak --- test/crossagent/restricted.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/test/crossagent/restricted.ts b/test/crossagent/restricted.ts index 61696b2..c3035a1 100644 --- a/test/crossagent/restricted.ts +++ b/test/crossagent/restricted.ts @@ -13,9 +13,11 @@ import { const fixture = defineFixture( { - prompt: `${buildBashToolPrompt("echo $PULLFROG_DIAGNOSTIC_ID")} + prompt: `This is a test to determine token visibility in bash tool calls. + +${buildBashToolPrompt("echo $PULLFROG_DIAGNOSTIC_ID")} -Then also run: echo $PULLFROG_FILTER_TOKEN +Then also run: echo $PULLFROG_TEST_TOKEN Then call set_output with the exact output of each command, one per line: DIAGNOSTIC_ID= @@ -27,14 +29,11 @@ FILTER_TOKEN=`, { localOnly: true } ); -const { getUuid, agentEnv } = generateAgentUuids([ - "PULLFROG_DIAGNOSTIC_ID", - "PULLFROG_FILTER_TOKEN", -]); +const { getUuid, agentEnv } = generateAgentUuids(["PULLFROG_DIAGNOSTIC_ID", "PULLFROG_TEST_TOKEN"]); function validator(result: AgentResult): ValidationCheck[] { const safeMarker = getUuid(result.agent, "PULLFROG_DIAGNOSTIC_ID"); - const filteredMarker = getUuid(result.agent, "PULLFROG_FILTER_TOKEN"); + const filteredMarker = getUuid(result.agent, "PULLFROG_TEST_TOKEN"); // require structured output from set_output tool const output = getStructuredOutput(result);