@pome-sh/cli 0.17.0 → 0.18.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 +13 -5
- package/dist/build-info.json +3 -3
- package/dist/src/cli/eval.js +12 -10
- package/dist/src/cli/main.js +1 -1
- package/dist/src/hosted/evalResultView.d.ts +1 -1
- package/dist/src/hosted/evalResultView.js +22 -5
- package/dist/src/runner/groupRender.d.ts +12 -2
- package/dist/src/runner/groupRender.js +32 -8
- package/dist/src/runner/runTaskHosted.d.ts +8 -1
- package/dist/src/runner/runTaskHosted.js +11 -1
- package/dist/src/runner/runTrialGroup.js +15 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -64,22 +64,30 @@ code is the verdict**. Gate CI on it directly.
|
|
|
64
64
|
| Exit code | Meaning |
|
|
65
65
|
| --- | --- |
|
|
66
66
|
| `0` | pass (hosted/scored run), or trace captured (`--local`, not scored) |
|
|
67
|
-
| `1` | ran and scored **below** the pass threshold |
|
|
67
|
+
| `1` | ran and scored **below** the pass threshold, **or ran `INCOMPLETE`** |
|
|
68
68
|
| `2` | twin / orchestration error (network, 5xx, twin spawn failed) |
|
|
69
69
|
| `3` | auth error (401/403) — `pome login` again, or set `POME_API_KEY` in CI |
|
|
70
70
|
| `4` | quota exceeded (402/429) |
|
|
71
71
|
| `5` | usage error (bad flags, missing task file) |
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
Three rules CI must honor:
|
|
74
74
|
|
|
75
75
|
- **`--local` is not a verdict.** A `--local` run captures a raw trace and never
|
|
76
76
|
scores, so its exit `0` means "trace captured," not "passed." Never gate CI on
|
|
77
77
|
a `--local` exit code — score it later with `pome eval <run-dir>`.
|
|
78
|
+
- **`INCOMPLETE` shares exit `1`, and it is not the agent's failure.** A run
|
|
79
|
+
whose criteria could not all be graded exits `1` rather than mapping its
|
|
80
|
+
partial score to a code — a run whose checks never ran is not a green CI
|
|
81
|
+
signal. The cost is stated rather than hidden: **`1` cannot tell "the agent
|
|
82
|
+
regressed" from "we could not grade it."** Read the verdict word printed
|
|
83
|
+
beside the score (`INCOMPLETE` vs a sub-threshold number) to separate them.
|
|
78
84
|
- **Trial groups map as a whole.** `pome run -n k` (k>1) collapses the whole
|
|
79
85
|
group to one code: `0` = at least one trial completed and every completed
|
|
80
|
-
trial passed; `1` = at least one completed trial failed its threshold
|
|
81
|
-
no trial completed. Errored trials are
|
|
82
|
-
|
|
86
|
+
trial passed; `1` = at least one completed trial failed its threshold **or was
|
|
87
|
+
incomplete**; `2` = no trial completed. Errored and incomplete trials are
|
|
88
|
+
excluded from the verdict fraction (`3 of 4 passed · 1 incomplete`) so neither
|
|
89
|
+
is counted as a pass nor charged to the agent as a loss — but a group holding
|
|
90
|
+
one cannot exit `0`.
|
|
83
91
|
|
|
84
92
|
## Development
|
|
85
93
|
|
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.18.0",
|
|
4
|
+
"git_sha": "285d48dcd654088387b40e8d36a7a2bf8ffbb599",
|
|
5
|
+
"build_time": "2026-08-03T13:39:43.286Z"
|
|
6
6
|
}
|
package/dist/src/cli/eval.js
CHANGED
|
@@ -296,7 +296,7 @@ export async function runEval(options) {
|
|
|
296
296
|
return client.finalize(sid, {
|
|
297
297
|
stopReason: "eval_upload",
|
|
298
298
|
// /finalize's schema requires an integer exit_code, so `null` (agent
|
|
299
|
-
// timed out, or meta.json lacked the field)
|
|
299
|
+
// timed out, or meta.json lacked the field) is not a legal value.
|
|
300
300
|
// Send -1 as the explicit "unknown" sentinel — never a fabricated 0,
|
|
301
301
|
// which would report a clean agent exit the trace can't vouch for.
|
|
302
302
|
exitCode: artifacts.meta.exitCode ?? -1,
|
|
@@ -340,14 +340,16 @@ export async function runEval(options) {
|
|
|
340
340
|
// never persisted next to the trace. Local artifacts stay trace-only (no
|
|
341
341
|
// score.json), and the verdict lives in the cloud (see the dashboard URL).
|
|
342
342
|
const score = scoreFromFinalizeResponse(finalized);
|
|
343
|
-
// Exit-code policy —
|
|
344
|
-
//
|
|
345
|
-
//
|
|
346
|
-
//
|
|
347
|
-
//
|
|
348
|
-
//
|
|
349
|
-
//
|
|
350
|
-
//
|
|
343
|
+
// Exit-code policy — the full FDRS-591/611 A5 guard: exit 0 ONLY when the run
|
|
344
|
+
// was evaluated, every criterion was judged (can_pass), AND the score clears
|
|
345
|
+
// the threshold. An INCOMPLETE verdict (any criterion not evaluated) exits 1.
|
|
346
|
+
//
|
|
347
|
+
// F-925 retired the divergence that used to be documented here. `pome run`
|
|
348
|
+
// mapped the raw cloud score because "pre-FDRS-618 cloud builds don't emit
|
|
349
|
+
// criteria_results" — but `scoreFromFinalizeResponse` already handles that
|
|
350
|
+
// case (`hasCriteriaResults ? … : true`), so the guard degrades to score-only
|
|
351
|
+
// for exactly those builds on its own. The divergence was protecting a case
|
|
352
|
+
// its own helper already protected, and the two commands now agree.
|
|
351
353
|
const exitCode = scoreStatus(score, EVAL_PASS_THRESHOLD) === "pass" ? 0 : 1;
|
|
352
354
|
return {
|
|
353
355
|
taskName,
|
|
@@ -403,7 +405,7 @@ export async function runEvalCommand(runDirArg, opts) {
|
|
|
403
405
|
});
|
|
404
406
|
// Same verdict shape as hosted `pome run`: LABEL, score line, cloud URL.
|
|
405
407
|
const status = scoreStatus(result.score, EVAL_PASS_THRESHOLD);
|
|
406
|
-
const label = status === "pass" ? "PASS" : status === "fail" ? "FAIL" : "
|
|
408
|
+
const label = status === "pass" ? "PASS" : status === "fail" ? "FAIL" : "INCOMPLETE";
|
|
407
409
|
console.error(`${label} ${result.taskName}`);
|
|
408
410
|
console.error(` ${runScoreLine(result.score, EVAL_PASS_THRESHOLD, "cloud score")}`);
|
|
409
411
|
if (result.score.results.length > 0) {
|
package/dist/src/cli/main.js
CHANGED
|
@@ -660,7 +660,7 @@ export function createProgram() {
|
|
|
660
660
|
agentVersion: options.agentVersion,
|
|
661
661
|
});
|
|
662
662
|
const status = scoreStatus(result.score, result.scenario.config.passThreshold);
|
|
663
|
-
const label = status === "pass" ? "PASS" : status === "fail" ? "FAIL" : "
|
|
663
|
+
const label = status === "pass" ? "PASS" : status === "fail" ? "FAIL" : "INCOMPLETE";
|
|
664
664
|
console.error(`${label} ${result.scenario.title}`);
|
|
665
665
|
console.error(` ${runScoreLine(result.score, result.scenario.config.passThreshold, "cloud score")}`);
|
|
666
666
|
console.error(` local: ${result.artifacts.runDir}`);
|
|
@@ -29,7 +29,7 @@ export type Score = {
|
|
|
29
29
|
judge_tokens_out: number | null;
|
|
30
30
|
};
|
|
31
31
|
export declare function outcomeOf(result: CriterionResult): CriterionOutcome;
|
|
32
|
-
export type ScoreStatus = "pass" | "fail" | "
|
|
32
|
+
export type ScoreStatus = "pass" | "fail" | "incomplete";
|
|
33
33
|
export declare function scoreStatus(score: Score, passThreshold: number): ScoreStatus;
|
|
34
34
|
export declare function taskPassed(score: Score, passThreshold: number): boolean;
|
|
35
35
|
export declare function markerFor(outcome: CriterionOutcome): string;
|
|
@@ -31,9 +31,20 @@ export function outcomeOf(result) {
|
|
|
31
31
|
// Encodes the A5 guard: a run is only a PASS when it was evaluated, every
|
|
32
32
|
// required criterion was evaluated (can_pass), AND satisfaction cleared the
|
|
33
33
|
// threshold. PURE — no computation of the score itself.
|
|
34
|
+
//
|
|
35
|
+
// F-932 renamed the third state from `unevaluated` to `incomplete` and CHANGED
|
|
36
|
+
// NOTHING ELSE HERE. The guard is the one place the CLI refuses to inflate a
|
|
37
|
+
// partial run into a pass — the same refusal pome-cloud added server-side in
|
|
38
|
+
// F-925 — so the rename must not become a loosening.
|
|
39
|
+
//
|
|
40
|
+
// One rule, two repos: `can_pass` is false for ANY abstention
|
|
41
|
+
// (`uploadAndFinalize.ts`), and pome-cloud's `isRunIncomplete` says
|
|
42
|
+
// `notEvaluated > 0` over the same `criteria_results`. Deliberately NOT read
|
|
43
|
+
// from the wire's `all_skipped`, which is the narrower every-abstained
|
|
44
|
+
// predicate and would loosen this guard.
|
|
34
45
|
export function scoreStatus(score, passThreshold) {
|
|
35
46
|
if (!score.evaluated || !score.can_pass)
|
|
36
|
-
return "
|
|
47
|
+
return "incomplete";
|
|
37
48
|
return score.satisfaction >= passThreshold ? "pass" : "fail";
|
|
38
49
|
}
|
|
39
50
|
export function taskPassed(score, passThreshold) {
|
|
@@ -55,14 +66,14 @@ export function markerFor(outcome) {
|
|
|
55
66
|
// Multi-twin (M3): the per-criterion bracket for terminal display —
|
|
56
67
|
// `[code]` / `[model]`, plus the `:<twin>` suffix when the criterion attributes
|
|
57
68
|
// to a specific twin (so a `[code:slack]`/`[model:github]` marker survives into the
|
|
58
|
-
//
|
|
69
|
+
// INCOMPLETE / criteria list). A bare (primary-twin) criterion renders `[code]`
|
|
59
70
|
// unchanged.
|
|
60
71
|
export function criterionMarkerLabel(criterion) {
|
|
61
72
|
return criterion.twin ? `[${criterion.type}:${criterion.twin}]` : `[${criterion.type}]`;
|
|
62
73
|
}
|
|
63
74
|
// Multi-twin (M3): when the cloud could not evaluate a criterion for a
|
|
64
75
|
// twin-related reason (a twin-tagged criterion, or a `no_matching_predicate`
|
|
65
|
-
// skip), name the twin inline so the
|
|
76
|
+
// skip), name the twin inline so the INCOMPLETE line explains WHICH twin's timeline
|
|
66
77
|
// came up empty. Returns "" when there's nothing twin-specific to add.
|
|
67
78
|
export function twinSkipSuffix(result) {
|
|
68
79
|
const twin = result.criterion.twin;
|
|
@@ -79,8 +90,14 @@ export function scoreCountsSummary(score) {
|
|
|
79
90
|
}
|
|
80
91
|
export function runScoreLine(score, passThreshold, unevaluatedNumericLabel) {
|
|
81
92
|
const status = scoreStatus(score, passThreshold);
|
|
82
|
-
if (status === "
|
|
83
|
-
|
|
93
|
+
if (status === "incomplete") {
|
|
94
|
+
// Leads with the COUNT, which is the fact the reader needs and the same
|
|
95
|
+
// fact the cloud's own header now states. The old copy said "cannot pass",
|
|
96
|
+
// which is a verdict about the AGENT for a gap in the GRADER — the exact
|
|
97
|
+
// inversion F-925 exists to stop, one surface over.
|
|
98
|
+
const notEvaluated = score.skipped + score.errored;
|
|
99
|
+
const total = score.total_required + notEvaluated;
|
|
100
|
+
return `score: incomplete — ${notEvaluated} of ${total} criteria not evaluated; ${scoreCountsSummary(score)}; ${unevaluatedNumericLabel}: ${score.satisfaction}/100`;
|
|
84
101
|
}
|
|
85
102
|
return `score: ${score.satisfaction}/100`;
|
|
86
103
|
}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
|
+
import type { ScoreStatus } from "../hosted/evalResultView.js";
|
|
1
2
|
export type TrialRow = {
|
|
2
3
|
kind: "completed";
|
|
3
4
|
/** Cloud-authoritative satisfaction score, 0-100. */
|
|
4
5
|
score: number;
|
|
5
|
-
/**
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* F-925 — three states, not a boolean. `incomplete` means the trial ran
|
|
8
|
+
* and finalized but at least one criterion never produced a verdict, so
|
|
9
|
+
* it is neither a pass nor the agent's failure. It was `passed: boolean`
|
|
10
|
+
* fed from `exitCode === 0`, which counted a 100/100 run with 3 of 4
|
|
11
|
+
* criteria skipped as a clean passing trial.
|
|
12
|
+
*
|
|
13
|
+
* Typed as the CLI's own `ScoreStatus` rather than a second enum, so the
|
|
14
|
+
* trial line and the single-run headline cannot drift apart.
|
|
15
|
+
*/
|
|
16
|
+
verdict: ScoreStatus;
|
|
7
17
|
seconds: number;
|
|
8
18
|
/** Failing-criteria summary ("a · b"), absent when none were reported. */
|
|
9
19
|
note?: string;
|
|
@@ -45,20 +45,40 @@ export function trialRowLine(n, row) {
|
|
|
45
45
|
if (row.kind === "errored") {
|
|
46
46
|
return `trial ${n} ⚠ ${"errored".padEnd(16)}${row.reason} — excluded`;
|
|
47
47
|
}
|
|
48
|
-
|
|
48
|
+
// A dash for the ungradable trial: it ran, and it asserts nothing. Reusing
|
|
49
|
+
// ✗ would make a grader gap look like the agent's failure at a glance, which
|
|
50
|
+
// is the whole reading F-925 removes.
|
|
51
|
+
const mark = row.verdict === "pass" ? "✓" : row.verdict === "incomplete" ? "–" : "✗";
|
|
49
52
|
const base = `trial ${n} ${mark} ${String(row.score).padEnd(9)}${row.seconds.toFixed(1)}s`;
|
|
50
53
|
return row.note ? `${base} ${row.note}` : base;
|
|
51
54
|
}
|
|
52
55
|
export function groupSummaryLines(input) {
|
|
53
56
|
const completed = input.rows.filter((r) => r.kind === "completed");
|
|
54
|
-
const passed = completed.filter((r) => r.
|
|
57
|
+
const passed = completed.filter((r) => r.verdict === "pass").length;
|
|
58
|
+
const incomplete = completed.filter((r) => r.verdict === "incomplete").length;
|
|
59
|
+
// F-925 — the fraction's denominator is the GRADED trials. A trial that
|
|
60
|
+
// finalized but could not be fully graded leaves both the numerator and the
|
|
61
|
+
// denominator, so a 5-trial set with one of them reads "3 of 4", never the
|
|
62
|
+
// "4 of 5" that counted it as a pass.
|
|
63
|
+
const graded = completed.length - incomplete;
|
|
55
64
|
const errored = input.rows.length - completed.length;
|
|
56
65
|
const lines = ["─────"];
|
|
57
|
-
// The fraction counts
|
|
58
|
-
// excluded, never silently folded into the denominator.
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
66
|
+
// The fraction counts GRADED trials only; incomplete and errored trials are
|
|
67
|
+
// named and excluded, never silently folded into the denominator. They stay
|
|
68
|
+
// two clauses rather than one: "the trial died" is ours to retry, "the trial
|
|
69
|
+
// ran and could not be graded" is a grader gap, and a reader told the wrong
|
|
70
|
+
// one goes looking in the wrong place.
|
|
71
|
+
let fraction;
|
|
72
|
+
if (graded === 0) {
|
|
73
|
+
fraction =
|
|
74
|
+
completed.length === 0 ? "no trials completed" : "no trials could be graded";
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
fraction = `${passed} of ${graded} passed`;
|
|
78
|
+
}
|
|
79
|
+
if (incomplete > 0) {
|
|
80
|
+
fraction += ` · ${incomplete} incomplete, excluded from the fraction`;
|
|
81
|
+
}
|
|
62
82
|
if (errored > 0) {
|
|
63
83
|
fraction += ` · ${errored} errored, excluded from the fraction`;
|
|
64
84
|
}
|
|
@@ -85,7 +105,11 @@ export function groupExitCode(rows) {
|
|
|
85
105
|
const completed = rows.filter((r) => r.kind === "completed");
|
|
86
106
|
if (completed.length === 0)
|
|
87
107
|
return 2;
|
|
88
|
-
|
|
108
|
+
// F-925 — an ungradable trial is not a pass, so a group holding one cannot
|
|
109
|
+
// exit 0: green here would tell CI the set was verified when part of it was
|
|
110
|
+
// never checked. It stays 1 rather than 2 even when EVERY trial was
|
|
111
|
+
// incomplete — `2` means nothing completed, and these completed.
|
|
112
|
+
return completed.every((r) => r.verdict === "pass") ? 0 : 1;
|
|
89
113
|
}
|
|
90
114
|
/** Modal failed-criterion text across the group's completed trials, as the
|
|
91
115
|
* short phrase the "start there" line renders. */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type HostedClient } from "../hosted/client.js";
|
|
2
2
|
import type { CreateSessionResponse } from "../types/shared.js";
|
|
3
3
|
import type { Task } from "../task/taskSchema.js";
|
|
4
|
-
import type
|
|
4
|
+
import { type Score, type ScoreStatus } from "../hosted/evalResultView.js";
|
|
5
5
|
import type { RunArtifacts } from "../recorder/artifacts.js";
|
|
6
6
|
export interface RunTaskHostedOptions {
|
|
7
7
|
taskPath: string;
|
|
@@ -44,6 +44,13 @@ export interface RunTaskHostedResult {
|
|
|
44
44
|
cloudDashboardUrl: string;
|
|
45
45
|
artifacts: RunArtifacts;
|
|
46
46
|
score: Score;
|
|
47
|
+
/**
|
|
48
|
+
* F-925 — the run's own three-state verdict, computed ONCE here and carried
|
|
49
|
+
* out so a caller never re-derives it. `exitCode` cannot express it: 1 means
|
|
50
|
+
* both "failed" and "could not be graded", and a trial group needs to tell
|
|
51
|
+
* them apart to keep the ungradable one out of its fraction.
|
|
52
|
+
*/
|
|
53
|
+
verdict: ScoreStatus;
|
|
47
54
|
exitCode: number;
|
|
48
55
|
/** Wall time from run start to post-agent state capture — the same value
|
|
49
56
|
* reported to /finalize as duration_ms. FDRS-636 renders it as the trial
|
|
@@ -13,6 +13,7 @@ import { ensureMcpSuffix } from "../cli/session.js";
|
|
|
13
13
|
import { redactJsonl, scoreFromFinalizeResponse, uploadRunBlobs, } from "../hosted/uploadAndFinalize.js";
|
|
14
14
|
import { resolveRunAgentIdentity } from "../cli/agent-identity.js";
|
|
15
15
|
import { HostedOrchError, HostedTrialError } from "../hosted/errors.js";
|
|
16
|
+
import { scoreStatus, } from "../hosted/evalResultView.js";
|
|
16
17
|
/** Build the agent subprocess env for a hosted run.
|
|
17
18
|
*
|
|
18
19
|
* Two layers, in this order:
|
|
@@ -491,7 +492,15 @@ export async function runTaskHosted(options) {
|
|
|
491
492
|
// Pre-finalize agent failures (auth, quota, twin spawn, exec
|
|
492
493
|
// errors) take other code paths via thrown HostedAuthError /
|
|
493
494
|
// HostedQuotaError / HostedOrchError and never reach this line.
|
|
494
|
-
|
|
495
|
+
// F-925 — the score alone is not the verdict. A 100/100 run with a
|
|
496
|
+
// criterion that never ran is `incomplete`, and exiting 0 on it is how
|
|
497
|
+
// "the fix passed" came to mean "the check never ran". `scoreStatus`
|
|
498
|
+
// applies the A5 guard `pome eval` has always applied; the FDRS-618
|
|
499
|
+
// compat this used to preserve is already preserved inside
|
|
500
|
+
// `scoreFromFinalizeResponse`, which sets can_pass true when the
|
|
501
|
+
// response carries no criteria_results at all.
|
|
502
|
+
const verdict = scoreStatus(score, scenario.config.passThreshold);
|
|
503
|
+
const exitCode = verdict === "pass" ? 0 : 1;
|
|
495
504
|
// 11. FDRS-644 — cache the CLOUD verdict payload next to the raw trace
|
|
496
505
|
// (verdict.json, provenance-labeled `source: "cloud-finalize"`).
|
|
497
506
|
// Not a local score: evaluation stayed in the cloud; this records
|
|
@@ -528,6 +537,7 @@ export async function runTaskHosted(options) {
|
|
|
528
537
|
cloudDashboardUrl: finalized.dashboard_url,
|
|
529
538
|
artifacts,
|
|
530
539
|
score,
|
|
540
|
+
verdict,
|
|
531
541
|
exitCode,
|
|
532
542
|
durationMs,
|
|
533
543
|
};
|
|
@@ -179,7 +179,14 @@ export async function runTrialGroup(options) {
|
|
|
179
179
|
row = {
|
|
180
180
|
kind: "completed",
|
|
181
181
|
score: result.score.satisfaction,
|
|
182
|
-
|
|
182
|
+
// F-925 — the trial's own verdict, carried out of the run rather than
|
|
183
|
+
// re-derived here. It was `result.exitCode === 0`, which cannot express
|
|
184
|
+
// the third state (1 means both "failed" and "could not be graded"), so
|
|
185
|
+
// a 100/100 trial with 3 of 4 criteria skipped counted as a clean pass.
|
|
186
|
+
// Reusing the run's own value rather than calling `scoreStatus` again
|
|
187
|
+
// on the same inputs is what keeps the trial line and the single-run
|
|
188
|
+
// headline from ever disagreeing.
|
|
189
|
+
verdict: result.verdict,
|
|
183
190
|
seconds: result.durationMs / 1000,
|
|
184
191
|
note: failing.length > 0
|
|
185
192
|
? failing.map((r) => criterionPhrase(r.criterion.text)).join(" · ")
|
|
@@ -235,7 +242,13 @@ export async function runTrialGroup(options) {
|
|
|
235
242
|
// 4. FDRS-644 — the fix & green handoff, only when a COMPLETED trial
|
|
236
243
|
// failed. Errored trials are sandbox noise: the answer there is re-run,
|
|
237
244
|
// not a code fix, so an errored-only group gets no handoff.
|
|
238
|
-
|
|
245
|
+
//
|
|
246
|
+
// F-925 — `fail`, NOT "anything that isn't a pass". This was `!r.passed`,
|
|
247
|
+
// which now includes the incomplete trial, and pointing someone at
|
|
248
|
+
// `pome fix-prompt` for a criterion that never ran tells them to fix an agent
|
|
249
|
+
// that may be blameless. An abstention is a grader gap; the handoff is for
|
|
250
|
+
// agent defects.
|
|
251
|
+
const failedCompleted = rows.filter((r) => r.kind === "completed" && r.verdict === "fail").length;
|
|
239
252
|
if (failedCompleted > 0) {
|
|
240
253
|
const artifactsDir = options.artifactsDir ?? "runs";
|
|
241
254
|
const fixPromptCommand = artifactsDir === "runs"
|
package/package.json
CHANGED