@pome-sh/cli 0.21.0 → 0.21.1

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.21.0",
4
- "git_sha": "88ed221d8c0a5f1bfabfbeacca1d2d214ecb383d",
5
- "build_time": "2026-08-05T15:28:04.134Z"
3
+ "version": "0.21.1",
4
+ "git_sha": "40a6f44ac7b048277219ffb7ff5b1db8ac44765e",
5
+ "build_time": "2026-08-05T16:28:17.637Z"
6
6
  }
@@ -253,7 +253,7 @@ async function checkRouting(configDir) {
253
253
  cause: `no POME_*_REST_URL / POME_*_MCP_URL read and no @pome-sh adapter found in the ${scan.filesScanned} source file(s) under ${relative(process.cwd(), configDir) || "."} \u2014 the agent has no path to the twin.`,
254
254
  fix: [
255
255
  'wire the adapter: import { withPome } from "@pome-sh/adapter-claude-sdk"; call withPome() at startup;',
256
- "read the twin base URL from POME_GITHUB_REST_URL (injected by the runner) \u2014 or let your own coding agent wire it with the Gen-2 skills (`npx skills add pome-sh/digital-twins`)."
256
+ "read the twin base URL from POME_GITHUB_REST_URL (injected by the runner) \u2014 or let your own coding agent wire it with the Gen-2 skills (`npx skills add pome-sh/digital-twins --skill '*'`)."
257
257
  ].join("\n")
258
258
  };
259
259
  }
@@ -5,7 +5,10 @@ var GEN2_REDIRECT = [
5
5
  "Wire your own agent to pome the Gen-2 way:",
6
6
  " 1. claude mcp add --transport http pome https://mcp.pome.sh/mcp",
7
7
  " # connect the pome control MCP",
8
- " 2. npx skills add pome-sh/digital-twins # install the Gen-2 coach skills",
8
+ " 2. npx skills add pome-sh/digital-twins --skill '*'",
9
+ " # install the Gen-2 coach skills",
10
+ " # (--skill '*' takes all six; the",
11
+ " # picker opens with none ticked)",
9
12
  " 3. run the pome-intake skill to register the examinee and check twin",
10
13
  " coverage (self-hosted REST agent: use the coach's REST-launch preflight).",
11
14
  "",
@@ -4498,7 +4498,7 @@ var DEFAULT_AGENT_FILE = "examples/agents/scripted-triage-agent.ts";
4498
4498
  var DEFAULT_AGENT_COMMAND = `npx tsx ${DEFAULT_AGENT_FILE}`;
4499
4499
  var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
4500
4500
  function readPackageVersion() {
4501
- if ("0.21.0".length > 0) return "0.21.0";
4501
+ if ("0.21.1".length > 0) return "0.21.1";
4502
4502
  try {
4503
4503
  const here = dirname(fileURLToPath(import.meta.url));
4504
4504
  const candidates = [
@@ -4597,9 +4597,9 @@ function createProgram() {
4597
4597
  console.error(postInitMessage);
4598
4598
  });
4599
4599
  program.command("install").allowUnknownOption().allowExcessArguments().description(
4600
- "Retired (F-893). Prints the Gen-2 wiring path: `claude mcp add \u2026 pome` + `npx skills add pome-sh/digital-twins`, then the pome-intake / REST-launch preflight."
4600
+ "Retired (F-893). Prints the Gen-2 wiring path: `claude mcp add \u2026 pome` + `npx skills add pome-sh/digital-twins --skill '*'`, then the pome-intake / REST-launch preflight."
4601
4601
  ).action(async () => {
4602
- const { runInstall } = await import('../../install-A2PSSNW6.js');
4602
+ const { runInstall } = await import('../../install-4OATBKG3.js');
4603
4603
  runInstall();
4604
4604
  });
4605
4605
  program.command("login").description("Sign in with Clerk and store a hosted team API key (macOS Keychain or ~/.pome/credentials.json)").option(
@@ -4953,7 +4953,7 @@ function createProgram() {
4953
4953
  return;
4954
4954
  }
4955
4955
  {
4956
- const { runDoctorChecks } = await import('../../checks-C63QWUOI.js');
4956
+ const { runDoctorChecks } = await import('../../checks-NLPYKDGN.js');
4957
4957
  const { renderDoctorReport } = await import('../../render-ZQQ4UMNO.js');
4958
4958
  const doctorReport = await runDoctorChecks({ mode: useLocal ? "full" : "hosted" });
4959
4959
  if (!doctorReport.ok) {
@@ -5103,7 +5103,7 @@ function createProgram() {
5103
5103
  program.command("doctor").description(
5104
5104
  "Check the agent\u2194twin wiring: pome.json (or pome.yaml) present + valid, the local twin boots + serves, requests routed to the twin (not a hardcoded production host), egress floor active. On failure prints one named cause (file:line where knowable) + one concrete fix and exits non-zero."
5105
5105
  ).action(async () => {
5106
- const { runDoctorChecks } = await import('../../checks-C63QWUOI.js');
5106
+ const { runDoctorChecks } = await import('../../checks-NLPYKDGN.js');
5107
5107
  const { renderDoctorReport } = await import('../../render-ZQQ4UMNO.js');
5108
5108
  const report = await runDoctorChecks();
5109
5109
  for (const line of renderDoctorReport(report, { passNote: true })) console.error(line);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/cli",
3
- "version": "0.21.0",
3
+ "version": "0.21.1",
4
4
  "description": "Digital-twin testing for AI agents — run tasks against resettable local or hosted twins and record tool-call traces for evaluation on pome.sh.",
5
5
  "keywords": [
6
6
  "ai",