agentv 5.1.0-next.1 → 5.2.0-next.1
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 +16 -12
- package/dist/{artifact-writer-IORG7CW5.js → artifact-writer-SN6UNL5G.js} +5 -5
- package/dist/{chunk-ZGPCX334.js → chunk-3S6A2RKR.js} +2803 -959
- package/dist/chunk-3S6A2RKR.js.map +1 -0
- package/dist/{chunk-GIRUNQGP.js → chunk-3X357HS4.js} +205 -153
- package/dist/chunk-3X357HS4.js.map +1 -0
- package/dist/{chunk-CBBBRTQ3.js → chunk-46K2OET3.js} +64 -3
- package/dist/chunk-46K2OET3.js.map +1 -0
- package/dist/{chunk-GJWPQXHN.js → chunk-ALVZQUZP.js} +104 -188
- package/dist/chunk-ALVZQUZP.js.map +1 -0
- package/dist/{chunk-AM2IPHKS.js → chunk-T4AD3H3Y.js} +236 -154
- package/dist/chunk-T4AD3H3Y.js.map +1 -0
- package/dist/cli.js +6 -6
- package/dist/dashboard/assets/{index-BSHoWrdr.js → index-DNgf3qJ2.js} +1 -1
- package/dist/dashboard/assets/{index-zvUKAkKn.css → index-D_bokML8.css} +1 -1
- package/dist/dashboard/assets/index-r_jSJmlw.js +121 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/{dist-2D2GBHZV.js → dist-DEPJOMCA.js} +6 -8
- package/dist/index.js +6 -6
- package/dist/{interactive-V4SEHLNY.js → interactive-36ZNMQB2.js} +6 -6
- package/dist/skills/agentv-bench/SKILL.md +16 -12
- package/dist/skills/agentv-bench/references/eval-yaml-spec.md +15 -10
- package/dist/skills/agentv-bench/references/migrating-from-skill-creator.md +1 -1
- package/dist/skills/agentv-eval-migrations/references/breaking-changes.md +26 -27
- package/dist/skills/agentv-eval-writer/SKILL.md +86 -71
- package/dist/skills/agentv-eval-writer/references/eval.schema.json +772 -1367
- package/dist/{ts-eval-loader-SSPJVEHD-AL2A3V5Z.js → ts-eval-loader-OMG2JBHP-OP5RR7A3.js} +3 -2
- package/package.json +8 -2
- package/dist/chunk-AM2IPHKS.js.map +0 -1
- package/dist/chunk-CBBBRTQ3.js.map +0 -1
- package/dist/chunk-GIRUNQGP.js.map +0 -1
- package/dist/chunk-GJWPQXHN.js.map +0 -1
- package/dist/chunk-ZGPCX334.js.map +0 -1
- package/dist/dashboard/assets/index-BaLLxmVO.js +0 -121
- /package/dist/{artifact-writer-IORG7CW5.js.map → artifact-writer-SN6UNL5G.js.map} +0 -0
- /package/dist/{dist-2D2GBHZV.js.map → dist-DEPJOMCA.js.map} +0 -0
- /package/dist/{interactive-V4SEHLNY.js.map → interactive-36ZNMQB2.js.map} +0 -0
- /package/dist/{ts-eval-loader-SSPJVEHD-AL2A3V5Z.js.map → ts-eval-loader-OMG2JBHP-OP5RR7A3.js.map} +0 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Test AI targets on real repo tasks and measure what actually works.
|
|
|
5
5
|
## Why?
|
|
6
6
|
|
|
7
7
|
- **Local-first** — runs on your machine, no cloud accounts or API keys for eval infrastructure
|
|
8
|
-
- **Repo-backed
|
|
8
|
+
- **Repo-backed environments** — reuse real repos, setup scripts, Docker images, and existing harnesses instead of rebuilding synthetic tasks
|
|
9
9
|
- **Portable artifacts** — results, traces, and reports are saved in a durable format other tools can consume
|
|
10
10
|
- **Version-controlled** — evals, judges, and results all live in Git
|
|
11
11
|
- **Hybrid graders** — deterministic code checks + LLM-based subjective scoring
|
|
@@ -14,9 +14,9 @@ Test AI targets on real repo tasks and measure what actually works.
|
|
|
14
14
|
|
|
15
15
|
## Core Concepts
|
|
16
16
|
|
|
17
|
-
- **Eval suite /
|
|
17
|
+
- **Eval suite / tests** are the task corpus: the prompts, cases, datasets, and reusable field-local files you want to evaluate.
|
|
18
18
|
- **Category** is derived from where the eval lives, such as folder path and file name. Use paths to organize the corpus instead of repeating category labels in every eval.
|
|
19
|
-
- **
|
|
19
|
+
- **Environment / fixtures / graders** are task-owned context: host or Docker setup, repos, setup scripts, files, fixtures, deterministic checks, and LLM grading prompts.
|
|
20
20
|
- **Target** is the system under test: an agent, provider, gateway, replay target, CLI wrapper, transcript provider, or future app/service wrapper. Each eval selects one `target` by configured target `id` or with an eval-local target object.
|
|
21
21
|
- **Tags** are run/result grouping labels. `tags.experiment` is the default experiment namespace, such as `with-skills` or `without-skills`; keep suite/category and target/model names out of that tag.
|
|
22
22
|
- **Evaluate options** configure eval run behavior such as `max_concurrency`, repeat policy, and budgets.
|
|
@@ -259,15 +259,19 @@ export default defineEval({
|
|
|
259
259
|
},
|
|
260
260
|
threshold: 0.8,
|
|
261
261
|
prompts: ['{{ input }}'],
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
262
|
+
environment: {
|
|
263
|
+
type: 'host',
|
|
264
|
+
workdir: './fixture',
|
|
265
|
+
setup: {
|
|
266
|
+
command: [
|
|
267
|
+
'bash',
|
|
268
|
+
'./scripts/materialize-repo.sh',
|
|
269
|
+
'./fixture',
|
|
270
|
+
'EntityProcess/agentv-contract-fixture',
|
|
271
|
+
'21a34daed7ebcfe36cbed053607622a55e5e94cb',
|
|
272
|
+
],
|
|
273
|
+
cwd: '.',
|
|
274
|
+
},
|
|
271
275
|
},
|
|
272
276
|
tests: [
|
|
273
277
|
{
|
|
@@ -4,9 +4,8 @@ import {
|
|
|
4
4
|
buildResultIndexArtifact,
|
|
5
5
|
writeArtifactsFromResults,
|
|
6
6
|
writePerTestArtifacts
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-PEUTJS7B.js";
|
|
7
|
+
} from "./chunk-46K2OET3.js";
|
|
8
|
+
import "./chunk-ALVZQUZP.js";
|
|
10
9
|
import {
|
|
11
10
|
RESULT_INDEX_FILENAME,
|
|
12
11
|
RUN_CONFIG_FILENAME,
|
|
@@ -24,8 +23,9 @@ import {
|
|
|
24
23
|
readRunConfigArtifact,
|
|
25
24
|
writeArtifacts,
|
|
26
25
|
writeInitialRunSummaryArtifact
|
|
27
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-3S6A2RKR.js";
|
|
28
27
|
import "./chunk-7BGERE6L.js";
|
|
28
|
+
import "./chunk-PEUTJS7B.js";
|
|
29
29
|
import "./chunk-M7BUKBAF.js";
|
|
30
30
|
import "./chunk-QMRVH5ZP.js";
|
|
31
31
|
export {
|
|
@@ -50,4 +50,4 @@ export {
|
|
|
50
50
|
writeInitialRunSummaryArtifact,
|
|
51
51
|
writePerTestArtifacts
|
|
52
52
|
};
|
|
53
|
-
//# sourceMappingURL=artifact-writer-
|
|
53
|
+
//# sourceMappingURL=artifact-writer-SN6UNL5G.js.map
|