@wix/evalforge-evaluator 0.26.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 +3 -3
package/build/index.js
CHANGED
|
@@ -6862,8 +6862,12 @@ async function executeWithClaudeCode(skill, scenario, options) {
|
|
|
6862
6862
|
}, SDK_TIMEOUT_MS);
|
|
6863
6863
|
});
|
|
6864
6864
|
const sdkPromise = (async () => {
|
|
6865
|
+
const evaluatorPromptSuffix = `
|
|
6866
|
+
|
|
6867
|
+
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.`;
|
|
6868
|
+
const fullPrompt = scenario.triggerPrompt + evaluatorPromptSuffix;
|
|
6865
6869
|
for await (const message of query({
|
|
6866
|
-
prompt:
|
|
6870
|
+
prompt: fullPrompt,
|
|
6867
6871
|
options: queryOptions
|
|
6868
6872
|
})) {
|
|
6869
6873
|
messageCount++;
|