@pome-sh/cli 0.33.1 → 0.33.2
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 +9 -9
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.33.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.33.2",
|
|
4
|
+
"git_sha": "764578bc67058aac2a7967b6b12198858d9e7807",
|
|
5
|
+
"build_time": "2026-08-28T12:13:23.749Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -4622,7 +4622,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4622
4622
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4623
4623
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4624
4624
|
function readPackageVersion() {
|
|
4625
|
-
if ("0.33.
|
|
4625
|
+
if ("0.33.2".length > 0) return "0.33.2";
|
|
4626
4626
|
try {
|
|
4627
4627
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4628
4628
|
const candidates = [
|
|
@@ -4974,25 +4974,25 @@ function createProgram() {
|
|
|
4974
4974
|
);
|
|
4975
4975
|
program.command("run").summary("Run a task and print the score").argument(
|
|
4976
4976
|
"[path]",
|
|
4977
|
-
|
|
4978
|
-
).option("--agent <command>", "
|
|
4977
|
+
"Task markdown file or directory. Omit to run the demo task Pome copies into your project."
|
|
4978
|
+
).option("--agent <command>", "Command that starts your agent.").option(
|
|
4979
4979
|
"-n, --trials <count>",
|
|
4980
|
-
"
|
|
4980
|
+
"Number of trials to run as one group, 1 to 20. Hosted only; defaults to the task's `runs` field."
|
|
4981
4981
|
).option("--artifacts-dir <dir>", "Directory for run artifacts", "runs").option(
|
|
4982
4982
|
"--api-url <url>",
|
|
4983
4983
|
"Control-plane base URL.",
|
|
4984
4984
|
process.env.POME_API_URL ?? DEFAULT_CONTROL_PLANE_URL
|
|
4985
|
-
).option("--agent-model <name>", "Informational; recorded on the
|
|
4985
|
+
).option("--agent-model <name>", "Informational; model name recorded on the run.", "unknown").option(
|
|
4986
4986
|
"--agent-version <version>",
|
|
4987
|
-
"Override the manifest's agent.version
|
|
4987
|
+
"Override the manifest's agent.version."
|
|
4988
4988
|
).option(
|
|
4989
4989
|
"--no-capture",
|
|
4990
|
-
"Self-host only: skip
|
|
4990
|
+
"Self-host only: skip the capture proxy, so model calls are not recorded. Ignored on hosted runs."
|
|
4991
4991
|
).option(
|
|
4992
4992
|
"--local",
|
|
4993
|
-
"Self-host:
|
|
4993
|
+
"Self-host: record a trace against an in-process twin, with no score. Score it with `pome eval`."
|
|
4994
4994
|
).description(
|
|
4995
|
-
|
|
4995
|
+
"Run a task, or every task in a directory, and print the score. With no path, runs the demo task Pome copies into your project on first use. Refuses to start when `pome doctor` fails, and there is no --force. See `pome docs cli-run` for trial groups and exit codes."
|
|
4996
4996
|
).action(
|
|
4997
4997
|
async (target, options) => {
|
|
4998
4998
|
let trialsFlag;
|