@pome-sh/cli 0.25.0 → 0.26.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "pome-sh",
3
- "version": "0.25.0",
4
- "git_sha": "65790f8a48832b9d2ddd0cf66d2d1964b6006b29",
5
- "build_time": "2026-08-21T08:33:07.191Z"
3
+ "version": "0.26.0",
4
+ "git_sha": "7114944d7733b92bba51e8f1cef0e0f262d7af09",
5
+ "build_time": "2026-08-21T09:42:44.027Z"
6
6
  }
@@ -4651,7 +4651,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
4651
4651
  var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
4652
4652
  var MAX_UNREADABLE_PATHS_SHOWN = 5;
4653
4653
  function readPackageVersion() {
4654
- if ("0.25.0".length > 0) return "0.25.0";
4654
+ if ("0.26.0".length > 0) return "0.26.0";
4655
4655
  try {
4656
4656
  const here = dirname(fileURLToPath(import.meta.url));
4657
4657
  const candidates = [
@@ -4791,41 +4791,31 @@ function createProgram() {
4791
4791
  ).action(async (topic, opts) => {
4792
4792
  await runDocsCommand(topic, { site: opts.site, urlOnly: Boolean(opts.url) });
4793
4793
  });
4794
- const registerTasksCommand = (name, hidden) => {
4795
- const cmd = program.command(name, { hidden }).argument(
4796
- "[twin]",
4797
- "Twin id (e.g. github). Omit to list available twins."
4798
- ).option(
4799
- "--copy",
4800
- "Copy the twin's runnable tasks into the local project.",
4801
- false
4802
- ).option(
4803
- "--force",
4804
- "With --copy, overwrite existing files in the destination.",
4805
- false
4806
- ).option(
4807
- "--dest <dir>",
4808
- "With --copy, write into this directory instead of ./tasks/."
4809
- ).description(
4810
- "Browse the bundled task library (or copy a twin's tasks into the local project)"
4811
- ).action(
4812
- async (twin2, opts) => {
4813
- if (hidden) {
4814
- console.error(
4815
- "`pome scenarios` was renamed to `pome tasks` \u2014 running it for you. Update your scripts; the old name will be removed in a future release."
4816
- );
4817
- }
4818
- await runTasksCommand(twin2, {
4819
- copy: opts.copy,
4820
- force: opts.force,
4821
- dest: opts.dest
4822
- });
4823
- }
4824
- );
4825
- return cmd;
4826
- };
4827
- registerTasksCommand("tasks", false);
4828
- registerTasksCommand("scenarios", true);
4794
+ program.command("tasks").argument(
4795
+ "[twin]",
4796
+ "Twin id (e.g. github). Omit to list available twins."
4797
+ ).option(
4798
+ "--copy",
4799
+ "Copy the twin's runnable tasks into the local project.",
4800
+ false
4801
+ ).option(
4802
+ "--force",
4803
+ "With --copy, overwrite existing files in the destination.",
4804
+ false
4805
+ ).option(
4806
+ "--dest <dir>",
4807
+ "With --copy, write into this directory instead of ./tasks/."
4808
+ ).description(
4809
+ "Browse the bundled task library (or copy a twin's tasks into the local project)"
4810
+ ).action(
4811
+ async (twin2, opts) => {
4812
+ await runTasksCommand(twin2, {
4813
+ copy: opts.copy,
4814
+ force: opts.force,
4815
+ dest: opts.dest
4816
+ });
4817
+ }
4818
+ );
4829
4819
  const checks = program.command("checks").argument("[twin]", "Twin id (e.g. github). Omit to list twins that declare checks.").option("--json", "Emit the declaration as JSON (for skills and agents).", false).description(
4830
4820
  "Browse the typed checks a twin declares \u2014 the closed set [code] criteria come from"
4831
4821
  ).action(async (twin2, opts) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/cli",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
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",