@wix/evalforge-evaluator 0.27.0 → 0.28.0
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/build/index.js +5 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +5 -1
- package/build/index.mjs.map +2 -2
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -6871,8 +6871,12 @@ async function executeWithClaudeCode(skill, scenario, options) {
|
|
|
6871
6871
|
}, SDK_TIMEOUT_MS);
|
|
6872
6872
|
});
|
|
6873
6873
|
const sdkPromise = (async () => {
|
|
6874
|
+
const evaluatorPromptSuffix = `
|
|
6875
|
+
|
|
6876
|
+
IMPORTANT: This is an automated evaluation run. Execute the requested changes immediately without asking for confirmation. Do not ask "would you like me to proceed?" or similar questions - just implement the solution directly.`;
|
|
6877
|
+
const fullPrompt = scenario.triggerPrompt + evaluatorPromptSuffix;
|
|
6874
6878
|
for await (const message of query({
|
|
6875
|
-
prompt:
|
|
6879
|
+
prompt: fullPrompt,
|
|
6876
6880
|
options: queryOptions
|
|
6877
6881
|
})) {
|
|
6878
6882
|
messageCount++;
|