switchroom 0.16.38 → 0.16.46

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.
Files changed (61) hide show
  1. package/dist/agent-scheduler/index.js +88 -82
  2. package/dist/auth-broker/index.js +87 -81
  3. package/dist/cli/autoaccept-poll.js +8 -8
  4. package/dist/cli/drive-write-pretool.mjs +10 -10
  5. package/dist/cli/notion-write-pretool.mjs +89 -83
  6. package/dist/cli/skill-validate-pretool.mjs +91 -91
  7. package/dist/cli/switchroom.js +1621 -737
  8. package/dist/cli/ui/index.html +877 -214
  9. package/dist/host-control/main.js +271 -239
  10. package/dist/vault/approvals/kernel-server.js +90 -84
  11. package/dist/vault/broker/server.js +91 -85
  12. package/examples/minimal.yaml +1 -1
  13. package/examples/switchroom.yaml +1 -1
  14. package/package.json +2 -2
  15. package/profiles/_shared/reply-discipline.md.hbs +9 -0
  16. package/skills/switchroom-status/SKILL.md +1 -1
  17. package/telegram-plugin/bridge/bridge.ts +2 -1
  18. package/telegram-plugin/card-format.ts +7 -1
  19. package/telegram-plugin/dist/bridge/bridge.js +132 -114
  20. package/telegram-plugin/dist/gateway/gateway.js +2090 -1046
  21. package/telegram-plugin/dist/server.js +180 -162
  22. package/telegram-plugin/format.ts +305 -31
  23. package/telegram-plugin/gateway/gateway.ts +262 -63
  24. package/telegram-plugin/gateway/model-command.ts +173 -19
  25. package/telegram-plugin/hooks/tool-label-pretool.d.mts +12 -0
  26. package/telegram-plugin/hooks/tool-label-pretool.mjs +54 -16
  27. package/telegram-plugin/package.json +1 -1
  28. package/telegram-plugin/session-tail.ts +47 -1
  29. package/telegram-plugin/stream-reply-handler.ts +19 -1
  30. package/telegram-plugin/tests/always-allow-grant.test.ts +34 -2
  31. package/telegram-plugin/tests/card-format.test.ts +28 -0
  32. package/telegram-plugin/tests/claude-code-event-contract.test.ts +151 -0
  33. package/telegram-plugin/tests/format-consistency.test.ts +223 -0
  34. package/telegram-plugin/tests/formatting-parse-regression.test.ts +272 -0
  35. package/telegram-plugin/tests/formatting-torture-set.ts +218 -0
  36. package/telegram-plugin/tests/model-command.test.ts +213 -47
  37. package/telegram-plugin/tests/paragraph-normalizer.test.ts +203 -21
  38. package/telegram-plugin/tests/rich-markdown-oracle.ts +469 -0
  39. package/telegram-plugin/tests/session-tail.test.ts +91 -0
  40. package/telegram-plugin/tests/status-vocabulary-unification.test.ts +125 -0
  41. package/telegram-plugin/tests/telegram-format.test.ts +33 -8
  42. package/telegram-plugin/tests/text-voice-scrub.test.ts +142 -22
  43. package/telegram-plugin/tests/tool-activity-summary.test.ts +6 -1
  44. package/telegram-plugin/tests/tts-normalize.test.ts +242 -0
  45. package/telegram-plugin/tests/vault-request-access-tool.test.ts +24 -0
  46. package/telegram-plugin/tests/voice-ondemand.test.ts +99 -2
  47. package/telegram-plugin/tests/voice-presynth.test.ts +437 -0
  48. package/telegram-plugin/tests/worker-activity-feed.test.ts +49 -0
  49. package/telegram-plugin/text-voice-scrub.ts +68 -18
  50. package/telegram-plugin/tool-activity-summary.ts +20 -108
  51. package/telegram-plugin/tts-normalize.ts +377 -0
  52. package/telegram-plugin/uat/driver.ts +472 -22
  53. package/telegram-plugin/uat/scenarios/jtbd-model-litellm-sr-dm.test.ts +34 -14
  54. package/telegram-plugin/uat/scenarios/jtbd-multipart-render-dm.test.ts +169 -0
  55. package/telegram-plugin/uat/scenarios/jtbd-narration-intent-dm.test.ts +134 -0
  56. package/telegram-plugin/uat/scenarios/jtbd-rich-formatting-render-dm.test.ts +254 -0
  57. package/telegram-plugin/uat/scenarios/jtbd-status-phase-transitions-dm.test.ts +109 -0
  58. package/telegram-plugin/uat/uat-driver.test.ts +297 -0
  59. package/telegram-plugin/voice-ondemand.ts +161 -10
  60. package/telegram-plugin/voice-presynth.ts +242 -0
  61. package/telegram-plugin/worker-activity-feed.ts +9 -1
@@ -17,7 +17,7 @@ var __export = (target, all) => {
17
17
  var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
18
18
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
19
19
 
20
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/util.js
20
+ // node_modules/zod/v3/helpers/util.js
21
21
  var util, objectUtil, ZodParsedType, getParsedType = (data) => {
22
22
  const t = typeof data;
23
23
  switch (t) {
@@ -148,7 +148,7 @@ var init_util = __esm(() => {
148
148
  ]);
149
149
  });
150
150
 
151
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/ZodError.js
151
+ // node_modules/zod/v3/ZodError.js
152
152
  var ZodIssueCode, quotelessJson = (obj) => {
153
153
  const json = JSON.stringify(obj, null, 2);
154
154
  return json.replace(/"([^"]+)":/g, "$1:");
@@ -269,7 +269,7 @@ var init_ZodError = __esm(() => {
269
269
  };
270
270
  });
271
271
 
