@pome-sh/cli 0.23.31 → 0.23.33

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.23.31",
4
- "git_sha": "1352a9855e65e27f1717eb267aa1b6bec404dc96",
5
- "build_time": "2026-08-13T00:49:39.745Z"
3
+ "version": "0.23.33",
4
+ "git_sha": "224f20c230aa9a79b6e074916240940da903dcaf",
5
+ "build_time": "2026-08-13T01:09:10.392Z"
6
6
  }
@@ -183,7 +183,7 @@ async function checkTwinReachable(_configDir) {
183
183
  });
184
184
  let harness;
185
185
  try {
186
- const { bootTwin } = await import('./twinHarness-VX3GE7QB.js');
186
+ const { bootTwin } = await import('./twinHarness-XO47SYBH.js');
187
187
  harness = await bootTwin({
188
188
  twin: "github",
189
189
  seedState: void 0,
@@ -128,9 +128,9 @@ var TWIN_REGISTRY = {
128
128
  portEnvName: "GMAIL_TWIN_PORT",
129
129
  tokenEnvName: "POME_GMAIL_TOKEN",
130
130
  version: package_default4.version,
131
- defaultSeed: async () => (await import('./src-7F4QNBTF.js')).defaultSeedState(),
131
+ defaultSeed: async () => (await import('./src-A6EH5KVF.js')).defaultSeedState(),
132
132
  async boot({ seedState, runId, recorder }) {
133
- const { createGmailTwinApp, GmailDomain, openGmailTwinDatabase, parseSeed } = await import('./src-7F4QNBTF.js');
133
+ const { createGmailTwinApp, GmailDomain, openGmailTwinDatabase, parseSeed } = await import('./src-A6EH5KVF.js');
134
134
  const db = openGmailTwinDatabase(":memory:");
135
135
  const seed = parseSeed(seedState);
136
136
  const domain = new GmailDomain(db);
@@ -1,5 +1,5 @@
1
1
  import { readManifest, normalizeManifestTwins } from './chunk-ABM3CMQB.js';
2
- import { createHostedClient, perTwinReturnedByCloud, parseTaskFile, runAgentCommand, writeRunArtifactsCore, toTwinHttpEvent, redactJsonl, uploadRunBlobs, scoreFromFinalizeResponse, scoreStatus, evaluationCounts } from './chunk-OOYWFDEJ.js';
2
+ import { createHostedClient, perTwinReturnedByCloud, parseTaskFile, runAgentCommand, writeRunArtifactsCore, toTwinHttpEvent, redactJsonl, uploadRunBlobs, scoreFromFinalizeResponse, scoreStatus, evaluationCounts } from './chunk-ZTINFLSV.js';
3
3
  import { MOUNTED_TWINS, HostedAuthError, HostedDiscardRefusedError, HostedQuotaError, HostedOrchError, HostedTrialError, agentResponseSchema } from './chunk-X66JOOO7.js';
4
4
  import { redactSecrets, redactEvent } from './chunk-SG6ZTIMT.js';
5
5
  import { existsSync } from 'node:fs';
@@ -1,7 +1,7 @@
1
1
  import { getAvailablePort } from './chunk-XDU6TD4O.js';
2
2
  import { buildEgressAllowlist, readBlockedEgress } from './chunk-CBFKZZBR.js';
3
- import { parseTaskFile, seedStateForTwin, runAgentCommand, writeRunArtifactsCore } from './chunk-OOYWFDEJ.js';
4
- import { createRecorder, bootTwin } from './chunk-A46IA7EK.js';
3
+ import { parseTaskFile, seedStateForTwin, runAgentCommand, writeRunArtifactsCore } from './chunk-ZTINFLSV.js';
4
+ import { createRecorder, bootTwin } from './chunk-YL4FHI3J.js';
5
5
  import { eventSchema } from './chunk-VBATFCWR.js';
6
6
  import { redactSecrets, redactEvent } from './chunk-SG6ZTIMT.js';
7
7
  import { serve } from '@hono/node-server';
@@ -429,10 +429,10 @@ var mailboxLabelCount = defineCheck({
429
429
  },
430
430
  evaluate({ mailbox, count, label }, { final }) {
431
431
  const wanted = Number(count);
432
- if (final.messages == null || final.messageLabels == null) {
432
+ if (final.messages == null || final.messageLabels == null || final.labels == null) {
433
433
  return { passed: false, status: "skipped", reason: "state_incomplete" };
434
434
  }
435
- if (isTruncated(final, "messages") || isTruncated(final, "messageLabels")) {
435
+ if (isTruncated(final, "messages") || isTruncated(final, "messageLabels") || isTruncated(final, "labels")) {
436
436
  return { passed: false, status: "skipped", reason: "collection_truncated" };
437
437
  }
438
438
  if (final.mailboxes != null && !final.mailboxes.some((mb) => (mb.email ?? "").toLowerCase() === mailbox.toLowerCase())) {
@@ -489,10 +489,10 @@ var oneMessagePerRecipient = defineCheck({
489
489
  },
490
490
  evaluate({ label, count }, { final }) {
491
491
  const wanted = parseCount(count);
492
- if (final.messages == null || final.messageLabels == null) {
492
+ if (final.messages == null || final.messageLabels == null || final.labels == null) {
493
493
  return { passed: false, status: "skipped", reason: "state_incomplete" };
494
494
  }
495
- if (isTruncated(final, "messages") || isTruncated(final, "messageLabels")) {
495
+ if (isTruncated(final, "messages") || isTruncated(final, "messageLabels") || isTruncated(final, "labels")) {
496
496
  return { passed: false, status: "skipped", reason: "collection_truncated" };
497
497
  }
498
498
  const ids = labelIdsFor(final, label);
@@ -1,4 +1,4 @@
1
- import { TWIN_NAMES, isTwinName, TWIN_REGISTRY } from './chunk-5JJDFIGJ.js';
1
+ import { TWIN_NAMES, isTwinName, TWIN_REGISTRY } from './chunk-3OVV6JUQ.js';
2
2
  import { createFileBackedRecorderStore, createRecorderStore } from './chunk-OW7VVW6X.js';
3
3
 
4
4
  // src/recorder/recorder.ts
@@ -2,7 +2,7 @@ import { criterionSchema, finalizeResponseSchema, HostedDiscardRefusedError, Hos
2
2
  import { seedSchema, parseSeed, defaultSeedState as defaultSeedState$2 } from './chunk-KIUIKAVU.js';
3
3
  import { gmailSeedSchema, defaultSeedState } from './chunk-NJ246QPJ.js';
4
4
  import { linearSeedSchema, defaultSeedState as defaultSeedState$1 } from './chunk-ZKID2HS3.js';
5
- import { isTwinName, TWIN_REGISTRY } from './chunk-5JJDFIGJ.js';
5
+ import { isTwinName, TWIN_REGISTRY } from './chunk-3OVV6JUQ.js';
6
6
  import { toTwinHttpEventRow } from './chunk-OW7VVW6X.js';
7
7
  import { redactEvent, redactSecrets } from './chunk-SG6ZTIMT.js';
8
8
  import { mkdir, appendFile, writeFile, readFile } from 'node:fs/promises';
@@ -1,16 +1,16 @@
1
1
  import { newGroupId, reassuranceBox, twinReadyLine, trialsHeaderLine, trialLine, summaryLines, evaluatingLine, criterionPhrase } from './chunk-RGZBC7NF.js';
2
2
  import { DemoCapacityError, capacityLabel, parseCapacityMarker, capacityKindFrom } from './chunk-ZX4WNSZ5.js';
3
- import { runTask, demoTaskPath, DEMO_TASK_NAME, DEMO_REPO } from './chunk-66DVJZMX.js';
3
+ import { runTask, demoTaskPath, DEMO_TASK_NAME, DEMO_REPO } from './chunk-GEC6MJV5.js';
4
4
  import { getAvailablePort } from './chunk-XDU6TD4O.js';
5
5
  import './chunk-CBFKZZBR.js';
6
- import { createHostedClient, parseTaskFile, uploadRunBlobs, scoreFromFinalizeResponse, scoreStatus, outcomeOf } from './chunk-OOYWFDEJ.js';
6
+ import { createHostedClient, parseTaskFile, uploadRunBlobs, scoreFromFinalizeResponse, scoreStatus, outcomeOf } from './chunk-ZTINFLSV.js';
7
7
  import './chunk-NW7HGA2K.js';
8
8
  import { HostedQuotaError, HostedOrchError } from './chunk-X66JOOO7.js';
9
9
  import './chunk-KIUIKAVU.js';
10
10
  import './chunk-NJ246QPJ.js';
11
11
  import './chunk-ZKID2HS3.js';
12
- import { bootTwin } from './chunk-A46IA7EK.js';
13
- import './chunk-5JJDFIGJ.js';
12
+ import { bootTwin } from './chunk-YL4FHI3J.js';
13
+ import './chunk-3OVV6JUQ.js';
14
14
  import './chunk-OW7VVW6X.js';
15
15
  import './chunk-VBATFCWR.js';
16
16
  import './chunk-SG6ZTIMT.js';
@@ -1,13 +1,13 @@
1
1
  import { newGroupId, criterionPhrase } from './chunk-RGZBC7NF.js';
2
- import { runTaskHosted, resolveRunAgentIdentity } from './chunk-EKOZ32F2.js';
2
+ import { runTaskHosted, resolveRunAgentIdentity } from './chunk-A2LGBYJG.js';
3
3
  import './chunk-ABM3CMQB.js';
4
- import { createHostedClient, parseTaskFile, outcomeOf } from './chunk-OOYWFDEJ.js';
4
+ import { createHostedClient, parseTaskFile, outcomeOf } from './chunk-ZTINFLSV.js';
5
5
  import './chunk-NW7HGA2K.js';
6
6
  import { HostedQuotaError, HostedTrialError } from './chunk-X66JOOO7.js';
7
7
  import './chunk-KIUIKAVU.js';
8
8
  import './chunk-NJ246QPJ.js';
9
9
  import './chunk-ZKID2HS3.js';
10
- import './chunk-5JJDFIGJ.js';
10
+ import './chunk-3OVV6JUQ.js';
11
11
  import './chunk-OW7VVW6X.js';
12
12
  import './chunk-VBATFCWR.js';
13
13
  import './chunk-SG6ZTIMT.js';
@@ -1,22 +1,22 @@
1
1
  #!/usr/bin/env node
2
- import { DEFAULT_CONTROL_PLANE_URL, DEFAULT_DASHBOARD_URL, clearLocalCredentials, friendlyHostedError, runSessionCreate, runSessionList, runSessionStop, resolveCredentials, runTaskHosted, discoverRunSet, VERDICT_ARTIFACT_VERSION, persistCredentialsAfterLogin, DEFAULT_DOCS_SITE_ORIGIN, resolveSeams, resolveCachedAgentId, readLinkCache, postAgentResolver, writeLinkCache, ensurePomeGitignored } from '../../chunk-EKOZ32F2.js';
2
+ import { DEFAULT_CONTROL_PLANE_URL, DEFAULT_DASHBOARD_URL, clearLocalCredentials, friendlyHostedError, runSessionCreate, runSessionList, runSessionStop, resolveCredentials, runTaskHosted, discoverRunSet, VERDICT_ARTIFACT_VERSION, persistCredentialsAfterLogin, DEFAULT_DOCS_SITE_ORIGIN, resolveSeams, resolveCachedAgentId, readLinkCache, postAgentResolver, writeLinkCache, ensurePomeGitignored } from '../../chunk-A2LGBYJG.js';
3
3
  import { readManifest, writeManifest, MANIFEST_JSON, readRequiredManifest, normalizeManifestTwins } from '../../chunk-ABM3CMQB.js';
4
- import { assetPath, runTask, resolvePackageRoot, DEMO_TASK_NAME, demoTaskPath } from '../../chunk-66DVJZMX.js';
4
+ import { assetPath, runTask, resolvePackageRoot, DEMO_TASK_NAME, demoTaskPath } from '../../chunk-GEC6MJV5.js';
5
5
  import '../../chunk-XDU6TD4O.js';
6
6
  import '../../chunk-CBFKZZBR.js';
7
- import { parseTaskFile, scoreStatus, runScoreLine, readLatestRun, readMetaSummary, outcomeOf, readConfigTwins, scoreCountsSummary, markerFor, criterionMarkerLabel, twinSkipSuffix, readCodeCriteria, createHostedClient, toTwinHttpEvent, redactJsonl, scoreFromFinalizeResponse, parseGitHubSeedState, uploadRunBlobs, isPreSatisfied } from '../../chunk-OOYWFDEJ.js';
7
+ import { parseTaskFile, scoreStatus, runScoreLine, readLatestRun, readMetaSummary, outcomeOf, readConfigTwins, scoreCountsSummary, markerFor, criterionMarkerLabel, twinSkipSuffix, readCodeCriteria, createHostedClient, toTwinHttpEvent, redactJsonl, scoreFromFinalizeResponse, parseGitHubSeedState, uploadRunBlobs, isPreSatisfied } from '../../chunk-ZTINFLSV.js';
8
8
  import '../../chunk-NW7HGA2K.js';
9
9
  import { MOUNTED_TWINS, deriveAgentSlug, exitCodeFor, HostedUsageError, HostedOrchError, HostedAuthError, HostedQuotaError } from '../../chunk-X66JOOO7.js';
10
10
  import { TAPE_ASSERTABLE_TOOLS } from '../../chunk-FKZZWWYC.js';
11
11
  import { seedSchema } from '../../chunk-KIUIKAVU.js';
12
12
  import { SLACK_CHECKS } from '../../chunk-IDNSKKEC.js';
13
- import { GMAIL_CHECKS } from '../../chunk-SE44FKWH.js';
13
+ import { GMAIL_CHECKS } from '../../chunk-KTVFRR56.js';
14
14
  import '../../chunk-NJ246QPJ.js';
15
15
  import { LINEAR_CHECKS } from '../../chunk-XBT6ZLBG.js';
16
16
  import '../../chunk-ZKID2HS3.js';
17
17
  import { oneOf, defineCheck, repoRef, VACUITY_SENTINEL_NUMBER, childStatePath, VACUITY_SENTINEL, statePath, templateSlots, renderCheck, checksDigest, checkPattern, checkNearMissPattern } from '../../chunk-JWJYNAWI.js';
18
- import '../../chunk-A46IA7EK.js';
19
- import { TWIN_NAME_LIST, isTwinName, createGitHubSmokeApp } from '../../chunk-5JJDFIGJ.js';
18
+ import '../../chunk-YL4FHI3J.js';
19
+ import { TWIN_NAME_LIST, isTwinName, createGitHubSmokeApp } from '../../chunk-3OVV6JUQ.js';
20
20
  import '../../chunk-OW7VVW6X.js';
21
21
  import { isLegacyEventRow, eventSchema } from '../../chunk-VBATFCWR.js';
22
22
  import { redactEvent, redactSecrets } from '../../chunk-SG6ZTIMT.js';
@@ -3064,7 +3064,22 @@ async function runChecksCommand(twinArg, opts) {
3064
3064
  // src/task/insertCriterion.ts
3065
3065
  var HEADING_RE = /^##\s+Success Criteria\s*$/;
3066
3066
  var NEXT_HEADING_RE = /^##\s+/;
3067
- var CRITERION_RE = /^[-*]\s+\[(?:code|model)(?::[a-z][a-z0-9_-]*)?(?:\s+always-scored)?\]\s+.+$/;
3067
+ var CRITERION_RE = /^[-*]\s+\[(code|model)(?::([a-z][a-z0-9_-]*))?(\s+always-scored)?\]\s+(.+)$/;
3068
+ function identityKey(criterion) {
3069
+ return `${criterion.kind}\0${criterion.twin ?? ""}\0${criterion.text}`;
3070
+ }
3071
+ function readCriterionLine(line) {
3072
+ const match = line.trim().match(CRITERION_RE);
3073
+ if (!match) return void 0;
3074
+ return { kind: match[1], tag: match[2], text: match[4].trim() };
3075
+ }
3076
+ function primaryTwin(source) {
3077
+ try {
3078
+ return readConfigTwins(source)[0];
3079
+ } catch {
3080
+ return void 0;
3081
+ }
3082
+ }
3068
3083
  var MissingCriteriaSectionError = class extends Error {
3069
3084
  constructor(path) {
3070
3085
  super(
@@ -3074,11 +3089,15 @@ var MissingCriteriaSectionError = class extends Error {
3074
3089
  }
3075
3090
  };
3076
3091
  var DuplicateCriterionError = class extends Error {
3077
- constructor(path, line) {
3092
+ constructor(path, line, existing = line) {
3093
+ const differs = existing.trim() !== line.trim();
3078
3094
  super(
3079
3095
  `${path} already has this criterion:
3080
- ${line}
3081
- Adding it again would score it twice and inflate the task's denominator.`
3096
+ ${existing.trim()}
3097
+ ` + (differs ? `which is the same check as the one being added:
3098
+ ${line.trim()}
3099
+ \u2014 a marker annotation or a twin tag does not make it a second check.
3100
+ ` : "") + `Adding it again would score it twice and inflate the task's denominator.`
3082
3101
  );
3083
3102
  this.name = "DuplicateCriterionError";
3084
3103
  }
@@ -3094,13 +3113,33 @@ function insertCriterion(source, line, path = "this task file") {
3094
3113
  break;
3095
3114
  }
3096
3115
  }
3116
+ const primary = primaryTwin(source);
3117
+ const declared = /* @__PURE__ */ new Map();
3118
+ for (const criterion of readCodeCriteria(source)) {
3119
+ declared.set(
3120
+ identityKey({ kind: "code", twin: criterion.twin, text: criterion.text }),
3121
+ `- ${criterion.marker} ${criterion.text}`
3122
+ );
3123
+ }
3097
3124
  let insertAt = -1;
3098
3125
  for (let i = start + 1; i < end; i += 1) {
3099
- const existing = lines[i].trim();
3100
- if (!CRITERION_RE.test(existing)) continue;
3101
- if (existing === line.trim()) throw new DuplicateCriterionError(path, line);
3126
+ const parsed = readCriterionLine(lines[i]);
3127
+ if (!parsed) continue;
3128
+ if (parsed.kind === "model") {
3129
+ declared.set(
3130
+ identityKey({ kind: "model", twin: parsed.tag ?? primary, text: parsed.text }),
3131
+ lines[i].trim()
3132
+ );
3133
+ }
3102
3134
  insertAt = i + 1;
3103
3135
  }
3136
+ const incoming = readCriterionLine(line);
3137
+ if (incoming) {
3138
+ const stored = declared.get(
3139
+ identityKey({ kind: incoming.kind, twin: incoming.tag ?? primary, text: incoming.text })
3140
+ );
3141
+ if (stored !== void 0) throw new DuplicateCriterionError(path, line, stored);
3142
+ }
3104
3143
  if (insertAt === -1) {
3105
3144
  insertAt = lines[start + 1]?.trim() === "" ? start + 2 : start + 1;
3106
3145
  }
@@ -4541,7 +4580,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
4541
4580
  var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
4542
4581
  var MAX_UNREADABLE_PATHS_SHOWN = 5;
4543
4582
  function readPackageVersion() {
4544
- if ("0.23.31".length > 0) return "0.23.31";
4583
+ if ("0.23.33".length > 0) return "0.23.33";
4545
4584
  try {
4546
4585
  const here = dirname(fileURLToPath(import.meta.url));
4547
4586
  const candidates = [
@@ -4996,7 +5035,7 @@ function createProgram() {
4996
5035
  return;
4997
5036
  }
4998
5037
  {
4999
- const { runDoctorChecks } = await import('../../checks-QMHVQKS7.js');
5038
+ const { runDoctorChecks } = await import('../../checks-PZSMAVLY.js');
5000
5039
  const { renderDoctorReport } = await import('../../render-ZQQ4UMNO.js');
5001
5040
  const doctorReport = await runDoctorChecks({ mode: useLocal ? "full" : "hosted" });
5002
5041
  if (!doctorReport.ok) {
@@ -5034,7 +5073,7 @@ function createProgram() {
5034
5073
  taskForRuns.config.runs
5035
5074
  );
5036
5075
  if (k > 1) {
5037
- const { runTrialGroup } = await import('../../runTrialGroup-BMQ2DPSL.js');
5076
+ const { runTrialGroup } = await import('../../runTrialGroup-WXDRCVUE.js');
5038
5077
  const fileForRerun = relative(process.cwd(), file);
5039
5078
  const rerunCommand = defaultTask ? options.trials !== void 0 ? `pome run -n ${k}` : "pome run" : `pome run ${fileForRerun && !fileForRerun.startsWith("..") ? fileForRerun : file} -n ${k}`;
5040
5079
  const groupResult = await runTrialGroup({
@@ -5128,7 +5167,7 @@ function createProgram() {
5128
5167
  process.exitCode = 5;
5129
5168
  return;
5130
5169
  }
5131
- const { runDemo } = await import('../../runDemo-6WVLS72G.js');
5170
+ const { runDemo } = await import('../../runDemo-EV3CQBDR.js');
5132
5171
  const result = await runDemo({
5133
5172
  apiBase: opts.apiUrl.replace(/\/$/, ""),
5134
5173
  dashboardBase: process.env.POME_DASHBOARD_URL ?? DEFAULT_DASHBOARD_URL,
@@ -5146,7 +5185,7 @@ function createProgram() {
5146
5185
  program.command("doctor").description(
5147
5186
  "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."
5148
5187
  ).action(async () => {
5149
- const { runDoctorChecks } = await import('../../checks-QMHVQKS7.js');
5188
+ const { runDoctorChecks } = await import('../../checks-PZSMAVLY.js');
5150
5189
  const { renderDoctorReport } = await import('../../render-ZQQ4UMNO.js');
5151
5190
  const report = await runDoctorChecks();
5152
5191
  for (const line of renderDoctorReport(report, { passNote: true })) console.error(line);
@@ -5322,7 +5361,7 @@ function createProgram() {
5322
5361
  ).description(
5323
5362
  "Start a standalone twin as a long-lived foreground server (Ctrl-C to stop)"
5324
5363
  ).action(async (name, options) => {
5325
- const { runTwinStartCommand } = await import('../../twinStart-FX3UXOCA.js');
5364
+ const { runTwinStartCommand } = await import('../../twinStart-J42TT766.js');
5326
5365
  await runTwinStartCommand(name, options);
5327
5366
  });
5328
5367
  twin.command("reset").argument("[name]", "Twin name (default: github)", "github").description("Reset standalone twin state").action(async (name) => {
@@ -1,4 +1,4 @@
1
- export { GMAIL_CHECKS } from './chunk-SE44FKWH.js';
1
+ export { GMAIL_CHECKS } from './chunk-KTVFRR56.js';
2
2
  import { gmailErrorEnvelope, gmailSeedSchema, parseSeed, defaultSeedState, notFound, invalidArgument, checkFault, unsupported, validateSearchQuery, SEARCH_MAILBOX_MESSAGE_BUDGET, GmailError, parseSearchQuery, CATEGORY_LABELS, parseDate, parseSize, KNOWN_FIELDS, parseDuration, assertHasOperator } from './chunk-NJ246QPJ.js';
3
3
  export { DEFAULT_GMAIL_AGENT_EMAIL, GmailError, SEARCH_MAILBOX_MESSAGE_BUDGET, agentPathInboxMailbox, defaultSeedState, gmailErrorEnvelope, gmailSeedSchema, loadSeedFromEnv, parseSearchQuery, parseSeed, validateSearchQuery } from './chunk-NJ246QPJ.js';
4
4
  import './chunk-JWJYNAWI.js';
@@ -0,0 +1,5 @@
1
+ export { UnsupportedTwinError, bootTwin } from './chunk-YL4FHI3J.js';
2
+ export { STRIPE_LOCAL_ACCOUNT_ID } from './chunk-3OVV6JUQ.js';
3
+ import './chunk-OW7VVW6X.js';
4
+ import './chunk-VBATFCWR.js';
5
+ import './chunk-SG6ZTIMT.js';
@@ -1,5 +1,5 @@
1
- import { bootTwin } from './chunk-A46IA7EK.js';
2
- import { isTwinName, TWIN_NAMES, defaultPortFor, TWIN_REGISTRY } from './chunk-5JJDFIGJ.js';
1
+ import { bootTwin } from './chunk-YL4FHI3J.js';
2
+ import { isTwinName, TWIN_NAMES, defaultPortFor, TWIN_REGISTRY } from './chunk-3OVV6JUQ.js';
3
3
  import './chunk-OW7VVW6X.js';
4
4
  import './chunk-VBATFCWR.js';
5
5
  import './chunk-SG6ZTIMT.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/cli",
3
- "version": "0.23.31",
3
+ "version": "0.23.33",
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",
@@ -1,5 +0,0 @@
1
- export { UnsupportedTwinError, bootTwin } from './chunk-A46IA7EK.js';
2
- export { STRIPE_LOCAL_ACCOUNT_ID } from './chunk-5JJDFIGJ.js';
3
- import './chunk-OW7VVW6X.js';
4
- import './chunk-VBATFCWR.js';
5
- import './chunk-SG6ZTIMT.js';