@pome-sh/cli 0.23.24 → 0.23.26
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/dist/build-info.json +3 -3
- package/dist/src/cli/main.js +1 -1
- package/package.json +3 -4
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.23.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.23.26",
|
|
4
|
+
"git_sha": "0e181da493759acb3bfe57f63a3c623389e7e394",
|
|
5
|
+
"build_time": "2026-08-12T19:09:17.801Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -4541,7 +4541,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4541
4541
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4542
4542
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4543
4543
|
function readPackageVersion() {
|
|
4544
|
-
if ("0.23.
|
|
4544
|
+
if ("0.23.26".length > 0) return "0.23.26";
|
|
4545
4545
|
try {
|
|
4546
4546
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4547
4547
|
const candidates = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pome-sh/cli",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.26",
|
|
4
4
|
"description": "Digital-twin testing for AI agents \u2014 run tasks against resettable local or hosted twins and record tool-call traces for evaluation on pome.sh.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -49,10 +49,9 @@
|
|
|
49
49
|
"prepublishOnly": "node scripts/assert-publishable.mjs && npm run build",
|
|
50
50
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
51
51
|
"test": "vitest run",
|
|
52
|
-
"test:e2e": "vitest run test/e2e",
|
|
53
|
-
"gate:no-eval": "node ../scripts/no-eval-in-oss.mjs",
|
|
54
|
-
"gate:no-native": "node ../scripts/no-native-modules.mjs --root .",
|
|
55
52
|
"gate:recorder-overhead": "tsx scripts/recorder-overhead-gate.ts",
|
|
53
|
+
"gate:agent-trace-overhead": "tsx scripts/overhead-gate.ts",
|
|
54
|
+
"gate:cas-adapter-acceptance": "tsx scripts/cas-adapter-acceptance.ts",
|
|
56
55
|
"emit:manifest-schema": "node scripts/emit-manifest-schema.mjs",
|
|
57
56
|
"check:manifest-schema": "node scripts/emit-manifest-schema.mjs --check"
|
|
58
57
|
},
|