agentv 0.18.0 → 0.20.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/README.md +0 -20
- package/dist/{chunk-PHILDJ3W.js → chunk-N7M3URIJ.js} +535 -391
- package/dist/chunk-N7M3URIJ.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/templates/.claude/skills/agentv-eval-builder/SKILL.md +1 -1
- package/package.json +3 -6
- package/dist/chunk-PHILDJ3W.js.map +0 -1
package/dist/cli.js
CHANGED
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\
|
|
1
|
+
{"version":3,"sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { runCli } from './index.js';\n\nvoid runCli();\n"],"mappings":";;;;;;;AAGA,KAAK,OAAO;","names":[]}
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ description: Create and maintain AgentV YAML evaluation files for testing AI age
|
|
|
11
11
|
- Examples: `references/example-evals.md`
|
|
12
12
|
|
|
13
13
|
## Structure Requirements
|
|
14
|
-
- Root level:
|
|
14
|
+
- Root level: `description` (optional), `execution` (optional), `evalcases` (required)
|
|
15
15
|
- Eval case fields: `id` (required), `outcome` (required), `input_messages` (required), `expected_messages` (required)
|
|
16
16
|
- Optional fields: `conversation_id`, `note`, `execution`
|
|
17
17
|
- Message fields: `role` (required), `content` (required)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentv",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "CLI entry point for AgentV",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -14,10 +14,7 @@
|
|
|
14
14
|
"bin": {
|
|
15
15
|
"agentv": "./dist/cli.js"
|
|
16
16
|
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"README.md"
|
|
20
|
-
],
|
|
17
|
+
"files": ["dist", "README.md"],
|
|
21
18
|
"scripts": {
|
|
22
19
|
"dev": "bun --watch src/index.ts",
|
|
23
20
|
"build": "tsup && bun run copy-readme",
|
|
@@ -32,7 +29,7 @@
|
|
|
32
29
|
"test:coverage": "vitest run --coverage"
|
|
33
30
|
},
|
|
34
31
|
"dependencies": {
|
|
35
|
-
"@agentv/core": "0.
|
|
32
|
+
"@agentv/core": "0.19.0",
|
|
36
33
|
"commander": "^12.1.0",
|
|
37
34
|
"fast-glob": "^3.3.3",
|
|
38
35
|
"dotenv": "^16.4.5",
|