272
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/locales/en.js
272
+ // node_modules/zod/v3/locales/en.js
273
273
  var errorMap = (issue, _ctx) => {
274
274
  let message;
275
275
  switch (issue.code) {
@@ -376,7 +376,7 @@ var init_en = __esm(() => {
376
376
  en_default = errorMap;
377
377
  });
378
378
 
379
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/errors.js
379
+ // node_modules/zod/v3/errors.js
380
380
  function setErrorMap(map) {
381
381
  overrideErrorMap = map;
382
382
  }
@@ -389,7 +389,7 @@ var init_errors = __esm(() => {
389
389
  overrideErrorMap = en_default;
390
390
  });
391
391
 
392
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
392
+ // node_modules/zod/v3/helpers/parseUtil.js
393
393
  function addIssueToContext(ctx, issueData) {
394
394
  const overrideMap = getErrorMap();
395
395
  const issue = makeIssue({
@@ -494,10 +494,10 @@ var init_parseUtil = __esm(() => {
494
494
  });
495
495
  });
496
496
 
497
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
497
+ // node_modules/zod/v3/helpers/typeAliases.js
498
498
  var init_typeAliases = () => {};
499
499
 
500
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
500
+ // node_modules/zod/v3/helpers/errorUtil.js
501
501
  var errorUtil;
502
502
  var init_errorUtil = __esm(() => {
503
503
  (function(errorUtil2) {
@@ -506,7 +506,7 @@ var init_errorUtil = __esm(() => {
506
506
  })(errorUtil || (errorUtil = {}));
507
507
  });
508
508
 
509
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/types.js
509
+ // node_modules/zod/v3/types.js
510
510
  class ParseInputLazyPath {
511
511
  constructor(parent, value, path, key) {
512
512
  this._cachedPath = [];
@@ -3857,7 +3857,7 @@ var init_types = __esm(() => {
3857
3857
  NEVER = INVALID;
3858
3858
  });
3859
3859
 
3860
- // node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
3860
+ // node_modules/zod/v3/external.js
3861
3861
  var exports_external = {};
3862
3862
  __export(exports_external, {
3863
3863
  void: () => voidType,
@@ -3977,14 +3977,14 @@ var init_external = __esm(() => {
3977
3977
  init_ZodError();
3978
3978
  });
3979
3979
 
3980
- // node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
3980
+ // node_modules/zod/index.js
3981
3981
  var init_zod = __esm(() => {
3982
3982
  init_external();
3983
3983
  init_external();
3984
3984
  });
3985
3985
 
3986
3986
  // src/config/schema.ts
3987
- var CodeRepoEntrySchema, AgentBindMountSchema, HttpDiffPollSchema, PollSpecSchema, TelegramMessageActionSchema, WebhookActionSchema, ActionSpecSchema, ScheduleEntrySchema, AgentSoulSchema, AgentToolsSchema, AgentMemorySchema, HookEntrySchema, AgentHooksSchema, SubagentSchema, SessionSchema, SessionContinuitySchema, webhookDispatchRule, TelegramChannelSchema, ChannelsSchema, TIMEZONE_REGEX, ApproverIdSchema, GoogleWorkspaceTierSchema, GoogleWorkspaceConfigSchema, LiteLLMConfigSchema, MicrosoftWorkspaceConfigSchema, NotionWorkspaceConfigSchema, AgentGoogleWorkspaceConfigSchema, AgentMicrosoftWorkspaceConfigSchema, AgentNotionWorkspaceConfigSchema, ReactionsSchema, ReactionDispatchSchema, ReleaseBlock, NetworkIsolationSchema, servesField, knowsField, profileFields, ProfileSchema, _omitExtends, defaultsFields, AgentDefaultsSchema, AgentSchema, TelegramConfigSchema, MemoryBackendConfigSchema, VaultConfigSchema, QuotaConfigSchema, AutoReleaseCheckSchema, HostControlConfigSchema, WebServiceConfigSchema, HostdConfigSchema, CronEgressSchema, CronConfigSchema, UserSchema, SwitchroomConfigSchema;
3987
+ var CodeRepoEntrySchema, AgentBindMountSchema, HttpDiffPollSchema, PollSpecSchema, TelegramMessageActionSchema, WebhookActionSchema, ActionSpecSchema, ScheduleEntrySchema, AgentSoulSchema, AgentToolsSchema, AgentMemorySchema, HookEntrySchema, AgentHooksSchema, SubagentSchema, SessionSchema, SessionContinuitySchema, webhookDispatchRule, TelegramChannelSchema, ChannelsSchema, TIMEZONE_REGEX, ApproverIdSchema, GoogleWorkspaceTierSchema, GoogleWorkspaceConfigSchema, LiteLLMConfigSchema, MicrosoftWorkspaceConfigSchema, NotionWorkspaceConfigSchema, AgentGoogleWorkspaceConfigSchema, AgentMicrosoftWorkspaceConfigSchema, AgentNotionWorkspaceConfigSchema, ReactionsSchema, ReactionDispatchSchema, ReleaseBlock, NetworkIsolationSchema, servesField, knowsField, profileFields, ProfileSchema, _omitExtends, defaultsFields, AgentDefaultsSchema, AgentSchema, TelegramConfigSchema, MemoryBackendConfigSchema, VaultConfigSchema, QuotaConfigSchema, AutoReleaseCheckSchema, HostControlConfigSchema, WebServiceConfigSchema, FleetHealthConfigSchema, HostdConfigSchema, CronEgressSchema, CronConfigSchema, UserSchema, SwitchroomConfigSchema;
3988
3988
  var init_schema = __esm(() => {
3989
3989
  init_zod();
3990
3990
  CodeRepoEntrySchema = exports_external.object({
@@ -4447,7 +4447,7 @@ var init_schema = __esm(() => {
4447
4447
  secrets: exports_external.array(exports_external.string().regex(/^[a-zA-Z0-9_\-/]+$/, "Secret key names must contain only alphanumeric characters, underscores, hyphens, and forward slashes")).optional(),
4448
4448
  reactions: ReactionsSchema,
4449
4449
  reaction_dispatch: ReactionDispatchSchema,
4450
- model: exports_external.string().regex(/^[a-zA-Z0-9][a-zA-Z0-9._\-/\[\]:]*$/, "Model name must be alphanumeric with ._-/[]: only (no spaces or shell specials)").optional().describe("Claude model override (e.g., 'claude-sonnet-4-6')"),
4450
+ model: exports_external.string().regex(/^[a-zA-Z0-9][a-zA-Z0-9._\-/\[\]:]*$/, "Model name must be alphanumeric with ._-/[]: only (no spaces or shell specials)").optional().describe("Claude model override (e.g., 'claude-sonnet-5')"),
4451
4451
  thinking_effort: exports_external.enum(["low", "medium", "high", "xhigh", "max"]).optional().describe("Adaptive-thinking effort level passed as --effort to the claude CLI. " + "Per-agent override wins over defaults.thinking_effort. " + "lower = faster/cheaper, higher = more reasoning. Omit to use Claude's default."),
4452
4452
  permission_mode: exports_external.enum(["acceptEdits", "auto", "bypassPermissions", "default", "dontAsk", "plan"]).optional().describe("Permission mode passed as --permission-mode to the claude CLI. " + "Per-agent override wins over defaults.permission_mode. " + "Warning: bypassPermissions and dontAsk skip all safety checks — use only in trusted sandboxes."),
4453
4453
  fallback_model: exports_external.string().regex(/^[a-zA-Z0-9][a-zA-Z0-9._\-/\[\]:]*$/, "Fallback model name must be alphanumeric with ._-/[]: only").optional().describe("Fallback model passed as --fallback-model to the claude CLI. " + "Per-agent override wins over defaults.fallback_model. " + "Used when the primary model is overloaded. Note: only functional in --print (non-interactive) mode per Claude CLI docs; silently no-ops in interactive sessions."),
@@ -4578,6 +4578,11 @@ var init_schema = __esm(() => {
4578
4578
  WebServiceConfigSchema = exports_external.object({
4579
4579
  managed: exports_external.boolean().default(false).describe("Whether `switchroom update` refreshes the web-service container " + "(dashboard + GitHub-webhook receiver) via `switchroom webd " + "install`. Default: false — existing installs run the web server " + "as the legacy `switchroom-web.service` systemd unit and must not " + "be surprised by a container takeover of host loopback 127.0.0.1:" + "8080 mid-update. Set true ONLY after cutting over to the " + "container (stop+disable the systemd unit, `switchroom webd " + "install`). The container runs in its own compose project " + "(`switchroom-web`), separate from the agent fleet, with " + "network_mode: host so it keeps owning loopback:8080 for the " + "cloudflared tunnel + tailscale serve consumers.")
4580
4580
  });
4581
+ FleetHealthConfigSchema = exports_external.object({
4582
+ owner_agent: exports_external.string().regex(/^[a-z0-9][a-z0-9_-]{0,50}$/, {
4583
+ message: "owner_agent must match the standard agent-name pattern"
4584
+ }).optional().describe("The admin agent that runs the Fleet Health sensor + deep-dive crons " + "(RFC fleet-health.md). Default unset → the feature is inert: no crons " + "are scheduled and the admin page renders its empty state. The named " + "agent must be admin: true. A dedicated owner (not any admin) keeps " + "the fleet-health work attributable, its memory scoped, and its token " + "spend accountable. The detection runs ONLY as operator-set schedules " + "on this agent — never a self-authored loop (on-leash, " + "no-self-escalation).")
4585
+ });
4581
4586
  HostdConfigSchema = exports_external.object({
4582
4587
  config_edit_enabled: exports_external.boolean().default(false).describe("Opt-in toggle for the `config_propose_edit` hostd verb (RFC " + "admin-agent-config-edit §3). Default false — the verb returns " + "`E_CONFIG_EDIT_DISABLED` until the operator explicitly flips " + "this to true. When true, admin agents can propose unified-diff " + "patches against " + "`/state/config/switchroom.yaml`, gated by an operator approval " + "card in the primary chat. Same trust posture as `update_apply` " + "and `agent_restart`: the human-in-the-loop tap is the security " + "boundary, not the agent's judgement."),
4583
4588
  config_edit_rate_per_hour: exports_external.number().int().min(1).max(20).default(3).describe("Per-requesting-agent rate cap for `config_propose_edit` cards " + "(RFC admin-agent-config-edit §5). Default 3 cards/hour; min 1, " + "max 20. ENFORCED server-side: a caller exceeding this in a sliding " + "1-hour window is rejected with `E_RATE_LIMITED` (carrying a " + "`retry_after` fix) instead of posting another operator approval " + "card — so a looping agent is throttled rather than spamming the chat.")
@@ -4626,6 +4631,7 @@ var init_schema = __esm(() => {
4626
4631
  quota: QuotaConfigSchema.optional().describe("Optional weekly/monthly USD spend budgets rendered in the session " + "greeting. Usage is read from ccusage at runtime; no network calls."),
4627
4632
  host_control: HostControlConfigSchema.default({}).describe("Host-control daemon configuration. Defaults to enabled=true since " + "RFC C Phase 2 (reference/rfcs/host-control-daemon.md). Omit the block " + "to accept defaults; set `enabled: false` only on legacy systemd-" + "mode installs (removal tracked as RFC C Phase 3)."),
4628
4633
  hostd: HostdConfigSchema.default({}).describe("hostd verb-level knobs (RFC admin-agent-config-edit). Distinct " + "from `host_control:` which governs whether the daemon runs at " + "all. Scopes the opt-in flag and rate cap for the " + "`config_propose_edit` verb (disabled by default)."),
4634
+ fleet_health: FleetHealthConfigSchema.default({}).describe("Fleet Health — job-spec-anchored, operator-facing issue tracker (RFC " + "fleet-health.md, serves fleet-stays-healthy). Assigns the owner agent " + "that runs the nightly model-free sensor + weekly deep-dive. Default " + "unset owner_agent → inert; the admin page renders an empty state."),
4629
4635
  web_service: WebServiceConfigSchema.default({}).describe("Web-service container (dashboard + GitHub-webhook receiver) config. " + "Defaults to managed=false so existing systemd-mode installs are " + "untouched. Set managed: true after cutting over to the " + "`switchroom-web` container — then `switchroom update` keeps it " + "refreshed. See `switchroom webd install`."),
4630
4636
  google_accounts: exports_external.record(exports_external.string().regex(/^[^@\s:]+@[^@\s:]+\.[^@\s:]+$/, {
4631
4637
  message: "Account key must be a Google account email like 'alice@example.com' (colons not allowed)"
@@ -5075,7 +5081,7 @@ function resolveDualPath(pathStr) {
5075
5081
  var DEFAULT_STATE_DIR = ".switchroom", LEGACY_STATE_DIR = ".clerk", _legacyStateWarned = false;
5076
5082
  var init_paths = () => {};
5077
5083
 
5078
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
5084
+ // node_modules/yaml/dist/nodes/identity.js
5079
5085
  var require_identity = __commonJS((exports) => {
5080
5086
  var ALIAS = Symbol.for("yaml.alias");
5081
5087
  var DOC = Symbol.for("yaml.document");
@@ -5129,7 +5135,7 @@ var require_identity = __commonJS((exports) => {
5129
5135
  exports.isSeq = isSeq;
5130
5136
  });
5131
5137
 
5132
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
5138
+ // node_modules/yaml/dist/visit.js
5133
5139
  var require_visit = __commonJS((exports) => {
5134
5140
  var identity = require_identity();
5135
5141
  var BREAK = Symbol("break visit");
@@ -5284,7 +5290,7 @@ var require_visit = __commonJS((exports) => {
5284
5290
  exports.visitAsync = visitAsync;
5285
5291
  });
5286
5292
 
5287
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
5293
+ // node_modules/yaml/dist/doc/directives.js
5288
5294
  var require_directives = __commonJS((exports) => {
5289
5295
  var identity = require_identity();
5290
5296
  var visit = require_visit();
@@ -5436,7 +5442,7 @@ var require_directives = __commonJS((exports) => {
5436
5442
  exports.Directives = Directives;
5437
5443
  });
5438
5444
 
5439
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
5445
+ // node_modules/yaml/dist/doc/anchors.js
5440
5446
  var require_anchors = __commonJS((exports) => {
5441
5447
  var identity = require_identity();
5442
5448
  var visit = require_visit();
@@ -5498,7 +5504,7 @@ var require_anchors = __commonJS((exports) => {
5498
5504
  exports.findNewAnchor = findNewAnchor;
5499
5505
  });
5500
5506
 
5501
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
5507
+ // node_modules/yaml/dist/doc/applyReviver.js
5502
5508
  var require_applyReviver = __commonJS((exports) => {
5503
5509
  function applyReviver(reviver, obj, key, val) {
5504
5510
  if (val && typeof val === "object") {
@@ -5545,7 +5551,7 @@ var require_applyReviver = __commonJS((exports) => {
5545
5551
  exports.applyReviver = applyReviver;
5546
5552
  });
5547
5553
 
5548
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
5554
+ // node_modules/yaml/dist/nodes/toJS.js
5549
5555
  var require_toJS = __commonJS((exports) => {
5550
5556
  var identity = require_identity();
5551
5557
  function toJS(value, arg, ctx) {
@@ -5572,7 +5578,7 @@ var require_toJS = __commonJS((exports) => {
5572
5578
  exports.toJS = toJS;
5573
5579
  });
5574
5580
 
5575
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
5581
+ // node_modules/yaml/dist/nodes/Node.js
5576
5582
  var require_Node = __commonJS((exports) => {
5577
5583
  var applyReviver = require_applyReviver();
5578
5584
  var identity = require_identity();
@@ -5609,7 +5615,7 @@ var require_Node = __commonJS((exports) => {
5609
5615
  exports.NodeBase = NodeBase;
5610
5616
  });
5611
5617
 
5612
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
5618
+ // node_modules/yaml/dist/nodes/Alias.js
5613
5619
  var require_Alias = __commonJS((exports) => {
5614
5620
  var anchors = require_anchors();
5615
5621
  var visit = require_visit();
@@ -5717,7 +5723,7 @@ var require_Alias = __commonJS((exports) => {
5717
5723
  exports.Alias = Alias;
5718
5724
  });
5719
5725
 
5720
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
5726
+ // node_modules/yaml/dist/nodes/Scalar.js
5721
5727
  var require_Scalar = __commonJS((exports) => {
5722
5728
  var identity = require_identity();
5723
5729
  var Node = require_Node();
@@ -5745,7 +5751,7 @@ var require_Scalar = __commonJS((exports) => {
5745
5751
  exports.isScalarValue = isScalarValue;
5746
5752
  });
5747
5753
 
5748
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
5754
+ // node_modules/yaml/dist/doc/createNode.js
5749
5755
  var require_createNode = __commonJS((exports) => {
5750
5756
  var Alias = require_Alias();
5751
5757
  var identity = require_identity();
@@ -5817,7 +5823,7 @@ var require_createNode = __commonJS((exports) => {
5817
5823
  exports.createNode = createNode;
5818
5824
  });
5819
5825
 
5820
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
5826
+ // node_modules/yaml/dist/nodes/Collection.js
5821
5827
  var require_Collection = __commonJS((exports) => {
5822
5828
  var createNode = require_createNode();
5823
5829
  var identity = require_identity();
@@ -5932,7 +5938,7 @@ var require_Collection = __commonJS((exports) => {
5932
5938
  exports.isEmptyPath = isEmptyPath;
5933
5939
  });
5934
5940
 
5935
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
5941
+ // node_modules/yaml/dist/stringify/stringifyComment.js
5936
5942
  var require_stringifyComment = __commonJS((exports) => {
5937
5943
  var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
5938
5944
  function indentComment(comment, indent) {
@@ -5949,7 +5955,7 @@ var require_stringifyComment = __commonJS((exports) => {
5949
5955
  exports.stringifyComment = stringifyComment;
5950
5956
  });
5951
5957
 
5952
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
5958
+ // node_modules/yaml/dist/stringify/foldFlowLines.js
5953
5959
  var require_foldFlowLines = __commonJS((exports) => {
5954
5960
  var FOLD_FLOW = "flow";
5955
5961
  var FOLD_BLOCK = "block";
@@ -6086,7 +6092,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
6086
6092
  exports.foldFlowLines = foldFlowLines;
6087
6093
  });
6088
6094
 
6089
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
6095
+ // node_modules/yaml/dist/stringify/stringifyString.js
6090
6096
  var require_stringifyString = __commonJS((exports) => {
6091
6097
  var Scalar = require_Scalar();
6092
6098
  var foldFlowLines = require_foldFlowLines();
@@ -6384,7 +6390,7 @@ ${indent}`);
6384
6390
  exports.stringifyString = stringifyString;
6385
6391
  });
6386
6392
 
6387
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
6393
+ // node_modules/yaml/dist/stringify/stringify.js
6388
6394
  var require_stringify = __commonJS((exports) => {
6389
6395
  var anchors = require_anchors();
6390
6396
  var identity = require_identity();
@@ -6505,7 +6511,7 @@ ${ctx.indent}${str}`;
6505
6511
  exports.stringify = stringify;
6506
6512
  });
6507
6513
 
6508
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
6514
+ // node_modules/yaml/dist/stringify/stringifyPair.js
6509
6515
  var require_stringifyPair = __commonJS((exports) => {
6510
6516
  var identity = require_identity();
6511
6517
  var Scalar = require_Scalar();
@@ -6641,7 +6647,7 @@ ${ctx.indent}`;
6641
6647
  exports.stringifyPair = stringifyPair;
6642
6648
  });
6643
6649
 
6644
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
6650
+ // node_modules/yaml/dist/log.js
6645
6651
  var require_log = __commonJS((exports) => {
6646
6652
  var node_process = __require("process");
6647
6653
  function debug(logLevel, ...messages) {
@@ -6660,7 +6666,7 @@ var require_log = __commonJS((exports) => {
6660
6666
  exports.warn = warn;
6661
6667
  });
6662
6668
 
6663
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
6669
+ // node_modules/yaml/dist/schema/yaml-1.1/merge.js
6664
6670
  var require_merge = __commonJS((exports) => {
6665
6671
  var identity = require_identity();
6666
6672
  var Scalar = require_Scalar();
@@ -6714,7 +6720,7 @@ var require_merge = __commonJS((exports) => {
6714
6720
  exports.merge = merge;
6715
6721
  });
6716
6722
 
6717
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
6723
+ // node_modules/yaml/dist/nodes/addPairToJSMap.js
6718
6724
  var require_addPairToJSMap = __commonJS((exports) => {
6719
6725
  var log = require_log();
6720
6726
  var merge = require_merge();
@@ -6775,7 +6781,7 @@ var require_addPairToJSMap = __commonJS((exports) => {
6775
6781
  exports.addPairToJSMap = addPairToJSMap;
6776
6782
  });
6777
6783
 
6778
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
6784
+ // node_modules/yaml/dist/nodes/Pair.js
6779
6785
  var require_Pair = __commonJS((exports) => {
6780
6786
  var createNode = require_createNode();
6781
6787
  var stringifyPair = require_stringifyPair();
@@ -6813,7 +6819,7 @@ var require_Pair = __commonJS((exports) => {
6813
6819
  exports.createPair = createPair;
6814
6820
  });
6815
6821
 
6816
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
6822
+ // node_modules/yaml/dist/stringify/stringifyCollection.js
6817
6823
  var require_stringifyCollection = __commonJS((exports) => {
6818
6824
  var identity = require_identity();
6819
6825
  var stringify = require_stringify();
@@ -6965,7 +6971,7 @@ ${indent}${end}`;
6965
6971
  exports.stringifyCollection = stringifyCollection;
6966
6972
  });
6967
6973
 
6968
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
6974
+ // node_modules/yaml/dist/nodes/YAMLMap.js
6969
6975
  var require_YAMLMap = __commonJS((exports) => {
6970
6976
  var stringifyCollection = require_stringifyCollection();
6971
6977
  var addPairToJSMap = require_addPairToJSMap();
@@ -7092,7 +7098,7 @@ var require_YAMLMap = __commonJS((exports) => {
7092
7098
  exports.findPair = findPair;
7093
7099
  });
7094
7100
 
7095
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
7101
+ // node_modules/yaml/dist/schema/common/map.js
7096
7102
  var require_map = __commonJS((exports) => {
7097
7103
  var identity = require_identity();
7098
7104
  var YAMLMap = require_YAMLMap();
@@ -7111,7 +7117,7 @@ var require_map = __commonJS((exports) => {
7111
7117
  exports.map = map;
7112
7118
  });
7113
7119
 
7114
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
7120
+ // node_modules/yaml/dist/nodes/YAMLSeq.js
7115
7121
  var require_YAMLSeq = __commonJS((exports) => {
7116
7122
  var createNode = require_createNode();
7117
7123
  var stringifyCollection = require_stringifyCollection();
@@ -7204,7 +7210,7 @@ var require_YAMLSeq = __commonJS((exports) => {
7204
7210
  exports.YAMLSeq = YAMLSeq;
7205
7211
  });
7206
7212
 
7207
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
7213
+ // node_modules/yaml/dist/schema/common/seq.js
7208
7214
  var require_seq = __commonJS((exports) => {
7209
7215
  var identity = require_identity();
7210
7216
  var YAMLSeq = require_YAMLSeq();
@@ -7223,7 +7229,7 @@ var require_seq = __commonJS((exports) => {
7223
7229
  exports.seq = seq;
7224
7230
  });
7225
7231
 
7226
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
7232
+ // node_modules/yaml/dist/schema/common/string.js
7227
7233
  var require_string = __commonJS((exports) => {
7228
7234
  var stringifyString = require_stringifyString();
7229
7235
  var string = {
@@ -7239,7 +7245,7 @@ var require_string = __commonJS((exports) => {
7239
7245
  exports.string = string;
7240
7246
  });
7241
7247
 
7242
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
7248
+ // node_modules/yaml/dist/schema/common/null.js
7243
7249
  var require_null = __commonJS((exports) => {
7244
7250
  var Scalar = require_Scalar();
7245
7251
  var nullTag = {
@@ -7254,7 +7260,7 @@ var require_null = __commonJS((exports) => {
7254
7260
  exports.nullTag = nullTag;
7255
7261
  });
7256
7262
 
7257
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
7263
+ // node_modules/yaml/dist/schema/core/bool.js
7258
7264
  var require_bool = __commonJS((exports) => {
7259
7265
  var Scalar = require_Scalar();
7260
7266
  var boolTag = {
@@ -7275,7 +7281,7 @@ var require_bool = __commonJS((exports) => {
7275
7281
  exports.boolTag = boolTag;
7276
7282
  });
7277
7283
 
7278
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
7284
+ // node_modules/yaml/dist/stringify/stringifyNumber.js
7279
7285
  var require_stringifyNumber = __commonJS((exports) => {
7280
7286
  function stringifyNumber({ format, minFractionDigits, tag, value }) {
7281
7287
  if (typeof value === "bigint")
@@ -7299,7 +7305,7 @@ var require_stringifyNumber = __commonJS((exports) => {
7299
7305
  exports.stringifyNumber = stringifyNumber;
7300
7306
  });
7301
7307
 
7302
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
7308
+ // node_modules/yaml/dist/schema/core/float.js
7303
7309
  var require_float = __commonJS((exports) => {
7304
7310
  var Scalar = require_Scalar();
7305
7311
  var stringifyNumber = require_stringifyNumber();
@@ -7342,7 +7348,7 @@ var require_float = __commonJS((exports) => {
7342
7348
  exports.floatNaN = floatNaN;
7343
7349
  });
7344
7350
 
7345
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
7351
+ // node_modules/yaml/dist/schema/core/int.js
7346
7352
  var require_int = __commonJS((exports) => {
7347
7353
  var stringifyNumber = require_stringifyNumber();
7348
7354
  var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
@@ -7384,7 +7390,7 @@ var require_int = __commonJS((exports) => {
7384
7390
  exports.intOct = intOct;
7385
7391
  });
7386
7392
 
7387
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
7393
+ // node_modules/yaml/dist/schema/core/schema.js
7388
7394
  var require_schema = __commonJS((exports) => {
7389
7395
  var map = require_map();
7390
7396
  var _null = require_null();
@@ -7409,7 +7415,7 @@ var require_schema = __commonJS((exports) => {
7409
7415
  exports.schema = schema;
7410
7416
  });
7411
7417
 
7412
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
7418
+ // node_modules/yaml/dist/schema/json/schema.js
7413
7419
  var require_schema2 = __commonJS((exports) => {
7414
7420
  var Scalar = require_Scalar();
7415
7421
  var map = require_map();
@@ -7473,7 +7479,7 @@ var require_schema2 = __commonJS((exports) => {
7473
7479
  exports.schema = schema;
7474
7480
  });
7475
7481
 
7476
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
7482
+ // node_modules/yaml/dist/schema/yaml-1.1/binary.js
7477
7483
  var require_binary = __commonJS((exports) => {
7478
7484
  var node_buffer = __require("buffer");
7479
7485
  var Scalar = require_Scalar();
@@ -7528,7 +7534,7 @@ var require_binary = __commonJS((exports) => {
7528
7534
  exports.binary = binary;
7529
7535
  });
7530
7536
 
7531
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
7537
+ // node_modules/yaml/dist/schema/yaml-1.1/pairs.js
7532
7538
  var require_pairs = __commonJS((exports) => {
7533
7539
  var identity = require_identity();
7534
7540
  var Pair = require_Pair();
@@ -7603,7 +7609,7 @@ ${cn.comment}` : item.comment;
7603
7609
  exports.resolvePairs = resolvePairs;
7604
7610
  });
7605
7611
 
7606
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
7612
+ // node_modules/yaml/dist/schema/yaml-1.1/omap.js
7607
7613
  var require_omap = __commonJS((exports) => {
7608
7614
  var identity = require_identity();
7609
7615
  var toJS = require_toJS();
@@ -7675,7 +7681,7 @@ var require_omap = __commonJS((exports) => {
7675
7681
  exports.omap = omap;
7676
7682
  });
7677
7683
 
7678
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
7684
+ // node_modules/yaml/dist/schema/yaml-1.1/bool.js
7679
7685
  var require_bool2 = __commonJS((exports) => {
7680
7686
  var Scalar = require_Scalar();
7681
7687
  function boolStringify({ value, source }, ctx) {
@@ -7704,7 +7710,7 @@ var require_bool2 = __commonJS((exports) => {
7704
7710
  exports.trueTag = trueTag;
7705
7711
  });
7706
7712
 
7707
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
7713
+ // node_modules/yaml/dist/schema/yaml-1.1/float.js
7708
7714
  var require_float2 = __commonJS((exports) => {
7709
7715
  var Scalar = require_Scalar();
7710
7716
  var stringifyNumber = require_stringifyNumber();
@@ -7750,7 +7756,7 @@ var require_float2 = __commonJS((exports) => {
7750
7756
  exports.floatNaN = floatNaN;
7751
7757
  });
7752
7758
 
7753
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
7759
+ // node_modules/yaml/dist/schema/yaml-1.1/int.js
7754
7760
  var require_int2 = __commonJS((exports) => {
7755
7761
  var stringifyNumber = require_stringifyNumber();
7756
7762
  var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
@@ -7826,7 +7832,7 @@ var require_int2 = __commonJS((exports) => {
7826
7832
  exports.intOct = intOct;
7827
7833
  });
7828
7834
 
7829
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
7835
+ // node_modules/yaml/dist/schema/yaml-1.1/set.js
7830
7836
  var require_set = __commonJS((exports) => {
7831
7837
  var identity = require_identity();
7832
7838
  var Pair = require_Pair();
@@ -7909,7 +7915,7 @@ var require_set = __commonJS((exports) => {
7909
7915
  exports.set = set;
7910
7916
  });
7911
7917
 
7912
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
7918
+ // node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
7913
7919
  var require_timestamp = __commonJS((exports) => {
7914
7920
  var stringifyNumber = require_stringifyNumber();
7915
7921
  function parseSexagesimal(str, asBigInt) {
@@ -7991,7 +7997,7 @@ var require_timestamp = __commonJS((exports) => {
7991
7997
  exports.timestamp = timestamp;
7992
7998
  });
7993
7999
 
7994
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
8000
+ // node_modules/yaml/dist/schema/yaml-1.1/schema.js
7995
8001
  var require_schema3 = __commonJS((exports) => {
7996
8002
  var map = require_map();
7997
8003
  var _null = require_null();
@@ -8032,7 +8038,7 @@ var require_schema3 = __commonJS((exports) => {
8032
8038
  exports.schema = schema;
8033
8039
  });
8034
8040
 
8035
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
8041
+ // node_modules/yaml/dist/schema/tags.js
8036
8042
  var require_tags = __commonJS((exports) => {
8037
8043
  var map = require_map();
8038
8044
  var _null = require_null();
@@ -8123,7 +8129,7 @@ var require_tags = __commonJS((exports) => {
8123
8129
  exports.getTags = getTags;
8124
8130
  });
8125
8131
 
8126
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
8132
+ // node_modules/yaml/dist/schema/Schema.js
8127
8133
  var require_Schema = __commonJS((exports) => {
8128
8134
  var identity = require_identity();
8129
8135
  var map = require_map();
@@ -8153,7 +8159,7 @@ var require_Schema = __commonJS((exports) => {
8153
8159
  exports.Schema = Schema;
8154
8160
  });
8155
8161
 
8156
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
8162
+ // node_modules/yaml/dist/stringify/stringifyDocument.js
8157
8163
  var require_stringifyDocument = __commonJS((exports) => {
8158
8164
  var identity = require_identity();
8159
8165
  var stringify = require_stringify();
@@ -8233,7 +8239,7 @@ var require_stringifyDocument = __commonJS((exports) => {
8233
8239
  exports.stringifyDocument = stringifyDocument;
8234
8240
  });
8235
8241
 
8236
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
8242
+ // node_modules/yaml/dist/doc/Document.js
8237
8243
  var require_Document = __commonJS((exports) => {
8238
8244
  var Alias = require_Alias();
8239
8245
  var Collection = require_Collection();
@@ -8468,7 +8474,7 @@ var require_Document = __commonJS((exports) => {
8468
8474
  exports.Document = Document;
8469
8475
  });
8470
8476
 
8471
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
8477
+ // node_modules/yaml/dist/errors.js
8472
8478
  var require_errors = __commonJS((exports) => {
8473
8479
  class YAMLError extends Error {
8474
8480
  constructor(name, pos, code, message) {
@@ -8533,7 +8539,7 @@ ${pointer}
8533
8539
  exports.prettifyError = prettifyError;
8534
8540
  });
8535
8541
 
8536
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
8542
+ // node_modules/yaml/dist/compose/resolve-props.js
8537
8543
  var require_resolve_props = __commonJS((exports) => {
8538
8544
  function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
8539
8545
  let spaceBefore = false;
@@ -8663,7 +8669,7 @@ var require_resolve_props = __commonJS((exports) => {
8663
8669
  exports.resolveProps = resolveProps;
8664
8670
  });
8665
8671
 
8666
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
8672
+ // node_modules/yaml/dist/compose/util-contains-newline.js
8667
8673
  var require_util_contains_newline = __commonJS((exports) => {
8668
8674
  function containsNewline(key) {
8669
8675
  if (!key)
@@ -8703,7 +8709,7 @@ var require_util_contains_newline = __commonJS((exports) => {
8703
8709
  exports.containsNewline = containsNewline;
8704
8710
  });
8705
8711
 
8706
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
8712
+ // node_modules/yaml/dist/compose/util-flow-indent-check.js
8707
8713
  var require_util_flow_indent_check = __commonJS((exports) => {
8708
8714
  var utilContainsNewline = require_util_contains_newline();
8709
8715
  function flowIndentCheck(indent, fc, onError) {
@@ -8718,7 +8724,7 @@ var require_util_flow_indent_check = __commonJS((exports) => {
8718
8724
  exports.flowIndentCheck = flowIndentCheck;
8719
8725
  });
8720
8726
 
8721
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
8727
+ // node_modules/yaml/dist/compose/util-map-includes.js
8722
8728
  var require_util_map_includes = __commonJS((exports) => {
8723
8729
  var identity = require_identity();
8724
8730
  function mapIncludes(ctx, items, search) {
@@ -8731,7 +8737,7 @@ var require_util_map_includes = __commonJS((exports) => {
8731
8737
  exports.mapIncludes = mapIncludes;
8732
8738
  });
8733
8739
 
8734
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
8740
+ // node_modules/yaml/dist/compose/resolve-block-map.js
8735
8741
  var require_resolve_block_map = __commonJS((exports) => {
8736
8742
  var Pair = require_Pair();
8737
8743
  var YAMLMap = require_YAMLMap();
@@ -8838,7 +8844,7 @@ var require_resolve_block_map = __commonJS((exports) => {
8838
8844
  exports.resolveBlockMap = resolveBlockMap;
8839
8845
  });
8840
8846
 
8841
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
8847
+ // node_modules/yaml/dist/compose/resolve-block-seq.js
8842
8848
  var require_resolve_block_seq = __commonJS((exports) => {
8843
8849
  var YAMLSeq = require_YAMLSeq();
8844
8850
  var resolveProps = require_resolve_props();
@@ -8886,7 +8892,7 @@ var require_resolve_block_seq = __commonJS((exports) => {
8886
8892
  exports.resolveBlockSeq = resolveBlockSeq;
8887
8893
  });
8888
8894
 
8889
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
8895
+ // node_modules/yaml/dist/compose/resolve-end.js
8890
8896
  var require_resolve_end = __commonJS((exports) => {
8891
8897
  function resolveEnd(end, offset, reqSpace, onError) {
8892
8898
  let comment = "";
@@ -8926,7 +8932,7 @@ var require_resolve_end = __commonJS((exports) => {
8926
8932
  exports.resolveEnd = resolveEnd;
8927
8933
  });
8928
8934
 
8929
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
8935
+ // node_modules/yaml/dist/compose/resolve-flow-collection.js
8930
8936
  var require_resolve_flow_collection = __commonJS((exports) => {
8931
8937
  var identity = require_identity();
8932
8938
  var Pair = require_Pair();
@@ -9117,7 +9123,7 @@ var require_resolve_flow_collection = __commonJS((exports) => {
9117
9123
  exports.resolveFlowCollection = resolveFlowCollection;
9118
9124
  });
9119
9125
 
9120
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
9126
+ // node_modules/yaml/dist/compose/compose-collection.js
9121
9127
  var require_compose_collection = __commonJS((exports) => {
9122
9128
  var identity = require_identity();
9123
9129
  var Scalar = require_Scalar();
@@ -9179,7 +9185,7 @@ var require_compose_collection = __commonJS((exports) => {
9179
9185
  exports.composeCollection = composeCollection;
9180
9186
  });
9181
9187
 
9182
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
9188
+ // node_modules/yaml/dist/compose/resolve-block-scalar.js
9183
9189
  var require_resolve_block_scalar = __commonJS((exports) => {
9184
9190
  var Scalar = require_Scalar();
9185
9191
  function resolveBlockScalar(ctx, scalar, onError) {
@@ -9372,7 +9378,7 @@ var require_resolve_block_scalar = __commonJS((exports) => {
9372
9378
  exports.resolveBlockScalar = resolveBlockScalar;
9373
9379
  });
9374
9380
 
9375
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
9381
+ // node_modules/yaml/dist/compose/resolve-flow-scalar.js
9376
9382
  var require_resolve_flow_scalar = __commonJS((exports) => {
9377
9383
  var Scalar = require_Scalar();
9378
9384
  var resolveEnd = require_resolve_end();
@@ -9588,7 +9594,7 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
9588
9594
  exports.resolveFlowScalar = resolveFlowScalar;
9589
9595
  });
9590
9596
 
9591
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
9597
+ // node_modules/yaml/dist/compose/compose-scalar.js
9592
9598
  var require_compose_scalar = __commonJS((exports) => {
9593
9599
  var identity = require_identity();
9594
9600
  var Scalar = require_Scalar();
@@ -9666,7 +9672,7 @@ var require_compose_scalar = __commonJS((exports) => {
9666
9672
  exports.composeScalar = composeScalar;
9667
9673
  });
9668
9674
 
9669
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
9675
+ // node_modules/yaml/dist/compose/util-empty-scalar-position.js
9670
9676
  var require_util_empty_scalar_position = __commonJS((exports) => {
9671
9677
  function emptyScalarPosition(offset, before, pos) {
9672
9678
  if (before) {
@@ -9693,7 +9699,7 @@ var require_util_empty_scalar_position = __commonJS((exports) => {
9693
9699
  exports.emptyScalarPosition = emptyScalarPosition;
9694
9700
  });
9695
9701
 
9696
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
9702
+ // node_modules/yaml/dist/compose/compose-node.js
9697
9703
  var require_compose_node = __commonJS((exports) => {
9698
9704
  var Alias = require_Alias();
9699
9705
  var identity = require_identity();
@@ -9796,7 +9802,7 @@ var require_compose_node = __commonJS((exports) => {
9796
9802
  exports.composeNode = composeNode;
9797
9803
  });
9798
9804
 
9799
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
9805
+ // node_modules/yaml/dist/compose/compose-doc.js
9800
9806
  var require_compose_doc = __commonJS((exports) => {
9801
9807
  var Document = require_Document();
9802
9808
  var composeNode = require_compose_node();
@@ -9836,7 +9842,7 @@ var require_compose_doc = __commonJS((exports) => {
9836
9842
  exports.composeDoc = composeDoc;
9837
9843
  });
9838
9844
 
9839
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
9845
+ // node_modules/yaml/dist/compose/composer.js
9840
9846
  var require_composer = __commonJS((exports) => {
9841
9847
  var node_process = __require("process");
9842
9848
  var directives = require_directives();
@@ -10025,7 +10031,7 @@ ${end.comment}` : end.comment;
10025
10031
  exports.Composer = Composer;
10026
10032
  });
10027
10033
 
10028
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
10034
+ // node_modules/yaml/dist/parse/cst-scalar.js
10029
10035
  var require_cst_scalar = __commonJS((exports) => {
10030
10036
  var resolveBlockScalar = require_resolve_block_scalar();
10031
10037
  var resolveFlowScalar = require_resolve_flow_scalar();
@@ -10215,7 +10221,7 @@ var require_cst_scalar = __commonJS((exports) => {
10215
10221
  exports.setScalarValue = setScalarValue;
10216
10222
  });
10217
10223
 
10218
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
10224
+ // node_modules/yaml/dist/parse/cst-stringify.js
10219
10225
  var require_cst_stringify = __commonJS((exports) => {
10220
10226
  var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
10221
10227
  function stringifyToken(token) {
@@ -10273,7 +10279,7 @@ var require_cst_stringify = __commonJS((exports) => {
10273
10279
  exports.stringify = stringify;
10274
10280
  });
10275
10281
 
10276
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
10282
+ // node_modules/yaml/dist/parse/cst-visit.js
10277
10283
  var require_cst_visit = __commonJS((exports) => {
10278
10284
  var BREAK = Symbol("break visit");
10279
10285
  var SKIP = Symbol("skip children");
@@ -10332,7 +10338,7 @@ var require_cst_visit = __commonJS((exports) => {
10332
10338
  exports.visit = visit;
10333
10339
  });
10334
10340
 
10335
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
10341
+ // node_modules/yaml/dist/parse/cst.js
10336
10342
  var require_cst = __commonJS((exports) => {
10337
10343
  var cstScalar = require_cst_scalar();
10338
10344
  var cstStringify = require_cst_stringify();
@@ -10433,7 +10439,7 @@ var require_cst = __commonJS((exports) => {
10433
10439
  exports.tokenType = tokenType;
10434
10440
  });
10435
10441
 
10436
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
10442
+ // node_modules/yaml/dist/parse/lexer.js
10437
10443
  var require_lexer = __commonJS((exports) => {
10438
10444
  var cst = require_cst();
10439
10445
  function isEmpty(ch) {
@@ -11019,7 +11025,7 @@ var require_lexer = __commonJS((exports) => {
11019
11025
  exports.Lexer = Lexer;
11020
11026
  });
11021
11027
 
11022
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
11028
+ // node_modules/yaml/dist/parse/line-counter.js
11023
11029
  var require_line_counter = __commonJS((exports) => {
11024
11030
  class LineCounter {
11025
11031
  constructor() {
@@ -11047,7 +11053,7 @@ var require_line_counter = __commonJS((exports) => {
11047
11053
  exports.LineCounter = LineCounter;
11048
11054
  });
11049
11055
 
11050
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
11056
+ // node_modules/yaml/dist/parse/parser.js
11051
11057
  var require_parser = __commonJS((exports) => {
11052
11058
  var node_process = __require("process");
11053
11059
  var cst = require_cst();
@@ -11896,7 +11902,7 @@ var require_parser = __commonJS((exports) => {
11896
11902
  exports.Parser = Parser;
11897
11903
  });
11898
11904
 
11899
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
11905
+ // node_modules/yaml/dist/public-api.js
11900
11906
  var require_public_api = __commonJS((exports) => {
11901
11907
  var composer = require_composer();
11902
11908
  var Document = require_Document();
@@ -11990,7 +11996,7 @@ var require_public_api = __commonJS((exports) => {
11990
11996
  exports.stringify = stringify;
11991
11997
  });
11992
11998
 
11993
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
11999
+ // node_modules/yaml/dist/index.js
11994
12000
  var composer, Document, Schema, errors2, Alias, identity, Pair, Scalar, YAMLMap, YAMLSeq, cst, lexer, lineCounter, parser, publicApi, visit, $Composer, $Document, $Schema, $YAMLError, $YAMLParseError, $YAMLWarning, $Alias, $isAlias, $isCollection, $isDocument, $isMap, $isNode, $isPair, $isScalar, $isSeq, $Pair, $Scalar, $YAMLMap, $YAMLSeq, $Lexer, $LineCounter, $Parser, $parse, $parseAllDocuments, $parseDocument, $stringify, $visit, $visitAsync;
11995
12001
  var init_dist = __esm(() => {
11996
12002
  composer = require_composer();