@wix/evalforge-evaluator 0.159.0 → 0.160.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.
|
@@ -6,6 +6,7 @@ import type { Rule } from '@wix/evalforge-types';
|
|
|
6
6
|
* - `claude-md` -> `{cwd}/CLAUDE.md` (appends if multiple)
|
|
7
7
|
* - `agents-md` -> `{cwd}/AGENTS.md` (appends if multiple)
|
|
8
8
|
* - `cursor-rule` -> `{cwd}/.cursor/rules/{name}.md` (one file per rule)
|
|
9
|
+
* - `generic` -> `{cwd}/{rule.directory}` (defaults to `.opencode/rules`)
|
|
9
10
|
*
|
|
10
11
|
* @param cwd - Working directory (project root for Claude Code)
|
|
11
12
|
* @param rules - Rule entities to write
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type MCPEntity } from '@wix/evalforge-types';
|
|
1
|
+
import { type MCPEntity, type Rule } from '@wix/evalforge-types';
|
|
2
2
|
export interface OpenCodeConfigOptions {
|
|
3
3
|
model?: string;
|
|
4
4
|
temperature?: number;
|
|
@@ -7,6 +7,7 @@ export interface OpenCodeConfigOptions {
|
|
|
7
7
|
aiGatewayUrl?: string;
|
|
8
8
|
aiGatewayHeaders?: Record<string, string>;
|
|
9
9
|
mcps?: MCPEntity[];
|
|
10
|
+
rules?: Rule[];
|
|
10
11
|
cwd: string;
|
|
11
12
|
/** Agent config bag — may contain permission overrides */
|
|
12
13
|
config?: Record<string, unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-evaluator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.160.0",
|
|
4
4
|
"description": "EvalForge Evaluator",
|
|
5
5
|
"bin": "./build/index.js",
|
|
6
6
|
"files": [
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@ai-sdk/openai": "^3.0.39",
|
|
23
23
|
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
|
|
24
24
|
"@anthropic-ai/claude-code": "^2.1.63",
|
|
25
|
-
"@wix/eval-assertions": "0.
|
|
26
|
-
"@wix/evalforge-github-client": "0.
|
|
27
|
-
"@wix/evalforge-types": "0.
|
|
25
|
+
"@wix/eval-assertions": "0.56.0",
|
|
26
|
+
"@wix/evalforge-github-client": "0.60.0",
|
|
27
|
+
"@wix/evalforge-types": "0.85.0",
|
|
28
28
|
"ai": "^6.0.107",
|
|
29
29
|
"diff": "^7.0.0",
|
|
30
30
|
"tar": "^7.5.3",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"artifactId": "evalforge-evaluator"
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"falconPackageHash": "
|
|
66
|
+
"falconPackageHash": "2105baaad5dcc4d0913c3753818017bdfd141533f2054263967e44eb"
|
|
67
67
|
}
|