@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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "pome-sh",
3
- "version": "0.33.1",
4
- "git_sha": "15d61b80f3fb2ee0df893ca81c0c9e4d0afd0076",
5
- "build_time": "2026-08-28T11:26:59.938Z"
3
+ "version": "0.33.2",
4
+ "git_sha": "764578bc67058aac2a7967b6b12198858d9e7807",
5
+ "build_time": "2026-08-28T12:13:23.749Z"
6
6
  }
@@ -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.1".length > 0) return "0.33.1";
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
- 'Task markdown file or directory. Omit to run the demo task ("that was ours, run yours"): tasks/first-run-demo.md is dropped into your project on first use with runs: 5 pinned.'
4978
- ).option("--agent <command>", "Agent command to run").option(
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
- "Run <count> isolated trials of the task as ONE trial group (integer 1-20; hosted only). Default is the task config's `runs` field (capped at 20). k>1 mints sessions with a shared group id up to your plan's concurrent-twin quota (remaining trials reuse slots as earlier trials finish), runs trials at that concurrency, prints the per-trial verdict table (numeric cloud-judge scores), and exits 0 iff at least one trial completed and every completed trial passed (1: a completed trial failed; 2: nothing completed). k=1 keeps today's single-run behavior exactly."
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 cloud run.", "unknown").option(
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 for this run (stamped on the session/run)."
4987
+ "Override the manifest's agent.version."
4988
4988
  ).option(
4989
4989
  "--no-capture",
4990
- "Self-host only: skip spawning the capture-server child and don't inject HTTP_PROXY/HTTPS_PROXY into the agent. Used by the CI overhead gate to baseline proxy-on-vs-off latency. No-op on hosted runs."
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: run against an in-process twin and CAPTURE a raw trace only (an audit log \u2014 no score, no verdict, no judge). A verdict comes from the cloud: run `pome eval <run-dir>` on the captured trace, or `pome login` and run against Pome cloud."
4993
+ "Self-host: record a trace against an in-process twin, with no score. Score it with `pome eval`."
4994
4994
  ).description(
4995
- 'Run one or more Pome tasks. With no path, runs the demo task (tasks/first-run-demo.md, copied into your project on first use \u2014 "that was ours, run yours"). Refuses to start if the doctor wiring checks fail (see `pome doctor`); there is no --force.'
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/cli",
3
- "version": "0.33.1",
3
+ "version": "0.33.2",
4
4
  "description": "Test AI agents against digital twins of real SaaS APIs. Records tool-call traces and scores them on pome.sh.",
5
5
  "keywords": [
6
6
  "ai",