switchroom 0.14.5 → 0.14.7

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.
@@ -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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
3861
3861
  var exports_external = {};
3862
3862
  __export(exports_external, {
3863
3863
  void: () => voidType,
@@ -3977,7 +3977,7 @@ 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
+ // ../switchroom-sec-1417/node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
3981
3981
  var init_zod = __esm(() => {
3982
3982
  init_external();
3983
3983
  init_external();
@@ -4258,6 +4258,18 @@ function mergeAgentConfig(defaultsIn, agentIn) {
4258
4258
  ...merged.cli_args ?? []
4259
4259
  ];
4260
4260
  }
4261
+ if (defaults.allowed_tools || merged.allowed_tools) {
4262
+ merged.allowed_tools = dedupe([
4263
+ ...defaults.allowed_tools ?? [],
4264
+ ...merged.allowed_tools ?? []
4265
+ ]);
4266
+ }
4267
+ if (defaults.disallowed_tools || merged.disallowed_tools) {
4268
+ merged.disallowed_tools = dedupe([
4269
+ ...defaults.disallowed_tools ?? [],
4270
+ ...merged.disallowed_tools ?? []
4271
+ ]);
4272
+ }
4261
4273
  if (defaults.extra_stable_files || merged.extra_stable_files) {
4262
4274
  const d = defaults.extra_stable_files ?? [];
4263
4275
  const a = merged.extra_stable_files ?? [];
@@ -4294,7 +4306,7 @@ var init_merge = __esm(() => {
4294
4306
  })(mergeAgentConfig ||= {});
4295
4307
  });
4296
4308
 
4297
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
4309
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
4298
4310
  var require_identity = __commonJS((exports) => {
4299
4311
  var ALIAS = Symbol.for("yaml.alias");
4300
4312
  var DOC = Symbol.for("yaml.document");
@@ -4348,7 +4360,7 @@ var require_identity = __commonJS((exports) => {
4348
4360
  exports.isSeq = isSeq;
4349
4361
  });
4350
4362
 
4351
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
4363
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
4352
4364
  var require_visit = __commonJS((exports) => {
4353
4365
  var identity = require_identity();
4354
4366
  var BREAK = Symbol("break visit");
@@ -4503,7 +4515,7 @@ var require_visit = __commonJS((exports) => {
4503
4515
  exports.visitAsync = visitAsync;
4504
4516
  });
4505
4517
 
4506
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
4518
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
4507
4519
  var require_directives = __commonJS((exports) => {
4508
4520
  var identity = require_identity();
4509
4521
  var visit = require_visit();
@@ -4655,7 +4667,7 @@ var require_directives = __commonJS((exports) => {
4655
4667
  exports.Directives = Directives;
4656
4668
  });
4657
4669
 
4658
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
4670
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
4659
4671
  var require_anchors = __commonJS((exports) => {
4660
4672
  var identity = require_identity();
4661
4673
  var visit = require_visit();
@@ -4717,7 +4729,7 @@ var require_anchors = __commonJS((exports) => {
4717
4729
  exports.findNewAnchor = findNewAnchor;
4718
4730
  });
4719
4731
 
4720
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
4732
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
4721
4733
  var require_applyReviver = __commonJS((exports) => {
4722
4734
  function applyReviver(reviver, obj, key, val) {
4723
4735
  if (val && typeof val === "object") {
@@ -4764,7 +4776,7 @@ var require_applyReviver = __commonJS((exports) => {
4764
4776
  exports.applyReviver = applyReviver;
4765
4777
  });
4766
4778
 
4767
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
4779
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
4768
4780
  var require_toJS = __commonJS((exports) => {
4769
4781
  var identity = require_identity();
4770
4782
  function toJS(value, arg, ctx) {
@@ -4791,7 +4803,7 @@ var require_toJS = __commonJS((exports) => {
4791
4803
  exports.toJS = toJS;
4792
4804
  });
4793
4805
 
4794
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
4806
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
4795
4807
  var require_Node = __commonJS((exports) => {
4796
4808
  var applyReviver = require_applyReviver();
4797
4809
  var identity = require_identity();
@@ -4828,7 +4840,7 @@ var require_Node = __commonJS((exports) => {
4828
4840
  exports.NodeBase = NodeBase;
4829
4841
  });
4830
4842
 
4831
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
4843
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
4832
4844
  var require_Alias = __commonJS((exports) => {
4833
4845
  var anchors = require_anchors();
4834
4846
  var visit = require_visit();
@@ -4936,7 +4948,7 @@ var require_Alias = __commonJS((exports) => {
4936
4948
  exports.Alias = Alias;
4937
4949
  });
4938
4950
 
4939
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
4951
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
4940
4952
  var require_Scalar = __commonJS((exports) => {
4941
4953
  var identity = require_identity();
4942
4954
  var Node = require_Node();
@@ -4964,7 +4976,7 @@ var require_Scalar = __commonJS((exports) => {
4964
4976
  exports.isScalarValue = isScalarValue;
4965
4977
  });
4966
4978
 
4967
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
4979
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
4968
4980
  var require_createNode = __commonJS((exports) => {
4969
4981
  var Alias = require_Alias();
4970
4982
  var identity = require_identity();
@@ -5036,7 +5048,7 @@ var require_createNode = __commonJS((exports) => {
5036
5048
  exports.createNode = createNode;
5037
5049
  });
5038
5050
 
5039
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
5051
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
5040
5052
  var require_Collection = __commonJS((exports) => {
5041
5053
  var createNode = require_createNode();
5042
5054
  var identity = require_identity();
@@ -5151,7 +5163,7 @@ var require_Collection = __commonJS((exports) => {
5151
5163
  exports.isEmptyPath = isEmptyPath;
5152
5164
  });
5153
5165
 
5154
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
5166
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
5155
5167
  var require_stringifyComment = __commonJS((exports) => {
5156
5168
  var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
5157
5169
  function indentComment(comment, indent) {
@@ -5168,7 +5180,7 @@ var require_stringifyComment = __commonJS((exports) => {
5168
5180
  exports.stringifyComment = stringifyComment;
5169
5181
  });
5170
5182
 
5171
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
5183
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
5172
5184
  var require_foldFlowLines = __commonJS((exports) => {
5173
5185
  var FOLD_FLOW = "flow";
5174
5186
  var FOLD_BLOCK = "block";
@@ -5305,7 +5317,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
5305
5317
  exports.foldFlowLines = foldFlowLines;
5306
5318
  });
5307
5319
 
5308
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
5320
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
5309
5321
  var require_stringifyString = __commonJS((exports) => {
5310
5322
  var Scalar = require_Scalar();
5311
5323
  var foldFlowLines = require_foldFlowLines();
@@ -5603,7 +5615,7 @@ ${indent}`);
5603
5615
  exports.stringifyString = stringifyString;
5604
5616
  });
5605
5617
 
5606
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
5618
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
5607
5619
  var require_stringify = __commonJS((exports) => {
5608
5620
  var anchors = require_anchors();
5609
5621
  var identity = require_identity();
@@ -5724,7 +5736,7 @@ ${ctx.indent}${str}`;
5724
5736
  exports.stringify = stringify;
5725
5737
  });
5726
5738
 
5727
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
5739
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
5728
5740
  var require_stringifyPair = __commonJS((exports) => {
5729
5741
  var identity = require_identity();
5730
5742
  var Scalar = require_Scalar();
@@ -5860,7 +5872,7 @@ ${ctx.indent}`;
5860
5872
  exports.stringifyPair = stringifyPair;
5861
5873
  });
5862
5874
 
5863
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
5875
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
5864
5876
  var require_log = __commonJS((exports) => {
5865
5877
  var node_process = __require("process");
5866
5878
  function debug(logLevel, ...messages) {
@@ -5879,7 +5891,7 @@ var require_log = __commonJS((exports) => {
5879
5891
  exports.warn = warn;
5880
5892
  });
5881
5893
 
5882
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
5894
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
5883
5895
  var require_merge = __commonJS((exports) => {
5884
5896
  var identity = require_identity();
5885
5897
  var Scalar = require_Scalar();
@@ -5933,7 +5945,7 @@ var require_merge = __commonJS((exports) => {
5933
5945
  exports.merge = merge;
5934
5946
  });
5935
5947
 
5936
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
5948
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
5937
5949
  var require_addPairToJSMap = __commonJS((exports) => {
5938
5950
  var log = require_log();
5939
5951
  var merge = require_merge();
@@ -5994,7 +6006,7 @@ var require_addPairToJSMap = __commonJS((exports) => {
5994
6006
  exports.addPairToJSMap = addPairToJSMap;
5995
6007
  });
5996
6008
 
5997
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
6009
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
5998
6010
  var require_Pair = __commonJS((exports) => {
5999
6011
  var createNode = require_createNode();
6000
6012
  var stringifyPair = require_stringifyPair();
@@ -6032,7 +6044,7 @@ var require_Pair = __commonJS((exports) => {
6032
6044
  exports.createPair = createPair;
6033
6045
  });
6034
6046
 
6035
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
6047
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
6036
6048
  var require_stringifyCollection = __commonJS((exports) => {
6037
6049
  var identity = require_identity();
6038
6050
  var stringify = require_stringify();
@@ -6184,7 +6196,7 @@ ${indent}${end}`;
6184
6196
  exports.stringifyCollection = stringifyCollection;
6185
6197
  });
6186
6198
 
6187
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
6199
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
6188
6200
  var require_YAMLMap = __commonJS((exports) => {
6189
6201
  var stringifyCollection = require_stringifyCollection();
6190
6202
  var addPairToJSMap = require_addPairToJSMap();
@@ -6311,7 +6323,7 @@ var require_YAMLMap = __commonJS((exports) => {
6311
6323
  exports.findPair = findPair;
6312
6324
  });
6313
6325
 
6314
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
6326
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
6315
6327
  var require_map = __commonJS((exports) => {
6316
6328
  var identity = require_identity();
6317
6329
  var YAMLMap = require_YAMLMap();
@@ -6330,7 +6342,7 @@ var require_map = __commonJS((exports) => {
6330
6342
  exports.map = map;
6331
6343
  });
6332
6344
 
6333
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
6345
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
6334
6346
  var require_YAMLSeq = __commonJS((exports) => {
6335
6347
  var createNode = require_createNode();
6336
6348
  var stringifyCollection = require_stringifyCollection();
@@ -6423,7 +6435,7 @@ var require_YAMLSeq = __commonJS((exports) => {
6423
6435
  exports.YAMLSeq = YAMLSeq;
6424
6436
  });
6425
6437
 
6426
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
6438
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
6427
6439
  var require_seq = __commonJS((exports) => {
6428
6440
  var identity = require_identity();
6429
6441
  var YAMLSeq = require_YAMLSeq();
@@ -6442,7 +6454,7 @@ var require_seq = __commonJS((exports) => {
6442
6454
  exports.seq = seq;
6443
6455
  });
6444
6456
 
6445
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
6457
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
6446
6458
  var require_string = __commonJS((exports) => {
6447
6459
  var stringifyString = require_stringifyString();
6448
6460
  var string = {
@@ -6458,7 +6470,7 @@ var require_string = __commonJS((exports) => {
6458
6470
  exports.string = string;
6459
6471
  });
6460
6472
 
6461
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
6473
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
6462
6474
  var require_null = __commonJS((exports) => {
6463
6475
  var Scalar = require_Scalar();
6464
6476
  var nullTag = {
@@ -6473,7 +6485,7 @@ var require_null = __commonJS((exports) => {
6473
6485
  exports.nullTag = nullTag;
6474
6486
  });
6475
6487
 
6476
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
6488
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
6477
6489
  var require_bool = __commonJS((exports) => {
6478
6490
  var Scalar = require_Scalar();
6479
6491
  var boolTag = {
@@ -6494,7 +6506,7 @@ var require_bool = __commonJS((exports) => {
6494
6506
  exports.boolTag = boolTag;
6495
6507
  });
6496
6508
 
6497
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
6509
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
6498
6510
  var require_stringifyNumber = __commonJS((exports) => {
6499
6511
  function stringifyNumber({ format, minFractionDigits, tag, value }) {
6500
6512
  if (typeof value === "bigint")
@@ -6518,7 +6530,7 @@ var require_stringifyNumber = __commonJS((exports) => {
6518
6530
  exports.stringifyNumber = stringifyNumber;
6519
6531
  });
6520
6532
 
6521
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
6533
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
6522
6534
  var require_float = __commonJS((exports) => {
6523
6535
  var Scalar = require_Scalar();
6524
6536
  var stringifyNumber = require_stringifyNumber();
@@ -6561,7 +6573,7 @@ var require_float = __commonJS((exports) => {
6561
6573
  exports.floatNaN = floatNaN;
6562
6574
  });
6563
6575
 
6564
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
6576
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
6565
6577
  var require_int = __commonJS((exports) => {
6566
6578
  var stringifyNumber = require_stringifyNumber();
6567
6579
  var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
@@ -6603,7 +6615,7 @@ var require_int = __commonJS((exports) => {
6603
6615
  exports.intOct = intOct;
6604
6616
  });
6605
6617
 
6606
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
6618
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
6607
6619
  var require_schema = __commonJS((exports) => {
6608
6620
  var map = require_map();
6609
6621
  var _null = require_null();
@@ -6628,7 +6640,7 @@ var require_schema = __commonJS((exports) => {
6628
6640
  exports.schema = schema;
6629
6641
  });
6630
6642
 
6631
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
6643
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
6632
6644
  var require_schema2 = __commonJS((exports) => {
6633
6645
  var Scalar = require_Scalar();
6634
6646
  var map = require_map();
@@ -6692,7 +6704,7 @@ var require_schema2 = __commonJS((exports) => {
6692
6704
  exports.schema = schema;
6693
6705
  });
6694
6706
 
6695
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
6707
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
6696
6708
  var require_binary = __commonJS((exports) => {
6697
6709
  var node_buffer = __require("buffer");
6698
6710
  var Scalar = require_Scalar();
@@ -6747,7 +6759,7 @@ var require_binary = __commonJS((exports) => {
6747
6759
  exports.binary = binary;
6748
6760
  });
6749
6761
 
6750
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
6762
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
6751
6763
  var require_pairs = __commonJS((exports) => {
6752
6764
  var identity = require_identity();
6753
6765
  var Pair = require_Pair();
@@ -6822,7 +6834,7 @@ ${cn.comment}` : item.comment;
6822
6834
  exports.resolvePairs = resolvePairs;
6823
6835
  });
6824
6836
 
6825
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
6837
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
6826
6838
  var require_omap = __commonJS((exports) => {
6827
6839
  var identity = require_identity();
6828
6840
  var toJS = require_toJS();
@@ -6894,7 +6906,7 @@ var require_omap = __commonJS((exports) => {
6894
6906
  exports.omap = omap;
6895
6907
  });
6896
6908
 
6897
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
6909
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
6898
6910
  var require_bool2 = __commonJS((exports) => {
6899
6911
  var Scalar = require_Scalar();
6900
6912
  function boolStringify({ value, source }, ctx) {
@@ -6923,7 +6935,7 @@ var require_bool2 = __commonJS((exports) => {
6923
6935
  exports.trueTag = trueTag;
6924
6936
  });
6925
6937
 
6926
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
6938
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
6927
6939
  var require_float2 = __commonJS((exports) => {
6928
6940
  var Scalar = require_Scalar();
6929
6941
  var stringifyNumber = require_stringifyNumber();
@@ -6969,7 +6981,7 @@ var require_float2 = __commonJS((exports) => {
6969
6981
  exports.floatNaN = floatNaN;
6970
6982
  });
6971
6983
 
6972
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
6984
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
6973
6985
  var require_int2 = __commonJS((exports) => {
6974
6986
  var stringifyNumber = require_stringifyNumber();
6975
6987
  var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
@@ -7045,7 +7057,7 @@ var require_int2 = __commonJS((exports) => {
7045
7057
  exports.intOct = intOct;
7046
7058
  });
7047
7059
 
7048
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
7060
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
7049
7061
  var require_set = __commonJS((exports) => {
7050
7062
  var identity = require_identity();
7051
7063
  var Pair = require_Pair();
@@ -7128,7 +7140,7 @@ var require_set = __commonJS((exports) => {
7128
7140
  exports.set = set;
7129
7141
  });
7130
7142
 
7131
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
7143
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
7132
7144
  var require_timestamp = __commonJS((exports) => {
7133
7145
  var stringifyNumber = require_stringifyNumber();
7134
7146
  function parseSexagesimal(str, asBigInt) {
@@ -7210,7 +7222,7 @@ var require_timestamp = __commonJS((exports) => {
7210
7222
  exports.timestamp = timestamp;
7211
7223
  });
7212
7224
 
7213
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
7225
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
7214
7226
  var require_schema3 = __commonJS((exports) => {
7215
7227
  var map = require_map();
7216
7228
  var _null = require_null();
@@ -7251,7 +7263,7 @@ var require_schema3 = __commonJS((exports) => {
7251
7263
  exports.schema = schema;
7252
7264
  });
7253
7265
 
7254
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
7266
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
7255
7267
  var require_tags = __commonJS((exports) => {
7256
7268
  var map = require_map();
7257
7269
  var _null = require_null();
@@ -7342,7 +7354,7 @@ var require_tags = __commonJS((exports) => {
7342
7354
  exports.getTags = getTags;
7343
7355
  });
7344
7356
 
7345
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
7357
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
7346
7358
  var require_Schema = __commonJS((exports) => {
7347
7359
  var identity = require_identity();
7348
7360
  var map = require_map();
@@ -7372,7 +7384,7 @@ var require_Schema = __commonJS((exports) => {
7372
7384
  exports.Schema = Schema;
7373
7385
  });
7374
7386
 
7375
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
7387
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
7376
7388
  var require_stringifyDocument = __commonJS((exports) => {
7377
7389
  var identity = require_identity();
7378
7390
  var stringify = require_stringify();
@@ -7452,7 +7464,7 @@ var require_stringifyDocument = __commonJS((exports) => {
7452
7464
  exports.stringifyDocument = stringifyDocument;
7453
7465
  });
7454
7466
 
7455
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
7467
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
7456
7468
  var require_Document = __commonJS((exports) => {
7457
7469
  var Alias = require_Alias();
7458
7470
  var Collection = require_Collection();
@@ -7687,7 +7699,7 @@ var require_Document = __commonJS((exports) => {
7687
7699
  exports.Document = Document;
7688
7700
  });
7689
7701
 
7690
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
7702
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
7691
7703
  var require_errors = __commonJS((exports) => {
7692
7704
  class YAMLError extends Error {
7693
7705
  constructor(name, pos, code, message) {
@@ -7752,7 +7764,7 @@ ${pointer}
7752
7764
  exports.prettifyError = prettifyError;
7753
7765
  });
7754
7766
 
7755
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
7767
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
7756
7768
  var require_resolve_props = __commonJS((exports) => {
7757
7769
  function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
7758
7770
  let spaceBefore = false;
@@ -7882,7 +7894,7 @@ var require_resolve_props = __commonJS((exports) => {
7882
7894
  exports.resolveProps = resolveProps;
7883
7895
  });
7884
7896
 
7885
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
7897
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
7886
7898
  var require_util_contains_newline = __commonJS((exports) => {
7887
7899
  function containsNewline(key) {
7888
7900
  if (!key)
@@ -7922,7 +7934,7 @@ var require_util_contains_newline = __commonJS((exports) => {
7922
7934
  exports.containsNewline = containsNewline;
7923
7935
  });
7924
7936
 
7925
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
7937
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
7926
7938
  var require_util_flow_indent_check = __commonJS((exports) => {
7927
7939
  var utilContainsNewline = require_util_contains_newline();
7928
7940
  function flowIndentCheck(indent, fc, onError) {
@@ -7937,7 +7949,7 @@ var require_util_flow_indent_check = __commonJS((exports) => {
7937
7949
  exports.flowIndentCheck = flowIndentCheck;
7938
7950
  });
7939
7951
 
7940
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
7952
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
7941
7953
  var require_util_map_includes = __commonJS((exports) => {
7942
7954
  var identity = require_identity();
7943
7955
  function mapIncludes(ctx, items, search) {
@@ -7950,7 +7962,7 @@ var require_util_map_includes = __commonJS((exports) => {
7950
7962
  exports.mapIncludes = mapIncludes;
7951
7963
  });
7952
7964
 
7953
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
7965
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
7954
7966
  var require_resolve_block_map = __commonJS((exports) => {
7955
7967
  var Pair = require_Pair();
7956
7968
  var YAMLMap = require_YAMLMap();
@@ -8057,7 +8069,7 @@ var require_resolve_block_map = __commonJS((exports) => {
8057
8069
  exports.resolveBlockMap = resolveBlockMap;
8058
8070
  });
8059
8071
 
8060
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
8072
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
8061
8073
  var require_resolve_block_seq = __commonJS((exports) => {
8062
8074
  var YAMLSeq = require_YAMLSeq();
8063
8075
  var resolveProps = require_resolve_props();
@@ -8105,7 +8117,7 @@ var require_resolve_block_seq = __commonJS((exports) => {
8105
8117
  exports.resolveBlockSeq = resolveBlockSeq;
8106
8118
  });
8107
8119
 
8108
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
8120
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
8109
8121
  var require_resolve_end = __commonJS((exports) => {
8110
8122
  function resolveEnd(end, offset, reqSpace, onError) {
8111
8123
  let comment = "";
@@ -8145,7 +8157,7 @@ var require_resolve_end = __commonJS((exports) => {
8145
8157
  exports.resolveEnd = resolveEnd;
8146
8158
  });
8147
8159
 
8148
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
8160
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
8149
8161
  var require_resolve_flow_collection = __commonJS((exports) => {
8150
8162
  var identity = require_identity();
8151
8163
  var Pair = require_Pair();
@@ -8336,7 +8348,7 @@ var require_resolve_flow_collection = __commonJS((exports) => {
8336
8348
  exports.resolveFlowCollection = resolveFlowCollection;
8337
8349
  });
8338
8350
 
8339
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
8351
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
8340
8352
  var require_compose_collection = __commonJS((exports) => {
8341
8353
  var identity = require_identity();
8342
8354
  var Scalar = require_Scalar();
@@ -8398,7 +8410,7 @@ var require_compose_collection = __commonJS((exports) => {
8398
8410
  exports.composeCollection = composeCollection;
8399
8411
  });
8400
8412
 
8401
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
8413
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
8402
8414
  var require_resolve_block_scalar = __commonJS((exports) => {
8403
8415
  var Scalar = require_Scalar();
8404
8416
  function resolveBlockScalar(ctx, scalar, onError) {
@@ -8591,7 +8603,7 @@ var require_resolve_block_scalar = __commonJS((exports) => {
8591
8603
  exports.resolveBlockScalar = resolveBlockScalar;
8592
8604
  });
8593
8605
 
8594
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
8606
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
8595
8607
  var require_resolve_flow_scalar = __commonJS((exports) => {
8596
8608
  var Scalar = require_Scalar();
8597
8609
  var resolveEnd = require_resolve_end();
@@ -8807,7 +8819,7 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
8807
8819
  exports.resolveFlowScalar = resolveFlowScalar;
8808
8820
  });
8809
8821
 
8810
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
8822
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
8811
8823
  var require_compose_scalar = __commonJS((exports) => {
8812
8824
  var identity = require_identity();
8813
8825
  var Scalar = require_Scalar();
@@ -8885,7 +8897,7 @@ var require_compose_scalar = __commonJS((exports) => {
8885
8897
  exports.composeScalar = composeScalar;
8886
8898
  });
8887
8899
 
8888
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
8900
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
8889
8901
  var require_util_empty_scalar_position = __commonJS((exports) => {
8890
8902
  function emptyScalarPosition(offset, before, pos) {
8891
8903
  if (before) {
@@ -8912,7 +8924,7 @@ var require_util_empty_scalar_position = __commonJS((exports) => {
8912
8924
  exports.emptyScalarPosition = emptyScalarPosition;
8913
8925
  });
8914
8926
 
8915
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
8927
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
8916
8928
  var require_compose_node = __commonJS((exports) => {
8917
8929
  var Alias = require_Alias();
8918
8930
  var identity = require_identity();
@@ -9015,7 +9027,7 @@ var require_compose_node = __commonJS((exports) => {
9015
9027
  exports.composeNode = composeNode;
9016
9028
  });
9017
9029
 
9018
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
9030
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
9019
9031
  var require_compose_doc = __commonJS((exports) => {
9020
9032
  var Document = require_Document();
9021
9033
  var composeNode = require_compose_node();
@@ -9055,7 +9067,7 @@ var require_compose_doc = __commonJS((exports) => {
9055
9067
  exports.composeDoc = composeDoc;
9056
9068
  });
9057
9069
 
9058
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
9070
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
9059
9071
  var require_composer = __commonJS((exports) => {
9060
9072
  var node_process = __require("process");
9061
9073
  var directives = require_directives();
@@ -9244,7 +9256,7 @@ ${end.comment}` : end.comment;
9244
9256
  exports.Composer = Composer;
9245
9257
  });
9246
9258
 
9247
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
9259
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
9248
9260
  var require_cst_scalar = __commonJS((exports) => {
9249
9261
  var resolveBlockScalar = require_resolve_block_scalar();
9250
9262
  var resolveFlowScalar = require_resolve_flow_scalar();
@@ -9434,7 +9446,7 @@ var require_cst_scalar = __commonJS((exports) => {
9434
9446
  exports.setScalarValue = setScalarValue;
9435
9447
  });
9436
9448
 
9437
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
9449
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
9438
9450
  var require_cst_stringify = __commonJS((exports) => {
9439
9451
  var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
9440
9452
  function stringifyToken(token) {
@@ -9492,7 +9504,7 @@ var require_cst_stringify = __commonJS((exports) => {
9492
9504
  exports.stringify = stringify;
9493
9505
  });
9494
9506
 
9495
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
9507
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
9496
9508
  var require_cst_visit = __commonJS((exports) => {
9497
9509
  var BREAK = Symbol("break visit");
9498
9510
  var SKIP = Symbol("skip children");
@@ -9551,7 +9563,7 @@ var require_cst_visit = __commonJS((exports) => {
9551
9563
  exports.visit = visit;
9552
9564
  });
9553
9565
 
9554
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
9566
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
9555
9567
  var require_cst = __commonJS((exports) => {
9556
9568
  var cstScalar = require_cst_scalar();
9557
9569
  var cstStringify = require_cst_stringify();
@@ -9652,7 +9664,7 @@ var require_cst = __commonJS((exports) => {
9652
9664
  exports.tokenType = tokenType;
9653
9665
  });
9654
9666
 
9655
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
9667
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
9656
9668
  var require_lexer = __commonJS((exports) => {
9657
9669
  var cst = require_cst();
9658
9670
  function isEmpty(ch) {
@@ -10238,7 +10250,7 @@ var require_lexer = __commonJS((exports) => {
10238
10250
  exports.Lexer = Lexer;
10239
10251
  });
10240
10252
 
10241
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
10253
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
10242
10254
  var require_line_counter = __commonJS((exports) => {
10243
10255
  class LineCounter {
10244
10256
  constructor() {
@@ -10266,7 +10278,7 @@ var require_line_counter = __commonJS((exports) => {
10266
10278
  exports.LineCounter = LineCounter;
10267
10279
  });
10268
10280
 
10269
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
10281
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
10270
10282
  var require_parser = __commonJS((exports) => {
10271
10283
  var node_process = __require("process");
10272
10284
  var cst = require_cst();
@@ -11115,7 +11127,7 @@ var require_parser = __commonJS((exports) => {
11115
11127
  exports.Parser = Parser;
11116
11128
  });
11117
11129
 
11118
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
11130
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
11119
11131
  var require_public_api = __commonJS((exports) => {
11120
11132
  var composer = require_composer();
11121
11133
  var Document = require_Document();
@@ -11209,7 +11221,7 @@ var require_public_api = __commonJS((exports) => {
11209
11221
  exports.stringify = stringify;
11210
11222
  });
11211
11223
 
11212
- // node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
11224
+ // ../switchroom-sec-1417/node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
11213
11225
  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;
11214
11226
  var init_dist = __esm(() => {
11215
11227
  composer = require_composer();
@@ -11543,7 +11555,9 @@ var init_schema = __esm(() => {
11543
11555
  experimental: exports_external.object({
11544
11556
  legacy_pty: exports_external.boolean().optional().describe("Opt out of the default tmux supervisor (#725) and run the agent under " + "the legacy PTY supervisor instead. Default: false (tmux is the default)."),
11545
11557
  legacy_autoaccept_expect: exports_external.boolean().optional().describe("Opt the autoaccept gateway back into the legacy expect-script behaviour " + "instead of the tmux send-keys path. Default: false.")
11546
- }).optional().describe("Opt-in flags for experimental / legacy behaviours. Cascades through " + "defaults → profile → per-agent.")
11558
+ }).optional().describe("Opt-in flags for experimental / legacy behaviours. Cascades through " + "defaults → profile → per-agent."),
11559
+ allowed_tools: exports_external.array(exports_external.string()).optional().describe("Granular tool allowlist passed verbatim to Claude Code's --allowedTools " + "flag. Cascades defaults → profile → per-agent (union, dedup). Supports " + "patterns like 'Bash(git *)' or 'mcp__perplexity__*' that the coarse " + "`tools.allow` field can't express. See #199."),
11560
+ disallowed_tools: exports_external.array(exports_external.string()).optional().describe("Granular tool denylist passed verbatim to Claude Code's --disallowedTools " + "flag. Cascades defaults → profile → per-agent (union, dedup). Same pattern " + "syntax as allowed_tools (e.g. 'Bash(rm *)'). See #199.")
11547
11561
  };
11548
11562
  ProfileSchema = exports_external.object(profileFields);
11549
11563
  ({ extends: _omitExtends, ...defaultsFields } = profileFields);