@coryrylan/cradle 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.3.0](https://github.com/coryrylan/cradle/compare/cradle-v1.2.0...cradle-v1.3.0) (2026-07-26)
2
+
3
+ ### Features
4
+
5
+ * **cli:** enhance package filtering and extensions handling ([03ae139](https://github.com/coryrylan/cradle/commit/03ae1390de541f94f701413ac6853fede7b6c73a))
6
+
1
7
  ## [1.2.0](https://github.com/coryrylan/cradle/compare/cradle-v1.1.0...cradle-v1.2.0) (2026-07-26)
2
8
 
3
9
  ### Features
@@ -0,0 +1,13 @@
1
+ /** `!`/`+`/`-` prefixed entries decide what loads; everything else names a source path or glob. */
2
+ export declare function isOverridePattern(pattern: string): boolean;
3
+ /**
4
+ * Narrow `files` to what `patterns` selects, preserving input order: plain
5
+ * globs include (none listed includes everything), `!` globs then exclude,
6
+ * `+`/`-` exact paths force a file back in or out — force-exclude wins.
7
+ */
8
+ export declare function applyPatterns(files: readonly string[], patterns: readonly string[], baseDir: string): string[];
9
+ /**
10
+ * pi's `autoload: false` delta: nothing loads except what a pattern names, and
11
+ * for a file matched by several patterns the last one decides.
12
+ */
13
+ export declare function applyDeltaPatterns(files: readonly string[], patterns: readonly string[], baseDir: string): string[];
@@ -1,14 +1,25 @@
1
1
  import { type JsonValue } from '../setup/utils.js';
2
+ /**
3
+ * The object form's resource filter, narrowed to the one resource type cradle
4
+ * delivers. Absent `extensions` loads everything the package declares, `[]`
5
+ * loads none, patterns decide otherwise (see `./package-filters.js`).
6
+ */
7
+ interface PackageFilter {
8
+ readonly extensions?: readonly string[];
9
+ /** pi's `autoload: false` — nothing loads except what an `extensions` pattern names. */
10
+ readonly autoloadDisabled?: boolean;
11
+ }
2
12
  /** A parsed `npm:<name>[@<version>]` package source from settings.json's `packages` key. */
3
- export interface NpmPackageSpec {
13
+ export interface NpmPackageSpec extends PackageFilter {
4
14
  readonly name: string;
5
15
  readonly version: string;
6
16
  }
7
17
  /**
8
- * Parse a settings.json record's `packages` key into validated npm: package
9
- * specs. Only `npm:` sources are supported — pi also accepts `git:`,
10
- * `https://`, `ssh://`, and local paths, all warned and dropped here, since
11
- * cradle installs the package itself rather than delegating to pi's loader.
18
+ * Parse a settings.json record's `packages` key — pi's source strings, pi's
19
+ * filter objects, or a mix — into validated npm: package specs. Only `npm:`
20
+ * sources are supported — pi also accepts `git:`, `https://`, `ssh://`, and
21
+ * local paths, all warned and dropped here, since cradle installs the package
22
+ * itself rather than delegating to pi's loader.
12
23
  */
13
24
  export declare function readPackageSpecs(record: {
14
25
  readonly [key: string]: JsonValue;
@@ -16,13 +27,16 @@ export declare function readPackageSpecs(record: {
16
27
  /** Deterministic npm manifest for a per-agent packages install, dependencies sorted by name. */
17
28
  export declare function emitPackagesManifest(specs: readonly NpmPackageSpec[]): string;
18
29
  /**
19
- * Resolve each spec's installed package into pi extension entry files, ready
20
- * to pass as explicit `-e` flags. Every failure (not installed, malformed
21
- * manifest, an entry that escapes the package directory, a missing entry
22
- * file, no declared extensions) is a warning + skip — packages are
23
- * warn-don't-throw like every other agent-folder input.
30
+ * Resolve each spec's installed package into the pi extension entry files its
31
+ * settings.json entry selects, ready to pass as explicit `-e` flags. Every
32
+ * failure (not installed, malformed manifest, an entry that escapes the
33
+ * package directory, a missing entry file, no declared extensions) is a
34
+ * warning + skip — packages are warn-don't-throw like every other
35
+ * agent-folder input. A filter selecting nothing is silent: that is the
36
+ * author asking for nothing, not a failure.
24
37
  */
25
38
  export declare function resolvePackageEntries(npmDir: string, specs: readonly NpmPackageSpec[]): Promise<{
26
39
  entries: string[];
27
40
  warnings: string[];
28
41
  }>;
42
+ export {};
package/dist/index.js CHANGED
@@ -1,21 +1,21 @@
1
1
  #!/usr/bin/env bun
2
2
  // @bun
3
- var U8=Object.create;var{getPrototypeOf:W8,defineProperty:xF,getOwnPropertyNames:V8}=Object;var T8=Object.prototype.hasOwnProperty;function f8(D){return this[D]}var I8,L8,K8=(D,u,F)=>{var C=D!=null&&typeof D==="object";if(C){var E=u?I8??=new WeakMap:L8??=new WeakMap,B=E.get(D);if(B)return B}F=D!=null?U8(W8(D)):{};let $=u||!D||!D.__esModule?xF(F,"default",{value:D,enumerable:!0}):F;for(let Z of V8(D))if(!T8.call($,Z))xF($,Z,{get:f8.bind(D,Z),enumerable:!0});if(C)E.set(D,$);return $};var j8=(D,u)=>()=>(u||D((u={exports:{}}).exports,u),u.exports);var T0=j8((B9,V0)=>{V0.exports=function(u){if(u===void 0)u=2;if(u>=Error.stackTraceLimit)throw TypeError("getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `"+u+"` and Error.stackTraceLimit was: `"+Error.stackTraceLimit+"`");var F=Error.prepareStackTrace;Error.prepareStackTrace=function(E,B){return B};var C=Error().stack;if(Error.prepareStackTrace=F,C!==null&&typeof C==="object")return C[u]?C[u].getFileName():void 0}});import{join as O8}from"path";import{notStrictEqual as G3,strictEqual as J3}from"assert";var _8={right:A8,center:S8};class hF{constructor(D){var u;this.width=D.width,this.wrap=(u=D.wrap)!==null&&u!==void 0?u:!0,this.rows=[]}span(...D){let u=this.div(...D);u.span=!0}resetOutput(){this.rows=[]}div(...D){if(D.length===0)this.div("");if(this.wrap&&this.shouldApplyLayoutDSL(...D)&&typeof D[0]==="string")return this.applyLayoutDSL(D[0]);let u=D.map((F)=>{if(typeof F==="string")return this.colFromString(F);return F});return this.rows.push(u),u}shouldApplyLayoutDSL(...D){return D.length===1&&typeof D[0]==="string"&&/[\t\n]/.test(D[0])}applyLayoutDSL(D){let u=D.split(`
4
- `).map((C)=>C.split("\t")),F=0;return u.forEach((C)=>{if(C.length>1&&JD.stringWidth(C[0])>F)F=Math.min(Math.floor(this.width*0.5),JD.stringWidth(C[0]))}),u.forEach((C)=>{this.div(...C.map((E,B)=>{return{text:E.trim(),padding:this.measurePadding(E),width:B===0&&C.length>1?F:void 0}}))}),this.rows[this.rows.length-1]}colFromString(D){return{text:D,padding:this.measurePadding(D)}}measurePadding(D){let u=JD.stripAnsi(D);return[0,u.match(/\s*$/)[0].length,0,u.match(/^\s*/)[0].length]}toString(){let D=[];return this.rows.forEach((u)=>{this.rowToString(u,D)}),D.filter((u)=>!u.hidden).map((u)=>u.text).join(`
5
- `)}rowToString(D,u){return this.rasterize(D).forEach((F,C)=>{let E="";F.forEach((B,$)=>{let{width:Z}=D[$],M=this.negatePadding(D[$]),O=B;if(M>JD.stringWidth(B))O+=" ".repeat(M-JD.stringWidth(B));if(D[$].align&&D[$].align!=="left"&&this.wrap){let Y=_8[D[$].align];if(O=Y(O,M),JD.stringWidth(O)<M)O+=" ".repeat((Z||0)-JD.stringWidth(O)-1)}let V=D[$].padding||[0,0,0,0];if(V[3])E+=" ".repeat(V[3]);if(E+=bF(D[$],O,"| "),E+=O,E+=bF(D[$],O," |"),V[1])E+=" ".repeat(V[1]);if(C===0&&u.length>0)E=this.renderInline(E,u[u.length-1])}),u.push({text:E.replace(/ +$/,""),span:D.span})}),u}renderInline(D,u){let F=D.match(/^ */),C=F?F[0].length:0,E=u.text,B=JD.stringWidth(E.trimRight());if(!u.span)return D;if(!this.wrap)return u.hidden=!0,E+D;if(C<B)return D;return u.hidden=!0,E.trimRight()+" ".repeat(C-B)+D.trimLeft()}rasterize(D){let u=[],F=this.columnWidths(D),C;return D.forEach((E,B)=>{if(E.width=F[B],this.wrap)C=JD.wrap(E.text,this.negatePadding(E),{hard:!0}).split(`
3
+ var S8=Object.create;var{getPrototypeOf:P8,defineProperty:cF,getOwnPropertyNames:x8}=Object;var b8=Object.prototype.hasOwnProperty;function h8(D){return this[D]}var w8,m8,v8=(D,u,F)=>{var C=D!=null&&typeof D==="object";if(C){var E=u?w8??=new WeakMap:m8??=new WeakMap,B=E.get(D);if(B)return B}F=D!=null?S8(P8(D)):{};let $=u||!D||!D.__esModule?cF(F,"default",{value:D,enumerable:!0}):F;for(let Z of x8(D))if(!b8.call($,Z))cF($,Z,{get:h8.bind(D,Z),enumerable:!0});if(C)E.set(D,$);return $};var c8=(D,u)=>()=>(u||D((u={exports:{}}).exports,u),u.exports);var N0=c8((m9,_0)=>{_0.exports=function(u){if(u===void 0)u=2;if(u>=Error.stackTraceLimit)throw TypeError("getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `"+u+"` and Error.stackTraceLimit was: `"+Error.stackTraceLimit+"`");var F=Error.prepareStackTrace;Error.prepareStackTrace=function(E,B){return B};var C=Error().stack;if(Error.prepareStackTrace=F,C!==null&&typeof C==="object")return C[u]?C[u].getFileName():void 0}});import{join as f8}from"path";import{notStrictEqual as j3,strictEqual as _3}from"assert";var d8={right:y8,center:g8};class kF{constructor(D){var u;this.width=D.width,this.wrap=(u=D.wrap)!==null&&u!==void 0?u:!0,this.rows=[]}span(...D){let u=this.div(...D);u.span=!0}resetOutput(){this.rows=[]}div(...D){if(D.length===0)this.div("");if(this.wrap&&this.shouldApplyLayoutDSL(...D)&&typeof D[0]==="string")return this.applyLayoutDSL(D[0]);let u=D.map((F)=>{if(typeof F==="string")return this.colFromString(F);return F});return this.rows.push(u),u}shouldApplyLayoutDSL(...D){return D.length===1&&typeof D[0]==="string"&&/[\t\n]/.test(D[0])}applyLayoutDSL(D){let u=D.split(`
4
+ `).map((C)=>C.split("\t")),F=0;return u.forEach((C)=>{if(C.length>1&&YD.stringWidth(C[0])>F)F=Math.min(Math.floor(this.width*0.5),YD.stringWidth(C[0]))}),u.forEach((C)=>{this.div(...C.map((E,B)=>{return{text:E.trim(),padding:this.measurePadding(E),width:B===0&&C.length>1?F:void 0}}))}),this.rows[this.rows.length-1]}colFromString(D){return{text:D,padding:this.measurePadding(D)}}measurePadding(D){let u=YD.stripAnsi(D);return[0,u.match(/\s*$/)[0].length,0,u.match(/^\s*/)[0].length]}toString(){let D=[];return this.rows.forEach((u)=>{this.rowToString(u,D)}),D.filter((u)=>!u.hidden).map((u)=>u.text).join(`
5
+ `)}rowToString(D,u){return this.rasterize(D).forEach((F,C)=>{let E="";F.forEach((B,$)=>{let{width:Z}=D[$],M=this.negatePadding(D[$]),H=B;if(M>YD.stringWidth(B))H+=" ".repeat(M-YD.stringWidth(B));if(D[$].align&&D[$].align!=="left"&&this.wrap){let Y=d8[D[$].align];if(H=Y(H,M),YD.stringWidth(H)<M)H+=" ".repeat((Z||0)-YD.stringWidth(H)-1)}let V=D[$].padding||[0,0,0,0];if(V[3])E+=" ".repeat(V[3]);if(E+=dF(D[$],H,"| "),E+=H,E+=dF(D[$],H," |"),V[1])E+=" ".repeat(V[1]);if(C===0&&u.length>0)E=this.renderInline(E,u[u.length-1])}),u.push({text:E.replace(/ +$/,""),span:D.span})}),u}renderInline(D,u){let F=D.match(/^ */),C=F?F[0].length:0,E=u.text,B=YD.stringWidth(E.trimRight());if(!u.span)return D;if(!this.wrap)return u.hidden=!0,E+D;if(C<B)return D;return u.hidden=!0,E.trimRight()+" ".repeat(C-B)+D.trimLeft()}rasterize(D){let u=[],F=this.columnWidths(D),C;return D.forEach((E,B)=>{if(E.width=F[B],this.wrap)C=YD.wrap(E.text,this.negatePadding(E),{hard:!0}).split(`
6
6
  `);else C=E.text.split(`
7
- `);if(E.border)C.unshift("."+"-".repeat(this.negatePadding(E)+2)+"."),C.push("'"+"-".repeat(this.negatePadding(E)+2)+"'");if(E.padding)C.unshift(...Array(E.padding[0]||0).fill("")),C.push(...Array(E.padding[2]||0).fill(""));C.forEach(($,Z)=>{if(!u[Z])u.push([]);let M=u[Z];for(let O=0;O<B;O++)if(M[O]===void 0)M.push("");M.push($)})}),u}negatePadding(D){let u=D.width||0;if(D.padding)u-=(D.padding[3]||0)+(D.padding[1]||0);if(D.border)u-=4;return u}columnWidths(D){if(!this.wrap)return D.map((B)=>{return B.width||JD.stringWidth(B.text)});let u=D.length,F=this.width,C=D.map((B)=>{if(B.width)return u--,F-=B.width,B.width;return}),E=u?Math.floor(F/u):0;return C.map((B,$)=>{if(B===void 0)return Math.max(E,R8(D[$]));return B})}}function bF(D,u,F){if(D.border){if(/[.']-+[.']/.test(u))return"";if(u.trim().length!==0)return F;return" "}return""}function R8(D){let u=D.padding||[],F=1+(u[3]||0)+(u[1]||0);if(D.border)return F+4;return F}function N8(){if(typeof process==="object"&&process.stdout&&process.stdout.columns)return process.stdout.columns;return 80}function A8(D,u){D=D.trim();let F=JD.stringWidth(D);if(F<u)return" ".repeat(u-F)+D;return D}function S8(D,u){D=D.trim();let F=JD.stringWidth(D);if(F>=u)return D;return" ".repeat(u-F>>1)+D}var JD;function wF(D,u){return JD=u,new hF({width:(D===null||D===void 0?void 0:D.width)||N8(),wrap:D===null||D===void 0?void 0:D.wrap})}function su({onlyFirst:D=!1}={}){return new RegExp("(?:\\u001B\\][\\s\\S]*?(?:\\u0007|\\u001B\\u005C|\\u009C))|[\\u001B\\u009B][[\\]()#;?]*(?:\\d{1,4}(?:[;:]\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]",D?void 0:"g")}var P8=su();function dD(D){if(typeof D!=="string")throw TypeError(`Expected a \`string\`, got \`${typeof D}\``);if(!D.includes("\x1B")&&!D.includes("\x9B"))return D;return D.replace(P8,"")}var mF=161,vF=1114109,cF=[161,161,164,164,167,168,170,170,173,174,176,180,182,186,188,191,198,198,208,208,215,216,222,225,230,230,232,234,236,237,240,240,242,243,247,250,252,252,254,254,257,257,273,273,275,275,283,283,294,295,299,299,305,307,312,312,319,322,324,324,328,331,333,333,338,339,358,359,363,363,462,462,464,464,466,466,468,468,470,470,472,472,474,474,476,476,593,593,609,609,708,708,711,711,713,715,717,717,720,720,728,731,733,733,735,735,768,879,913,929,931,937,945,961,963,969,1025,1025,1040,1103,1105,1105,8208,8208,8211,8214,8216,8217,8220,8221,8224,8226,8228,8231,8240,8240,8242,8243,8245,8245,8251,8251,8254,8254,8308,8308,8319,8319,8321,8324,8364,8364,8451,8451,8453,8453,8457,8457,8467,8467,8470,8470,8481,8482,8486,8486,8491,8491,8531,8532,8539,8542,8544,8555,8560,8569,8585,8585,8592,8601,8632,8633,8658,8658,8660,8660,8679,8679,8704,8704,8706,8707,8711,8712,8715,8715,8719,8719,8721,8721,8725,8725,8730,8730,8733,8736,8739,8739,8741,8741,8743,8748,8750,8750,8756,8759,8764,8765,8776,8776,8780,8780,8786,8786,8800,8801,8804,8807,8810,8811,8814,8815,8834,8835,8838,8839,8853,8853,8857,8857,8869,8869,8895,8895,8978,8978,9312,9449,9451,9547,9552,9587,9600,9615,9618,9621,9632,9633,9635,9641,9650,9651,9654,9655,9660,9661,9664,9665,9670,9672,9675,9675,9678,9681,9698,9701,9711,9711,9733,9734,9737,9737,9742,9743,9756,9756,9758,9758,9792,9792,9794,9794,9824,9825,9827,9829,9831,9834,9836,9837,9839,9839,9886,9887,9919,9919,9926,9933,9935,9939,9941,9953,9955,9955,9960,9961,9963,9969,9972,9972,9974,9977,9979,9980,9982,9983,10045,10045,10102,10111,11094,11097,12872,12879,57344,63743,65024,65039,65533,65533,127232,127242,127248,127277,127280,127337,127344,127373,127375,127376,127387,127404,917760,917999,983040,1048573,1048576,1114109],dF=12288,pF=65510,tF=[12288,12288,65281,65376,65504,65510];var kF=4352,yF=262141,ru=[4352,4447,8986,8987,9001,9002,9193,9196,9200,9200,9203,9203,9725,9726,9748,9749,9776,9783,9800,9811,9855,9855,9866,9871,9875,9875,9889,9889,9898,9899,9917,9918,9924,9925,9934,9934,9940,9940,9962,9962,9970,9971,9973,9973,9978,9978,9981,9981,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10133,10135,10160,10160,10175,10175,11035,11036,11088,11088,11093,11093,11904,11929,11931,12019,12032,12245,12272,12287,12289,12350,12353,12438,12441,12543,12549,12591,12593,12686,12688,12773,12783,12830,12832,12871,12880,42124,42128,42182,43360,43388,44032,55203,63744,64255,65040,65049,65072,65106,65108,65126,65128,65131,94176,94180,94192,94198,94208,101589,101631,101662,101760,101874,110576,110579,110581,110587,110589,110590,110592,110882,110898,110898,110928,110930,110933,110933,110948,110951,110960,111355,119552,119638,119648,119670,126980,126980,127183,127183,127374,127374,127377,127386,127488,127490,127504,127547,127552,127560,127568,127569,127584,127589,127744,127776,127789,127797,127799,127868,127870,127891,127904,127946,127951,127955,127968,127984,127988,127988,127992,128062,128064,128064,128066,128252,128255,128317,128331,128334,128336,128359,128378,128378,128405,128406,128420,128420,128507,128591,128640,128709,128716,128716,128720,128722,128725,128728,128732,128735,128747,128748,128756,128764,128992,129003,129008,129008,129292,129338,129340,129349,129351,129535,129648,129660,129664,129674,129678,129734,129736,129736,129741,129756,129759,129770,129775,129784,131072,196605,196608,262141];var Lu=(D,u)=>{let F=0,C=Math.floor(D.length/2)-1;while(F<=C){let E=Math.floor((F+C)/2),B=E*2;if(u<D[B])C=E-1;else if(u>D[B+1])F=E+1;else return!0}return!1};var iF=19968,[x8,b8]=h8(ru);function h8(D){let u=D[0],F=D[1];for(let C=0;C<D.length;C+=2){let E=D[C],B=D[C+1];if(iF>=E&&iF<=B)return[E,B];if(B-E>F-u)u=E,F=B}return[u,F]}var gF=(D)=>{if(D<mF||D>vF)return!1;return Lu(cF,D)},lF=(D)=>{if(D<dF||D>pF)return!1;return Lu(tF,D)};var nF=(D)=>{if(D>=x8&&D<=b8)return!0;if(D<kF||D>yF)return!1;return Lu(ru,D)};function w8(D){if(!Number.isSafeInteger(D))throw TypeError(`Expected a code point, got \`${typeof D}\`.`)}function oF(D,{ambiguousAsWide:u=!1}={}){if(w8(D),lF(D)||nF(D)||u&&gF(D))return 2;return 1}var sF=()=>{return/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E-\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED8\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])))?))?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3C-\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC2\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF]|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g};var m8=new Intl.Segmenter,v8=/^\p{Default_Ignorable_Code_Point}$/u;function TD(D,u={}){if(typeof D!=="string"||D.length===0)return 0;let{ambiguousIsNarrow:F=!0,countAnsiEscapeCodes:C=!1}=u;if(!C)D=dD(D);if(D.length===0)return 0;let E=0,B={ambiguousAsWide:!F};for(let{segment:$}of m8.segment(D)){let Z=$.codePointAt(0);if(Z<=31||Z>=127&&Z<=159)continue;if(Z>=8203&&Z<=8207||Z===65279)continue;if(Z>=768&&Z<=879||Z>=6832&&Z<=6911||Z>=7616&&Z<=7679||Z>=8400&&Z<=8447||Z>=65056&&Z<=65071)continue;if(Z>=55296&&Z<=57343)continue;if(Z>=65024&&Z<=65039)continue;if(v8.test($))continue;if(sF().test($)){E+=2;continue}E+=oF(Z,B)}return E}var rF=(D=0)=>(u)=>`\x1B[${u+D}m`,aF=(D=0)=>(u)=>`\x1B[${38+D};5;${u}m`,eF=(D=0)=>(u,F,C)=>`\x1B[${38+D};2;${u};${F};${C}m`,n={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}},T7=Object.keys(n.modifier),c8=Object.keys(n.color),d8=Object.keys(n.bgColor),f7=[...c8,...d8];function p8(){let D=new Map;for(let[u,F]of Object.entries(n)){for(let[C,E]of Object.entries(F))n[C]={open:`\x1B[${E[0]}m`,close:`\x1B[${E[1]}m`},F[C]=n[C],D.set(E[0],E[1]);Object.defineProperty(n,u,{value:F,enumerable:!1})}return Object.defineProperty(n,"codes",{value:D,enumerable:!1}),n.color.close="\x1B[39m",n.bgColor.close="\x1B[49m",n.color.ansi=rF(),n.color.ansi256=aF(),n.color.ansi16m=eF(),n.bgColor.ansi=rF(10),n.bgColor.ansi256=aF(10),n.bgColor.ansi16m=eF(10),Object.defineProperties(n,{rgbToAnsi256:{value(u,F,C){if(u===F&&F===C){if(u<8)return 16;if(u>248)return 231;return Math.round((u-8)/247*24)+232}return 16+36*Math.round(u/255*5)+6*Math.round(F/255*5)+Math.round(C/255*5)},enumerable:!1},hexToRgb:{value(u){let F=/[a-f\d]{6}|[a-f\d]{3}/i.exec(u.toString(16));if(!F)return[0,0,0];let[C]=F;if(C.length===3)C=[...C].map((B)=>B+B).join("");let E=Number.parseInt(C,16);return[E>>16&255,E>>8&255,E&255]},enumerable:!1},hexToAnsi256:{value:(u)=>n.rgbToAnsi256(...n.hexToRgb(u)),enumerable:!1},ansi256ToAnsi:{value(u){if(u<8)return 30+u;if(u<16)return 90+(u-8);let F,C,E;if(u>=232)F=((u-232)*10+8)/255,C=F,E=F;else{u-=16;let Z=u%36;F=Math.floor(u/36)/5,C=Math.floor(Z/6)/5,E=Z%6/5}let B=Math.max(F,C,E)*2;if(B===0)return 30;let $=30+(Math.round(E)<<2|Math.round(C)<<1|Math.round(F));if(B===2)$+=60;return $},enumerable:!1},rgbToAnsi:{value:(u,F,C)=>n.ansi256ToAnsi(n.rgbToAnsi256(u,F,C)),enumerable:!1},hexToAnsi:{value:(u)=>n.ansi256ToAnsi(n.hexToAnsi256(u)),enumerable:!1}}),n}var t8=p8(),D0=t8;var ju=new Set(["\x1B","\x9B"]),k8=39,eu="\x07",C0="[",y8="]",E0="m",Ku=`${y8}8;;`,u0=(D)=>`${ju.values().next().value}${C0}${D}${E0}`,F0=(D)=>`${ju.values().next().value}${Ku}${D}${eu}`,i8=(D)=>D.split(" ").map((u)=>TD(u)),au=(D,u,F)=>{let C=[...u],E=!1,B=!1,$=TD(dD(D.at(-1)));for(let[Z,M]of C.entries()){let O=TD(M);if($+O<=F)D[D.length-1]+=M;else D.push(M),$=0;if(ju.has(M))E=!0,B=C.slice(Z+1,Z+1+Ku.length).join("")===Ku;if(E){if(B){if(M===eu)E=!1,B=!1}else if(M===E0)E=!1;continue}if($+=O,$===F&&Z<C.length-1)D.push(""),$=0}if(!$&&D.at(-1).length>0&&D.length>1)D[D.length-2]+=D.pop()},g8=(D)=>{let u=D.split(" "),F=u.length;while(F>0){if(TD(u[F-1])>0)break;F--}if(F===u.length)return D;return u.slice(0,F).join(" ")+u.slice(F).join("")},l8=(D,u,F={})=>{if(F.trim!==!1&&D.trim()==="")return"";let C="",E,B,$=i8(D),Z=[""];for(let[Y,q]of D.split(" ").entries()){if(F.trim!==!1)Z[Z.length-1]=Z.at(-1).trimStart();let H=TD(Z.at(-1));if(Y!==0){if(H>=u&&(F.wordWrap===!1||F.trim===!1))Z.push(""),H=0;if(H>0||F.trim===!1)Z[Z.length-1]+=" ",H++}if(F.hard&&$[Y]>u){let W=u-H,J=1+Math.floor(($[Y]-W-1)/u);if(Math.floor(($[Y]-1)/u)<J)Z.push("");au(Z,q,u);continue}if(H+$[Y]>u&&H>0&&$[Y]>0){if(F.wordWrap===!1&&H<u){au(Z,q,u);continue}Z.push("")}if(H+$[Y]>u&&F.wordWrap===!1){au(Z,q,u);continue}Z[Z.length-1]+=q}if(F.trim!==!1)Z=Z.map((Y)=>g8(Y));let M=Z.join(`
8
- `),O=[...M],V=0;for(let[Y,q]of O.entries()){if(C+=q,ju.has(q)){let{groups:W}=new RegExp(`(?:\\${C0}(?<code>\\d+)m|\\${Ku}(?<uri>.*)${eu})`).exec(M.slice(V))||{groups:{}};if(W.code!==void 0){let J=Number.parseFloat(W.code);E=J===k8?void 0:J}else if(W.uri!==void 0)B=W.uri.length===0?void 0:W.uri}let H=D0.codes.get(Number(E));if(O[Y+1]===`
9
- `){if(B)C+=F0("");if(E&&H)C+=u0(H)}else if(q===`
10
- `){if(E&&H)C+=u0(E);if(B)C+=F0(B)}V+=q.length}return C};function DF(D,u,F){return String(D).normalize().replaceAll(`\r
7
+ `);if(E.border)C.unshift("."+"-".repeat(this.negatePadding(E)+2)+"."),C.push("'"+"-".repeat(this.negatePadding(E)+2)+"'");if(E.padding)C.unshift(...Array(E.padding[0]||0).fill("")),C.push(...Array(E.padding[2]||0).fill(""));C.forEach(($,Z)=>{if(!u[Z])u.push([]);let M=u[Z];for(let H=0;H<B;H++)if(M[H]===void 0)M.push("");M.push($)})}),u}negatePadding(D){let u=D.width||0;if(D.padding)u-=(D.padding[3]||0)+(D.padding[1]||0);if(D.border)u-=4;return u}columnWidths(D){if(!this.wrap)return D.map((B)=>{return B.width||YD.stringWidth(B.text)});let u=D.length,F=this.width,C=D.map((B)=>{if(B.width)return u--,F-=B.width,B.width;return}),E=u?Math.floor(F/u):0;return C.map((B,$)=>{if(B===void 0)return Math.max(E,k8(D[$]));return B})}}function dF(D,u,F){if(D.border){if(/[.']-+[.']/.test(u))return"";if(u.trim().length!==0)return F;return" "}return""}function k8(D){let u=D.padding||[],F=1+(u[3]||0)+(u[1]||0);if(D.border)return F+4;return F}function p8(){if(typeof process==="object"&&process.stdout&&process.stdout.columns)return process.stdout.columns;return 80}function y8(D,u){D=D.trim();let F=YD.stringWidth(D);if(F<u)return" ".repeat(u-F)+D;return D}function g8(D,u){D=D.trim();let F=YD.stringWidth(D);if(F>=u)return D;return" ".repeat(u-F>>1)+D}var YD;function pF(D,u){return YD=u,new kF({width:(D===null||D===void 0?void 0:D.width)||p8(),wrap:D===null||D===void 0?void 0:D.wrap})}function eu({onlyFirst:D=!1}={}){return new RegExp("(?:\\u001B\\][\\s\\S]*?(?:\\u0007|\\u001B\\u005C|\\u009C))|[\\u001B\\u009B][[\\]()#;?]*(?:\\d{1,4}(?:[;:]\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]",D?void 0:"g")}var t8=eu();function kD(D){if(typeof D!=="string")throw TypeError(`Expected a \`string\`, got \`${typeof D}\``);if(!D.includes("\x1B")&&!D.includes("\x9B"))return D;return D.replace(t8,"")}var yF=161,gF=1114109,tF=[161,161,164,164,167,168,170,170,173,174,176,180,182,186,188,191,198,198,208,208,215,216,222,225,230,230,232,234,236,237,240,240,242,243,247,250,252,252,254,254,257,257,273,273,275,275,283,283,294,295,299,299,305,307,312,312,319,322,324,324,328,331,333,333,338,339,358,359,363,363,462,462,464,464,466,466,468,468,470,470,472,472,474,474,476,476,593,593,609,609,708,708,711,711,713,715,717,717,720,720,728,731,733,733,735,735,768,879,913,929,931,937,945,961,963,969,1025,1025,1040,1103,1105,1105,8208,8208,8211,8214,8216,8217,8220,8221,8224,8226,8228,8231,8240,8240,8242,8243,8245,8245,8251,8251,8254,8254,8308,8308,8319,8319,8321,8324,8364,8364,8451,8451,8453,8453,8457,8457,8467,8467,8470,8470,8481,8482,8486,8486,8491,8491,8531,8532,8539,8542,8544,8555,8560,8569,8585,8585,8592,8601,8632,8633,8658,8658,8660,8660,8679,8679,8704,8704,8706,8707,8711,8712,8715,8715,8719,8719,8721,8721,8725,8725,8730,8730,8733,8736,8739,8739,8741,8741,8743,8748,8750,8750,8756,8759,8764,8765,8776,8776,8780,8780,8786,8786,8800,8801,8804,8807,8810,8811,8814,8815,8834,8835,8838,8839,8853,8853,8857,8857,8869,8869,8895,8895,8978,8978,9312,9449,9451,9547,9552,9587,9600,9615,9618,9621,9632,9633,9635,9641,9650,9651,9654,9655,9660,9661,9664,9665,9670,9672,9675,9675,9678,9681,9698,9701,9711,9711,9733,9734,9737,9737,9742,9743,9756,9756,9758,9758,9792,9792,9794,9794,9824,9825,9827,9829,9831,9834,9836,9837,9839,9839,9886,9887,9919,9919,9926,9933,9935,9939,9941,9953,9955,9955,9960,9961,9963,9969,9972,9972,9974,9977,9979,9980,9982,9983,10045,10045,10102,10111,11094,11097,12872,12879,57344,63743,65024,65039,65533,65533,127232,127242,127248,127277,127280,127337,127344,127373,127375,127376,127387,127404,917760,917999,983040,1048573,1048576,1114109],lF=12288,iF=65510,oF=[12288,12288,65281,65376,65504,65510];var nF=4352,sF=262141,DF=[4352,4447,8986,8987,9001,9002,9193,9196,9200,9200,9203,9203,9725,9726,9748,9749,9776,9783,9800,9811,9855,9855,9866,9871,9875,9875,9889,9889,9898,9899,9917,9918,9924,9925,9934,9934,9940,9940,9962,9962,9970,9971,9973,9973,9978,9978,9981,9981,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10133,10135,10160,10160,10175,10175,11035,11036,11088,11088,11093,11093,11904,11929,11931,12019,12032,12245,12272,12287,12289,12350,12353,12438,12441,12543,12549,12591,12593,12686,12688,12773,12783,12830,12832,12871,12880,42124,42128,42182,43360,43388,44032,55203,63744,64255,65040,65049,65072,65106,65108,65126,65128,65131,94176,94180,94192,94198,94208,101589,101631,101662,101760,101874,110576,110579,110581,110587,110589,110590,110592,110882,110898,110898,110928,110930,110933,110933,110948,110951,110960,111355,119552,119638,119648,119670,126980,126980,127183,127183,127374,127374,127377,127386,127488,127490,127504,127547,127552,127560,127568,127569,127584,127589,127744,127776,127789,127797,127799,127868,127870,127891,127904,127946,127951,127955,127968,127984,127988,127988,127992,128062,128064,128064,128066,128252,128255,128317,128331,128334,128336,128359,128378,128378,128405,128406,128420,128420,128507,128591,128640,128709,128716,128716,128720,128722,128725,128728,128732,128735,128747,128748,128756,128764,128992,129003,129008,129008,129292,129338,129340,129349,129351,129535,129648,129660,129664,129674,129678,129734,129736,129736,129741,129756,129759,129770,129775,129784,131072,196605,196608,262141];var Nu=(D,u)=>{let F=0,C=Math.floor(D.length/2)-1;while(F<=C){let E=Math.floor((F+C)/2),B=E*2;if(u<D[B])C=E-1;else if(u>D[B+1])F=E+1;else return!0}return!1};var rF=19968,[l8,i8]=o8(DF);function o8(D){let u=D[0],F=D[1];for(let C=0;C<D.length;C+=2){let E=D[C],B=D[C+1];if(rF>=E&&rF<=B)return[E,B];if(B-E>F-u)u=E,F=B}return[u,F]}var aF=(D)=>{if(D<yF||D>gF)return!1;return Nu(tF,D)},eF=(D)=>{if(D<lF||D>iF)return!1;return Nu(oF,D)};var D0=(D)=>{if(D>=l8&&D<=i8)return!0;if(D<nF||D>sF)return!1;return Nu(DF,D)};function n8(D){if(!Number.isSafeInteger(D))throw TypeError(`Expected a code point, got \`${typeof D}\`.`)}function u0(D,{ambiguousAsWide:u=!1}={}){if(n8(D),eF(D)||D0(D)||u&&aF(D))return 2;return 1}var F0=()=>{return/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E-\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED8\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])))?))?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3C-\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC2\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF]|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g};var s8=new Intl.Segmenter,r8=/^\p{Default_Ignorable_Code_Point}$/u;function LD(D,u={}){if(typeof D!=="string"||D.length===0)return 0;let{ambiguousIsNarrow:F=!0,countAnsiEscapeCodes:C=!1}=u;if(!C)D=kD(D);if(D.length===0)return 0;let E=0,B={ambiguousAsWide:!F};for(let{segment:$}of s8.segment(D)){let Z=$.codePointAt(0);if(Z<=31||Z>=127&&Z<=159)continue;if(Z>=8203&&Z<=8207||Z===65279)continue;if(Z>=768&&Z<=879||Z>=6832&&Z<=6911||Z>=7616&&Z<=7679||Z>=8400&&Z<=8447||Z>=65056&&Z<=65071)continue;if(Z>=55296&&Z<=57343)continue;if(Z>=65024&&Z<=65039)continue;if(r8.test($))continue;if(F0().test($)){E+=2;continue}E+=u0(Z,B)}return E}var C0=(D=0)=>(u)=>`\x1B[${u+D}m`,E0=(D=0)=>(u)=>`\x1B[${38+D};5;${u}m`,B0=(D=0)=>(u,F,C)=>`\x1B[${38+D};2;${u};${F};${C}m`,o={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}},e7=Object.keys(o.modifier),a8=Object.keys(o.color),e8=Object.keys(o.bgColor),D9=[...a8,...e8];function D3(){let D=new Map;for(let[u,F]of Object.entries(o)){for(let[C,E]of Object.entries(F))o[C]={open:`\x1B[${E[0]}m`,close:`\x1B[${E[1]}m`},F[C]=o[C],D.set(E[0],E[1]);Object.defineProperty(o,u,{value:F,enumerable:!1})}return Object.defineProperty(o,"codes",{value:D,enumerable:!1}),o.color.close="\x1B[39m",o.bgColor.close="\x1B[49m",o.color.ansi=C0(),o.color.ansi256=E0(),o.color.ansi16m=B0(),o.bgColor.ansi=C0(10),o.bgColor.ansi256=E0(10),o.bgColor.ansi16m=B0(10),Object.defineProperties(o,{rgbToAnsi256:{value(u,F,C){if(u===F&&F===C){if(u<8)return 16;if(u>248)return 231;return Math.round((u-8)/247*24)+232}return 16+36*Math.round(u/255*5)+6*Math.round(F/255*5)+Math.round(C/255*5)},enumerable:!1},hexToRgb:{value(u){let F=/[a-f\d]{6}|[a-f\d]{3}/i.exec(u.toString(16));if(!F)return[0,0,0];let[C]=F;if(C.length===3)C=[...C].map((B)=>B+B).join("");let E=Number.parseInt(C,16);return[E>>16&255,E>>8&255,E&255]},enumerable:!1},hexToAnsi256:{value:(u)=>o.rgbToAnsi256(...o.hexToRgb(u)),enumerable:!1},ansi256ToAnsi:{value(u){if(u<8)return 30+u;if(u<16)return 90+(u-8);let F,C,E;if(u>=232)F=((u-232)*10+8)/255,C=F,E=F;else{u-=16;let Z=u%36;F=Math.floor(u/36)/5,C=Math.floor(Z/6)/5,E=Z%6/5}let B=Math.max(F,C,E)*2;if(B===0)return 30;let $=30+(Math.round(E)<<2|Math.round(C)<<1|Math.round(F));if(B===2)$+=60;return $},enumerable:!1},rgbToAnsi:{value:(u,F,C)=>o.ansi256ToAnsi(o.rgbToAnsi256(u,F,C)),enumerable:!1},hexToAnsi:{value:(u)=>o.ansi256ToAnsi(o.hexToAnsi256(u)),enumerable:!1}}),o}var u3=D3(),$0=u3;var fu=new Set(["\x1B","\x9B"]),F3=39,FF="\x07",Q0="[",C3="]",X0="m",Ru=`${C3}8;;`,z0=(D)=>`${fu.values().next().value}${Q0}${D}${X0}`,Z0=(D)=>`${fu.values().next().value}${Ru}${D}${FF}`,E3=(D)=>D.split(" ").map((u)=>LD(u)),uF=(D,u,F)=>{let C=[...u],E=!1,B=!1,$=LD(kD(D.at(-1)));for(let[Z,M]of C.entries()){let H=LD(M);if($+H<=F)D[D.length-1]+=M;else D.push(M),$=0;if(fu.has(M))E=!0,B=C.slice(Z+1,Z+1+Ru.length).join("")===Ru;if(E){if(B){if(M===FF)E=!1,B=!1}else if(M===X0)E=!1;continue}if($+=H,$===F&&Z<C.length-1)D.push(""),$=0}if(!$&&D.at(-1).length>0&&D.length>1)D[D.length-2]+=D.pop()},B3=(D)=>{let u=D.split(" "),F=u.length;while(F>0){if(LD(u[F-1])>0)break;F--}if(F===u.length)return D;return u.slice(0,F).join(" ")+u.slice(F).join("")},$3=(D,u,F={})=>{if(F.trim!==!1&&D.trim()==="")return"";let C="",E,B,$=E3(D),Z=[""];for(let[Y,q]of D.split(" ").entries()){if(F.trim!==!1)Z[Z.length-1]=Z.at(-1).trimStart();let O=LD(Z.at(-1));if(Y!==0){if(O>=u&&(F.wordWrap===!1||F.trim===!1))Z.push(""),O=0;if(O>0||F.trim===!1)Z[Z.length-1]+=" ",O++}if(F.hard&&$[Y]>u){let W=u-O,J=1+Math.floor(($[Y]-W-1)/u);if(Math.floor(($[Y]-1)/u)<J)Z.push("");uF(Z,q,u);continue}if(O+$[Y]>u&&O>0&&$[Y]>0){if(F.wordWrap===!1&&O<u){uF(Z,q,u);continue}Z.push("")}if(O+$[Y]>u&&F.wordWrap===!1){uF(Z,q,u);continue}Z[Z.length-1]+=q}if(F.trim!==!1)Z=Z.map((Y)=>B3(Y));let M=Z.join(`
8
+ `),H=[...M],V=0;for(let[Y,q]of H.entries()){if(C+=q,fu.has(q)){let{groups:W}=new RegExp(`(?:\\${Q0}(?<code>\\d+)m|\\${Ru}(?<uri>.*)${FF})`).exec(M.slice(V))||{groups:{}};if(W.code!==void 0){let J=Number.parseFloat(W.code);E=J===F3?void 0:J}else if(W.uri!==void 0)B=W.uri.length===0?void 0:W.uri}let O=$0.codes.get(Number(E));if(H[Y+1]===`
9
+ `){if(B)C+=Z0("");if(E&&O)C+=z0(O)}else if(q===`
10
+ `){if(E&&O)C+=z0(E);if(B)C+=Z0(B)}V+=q.length}return C};function CF(D,u,F){return String(D).normalize().replaceAll(`\r
11
11
  `,`
12
12
  `).split(`
13
- `).map((C)=>l8(C,u,F)).join(`
14
- `)}function uF(D){return wF(D,{stringWidth:TD,stripAnsi:dD,wrap:DF})}import{dirname as B0,resolve as $0}from"path";import{readdirSync as n8,statSync as o8}from"fs";function FF(D,u){let F=$0(".",D),C;if(!o8(F).isDirectory())F=B0(F);while(!0){if(C=u(F,n8(F)),C)return $0(F,C);if(F=B0(C=F),C===F)break}}import{inspect as Y3}from"util";import{fileURLToPath as I0}from"url";import{format as a8}from"util";import{normalize as e8,resolve as D3}from"path";function pD(D){if(!(D!==D.toLowerCase()&&D!==D.toUpperCase()))D=D.toLowerCase();if(D.indexOf("-")===-1&&D.indexOf("_")===-1)return D;else{let F="",C=!1,E=D.match(/^-+/);for(let B=E?E[0].length:0;B<D.length;B++){let $=D.charAt(B);if(C)C=!1,$=$.toUpperCase();if(B!==0&&($==="-"||$==="_"))C=!0;else if($!=="-"&&$!=="_")F+=$}return F}}function _u(D,u){let F=D.toLowerCase();u=u||"-";let C="";for(let E=0;E<D.length;E++){let B=F.charAt(E),$=D.charAt(E);if(B!==$&&E>0)C+=`${u}${F.charAt(E)}`;else C+=$}return C}function Ru(D){if(D===null||D===void 0)return!1;if(typeof D==="number")return!0;if(/^0x[0-9a-f]+$/i.test(D))return!0;if(/^0[^.]/.test(D))return!1;return/^[-]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(D)}function z0(D){if(Array.isArray(D))return D.map(($)=>typeof $!=="string"?$+"":$);D=D.trim();let u=0,F=null,C=null,E=null,B=[];for(let $=0;$<D.length;$++){if(F=C,C=D.charAt($),C===" "&&!E){if(F!==" ")u++;continue}if(C===E)E=null;else if((C==="'"||C==='"')&&!E)E=C;if(!B[u])B[u]="";B[u]+=C}return B}var HD;(function(D){D.BOOLEAN="boolean",D.STRING="string",D.NUMBER="number",D.ARRAY="array"})(HD||(HD={}));var AD;class EF{constructor(D){AD=D}parse(D,u){let F=Object.assign({alias:void 0,array:void 0,boolean:void 0,config:void 0,configObjects:void 0,configuration:void 0,coerce:void 0,count:void 0,default:void 0,envPrefix:void 0,narg:void 0,normalize:void 0,string:void 0,number:void 0,__:void 0,key:void 0},u),C=z0(D),E=typeof D==="string",B=s8(Object.assign(Object.create(null),F.alias)),$=Object.assign({"boolean-negation":!0,"camel-case-expansion":!0,"combine-arrays":!1,"dot-notation":!0,"duplicate-arguments-array":!0,"flatten-duplicate-arrays":!0,"greedy-arrays":!0,"halt-at-non-option":!1,"nargs-eats-options":!1,"negation-prefix":"no-","parse-numbers":!0,"parse-positional-numbers":!0,"populate--":!1,"set-placeholder-key":!1,"short-option-groups":!0,"strip-aliased":!1,"strip-dashed":!1,"unknown-options-as-args":!1},F.configuration),Z=Object.assign(Object.create(null),F.default),M=F.configObjects||[],O=F.envPrefix,V=$["populate--"],Y=V?"--":"_",q=Object.create(null),H=Object.create(null),W=F.__||AD.format,J={aliases:Object.create(null),arrays:Object.create(null),bools:Object.create(null),strings:Object.create(null),numbers:Object.create(null),counts:Object.create(null),normalize:Object.create(null),configs:Object.create(null),nargs:Object.create(null),coercions:Object.create(null),keys:[]},S=/^-([0-9]+(\.[0-9]+)?|\.[0-9]+)$/,d=new RegExp("^--"+$["negation-prefix"]+"(.+)");if([].concat(F.array||[]).filter(Boolean).forEach(function(Q){let G=typeof Q==="object"?Q.key:Q,T=Object.keys(Q).map(function(U){return{boolean:"bools",string:"strings",number:"numbers"}[U]}).filter(Boolean).pop();if(T)J[T][G]=!0;J.arrays[G]=!0,J.keys.push(G)}),[].concat(F.boolean||[]).filter(Boolean).forEach(function(Q){J.bools[Q]=!0,J.keys.push(Q)}),[].concat(F.string||[]).filter(Boolean).forEach(function(Q){J.strings[Q]=!0,J.keys.push(Q)}),[].concat(F.number||[]).filter(Boolean).forEach(function(Q){J.numbers[Q]=!0,J.keys.push(Q)}),[].concat(F.count||[]).filter(Boolean).forEach(function(Q){J.counts[Q]=!0,J.keys.push(Q)}),[].concat(F.normalize||[]).filter(Boolean).forEach(function(Q){J.normalize[Q]=!0,J.keys.push(Q)}),typeof F.narg==="object")Object.entries(F.narg).forEach(([Q,G])=>{if(typeof G==="number")J.nargs[Q]=G,J.keys.push(Q)});if(typeof F.coerce==="object")Object.entries(F.coerce).forEach(([Q,G])=>{if(typeof G==="function")J.coercions[Q]=G,J.keys.push(Q)});if(typeof F.config<"u"){if(Array.isArray(F.config)||typeof F.config==="string")[].concat(F.config).filter(Boolean).forEach(function(Q){J.configs[Q]=!0});else if(typeof F.config==="object")Object.entries(F.config).forEach(([Q,G])=>{if(typeof G==="boolean"||typeof G==="function")J.configs[Q]=G})}Gu(F.key,B,F.default,J.arrays),Object.keys(Z).forEach(function(Q){(J.aliases[Q]||[]).forEach(function(G){Z[G]=Z[Q]})});let v=null;ou();let ZD=[],m=Object.assign(Object.create(null),{_:[]}),g={};for(let Q=0;Q<C.length;Q++){let G=C[Q],T=G.replace(/^-{3,}/,"---"),U,X,j,I,A,BD;if(G!=="--"&&/^-/.test(G)&&y(G))uD(G);else if(T.match(/^---+(=|$)/)){uD(G);continue}else if(G.match(/^--.+=/)||!$["short-option-groups"]&&G.match(/^-.+=/)){if(I=G.match(/^--?([^=]+)=([\s\S]*)$/),I!==null&&Array.isArray(I)&&I.length>=3)if(P(I[1],J.arrays))Q=KD(Q,I[1],C,I[2]);else if(P(I[1],J.nargs)!==!1)Q=s(Q,I[1],C,I[2]);else k(I[1],I[2],!0)}else if(G.match(d)&&$["boolean-negation"]){if(I=G.match(d),I!==null&&Array.isArray(I)&&I.length>=2)X=I[1],k(X,P(X,J.arrays)?[!1]:!1)}else if(G.match(/^--.+/)||!$["short-option-groups"]&&G.match(/^-[^-]+/)){if(I=G.match(/^--?(.+)/),I!==null&&Array.isArray(I)&&I.length>=2)if(X=I[1],P(X,J.arrays))Q=KD(Q,X,C);else if(P(X,J.nargs)!==!1)Q=s(Q,X,C);else if(A=C[Q+1],A!==void 0&&(!A.match(/^-/)||A.match(S))&&!P(X,J.bools)&&!P(X,J.counts))k(X,A),Q++;else if(/^(true|false)$/.test(A))k(X,A),Q++;else k(X,c(X))}else if(G.match(/^-.\..+=/)){if(I=G.match(/^-([^=]+)=([\s\S]*)$/),I!==null&&Array.isArray(I)&&I.length>=3)k(I[1],I[2])}else if(G.match(/^-.\..+/)&&!G.match(S)){if(A=C[Q+1],I=G.match(/^-(.\..+)/),I!==null&&Array.isArray(I)&&I.length>=2)if(X=I[1],A!==void 0&&!A.match(/^-/)&&!P(X,J.bools)&&!P(X,J.counts))k(X,A),Q++;else k(X,c(X))}else if(G.match(/^-[^-]+/)&&!G.match(S)){j=G.slice(1,-1).split(""),U=!1;for(let XD=0;XD<j.length;XD++){if(A=G.slice(XD+2),j[XD+1]&&j[XD+1]==="="){if(BD=G.slice(XD+3),X=j[XD],P(X,J.arrays))Q=KD(Q,X,C,BD);else if(P(X,J.nargs)!==!1)Q=s(Q,X,C,BD);else k(X,BD);U=!0;break}if(A==="-"){k(j[XD],A);continue}if(/[A-Za-z]/.test(j[XD])&&/^-?\d+(\.\d*)?(e-?\d+)?$/.test(A)&&P(A,J.bools)===!1){k(j[XD],A),U=!0;break}if(j[XD+1]&&j[XD+1].match(/\W/)){k(j[XD],A),U=!0;break}else k(j[XD],c(j[XD]))}if(X=G.slice(-1)[0],!U&&X!=="-")if(P(X,J.arrays))Q=KD(Q,X,C);else if(P(X,J.nargs)!==!1)Q=s(Q,X,C);else if(A=C[Q+1],A!==void 0&&(!/^(-|--)[^-]/.test(A)||A.match(S))&&!P(X,J.bools)&&!P(X,J.counts))k(X,A),Q++;else if(/^(true|false)$/.test(A))k(X,A),Q++;else k(X,c(X))}else if(G.match(/^-[0-9]$/)&&G.match(S)&&P(G.slice(1),J.bools))X=G.slice(1),k(X,c(X));else if(G==="--"){ZD=C.slice(Q+1);break}else if($["halt-at-non-option"]){ZD=C.slice(Q);break}else uD(G)}if(DD(m,!0),DD(m,!1),R(m),t(),PD(m,J.aliases,Z,!0),p(m),$["set-placeholder-key"])FD(m);if(Object.keys(J.counts).forEach(function(Q){if(!i(m,Q.split(".")))k(Q,0)}),V&&ZD.length)m[Y]=[];if(ZD.forEach(function(Q){m[Y].push(Q)}),$["camel-case-expansion"]&&$["strip-dashed"])Object.keys(m).filter((Q)=>Q!=="--"&&Q.includes("-")).forEach((Q)=>{delete m[Q]});if($["strip-aliased"])[].concat(...Object.keys(B).map((Q)=>B[Q])).forEach((Q)=>{if($["camel-case-expansion"]&&Q.includes("-"))delete m[Q.split(".").map((G)=>pD(G)).join(".")];delete m[Q]});function uD(Q){let G=f("_",Q);if(typeof G==="string"||typeof G==="number")m._.push(G)}function s(Q,G,T,U){let X,j=P(G,J.nargs);if(j=typeof j!=="number"||isNaN(j)?1:j,j===0){if(!ED(U))v=Error(W("Argument unexpected for: %s",G));return k(G,c(G)),Q}let I=ED(U)?0:1;if($["nargs-eats-options"]){if(T.length-(Q+1)+I<j)v=Error(W("Not enough arguments following: %s",G));I=j}else{for(X=Q+1;X<T.length;X++)if(!T[X].match(/^-[^0-9]/)||T[X].match(S)||y(T[X]))I++;else break;if(I<j)v=Error(W("Not enough arguments following: %s",G))}let A=Math.min(I,j);if(!ED(U)&&A>0)k(G,U),A--;for(X=Q+1;X<A+Q+1;X++)k(G,T[X]);return Q+A}function KD(Q,G,T,U){let X=[],j=U||T[Q+1],I=P(G,J.nargs);if(P(G,J.bools)&&!/^(true|false)$/.test(j))X.push(!0);else if(ED(j)||ED(U)&&/^-/.test(j)&&!S.test(j)&&!y(j)){if(Z[G]!==void 0){let A=Z[G];X=Array.isArray(A)?A:[A]}}else{if(!ED(U))X.push(_(G,U,!0));for(let A=Q+1;A<T.length;A++){if(!$["greedy-arrays"]&&X.length>0||I&&typeof I==="number"&&X.length>=I)break;if(j=T[A],/^-/.test(j)&&!S.test(j)&&!y(j))break;Q=A,X.push(_(G,j,E))}}if(typeof I==="number"&&(I&&X.length<I||isNaN(I)&&X.length===0))v=Error(W("Not enough arguments following: %s",G));return k(G,X),Q}function k(Q,G,T=E){if(/-/.test(Q)&&$["camel-case-expansion"]){let j=Q.split(".").map(function(I){return pD(I)}).join(".");Mu(Q,j)}let U=_(Q,G,T),X=Q.split(".");if(ND(m,X,U),J.aliases[Q])J.aliases[Q].forEach(function(j){let I=j.split(".");ND(m,I,U)});if(X.length>1&&$["dot-notation"])(J.aliases[X[0]]||[]).forEach(function(j){let I=j.split("."),A=[].concat(X);if(A.shift(),I=I.concat(A),!(J.aliases[Q]||[]).includes(I.join(".")))ND(m,I,U)});if(P(Q,J.normalize)&&!P(Q,J.arrays))[Q].concat(J.aliases[Q]||[]).forEach(function(I){Object.defineProperty(g,I,{enumerable:!0,get(){return G},set(A){G=typeof A==="string"?AD.normalize(A):A}})})}function Mu(Q,G){if(!(J.aliases[Q]&&J.aliases[Q].length))J.aliases[Q]=[G],q[G]=!0;if(!(J.aliases[G]&&J.aliases[G].length))Mu(G,Q)}function _(Q,G,T){if(T)G=r8(G);if(P(Q,J.bools)||P(Q,J.counts)){if(typeof G==="string")G=G==="true"}let U=Array.isArray(G)?G.map(function(X){return f(Q,X)}):f(Q,G);if(P(Q,J.counts)&&(ED(U)||typeof U==="boolean"))U=CF();if(P(Q,J.normalize)&&P(Q,J.arrays))if(Array.isArray(G))U=G.map((X)=>{return AD.normalize(X)});else U=AD.normalize(G);return U}function f(Q,G){if(!$["parse-positional-numbers"]&&Q==="_")return G;if(!P(Q,J.strings)&&!P(Q,J.bools)&&!Array.isArray(G)){if(Ru(G)&&$["parse-numbers"]&&Number.isSafeInteger(Math.floor(parseFloat(`${G}`)))||!ED(G)&&P(Q,J.numbers))G=Number(G)}return G}function R(Q){let G=Object.create(null);PD(G,J.aliases,Z),Object.keys(J.configs).forEach(function(T){let U=Q[T]||G[T];if(U)try{let X=null,j=AD.resolve(AD.cwd(),U),I=J.configs[T];if(typeof I==="function"){try{X=I(j)}catch(A){X=A}if(X instanceof Error){v=X;return}}else X=AD.require(j);h(X)}catch(X){if(X.name==="PermissionDenied")v=X;else if(Q[T])v=Error(W("Invalid JSON config file: %s",U))}})}function h(Q,G){Object.keys(Q).forEach(function(T){let U=Q[T],X=G?G+"."+T:T;if(typeof U==="object"&&U!==null&&!Array.isArray(U)&&$["dot-notation"])h(U,X);else if(!i(m,X.split("."))||P(X,J.arrays)&&$["combine-arrays"])k(X,U)})}function t(){if(typeof M<"u")M.forEach(function(Q){h(Q)})}function DD(Q,G){if(typeof O>"u")return;let T=typeof O==="string"?O:"",U=AD.env();Object.keys(U).forEach(function(X){if(T===""||X.lastIndexOf(T,0)===0){let j=X.split("__").map(function(I,A){if(A===0)I=I.substring(T.length);return pD(I)});if((G&&J.configs[j.join(".")]||!G)&&!i(Q,j))k(j.join("."),U[X])}})}function p(Q){let G,T=new Set;Object.keys(Q).forEach(function(U){if(!T.has(U)){if(G=P(U,J.coercions),typeof G==="function")try{let X=f(U,G(Q[U]));[].concat(J.aliases[U]||[],U).forEach((j)=>{T.add(j),Q[j]=X})}catch(X){v=X}}})}function FD(Q){return J.keys.forEach((G)=>{if(~G.indexOf("."))return;if(typeof Q[G]>"u")Q[G]=void 0}),Q}function PD(Q,G,T,U=!1){Object.keys(T).forEach(function(X){if(!i(Q,X.split("."))){if(ND(Q,X.split("."),T[X]),U)H[X]=!0;(G[X]||[]).forEach(function(j){if(i(Q,j.split(".")))return;ND(Q,j.split("."),T[X])})}})}function i(Q,G){let T=Q;if(!$["dot-notation"])G=[G.join(".")];G.slice(0,-1).forEach(function(X){T=T[X]||{}});let U=G[G.length-1];if(typeof T!=="object")return!1;else return U in T}function ND(Q,G,T){let U=Q;if(!$["dot-notation"])G=[G.join(".")];G.slice(0,-1).forEach(function(BD){if(BD=Z0(BD),typeof U==="object"&&U[BD]===void 0)U[BD]={};if(typeof U[BD]!=="object"||Array.isArray(U[BD])){if(Array.isArray(U[BD]))U[BD].push({});else U[BD]=[U[BD],{}];U=U[BD][U[BD].length-1]}else U=U[BD]});let X=Z0(G[G.length-1]),j=P(G.join("."),J.arrays),I=Array.isArray(T),A=$["duplicate-arguments-array"];if(!A&&P(X,J.nargs)){if(A=!0,!ED(U[X])&&J.nargs[X]===1||Array.isArray(U[X])&&U[X].length===J.nargs[X])U[X]=void 0}if(T===CF())U[X]=CF(U[X]);else if(Array.isArray(U[X]))if(A&&j&&I)U[X]=$["flatten-duplicate-arrays"]?U[X].concat(T):(Array.isArray(U[X][0])?U[X]:[U[X]]).concat([T]);else if(!A&&Boolean(j)===Boolean(I))U[X]=T;else U[X]=U[X].concat([T]);else if(U[X]===void 0&&j)U[X]=I?T:[T];else if(A&&!(U[X]===void 0||P(X,J.counts)||P(X,J.bools)))U[X]=[U[X],T];else U[X]=T}function Gu(...Q){Q.forEach(function(G){Object.keys(G||{}).forEach(function(T){if(J.aliases[T])return;J.aliases[T]=[].concat(B[T]||[]),J.aliases[T].concat(T).forEach(function(U){if(/-/.test(U)&&$["camel-case-expansion"]){let X=pD(U);if(X!==T&&J.aliases[T].indexOf(X)===-1)J.aliases[T].push(X),q[X]=!0}}),J.aliases[T].concat(T).forEach(function(U){if(U.length>1&&/[A-Z]/.test(U)&&$["camel-case-expansion"]){let X=_u(U,"-");if(X!==T&&J.aliases[T].indexOf(X)===-1)J.aliases[T].push(X),q[X]=!0}}),J.aliases[T].forEach(function(U){J.aliases[U]=[T].concat(J.aliases[T].filter(function(X){return U!==X}))})})})}function P(Q,G){let T=[].concat(J.aliases[Q]||[],Q),U=Object.keys(G),X=T.find((j)=>U.includes(j));return X?G[X]:!1}function Cu(Q){let G=Object.keys(J);return[].concat(G.map((U)=>J[U])).some(function(U){return Array.isArray(U)?U.includes(Q):U[Q]})}function PF(Q,...G){return[].concat(...G).some(function(U){let X=Q.match(U);return X&&Cu(X[1])})}function x(Q){if(Q.match(S)||!Q.match(/^-[^-]+/))return!1;let G=!0,T,U=Q.slice(1).split("");for(let X=0;X<U.length;X++){if(T=Q.slice(X+2),!Cu(U[X])){G=!1;break}if(U[X+1]&&U[X+1]==="="||T==="-"||/[A-Za-z]/.test(U[X])&&/^-?\d+(\.\d*)?(e-?\d+)?$/.test(T)||U[X+1]&&U[X+1].match(/\W/))break}return G}function y(Q){return $["unknown-options-as-args"]&&CD(Q)}function CD(Q){if(Q=Q.replace(/^-{3,}/,"--"),Q.match(S))return!1;if(x(Q))return!1;return!PF(Q,/^-+([^=]+?)=[\s\S]*$/,d,/^-+([^=]+?)$/,/^-+([^=]+?)-$/,/^-+([^=]+?\d+)$/,/^-+([^=]+?)\W+.*$/)}function c(Q){if(!P(Q,J.bools)&&!P(Q,J.counts)&&`${Q}`in Z)return Z[Q];else return zD(r(Q))}function zD(Q){return{[HD.BOOLEAN]:!0,[HD.STRING]:"",[HD.NUMBER]:void 0,[HD.ARRAY]:[]}[Q]}function r(Q){let G=HD.BOOLEAN;if(P(Q,J.strings))G=HD.STRING;else if(P(Q,J.numbers))G=HD.NUMBER;else if(P(Q,J.bools))G=HD.BOOLEAN;else if(P(Q,J.arrays))G=HD.ARRAY;return G}function ED(Q){return Q===void 0}function ou(){Object.keys(J.counts).find((Q)=>{if(P(Q,J.arrays))return v=Error(W("Invalid configuration: %s, opts.count excludes opts.array.",Q)),!0;else if(P(Q,J.nargs))return v=Error(W("Invalid configuration: %s, opts.count excludes opts.narg.",Q)),!0;return!1})}return{aliases:Object.assign({},J.aliases),argv:Object.assign(g,m),configuration:$,defaulted:Object.assign({},H),error:v,newAliases:Object.assign({},q)}}}function s8(D){let u=[],F=Object.create(null),C=!0;Object.keys(D).forEach(function(E){u.push([].concat(D[E],E))});while(C){C=!1;for(let E=0;E<u.length;E++)for(let B=E+1;B<u.length;B++)if(u[E].filter(function(Z){return u[B].indexOf(Z)!==-1}).length){u[E]=u[E].concat(u[B]),u.splice(B,1),C=!0;break}}return u.forEach(function(E){E=E.filter(function($,Z,M){return M.indexOf($)===Z});let B=E.pop();if(B!==void 0&&typeof B==="string")F[B]=E}),F}function CF(D){return D!==void 0?D+1:1}function Z0(D){if(D==="__proto__")return"___proto___";return D}function r8(D){return typeof D==="string"&&(D[0]==="'"||D[0]==='"')&&D[D.length-1]===D[0]?D.substring(1,D.length-1):D}import{readFileSync as u3}from"fs";import{createRequire as Q0}from"module";var BF,$F,zF,X0=process&&process.env&&process.env.YARGS_MIN_NODE_VERSION?Number(process.env.YARGS_MIN_NODE_VERSION):20,M0=($F=(BF=process===null||process===void 0?void 0:process.versions)===null||BF===void 0?void 0:BF.node)!==null&&$F!==void 0?$F:(zF=process===null||process===void 0?void 0:process.version)===null||zF===void 0?void 0:zF.slice(1);if(M0){if(Number(M0.match(/^([^.]+)/)[1])<X0)throw Error(`yargs parser supports a minimum Node.js version of ${X0}. Read our version support policy: https://github.com/yargs/yargs-parser#supported-nodejs-versions`)}var F3=process?process.env:{},G0=Q0?Q0(import.meta.url):void 0,J0=new EF({cwd:process.cwd,env:()=>{return F3},format:a8,normalize:e8,resolve:D3,require:(D)=>{if(typeof G0<"u")return G0(D);else if(D.match(/\.json$/))return JSON.parse(u3(D,"utf8"));else throw Error("only .json config files are supported in ESM")}}),Ju=function(u,F){return J0.parse(u.slice(),F).argv};Ju.detailed=function(D,u){return J0.parse(D.slice(),u)};Ju.camelCase=pD;Ju.decamelize=_u;Ju.looksLikeNumber=Ru;var Y0=Ju;import{basename as q3,dirname as O3,extname as H3,relative as U3,resolve as f0,join as W3}from"path";function C3(){if(E3())return 0;return 1}function E3(){return B3()&&!process.defaultApp}function B3(){return!!process.versions.electron}function q0(){return process.argv[C3()]}import{readFileSync as $3,statSync as z3,writeFile as Z3}from"fs";import{format as Q3}from"util";import{resolve as X3}from"path";var O0={fs:{readFileSync:$3,writeFile:Z3},format:Q3,resolve:X3,exists:(D)=>{try{return z3(D).isFile()}catch(u){return!1}}};var fD;class H0{constructor(D){D=D||{},this.directory=D.directory||"./locales",this.updateFiles=typeof D.updateFiles==="boolean"?D.updateFiles:!0,this.locale=D.locale||"en",this.fallbackToLanguage=typeof D.fallbackToLanguage==="boolean"?D.fallbackToLanguage:!0,this.cache=Object.create(null),this.writeQueue=[]}__(...D){if(typeof arguments[0]!=="string")return this._taggedLiteral(arguments[0],...arguments);let u=D.shift(),F=function(){};if(typeof D[D.length-1]==="function")F=D.pop();if(F=F||function(){},!this.cache[this.locale])this._readLocaleFile();if(!this.cache[this.locale][u]&&this.updateFiles)this.cache[this.locale][u]=u,this._enqueueWrite({directory:this.directory,locale:this.locale,cb:F});else F();return fD.format.apply(fD.format,[this.cache[this.locale][u]||u].concat(D))}__n(){let D=Array.prototype.slice.call(arguments),u=D.shift(),F=D.shift(),C=D.shift(),E=function(){};if(typeof D[D.length-1]==="function")E=D.pop();if(!this.cache[this.locale])this._readLocaleFile();let B=C===1?u:F;if(this.cache[this.locale][u])B=this.cache[this.locale][u][C===1?"one":"other"];if(!this.cache[this.locale][u]&&this.updateFiles)this.cache[this.locale][u]={one:u,other:F},this._enqueueWrite({directory:this.directory,locale:this.locale,cb:E});else E();let $=[B];if(~B.indexOf("%d"))$.push(C);return fD.format.apply(fD.format,$.concat(D))}setLocale(D){this.locale=D}getLocale(){return this.locale}updateLocale(D){if(!this.cache[this.locale])this._readLocaleFile();for(let u in D)if(Object.prototype.hasOwnProperty.call(D,u))this.cache[this.locale][u]=D[u]}_taggedLiteral(D,...u){let F="";return D.forEach(function(C,E){let B=u[E+1];if(F+=C,typeof B<"u")F+="%s"}),this.__.apply(this,[F].concat([].slice.call(u,1)))}_enqueueWrite(D){if(this.writeQueue.push(D),this.writeQueue.length===1)this._processWriteQueue()}_processWriteQueue(){let D=this,u=this.writeQueue[0],F=u.directory,C=u.locale,E=u.cb,B=this._resolveLocaleFile(F,C),$=JSON.stringify(this.cache[C],null,2);fD.fs.writeFile(B,$,"utf-8",function(Z){if(D.writeQueue.shift(),D.writeQueue.length>0)D._processWriteQueue();E(Z)})}_readLocaleFile(){let D={},u=this._resolveLocaleFile(this.directory,this.locale);try{if(fD.fs.readFileSync)D=JSON.parse(fD.fs.readFileSync(u,"utf-8"))}catch(F){if(F instanceof SyntaxError)F.message="syntax error in "+u;if(F.code==="ENOENT")D={};else throw F}this.cache[this.locale]=D}_resolveLocaleFile(D,u){let F=fD.resolve(D,"./",u+".json");if(this.fallbackToLanguage&&!this._fileExistsSync(F)&&~u.lastIndexOf("_")){let C=fD.resolve(D,"./",u.split("_")[0]+".json");if(this._fileExistsSync(C))F=C}return F}_fileExistsSync(D){return fD.exists(D)}}function U0(D,u){fD=u;let F=new H0(D);return{__:F.__.bind(F),__n:F.__n.bind(F),setLocale:F.setLocale.bind(F),getLocale:F.getLocale.bind(F),updateLocale:F.updateLocale.bind(F),locale:F.locale}}var M3=(D)=>{return U0(D,O0)},W0=M3;var L0=K8(T0(),1);import{createRequire as V3}from"module";import{readFileSync as T3,readdirSync as f3}from"fs";var ZF=I0(import.meta.url),I3=ZF.substring(0,ZF.lastIndexOf("node_modules")),L3=V3(import.meta.url),K0={assert:{notStrictEqual:G3,strictEqual:J3},cliui:uF,findUp:FF,getEnv:(D)=>{return process.env[D]},inspect:Y3,getProcessArgvBin:q0,mainFilename:I3||process.cwd(),Parser:Y0,path:{basename:q3,dirname:O3,extname:H3,relative:U3,resolve:f0,join:W3},process:{argv:()=>process.argv,cwd:process.cwd,emitWarning:(D,u)=>process.emitWarning(D,u),execPath:()=>process.execPath,exit:(D)=>{process.exit(D)},nextTick:process.nextTick,stdColumns:typeof process.stdout.columns<"u"?process.stdout.columns:null},readFileSync:T3,readdirSync:f3,require:L3,getCallerFile:()=>{let D=L0.default(3);return D.match(/^file:\/\//)?I0(D):D},stringWidth:TD,y18n:W0({directory:f0(ZF,"../../../locales"),updateFiles:!1})};function MD(D,u,F,C){F.assert.notStrictEqual(D,u,C)}function QF(D,u){u.assert.strictEqual(typeof D,"string")}function Eu(D){return Object.keys(D)}function l(D){return!!D&&!!D.then&&typeof D.then==="function"}class a extends Error{constructor(D){super(D||"yargs error");if(this.name="YError",Error.captureStackTrace)Error.captureStackTrace(this,a)}}function xD(D){let F=D.replace(/\s{2,}/g," ").split(/\s+(?![^[]*]|[^<]*>)/),C=/\.*[\][<>]/g,E=F.shift();if(!E)throw Error(`No command found in: ${D}`);let B={cmd:E.replace(C,""),demanded:[],optional:[]};return F.forEach(($,Z)=>{let M=!1;if($=$.replace(/\s/g,""),/\.+[\]>]/.test($)&&Z===F.length-1)M=!0;if(/^\[/.test($))B.optional.push({cmd:$.replace(C,"").split("|"),variadic:M});else B.demanded.push({cmd:$.replace(C,"").split("|"),variadic:M})}),B}var K3=["first","second","third","fourth","fifth","sixth"];function L(D,u,F){function C(){return typeof D==="object"?[{demanded:[],optional:[]},D,u]:[xD(`cmd ${D}`),u,F]}try{let E=0,[B,$,Z]=C(),M=[].slice.call($);while(M.length&&M[M.length-1]===void 0)M.pop();let O=Z||M.length;if(O<B.demanded.length)throw new a(`Not enough arguments provided. Expected ${B.demanded.length} but received ${M.length}.`);let V=B.demanded.length+B.optional.length;if(O>V)throw new a(`Too many arguments provided. Expected max ${V} but received ${O}.`);B.demanded.forEach((Y)=>{let q=M.shift(),H=j0(q);if(Y.cmd.filter((J)=>J===H||J==="*").length===0)_0(H,Y.cmd,E);E+=1}),B.optional.forEach((Y)=>{if(M.length===0)return;let q=M.shift(),H=j0(q);if(Y.cmd.filter((J)=>J===H||J==="*").length===0)_0(H,Y.cmd,E);E+=1})}catch(E){console.warn(E.stack)}}function j0(D){if(Array.isArray(D))return"array";else if(D===null)return"null";return typeof D}function _0(D,u,F){throw new a(`Invalid ${K3[F]||"manyith"} argument. Expected ${u.join(" or ")} but received ${D}.`)}class XF{constructor(D){this.globalMiddleware=[],this.frozens=[],this.yargs=D}addMiddleware(D,u,F=!0,C=!1){if(L("<array|function> [boolean] [boolean] [boolean]",[D,u,F],arguments.length),Array.isArray(D)){for(let E=0;E<D.length;E++){if(typeof D[E]!=="function")throw Error("middleware must be a function");let B=D[E];B.applyBeforeValidation=u,B.global=F}Array.prototype.push.apply(this.globalMiddleware,D)}else if(typeof D==="function"){let E=D;E.applyBeforeValidation=u,E.global=F,E.mutates=C,this.globalMiddleware.push(D)}return this.yargs}addCoerceMiddleware(D,u){let F=this.yargs.getAliases();return this.globalMiddleware=this.globalMiddleware.filter((C)=>{let E=[...F[u]||[],u];if(!C.option)return!0;else return!E.includes(C.option)}),D.option=u,this.addMiddleware(D,!0,!0,!0)}getMiddleware(){return this.globalMiddleware}freeze(){this.frozens.push([...this.globalMiddleware])}unfreeze(){let D=this.frozens.pop();if(D!==void 0)this.globalMiddleware=D}reset(){this.globalMiddleware=this.globalMiddleware.filter((D)=>D.global)}}function R0(D){if(!D)return[];return D.map((u)=>{return u.applyBeforeValidation=!1,u})}function tD(D,u,F,C){return F.reduce((E,B)=>{if(B.applyBeforeValidation!==C)return E;if(B.mutates){if(B.applied)return E;B.applied=!0}if(l(E))return E.then(($)=>Promise.all([$,B($,u)])).then(([$,Z])=>Object.assign($,Z));else{let $=B(E,u);return l($)?$.then((Z)=>Object.assign(E,Z)):Object.assign(E,$)}},D)}function kD(D,u,F=(C)=>{throw C}){try{let C=j3(D)?D():D;return l(C)?C.then((E)=>u(E)):u(C)}catch(C){return F(C)}}function j3(D){return typeof D==="function"}var Bu=/(^\*)|(^\$0)/;class A0{constructor(D,u,F,C){this.requireCache=new Set,this.handlers={},this.aliasMap={},this.frozens=[],this.shim=C,this.usage=D,this.globalMiddleware=F,this.validation=u}addDirectory(D,u,F,C){C=C||{},this.requireCache.add(F);let E=this.shim.path.resolve(this.shim.path.dirname(F),D),B=this.shim.readdirSync(E,{recursive:C.recurse?!0:!1});if(!Array.isArray(C.extensions))C.extensions=["js"];let $=typeof C.visit==="function"?C.visit:(Z)=>Z;for(let Z of B){let M=Z.toString();if(C.exclude){let V=!1;if(typeof C.exclude==="function")V=C.exclude(M);else V=C.exclude.test(M);if(V)continue}if(C.include){let V=!1;if(typeof C.include==="function")V=C.include(M);else V=C.include.test(M);if(!V)continue}let O=!1;for(let V of C.extensions)if(M.endsWith(V))O=!0;if(O){let V=this.shim.path.join(E,M),Y=u(V),q=Object.create(null,Object.getOwnPropertyDescriptors({...Y}));if($(q,V,M)){if(this.requireCache.has(V))continue;else this.requireCache.add(V);if(!q.command)q.command=this.shim.path.basename(V,this.shim.path.extname(V));this.addHandler(q)}}}}addHandler(D,u,F,C,E,B){let $=[],Z=R0(E);if(C=C||(()=>{}),Array.isArray(D))if(_3(D))[D,...$]=D;else for(let M of D)this.addHandler(M);else if(N3(D)){let M=Array.isArray(D.command)||typeof D.command==="string"?D.command:null;if(M===null)throw Error(`No command name given for module: ${this.shim.inspect(D)}`);if(D.aliases)M=[].concat(M).concat(D.aliases);this.addHandler(M,this.extractDesc(D),D.builder,D.handler,D.middlewares,D.deprecated);return}else if(N0(F)){this.addHandler([D].concat($),u,F.builder,F.handler,F.middlewares,F.deprecated);return}if(typeof D==="string"){let M=xD(D);$=$.map((Y)=>xD(Y).cmd);let O=!1,V=[M.cmd].concat($).filter((Y)=>{if(Bu.test(Y))return O=!0,!1;return!0});if(V.length===0&&O)V.push("$0");if(O)M.cmd=V[0],$=V.slice(1),D=D.replace(Bu,M.cmd);if($.forEach((Y)=>{this.aliasMap[Y]=M.cmd}),u!==!1)this.usage.command(D,u,O,$,B);if(this.handlers[M.cmd]={original:D,description:u,handler:C,builder:F||{},middlewares:Z,deprecated:B,demanded:M.demanded,optional:M.optional},O)this.defaultCommand=this.handlers[M.cmd]}}getCommandHandlers(){return this.handlers}getCommands(){return Object.keys(this.handlers).concat(Object.keys(this.aliasMap))}hasDefaultCommand(){return!!this.defaultCommand}runCommand(D,u,F,C,E,B){let $=this.handlers[D]||this.handlers[this.aliasMap[D]]||this.defaultCommand,Z=u.getInternalMethods().getContext(),M=Z.commands.slice(),O=!D;if(D)Z.commands.push(D),Z.fullCommands.push($.original);let V=this.applyBuilderUpdateUsageAndParse(O,$,u,F.aliases,M,C,E,B);return l(V)?V.then((Y)=>this.applyMiddlewareAndGetResult(O,$,Y.innerArgv,Z,E,Y.aliases,u)):this.applyMiddlewareAndGetResult(O,$,V.innerArgv,Z,E,V.aliases,u)}applyBuilderUpdateUsageAndParse(D,u,F,C,E,B,$,Z){let M=u.builder,O=F;if(Nu(M)){F.getInternalMethods().getUsageInstance().freeze();let V=M(F.getInternalMethods().reset(C),Z);if(l(V))return V.then((Y)=>{return O=P0(Y)?Y:F,this.parseAndUpdateUsage(D,u,O,E,B,$)})}else if(R3(M))F.getInternalMethods().getUsageInstance().freeze(),O=F.getInternalMethods().reset(C),Object.keys(u.builder).forEach((V)=>{O.option(V,M[V])});return this.parseAndUpdateUsage(D,u,O,E,B,$)}parseAndUpdateUsage(D,u,F,C,E,B){if(D)F.getInternalMethods().getUsageInstance().unfreeze(!0);if(this.shouldUpdateUsage(F))F.getInternalMethods().getUsageInstance().usage(this.usageFromParentCommandsCommandHandler(C,u),u.description);let $=F.getInternalMethods().runYargsParserAndExecuteCommands(null,void 0,!0,E,B);return l($)?$.then((Z)=>({aliases:F.parsed.aliases,innerArgv:Z})):{aliases:F.parsed.aliases,innerArgv:$}}shouldUpdateUsage(D){return!D.getInternalMethods().getUsageInstance().getUsageDisabled()&&D.getInternalMethods().getUsageInstance().getUsage().length===0}usageFromParentCommandsCommandHandler(D,u){let F=Bu.test(u.original)?u.original.replace(Bu,"").trim():u.original,C=D.filter((E)=>{return!Bu.test(E)});return C.push(F),`$0 ${C.join(" ")}`}handleValidationAndGetResult(D,u,F,C,E,B,$,Z){if(!B.getInternalMethods().getHasOutput()){let M=B.getInternalMethods().runValidation(E,Z,B.parsed.error,D);F=kD(F,(O)=>{return M(O),O})}if(u.handler&&!B.getInternalMethods().getHasOutput()){B.getInternalMethods().setHasOutput();let M=!!B.getOptions().configuration["populate--"];if(B.getInternalMethods().postProcess(F,M,!1,!1),F=tD(F,B,$,!1),F=kD(F,(O)=>{let V=u.handler(O);return l(V)?V.then(()=>O):O}),!D)B.getInternalMethods().getUsageInstance().cacheHelpMessage();if(l(F)&&!B.getInternalMethods().hasParseCallback())F.catch((O)=>{try{B.getInternalMethods().getUsageInstance().fail(null,O)}catch(V){}})}if(!D)C.commands.pop(),C.fullCommands.pop();return F}applyMiddlewareAndGetResult(D,u,F,C,E,B,$){let Z={};if(E)return F;if(!$.getInternalMethods().getHasOutput())Z=this.populatePositionals(u,F,C,$);let M=this.globalMiddleware.getMiddleware().slice(0).concat(u.middlewares),O=tD(F,$,M,!0);return l(O)?O.then((V)=>this.handleValidationAndGetResult(D,u,V,C,B,$,M,Z)):this.handleValidationAndGetResult(D,u,O,C,B,$,M,Z)}populatePositionals(D,u,F,C){u._=u._.slice(F.commands.length);let E=D.demanded.slice(0),B=D.optional.slice(0),$={};this.validation.positionalCount(E.length,u._.length);while(E.length){let Z=E.shift();this.populatePositional(Z,u,$)}while(B.length){let Z=B.shift();this.populatePositional(Z,u,$)}return u._=F.commands.concat(u._.map((Z)=>""+Z)),this.postProcessPositionals(u,$,this.cmdToParseOptions(D.original),C),$}populatePositional(D,u,F){let C=D.cmd[0];if(D.variadic)F[C]=u._.splice(0).map(String);else if(u._.length)F[C]=[String(u._.shift())]}cmdToParseOptions(D){let u={array:[],default:{},alias:{},demand:{}},F=xD(D);return F.demanded.forEach((C)=>{let[E,...B]=C.cmd;if(C.variadic)u.array.push(E),u.default[E]=[];u.alias[E]=B,u.demand[E]=!0}),F.optional.forEach((C)=>{let[E,...B]=C.cmd;if(C.variadic)u.array.push(E),u.default[E]=[];u.alias[E]=B}),u}postProcessPositionals(D,u,F,C){let E=Object.assign({},C.getOptions());E.default=Object.assign(F.default,E.default);for(let M of Object.keys(F.alias))E.alias[M]=(E.alias[M]||[]).concat(F.alias[M]);E.array=E.array.concat(F.array),E.config={};let B=[];if(Object.keys(u).forEach((M)=>{u[M].map((O)=>{if(E.configuration["unknown-options-as-args"])E.key[M]=!0;B.push(`--${M}`),B.push(O)})}),!B.length)return;let $=Object.assign({},E.configuration,{"populate--":!1}),Z=this.shim.Parser.detailed(B,Object.assign({},E,{configuration:$}));if(Z.error)C.getInternalMethods().getUsageInstance().fail(Z.error.message,Z.error);else{let M=Object.keys(u);Object.keys(u).forEach((O)=>{M.push(...Z.aliases[O])}),Object.keys(Z.argv).forEach((O)=>{if(M.includes(O)){if(!u[O])u[O]=Z.argv[O];if(!this.isInConfigs(C,O)&&!this.isDefaulted(C,O)&&Object.prototype.hasOwnProperty.call(D,O)&&Object.prototype.hasOwnProperty.call(Z.argv,O)&&(Array.isArray(D[O])||Array.isArray(Z.argv[O])))D[O]=[].concat(D[O],Z.argv[O]);else D[O]=Z.argv[O]}})}}isDefaulted(D,u){let{default:F}=D.getOptions();return Object.prototype.hasOwnProperty.call(F,u)||Object.prototype.hasOwnProperty.call(F,this.shim.Parser.camelCase(u))}isInConfigs(D,u){let{configObjects:F}=D.getOptions();return F.some((C)=>Object.prototype.hasOwnProperty.call(C,u))||F.some((C)=>Object.prototype.hasOwnProperty.call(C,this.shim.Parser.camelCase(u)))}runDefaultBuilderOn(D){if(!this.defaultCommand)return;if(this.shouldUpdateUsage(D)){let F=Bu.test(this.defaultCommand.original)?this.defaultCommand.original:this.defaultCommand.original.replace(/^[^[\]<>]*/,"$0 ");D.getInternalMethods().getUsageInstance().usage(F,this.defaultCommand.description)}let u=this.defaultCommand.builder;if(Nu(u))return u(D,!0);else if(!N0(u))Object.keys(u).forEach((F)=>{D.option(F,u[F])});return}extractDesc({describe:D,description:u,desc:F}){for(let C of[D,u,F]){if(typeof C==="string"||C===!1)return C;MD(C,!0,this.shim)}return!1}freeze(){this.frozens.push({handlers:this.handlers,aliasMap:this.aliasMap,defaultCommand:this.defaultCommand})}unfreeze(){let D=this.frozens.pop();MD(D,void 0,this.shim),{handlers:this.handlers,aliasMap:this.aliasMap,defaultCommand:this.defaultCommand}=D}reset(){return this.handlers={},this.aliasMap={},this.defaultCommand=void 0,this.requireCache=new Set,this}}function S0(D,u,F,C){return new A0(D,u,F,C)}function N0(D){return typeof D==="object"&&!!D.builder&&typeof D.handler==="function"}function _3(D){return D.every((u)=>typeof u==="string")}function Nu(D){return typeof D==="function"}function R3(D){return typeof D==="object"}function N3(D){return typeof D==="object"&&!Array.isArray(D)}function bD(D={},u=()=>!0){let F={};return Eu(D).forEach((C)=>{if(u(C,D[C]))F[C]=D[C]}),F}function hD(D){if(typeof process>"u")return;[process.stdout,process.stderr].forEach((u)=>{let F=u;if(F._handle&&F.isTTY&&typeof F._handle.setBlocking==="function")F._handle.setBlocking(D)})}function A3(D){return typeof D==="boolean"}function b0(D,u){let F=u.y18n.__,C={},E=[];C.failFn=function(f){E.push(f)};let B=null,$=null,Z=!0;C.showHelpOnFail=function(f=!0,R){let[h,t]=typeof f==="string"?[!0,f]:[f,R];if(D.getInternalMethods().isGlobalContext())$=t;return B=t,Z=h,C};let M=!1;C.fail=function(f,R){let h=D.getInternalMethods().getLoggerInstance();if(E.length)for(let t=E.length-1;t>=0;--t){let DD=E[t];if(A3(DD)){if(R)throw R;else if(f)throw Error(f)}else DD(f,R,C)}else{if(D.getExitProcess())hD(!0);if(!M){if(M=!0,Z)D.showHelp("error"),h.error();if(f||R)h.error(f||R);let t=B||$;if(t){if(f||R)h.error("");h.error(t)}}if(R=R||new a(f),D.getExitProcess())return D.exit(1);else if(D.getInternalMethods().hasParseCallback())return D.exit(1,R);else throw R}};let O=[],V=!1;C.usage=(_,f)=>{if(_===null)return V=!0,O=[],C;return V=!1,O.push([_,f||""]),C},C.getUsage=()=>{return O},C.getUsageDisabled=()=>{return V},C.getPositionalGroupName=()=>{return F("Positionals:")};let Y=[];C.example=(_,f)=>{Y.push([_,f||""])};let q=[];C.command=function(f,R,h,t,DD=!1){if(h)q=q.map((p)=>{return p[2]=!1,p});q.push([f,R||"",h,t,DD])},C.getCommands=()=>q;let H={};C.describe=function(f,R){if(Array.isArray(f))f.forEach((h)=>{C.describe(h,R)});else if(typeof f==="object")Object.keys(f).forEach((h)=>{C.describe(h,f[h])});else H[f]=R},C.getDescriptions=()=>H;let W=[];C.epilog=(_)=>{W.push(_)};let J=!1,S;C.wrap=(_)=>{J=!0,S=_},C.getWrap=()=>{if(u.getEnv("YARGS_DISABLE_WRAP"))return null;if(!J)S=KD(),J=!0;return S};let d="__yargsString__:";C.deferY18nLookup=(_)=>d+_,C.help=function(){if(m)return m;ZD();let f=D.customScriptName?D.$0:u.path.basename(D.$0),R=D.getDemandedOptions(),h=D.getDemandedCommands(),t=D.getDeprecatedOptions(),DD=D.getGroups(),p=D.getOptions(),FD=[];FD=FD.concat(Object.keys(H)),FD=FD.concat(Object.keys(R)),FD=FD.concat(Object.keys(h)),FD=FD.concat(Object.keys(p.default)),FD=FD.filter(uD),FD=Object.keys(FD.reduce((x,y)=>{if(y!=="_")x[y]=!0;return x},{}));let PD=C.getWrap(),i=u.cliui({width:PD,wrap:!!PD});if(!V){if(O.length)O.forEach((x)=>{if(i.div({text:`${x[0].replace(/\$0/g,f)}`}),x[1])i.div({text:`${x[1]}`,padding:[1,0,0,0]})}),i.div();else if(q.length){let x=null;if(h._)x=`${f} <${F("command")}>
15
- `;else x=`${f} [${F("command")}]
16
- `;i.div(`${x}`)}}if(q.length>1||q.length===1&&!q[0][2]){i.div(F("Commands:"));let x=D.getInternalMethods().getContext(),y=x.commands.length?`${x.commands.join(" ")} `:"";if(D.getInternalMethods().getParserConfiguration()["sort-commands"]===!0)q=q.sort((c,zD)=>c[0].localeCompare(zD[0]));let CD=f?`${f} `:"";q.forEach((c)=>{let zD=`${CD}${y}${c[0].replace(/^\$0 ?/,"")}`;i.span({text:zD,padding:[0,2,0,2],width:v(q,PD,`${f}${y}`)+4},{text:c[1]});let r=[];if(c[2])r.push(`[${F("default")}]`);if(c[3]&&c[3].length)r.push(`[${F("aliases:")} ${c[3].join(", ")}]`);if(c[4])if(typeof c[4]==="string")r.push(`[${F("deprecated: %s",c[4])}]`);else r.push(`[${F("deprecated")}]`);if(r.length)i.div({text:r.join(" "),padding:[0,0,0,2],align:"right"});else i.div()}),i.div()}let ND=(Object.keys(p.alias)||[]).concat(Object.keys(D.parsed.newAliases)||[]);FD=FD.filter((x)=>!D.parsed.newAliases[x]&&ND.every((y)=>(p.alias[y]||[]).indexOf(x)===-1));let Gu=F("Options:");if(!DD[Gu])DD[Gu]=[];g(FD,p.alias,DD,Gu);let P=(x)=>/^--/.test(Au(x)),Cu=Object.keys(DD).filter((x)=>DD[x].length>0).map((x)=>{let y=DD[x].filter(uD).map((CD)=>{if(ND.includes(CD))return CD;for(let c=0,zD;(zD=ND[c])!==void 0;c++)if((p.alias[zD]||[]).includes(CD))return zD;return CD});return{groupName:x,normalizedKeys:y}}).filter(({normalizedKeys:x})=>x.length>0).map(({groupName:x,normalizedKeys:y})=>{let CD=y.reduce((c,zD)=>{return c[zD]=[zD].concat(p.alias[zD]||[]).map((r)=>{if(x===C.getPositionalGroupName())return r;else return(/^[0-9]$/.test(r)?p.boolean.includes(zD)?"-":"--":r.length>1?"--":"-")+r}).sort((r,ED)=>P(r)===P(ED)?0:P(r)?1:-1).join(", "),c},{});return{groupName:x,normalizedKeys:y,switches:CD}});if(Cu.filter(({groupName:x})=>x!==C.getPositionalGroupName()).some(({normalizedKeys:x,switches:y})=>!x.every((CD)=>P(y[CD]))))Cu.filter(({groupName:x})=>x!==C.getPositionalGroupName()).forEach(({normalizedKeys:x,switches:y})=>{x.forEach((CD)=>{if(P(y[CD]))y[CD]=S3(y[CD],4)})});if(Cu.forEach(({groupName:x,normalizedKeys:y,switches:CD})=>{i.div(x),y.forEach((c)=>{let zD=CD[c],r=H[c]||"",ED=null;if(r.includes(d))r=F(r.substring(d.length));if(p.boolean.includes(c))ED=`[${F("boolean")}]`;if(p.count.includes(c))ED=`[${F("count")}]`;if(p.string.includes(c))ED=`[${F("string")}]`;if(p.normalize.includes(c))ED=`[${F("string")}]`;if(p.array.includes(c))ED=`[${F("array")}]`;if(p.number.includes(c))ED=`[${F("number")}]`;let ou=(T)=>typeof T==="string"?`[${F("deprecated: %s",T)}]`:`[${F("deprecated")}]`,Q=[c in t?ou(t[c]):null,ED,c in R?`[${F("required")}]`:null,p.choices&&p.choices[c]?`[${F("choices:")} ${C.stringifiedValues(p.choices[c])}]`:null,s(p.default[c],p.defaultDescription[c])].filter(Boolean).join(" ");i.span({text:Au(zD),padding:[0,2,0,2+x0(zD)],width:v(CD,PD)+4},r);let G=D.getInternalMethods().getUsageConfiguration()["hide-types"]===!0;if(Q&&!G)i.div({text:Q,padding:[0,0,0,2],align:"right"});else i.div()}),i.div()}),Y.length)i.div(F("Examples:")),Y.forEach((x)=>{x[0]=x[0].replace(/\$0/g,f)}),Y.forEach((x)=>{if(x[1]==="")i.div({text:x[0],padding:[0,2,0,2]});else i.div({text:x[0],padding:[0,2,0,2],width:v(Y,PD)+4},{text:x[1]})}),i.div();if(W.length>0){let x=W.map((y)=>y.replace(/\$0/g,f)).join(`
17
- `);i.div(`${x}
18
- `)}return i.toString().replace(/\s*$/,"")};function v(_,f,R){let h=0;if(!Array.isArray(_))_=Object.values(_).map((t)=>[t]);if(_.forEach((t)=>{h=Math.max(u.stringWidth(R?`${R} ${Au(t[0])}`:Au(t[0]))+x0(t[0]),h)}),f)h=Math.min(h,parseInt((f*0.5).toString(),10));return h}function ZD(){let _=D.getDemandedOptions(),f=D.getOptions();(Object.keys(f.alias)||[]).forEach((R)=>{f.alias[R].forEach((h)=>{if(H[h])C.describe(R,H[h]);if(h in _)D.demandOption(R,_[h]);if(f.boolean.includes(h))D.boolean(R);if(f.count.includes(h))D.count(R);if(f.string.includes(h))D.string(R);if(f.normalize.includes(h))D.normalize(R);if(f.array.includes(h))D.array(R);if(f.number.includes(h))D.number(R)})})}let m;C.cacheHelpMessage=function(){m=this.help()},C.clearCachedHelpMessage=function(){m=void 0},C.hasCachedHelpMessage=function(){return!!m};function g(_,f,R,h){let t=[],DD=null;return Object.keys(R).forEach((p)=>{t=t.concat(R[p])}),_.forEach((p)=>{if(DD=[p].concat(f[p]),!DD.some((FD)=>t.indexOf(FD)!==-1))R[h].push(p)}),t}function uD(_){return D.getOptions().hiddenOptions.indexOf(_)<0||D.parsed.argv[D.getOptions().showHiddenOpt]}C.showHelp=(_)=>{let f=D.getInternalMethods().getLoggerInstance();if(!_)_="error";(typeof _==="function"?_:f[_])(C.help())},C.functionDescription=(_)=>{return["(",_.name?u.Parser.decamelize(_.name,"-"):F("generated-value"),")"].join("")},C.stringifiedValues=function(f,R){let h="",t=R||", ",DD=[].concat(f);if(!f||!DD.length)return h;return DD.forEach((p)=>{if(h.length)h+=t;h+=JSON.stringify(p)}),h};function s(_,f){let R=`[${F("default:")} `;if(_===void 0&&!f)return null;if(f)R+=f;else switch(typeof _){case"string":R+=`"${_}"`;break;case"object":R+=JSON.stringify(_);break;default:R+=_}return`${R}]`}function KD(){if(u.process.stdColumns)return Math.min(80,u.process.stdColumns);else return 80}let k=null;C.version=(_)=>{k=_},C.showVersion=(_)=>{let f=D.getInternalMethods().getLoggerInstance();if(!_)_="error";(typeof _==="function"?_:f[_])(k)},C.reset=function(f){return B=null,M=!1,O=[],V=!1,W=[],Y=[],q=[],H=bD(H,(R)=>!f[R]),C};let Mu=[];return C.freeze=function(){Mu.push({failMessage:B,failureOutput:M,usages:O,usageDisabled:V,epilogs:W,examples:Y,commands:q,descriptions:H})},C.unfreeze=function(f=!1){let R=Mu.pop();if(!R)return;if(f)H={...R.descriptions,...H},q=[...R.commands,...q],O=[...R.usages,...O],Y=[...R.examples,...Y],W=[...R.epilogs,...W];else({failMessage:B,failureOutput:M,usages:O,usageDisabled:V,epilogs:W,examples:Y,commands:q,descriptions:H}=R)},C}function MF(D){return typeof D==="object"}function S3(D,u){return MF(D)?{text:D.text,indentation:D.indentation+u}:{text:D,indentation:u}}function x0(D){return MF(D)?D.indentation:0}function Au(D){return MF(D)?D.text:D}var h0=`###-begin-{{app_name}}-completions-###
13
+ `).map((C)=>$3(C,u,F)).join(`
14
+ `)}function EF(D){return pF(D,{stringWidth:LD,stripAnsi:kD,wrap:CF})}import{dirname as M0,resolve as G0}from"path";import{readdirSync as z3,statSync as Z3}from"fs";function BF(D,u){let F=G0(".",D),C;if(!Z3(F).isDirectory())F=M0(F);while(!0){if(C=u(F,z3(F)),C)return G0(F,C);if(F=M0(C=F),C===F)break}}import{inspect as N3}from"util";import{fileURLToPath as f0}from"url";import{format as M3}from"util";import{normalize as G3,resolve as J3}from"path";function pD(D){if(!(D!==D.toLowerCase()&&D!==D.toUpperCase()))D=D.toLowerCase();if(D.indexOf("-")===-1&&D.indexOf("_")===-1)return D;else{let F="",C=!1,E=D.match(/^-+/);for(let B=E?E[0].length:0;B<D.length;B++){let $=D.charAt(B);if(C)C=!1,$=$.toUpperCase();if(B!==0&&($==="-"||$==="_"))C=!0;else if($!=="-"&&$!=="_")F+=$}return F}}function Au(D,u){let F=D.toLowerCase();u=u||"-";let C="";for(let E=0;E<D.length;E++){let B=F.charAt(E),$=D.charAt(E);if(B!==$&&E>0)C+=`${u}${F.charAt(E)}`;else C+=$}return C}function Su(D){if(D===null||D===void 0)return!1;if(typeof D==="number")return!0;if(/^0x[0-9a-f]+$/i.test(D))return!0;if(/^0[^.]/.test(D))return!1;return/^[-]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(D)}function J0(D){if(Array.isArray(D))return D.map(($)=>typeof $!=="string"?$+"":$);D=D.trim();let u=0,F=null,C=null,E=null,B=[];for(let $=0;$<D.length;$++){if(F=C,C=D.charAt($),C===" "&&!E){if(F!==" ")u++;continue}if(C===E)E=null;else if((C==="'"||C==='"')&&!E)E=C;if(!B[u])B[u]="";B[u]+=C}return B}var UD;(function(D){D.BOOLEAN="boolean",D.STRING="string",D.NUMBER="number",D.ARRAY="array"})(UD||(UD={}));var AD;class zF{constructor(D){AD=D}parse(D,u){let F=Object.assign({alias:void 0,array:void 0,boolean:void 0,config:void 0,configObjects:void 0,configuration:void 0,coerce:void 0,count:void 0,default:void 0,envPrefix:void 0,narg:void 0,normalize:void 0,string:void 0,number:void 0,__:void 0,key:void 0},u),C=J0(D),E=typeof D==="string",B=Q3(Object.assign(Object.create(null),F.alias)),$=Object.assign({"boolean-negation":!0,"camel-case-expansion":!0,"combine-arrays":!1,"dot-notation":!0,"duplicate-arguments-array":!0,"flatten-duplicate-arrays":!0,"greedy-arrays":!0,"halt-at-non-option":!1,"nargs-eats-options":!1,"negation-prefix":"no-","parse-numbers":!0,"parse-positional-numbers":!0,"populate--":!1,"set-placeholder-key":!1,"short-option-groups":!0,"strip-aliased":!1,"strip-dashed":!1,"unknown-options-as-args":!1},F.configuration),Z=Object.assign(Object.create(null),F.default),M=F.configObjects||[],H=F.envPrefix,V=$["populate--"],Y=V?"--":"_",q=Object.create(null),O=Object.create(null),W=F.__||AD.format,J={aliases:Object.create(null),arrays:Object.create(null),bools:Object.create(null),strings:Object.create(null),numbers:Object.create(null),counts:Object.create(null),normalize:Object.create(null),configs:Object.create(null),nargs:Object.create(null),coercions:Object.create(null),keys:[]},S=/^-([0-9]+(\.[0-9]+)?|\.[0-9]+)$/,d=new RegExp("^--"+$["negation-prefix"]+"(.+)");if([].concat(F.array||[]).filter(Boolean).forEach(function(Q){let G=typeof Q==="object"?Q.key:Q,T=Object.keys(Q).map(function(U){return{boolean:"bools",string:"strings",number:"numbers"}[U]}).filter(Boolean).pop();if(T)J[T][G]=!0;J.arrays[G]=!0,J.keys.push(G)}),[].concat(F.boolean||[]).filter(Boolean).forEach(function(Q){J.bools[Q]=!0,J.keys.push(Q)}),[].concat(F.string||[]).filter(Boolean).forEach(function(Q){J.strings[Q]=!0,J.keys.push(Q)}),[].concat(F.number||[]).filter(Boolean).forEach(function(Q){J.numbers[Q]=!0,J.keys.push(Q)}),[].concat(F.count||[]).filter(Boolean).forEach(function(Q){J.counts[Q]=!0,J.keys.push(Q)}),[].concat(F.normalize||[]).filter(Boolean).forEach(function(Q){J.normalize[Q]=!0,J.keys.push(Q)}),typeof F.narg==="object")Object.entries(F.narg).forEach(([Q,G])=>{if(typeof G==="number")J.nargs[Q]=G,J.keys.push(Q)});if(typeof F.coerce==="object")Object.entries(F.coerce).forEach(([Q,G])=>{if(typeof G==="function")J.coercions[Q]=G,J.keys.push(Q)});if(typeof F.config<"u"){if(Array.isArray(F.config)||typeof F.config==="string")[].concat(F.config).filter(Boolean).forEach(function(Q){J.configs[Q]=!0});else if(typeof F.config==="object")Object.entries(F.config).forEach(([Q,G])=>{if(typeof G==="boolean"||typeof G==="function")J.configs[Q]=G})}Yu(F.key,B,F.default,J.arrays),Object.keys(Z).forEach(function(Q){(J.aliases[Q]||[]).forEach(function(G){Z[G]=Z[Q]})});let v=null;au();let QD=[],m=Object.assign(Object.create(null),{_:[]}),l={};for(let Q=0;Q<C.length;Q++){let G=C[Q],T=G.replace(/^-{3,}/,"---"),U,X,_,I,A,BD;if(G!=="--"&&/^-/.test(G)&&g(G))uD(G);else if(T.match(/^---+(=|$)/)){uD(G);continue}else if(G.match(/^--.+=/)||!$["short-option-groups"]&&G.match(/^-.+=/)){if(I=G.match(/^--?([^=]+)=([\s\S]*)$/),I!==null&&Array.isArray(I)&&I.length>=3)if(P(I[1],J.arrays))Q=jD(Q,I[1],C,I[2]);else if(P(I[1],J.nargs)!==!1)Q=s(Q,I[1],C,I[2]);else y(I[1],I[2],!0)}else if(G.match(d)&&$["boolean-negation"]){if(I=G.match(d),I!==null&&Array.isArray(I)&&I.length>=2)X=I[1],y(X,P(X,J.arrays)?[!1]:!1)}else if(G.match(/^--.+/)||!$["short-option-groups"]&&G.match(/^-[^-]+/)){if(I=G.match(/^--?(.+)/),I!==null&&Array.isArray(I)&&I.length>=2)if(X=I[1],P(X,J.arrays))Q=jD(Q,X,C);else if(P(X,J.nargs)!==!1)Q=s(Q,X,C);else if(A=C[Q+1],A!==void 0&&(!A.match(/^-/)||A.match(S))&&!P(X,J.bools)&&!P(X,J.counts))y(X,A),Q++;else if(/^(true|false)$/.test(A))y(X,A),Q++;else y(X,c(X))}else if(G.match(/^-.\..+=/)){if(I=G.match(/^-([^=]+)=([\s\S]*)$/),I!==null&&Array.isArray(I)&&I.length>=3)y(I[1],I[2])}else if(G.match(/^-.\..+/)&&!G.match(S)){if(A=C[Q+1],I=G.match(/^-(.\..+)/),I!==null&&Array.isArray(I)&&I.length>=2)if(X=I[1],A!==void 0&&!A.match(/^-/)&&!P(X,J.bools)&&!P(X,J.counts))y(X,A),Q++;else y(X,c(X))}else if(G.match(/^-[^-]+/)&&!G.match(S)){_=G.slice(1,-1).split(""),U=!1;for(let MD=0;MD<_.length;MD++){if(A=G.slice(MD+2),_[MD+1]&&_[MD+1]==="="){if(BD=G.slice(MD+3),X=_[MD],P(X,J.arrays))Q=jD(Q,X,C,BD);else if(P(X,J.nargs)!==!1)Q=s(Q,X,C,BD);else y(X,BD);U=!0;break}if(A==="-"){y(_[MD],A);continue}if(/[A-Za-z]/.test(_[MD])&&/^-?\d+(\.\d*)?(e-?\d+)?$/.test(A)&&P(A,J.bools)===!1){y(_[MD],A),U=!0;break}if(_[MD+1]&&_[MD+1].match(/\W/)){y(_[MD],A),U=!0;break}else y(_[MD],c(_[MD]))}if(X=G.slice(-1)[0],!U&&X!=="-")if(P(X,J.arrays))Q=jD(Q,X,C);else if(P(X,J.nargs)!==!1)Q=s(Q,X,C);else if(A=C[Q+1],A!==void 0&&(!/^(-|--)[^-]/.test(A)||A.match(S))&&!P(X,J.bools)&&!P(X,J.counts))y(X,A),Q++;else if(/^(true|false)$/.test(A))y(X,A),Q++;else y(X,c(X))}else if(G.match(/^-[0-9]$/)&&G.match(S)&&P(G.slice(1),J.bools))X=G.slice(1),y(X,c(X));else if(G==="--"){QD=C.slice(Q+1);break}else if($["halt-at-non-option"]){QD=C.slice(Q);break}else uD(G)}if(DD(m,!0),DD(m,!1),R(m),p(),PD(m,J.aliases,Z,!0),k(m),$["set-placeholder-key"])FD(m);if(Object.keys(J.counts).forEach(function(Q){if(!t(m,Q.split(".")))y(Q,0)}),V&&QD.length)m[Y]=[];if(QD.forEach(function(Q){m[Y].push(Q)}),$["camel-case-expansion"]&&$["strip-dashed"])Object.keys(m).filter((Q)=>Q!=="--"&&Q.includes("-")).forEach((Q)=>{delete m[Q]});if($["strip-aliased"])[].concat(...Object.keys(B).map((Q)=>B[Q])).forEach((Q)=>{if($["camel-case-expansion"]&&Q.includes("-"))delete m[Q.split(".").map((G)=>pD(G)).join(".")];delete m[Q]});function uD(Q){let G=L("_",Q);if(typeof G==="string"||typeof G==="number")m._.push(G)}function s(Q,G,T,U){let X,_=P(G,J.nargs);if(_=typeof _!=="number"||isNaN(_)?1:_,_===0){if(!ED(U))v=Error(W("Argument unexpected for: %s",G));return y(G,c(G)),Q}let I=ED(U)?0:1;if($["nargs-eats-options"]){if(T.length-(Q+1)+I<_)v=Error(W("Not enough arguments following: %s",G));I=_}else{for(X=Q+1;X<T.length;X++)if(!T[X].match(/^-[^0-9]/)||T[X].match(S)||g(T[X]))I++;else break;if(I<_)v=Error(W("Not enough arguments following: %s",G))}let A=Math.min(I,_);if(!ED(U)&&A>0)y(G,U),A--;for(X=Q+1;X<A+Q+1;X++)y(G,T[X]);return Q+A}function jD(Q,G,T,U){let X=[],_=U||T[Q+1],I=P(G,J.nargs);if(P(G,J.bools)&&!/^(true|false)$/.test(_))X.push(!0);else if(ED(_)||ED(U)&&/^-/.test(_)&&!S.test(_)&&!g(_)){if(Z[G]!==void 0){let A=Z[G];X=Array.isArray(A)?A:[A]}}else{if(!ED(U))X.push(N(G,U,!0));for(let A=Q+1;A<T.length;A++){if(!$["greedy-arrays"]&&X.length>0||I&&typeof I==="number"&&X.length>=I)break;if(_=T[A],/^-/.test(_)&&!S.test(_)&&!g(_))break;Q=A,X.push(N(G,_,E))}}if(typeof I==="number"&&(I&&X.length<I||isNaN(I)&&X.length===0))v=Error(W("Not enough arguments following: %s",G));return y(G,X),Q}function y(Q,G,T=E){if(/-/.test(Q)&&$["camel-case-expansion"]){let _=Q.split(".").map(function(I){return pD(I)}).join(".");Ju(Q,_)}let U=N(Q,G,T),X=Q.split(".");if(fD(m,X,U),J.aliases[Q])J.aliases[Q].forEach(function(_){let I=_.split(".");fD(m,I,U)});if(X.length>1&&$["dot-notation"])(J.aliases[X[0]]||[]).forEach(function(_){let I=_.split("."),A=[].concat(X);if(A.shift(),I=I.concat(A),!(J.aliases[Q]||[]).includes(I.join(".")))fD(m,I,U)});if(P(Q,J.normalize)&&!P(Q,J.arrays))[Q].concat(J.aliases[Q]||[]).forEach(function(I){Object.defineProperty(l,I,{enumerable:!0,get(){return G},set(A){G=typeof A==="string"?AD.normalize(A):A}})})}function Ju(Q,G){if(!(J.aliases[Q]&&J.aliases[Q].length))J.aliases[Q]=[G],q[G]=!0;if(!(J.aliases[G]&&J.aliases[G].length))Ju(G,Q)}function N(Q,G,T){if(T)G=X3(G);if(P(Q,J.bools)||P(Q,J.counts)){if(typeof G==="string")G=G==="true"}let U=Array.isArray(G)?G.map(function(X){return L(Q,X)}):L(Q,G);if(P(Q,J.counts)&&(ED(U)||typeof U==="boolean"))U=$F();if(P(Q,J.normalize)&&P(Q,J.arrays))if(Array.isArray(G))U=G.map((X)=>{return AD.normalize(X)});else U=AD.normalize(G);return U}function L(Q,G){if(!$["parse-positional-numbers"]&&Q==="_")return G;if(!P(Q,J.strings)&&!P(Q,J.bools)&&!Array.isArray(G)){if(Su(G)&&$["parse-numbers"]&&Number.isSafeInteger(Math.floor(parseFloat(`${G}`)))||!ED(G)&&P(Q,J.numbers))G=Number(G)}return G}function R(Q){let G=Object.create(null);PD(G,J.aliases,Z),Object.keys(J.configs).forEach(function(T){let U=Q[T]||G[T];if(U)try{let X=null,_=AD.resolve(AD.cwd(),U),I=J.configs[T];if(typeof I==="function"){try{X=I(_)}catch(A){X=A}if(X instanceof Error){v=X;return}}else X=AD.require(_);h(X)}catch(X){if(X.name==="PermissionDenied")v=X;else if(Q[T])v=Error(W("Invalid JSON config file: %s",U))}})}function h(Q,G){Object.keys(Q).forEach(function(T){let U=Q[T],X=G?G+"."+T:T;if(typeof U==="object"&&U!==null&&!Array.isArray(U)&&$["dot-notation"])h(U,X);else if(!t(m,X.split("."))||P(X,J.arrays)&&$["combine-arrays"])y(X,U)})}function p(){if(typeof M<"u")M.forEach(function(Q){h(Q)})}function DD(Q,G){if(typeof H>"u")return;let T=typeof H==="string"?H:"",U=AD.env();Object.keys(U).forEach(function(X){if(T===""||X.lastIndexOf(T,0)===0){let _=X.split("__").map(function(I,A){if(A===0)I=I.substring(T.length);return pD(I)});if((G&&J.configs[_.join(".")]||!G)&&!t(Q,_))y(_.join("."),U[X])}})}function k(Q){let G,T=new Set;Object.keys(Q).forEach(function(U){if(!T.has(U)){if(G=P(U,J.coercions),typeof G==="function")try{let X=L(U,G(Q[U]));[].concat(J.aliases[U]||[],U).forEach((_)=>{T.add(_),Q[_]=X})}catch(X){v=X}}})}function FD(Q){return J.keys.forEach((G)=>{if(~G.indexOf("."))return;if(typeof Q[G]>"u")Q[G]=void 0}),Q}function PD(Q,G,T,U=!1){Object.keys(T).forEach(function(X){if(!t(Q,X.split("."))){if(fD(Q,X.split("."),T[X]),U)O[X]=!0;(G[X]||[]).forEach(function(_){if(t(Q,_.split(".")))return;fD(Q,_.split("."),T[X])})}})}function t(Q,G){let T=Q;if(!$["dot-notation"])G=[G.join(".")];G.slice(0,-1).forEach(function(X){T=T[X]||{}});let U=G[G.length-1];if(typeof T!=="object")return!1;else return U in T}function fD(Q,G,T){let U=Q;if(!$["dot-notation"])G=[G.join(".")];G.slice(0,-1).forEach(function(BD){if(BD=Y0(BD),typeof U==="object"&&U[BD]===void 0)U[BD]={};if(typeof U[BD]!=="object"||Array.isArray(U[BD])){if(Array.isArray(U[BD]))U[BD].push({});else U[BD]=[U[BD],{}];U=U[BD][U[BD].length-1]}else U=U[BD]});let X=Y0(G[G.length-1]),_=P(G.join("."),J.arrays),I=Array.isArray(T),A=$["duplicate-arguments-array"];if(!A&&P(X,J.nargs)){if(A=!0,!ED(U[X])&&J.nargs[X]===1||Array.isArray(U[X])&&U[X].length===J.nargs[X])U[X]=void 0}if(T===$F())U[X]=$F(U[X]);else if(Array.isArray(U[X]))if(A&&_&&I)U[X]=$["flatten-duplicate-arrays"]?U[X].concat(T):(Array.isArray(U[X][0])?U[X]:[U[X]]).concat([T]);else if(!A&&Boolean(_)===Boolean(I))U[X]=T;else U[X]=U[X].concat([T]);else if(U[X]===void 0&&_)U[X]=I?T:[T];else if(A&&!(U[X]===void 0||P(X,J.counts)||P(X,J.bools)))U[X]=[U[X],T];else U[X]=T}function Yu(...Q){Q.forEach(function(G){Object.keys(G||{}).forEach(function(T){if(J.aliases[T])return;J.aliases[T]=[].concat(B[T]||[]),J.aliases[T].concat(T).forEach(function(U){if(/-/.test(U)&&$["camel-case-expansion"]){let X=pD(U);if(X!==T&&J.aliases[T].indexOf(X)===-1)J.aliases[T].push(X),q[X]=!0}}),J.aliases[T].concat(T).forEach(function(U){if(U.length>1&&/[A-Z]/.test(U)&&$["camel-case-expansion"]){let X=Au(U,"-");if(X!==T&&J.aliases[T].indexOf(X)===-1)J.aliases[T].push(X),q[X]=!0}}),J.aliases[T].forEach(function(U){J.aliases[U]=[T].concat(J.aliases[T].filter(function(X){return U!==X}))})})})}function P(Q,G){let T=[].concat(J.aliases[Q]||[],Q),U=Object.keys(G),X=T.find((_)=>U.includes(_));return X?G[X]:!1}function Eu(Q){let G=Object.keys(J);return[].concat(G.map((U)=>J[U])).some(function(U){return Array.isArray(U)?U.includes(Q):U[Q]})}function vF(Q,...G){return[].concat(...G).some(function(U){let X=Q.match(U);return X&&Eu(X[1])})}function x(Q){if(Q.match(S)||!Q.match(/^-[^-]+/))return!1;let G=!0,T,U=Q.slice(1).split("");for(let X=0;X<U.length;X++){if(T=Q.slice(X+2),!Eu(U[X])){G=!1;break}if(U[X+1]&&U[X+1]==="="||T==="-"||/[A-Za-z]/.test(U[X])&&/^-?\d+(\.\d*)?(e-?\d+)?$/.test(T)||U[X+1]&&U[X+1].match(/\W/))break}return G}function g(Q){return $["unknown-options-as-args"]&&CD(Q)}function CD(Q){if(Q=Q.replace(/^-{3,}/,"--"),Q.match(S))return!1;if(x(Q))return!1;return!vF(Q,/^-+([^=]+?)=[\s\S]*$/,d,/^-+([^=]+?)$/,/^-+([^=]+?)-$/,/^-+([^=]+?\d+)$/,/^-+([^=]+?)\W+.*$/)}function c(Q){if(!P(Q,J.bools)&&!P(Q,J.counts)&&`${Q}`in Z)return Z[Q];else return zD(r(Q))}function zD(Q){return{[UD.BOOLEAN]:!0,[UD.STRING]:"",[UD.NUMBER]:void 0,[UD.ARRAY]:[]}[Q]}function r(Q){let G=UD.BOOLEAN;if(P(Q,J.strings))G=UD.STRING;else if(P(Q,J.numbers))G=UD.NUMBER;else if(P(Q,J.bools))G=UD.BOOLEAN;else if(P(Q,J.arrays))G=UD.ARRAY;return G}function ED(Q){return Q===void 0}function au(){Object.keys(J.counts).find((Q)=>{if(P(Q,J.arrays))return v=Error(W("Invalid configuration: %s, opts.count excludes opts.array.",Q)),!0;else if(P(Q,J.nargs))return v=Error(W("Invalid configuration: %s, opts.count excludes opts.narg.",Q)),!0;return!1})}return{aliases:Object.assign({},J.aliases),argv:Object.assign(l,m),configuration:$,defaulted:Object.assign({},O),error:v,newAliases:Object.assign({},q)}}}function Q3(D){let u=[],F=Object.create(null),C=!0;Object.keys(D).forEach(function(E){u.push([].concat(D[E],E))});while(C){C=!1;for(let E=0;E<u.length;E++)for(let B=E+1;B<u.length;B++)if(u[E].filter(function(Z){return u[B].indexOf(Z)!==-1}).length){u[E]=u[E].concat(u[B]),u.splice(B,1),C=!0;break}}return u.forEach(function(E){E=E.filter(function($,Z,M){return M.indexOf($)===Z});let B=E.pop();if(B!==void 0&&typeof B==="string")F[B]=E}),F}function $F(D){return D!==void 0?D+1:1}function Y0(D){if(D==="__proto__")return"___proto___";return D}function X3(D){return typeof D==="string"&&(D[0]==="'"||D[0]==='"')&&D[D.length-1]===D[0]?D.substring(1,D.length-1):D}import{readFileSync as Y3}from"fs";import{createRequire as q0}from"module";var ZF,QF,XF,H0=process&&process.env&&process.env.YARGS_MIN_NODE_VERSION?Number(process.env.YARGS_MIN_NODE_VERSION):20,O0=(QF=(ZF=process===null||process===void 0?void 0:process.versions)===null||ZF===void 0?void 0:ZF.node)!==null&&QF!==void 0?QF:(XF=process===null||process===void 0?void 0:process.version)===null||XF===void 0?void 0:XF.slice(1);if(O0){if(Number(O0.match(/^([^.]+)/)[1])<H0)throw Error(`yargs parser supports a minimum Node.js version of ${H0}. Read our version support policy: https://github.com/yargs/yargs-parser#supported-nodejs-versions`)}var q3=process?process.env:{},U0=q0?q0(import.meta.url):void 0,W0=new zF({cwd:process.cwd,env:()=>{return q3},format:M3,normalize:G3,resolve:J3,require:(D)=>{if(typeof U0<"u")return U0(D);else if(D.match(/\.json$/))return JSON.parse(Y3(D,"utf8"));else throw Error("only .json config files are supported in ESM")}}),qu=function(u,F){return W0.parse(u.slice(),F).argv};qu.detailed=function(D,u){return W0.parse(D.slice(),u)};qu.camelCase=pD;qu.decamelize=Au;qu.looksLikeNumber=Su;var V0=qu;import{basename as R3,dirname as f3,extname as A3,relative as S3,resolve as R0,join as P3}from"path";function H3(){if(O3())return 0;return 1}function O3(){return U3()&&!process.defaultApp}function U3(){return!!process.versions.electron}function T0(){return process.argv[H3()]}import{readFileSync as W3,statSync as V3,writeFile as T3}from"fs";import{format as L3}from"util";import{resolve as I3}from"path";var L0={fs:{readFileSync:W3,writeFile:T3},format:L3,resolve:I3,exists:(D)=>{try{return V3(D).isFile()}catch(u){return!1}}};var ID;class I0{constructor(D){D=D||{},this.directory=D.directory||"./locales",this.updateFiles=typeof D.updateFiles==="boolean"?D.updateFiles:!0,this.locale=D.locale||"en",this.fallbackToLanguage=typeof D.fallbackToLanguage==="boolean"?D.fallbackToLanguage:!0,this.cache=Object.create(null),this.writeQueue=[]}__(...D){if(typeof arguments[0]!=="string")return this._taggedLiteral(arguments[0],...arguments);let u=D.shift(),F=function(){};if(typeof D[D.length-1]==="function")F=D.pop();if(F=F||function(){},!this.cache[this.locale])this._readLocaleFile();if(!this.cache[this.locale][u]&&this.updateFiles)this.cache[this.locale][u]=u,this._enqueueWrite({directory:this.directory,locale:this.locale,cb:F});else F();return ID.format.apply(ID.format,[this.cache[this.locale][u]||u].concat(D))}__n(){let D=Array.prototype.slice.call(arguments),u=D.shift(),F=D.shift(),C=D.shift(),E=function(){};if(typeof D[D.length-1]==="function")E=D.pop();if(!this.cache[this.locale])this._readLocaleFile();let B=C===1?u:F;if(this.cache[this.locale][u])B=this.cache[this.locale][u][C===1?"one":"other"];if(!this.cache[this.locale][u]&&this.updateFiles)this.cache[this.locale][u]={one:u,other:F},this._enqueueWrite({directory:this.directory,locale:this.locale,cb:E});else E();let $=[B];if(~B.indexOf("%d"))$.push(C);return ID.format.apply(ID.format,$.concat(D))}setLocale(D){this.locale=D}getLocale(){return this.locale}updateLocale(D){if(!this.cache[this.locale])this._readLocaleFile();for(let u in D)if(Object.prototype.hasOwnProperty.call(D,u))this.cache[this.locale][u]=D[u]}_taggedLiteral(D,...u){let F="";return D.forEach(function(C,E){let B=u[E+1];if(F+=C,typeof B<"u")F+="%s"}),this.__.apply(this,[F].concat([].slice.call(u,1)))}_enqueueWrite(D){if(this.writeQueue.push(D),this.writeQueue.length===1)this._processWriteQueue()}_processWriteQueue(){let D=this,u=this.writeQueue[0],F=u.directory,C=u.locale,E=u.cb,B=this._resolveLocaleFile(F,C),$=JSON.stringify(this.cache[C],null,2);ID.fs.writeFile(B,$,"utf-8",function(Z){if(D.writeQueue.shift(),D.writeQueue.length>0)D._processWriteQueue();E(Z)})}_readLocaleFile(){let D={},u=this._resolveLocaleFile(this.directory,this.locale);try{if(ID.fs.readFileSync)D=JSON.parse(ID.fs.readFileSync(u,"utf-8"))}catch(F){if(F instanceof SyntaxError)F.message="syntax error in "+u;if(F.code==="ENOENT")D={};else throw F}this.cache[this.locale]=D}_resolveLocaleFile(D,u){let F=ID.resolve(D,"./",u+".json");if(this.fallbackToLanguage&&!this._fileExistsSync(F)&&~u.lastIndexOf("_")){let C=ID.resolve(D,"./",u.split("_")[0]+".json");if(this._fileExistsSync(C))F=C}return F}_fileExistsSync(D){return ID.exists(D)}}function K0(D,u){ID=u;let F=new I0(D);return{__:F.__.bind(F),__n:F.__n.bind(F),setLocale:F.setLocale.bind(F),getLocale:F.getLocale.bind(F),updateLocale:F.updateLocale.bind(F),locale:F.locale}}var K3=(D)=>{return K0(D,L0)},j0=K3;var A0=v8(N0(),1);import{createRequire as x3}from"module";import{readFileSync as b3,readdirSync as h3}from"fs";var MF=f0(import.meta.url),w3=MF.substring(0,MF.lastIndexOf("node_modules")),m3=x3(import.meta.url),S0={assert:{notStrictEqual:j3,strictEqual:_3},cliui:EF,findUp:BF,getEnv:(D)=>{return process.env[D]},inspect:N3,getProcessArgvBin:T0,mainFilename:w3||process.cwd(),Parser:V0,path:{basename:R3,dirname:f3,extname:A3,relative:S3,resolve:R0,join:P3},process:{argv:()=>process.argv,cwd:process.cwd,emitWarning:(D,u)=>process.emitWarning(D,u),execPath:()=>process.execPath,exit:(D)=>{process.exit(D)},nextTick:process.nextTick,stdColumns:typeof process.stdout.columns<"u"?process.stdout.columns:null},readFileSync:b3,readdirSync:h3,require:m3,getCallerFile:()=>{let D=A0.default(3);return D.match(/^file:\/\//)?f0(D):D},stringWidth:LD,y18n:j0({directory:R0(MF,"../../../locales"),updateFiles:!1})};function GD(D,u,F,C){F.assert.notStrictEqual(D,u,C)}function GF(D,u){u.assert.strictEqual(typeof D,"string")}function Bu(D){return Object.keys(D)}function i(D){return!!D&&!!D.then&&typeof D.then==="function"}class a extends Error{constructor(D){super(D||"yargs error");if(this.name="YError",Error.captureStackTrace)Error.captureStackTrace(this,a)}}function xD(D){let F=D.replace(/\s{2,}/g," ").split(/\s+(?![^[]*]|[^<]*>)/),C=/\.*[\][<>]/g,E=F.shift();if(!E)throw Error(`No command found in: ${D}`);let B={cmd:E.replace(C,""),demanded:[],optional:[]};return F.forEach(($,Z)=>{let M=!1;if($=$.replace(/\s/g,""),/\.+[\]>]/.test($)&&Z===F.length-1)M=!0;if(/^\[/.test($))B.optional.push({cmd:$.replace(C,"").split("|"),variadic:M});else B.demanded.push({cmd:$.replace(C,"").split("|"),variadic:M})}),B}var v3=["first","second","third","fourth","fifth","sixth"];function K(D,u,F){function C(){return typeof D==="object"?[{demanded:[],optional:[]},D,u]:[xD(`cmd ${D}`),u,F]}try{let E=0,[B,$,Z]=C(),M=[].slice.call($);while(M.length&&M[M.length-1]===void 0)M.pop();let H=Z||M.length;if(H<B.demanded.length)throw new a(`Not enough arguments provided. Expected ${B.demanded.length} but received ${M.length}.`);let V=B.demanded.length+B.optional.length;if(H>V)throw new a(`Too many arguments provided. Expected max ${V} but received ${H}.`);B.demanded.forEach((Y)=>{let q=M.shift(),O=P0(q);if(Y.cmd.filter((J)=>J===O||J==="*").length===0)x0(O,Y.cmd,E);E+=1}),B.optional.forEach((Y)=>{if(M.length===0)return;let q=M.shift(),O=P0(q);if(Y.cmd.filter((J)=>J===O||J==="*").length===0)x0(O,Y.cmd,E);E+=1})}catch(E){console.warn(E.stack)}}function P0(D){if(Array.isArray(D))return"array";else if(D===null)return"null";return typeof D}function x0(D,u,F){throw new a(`Invalid ${v3[F]||"manyith"} argument. Expected ${u.join(" or ")} but received ${D}.`)}class JF{constructor(D){this.globalMiddleware=[],this.frozens=[],this.yargs=D}addMiddleware(D,u,F=!0,C=!1){if(K("<array|function> [boolean] [boolean] [boolean]",[D,u,F],arguments.length),Array.isArray(D)){for(let E=0;E<D.length;E++){if(typeof D[E]!=="function")throw Error("middleware must be a function");let B=D[E];B.applyBeforeValidation=u,B.global=F}Array.prototype.push.apply(this.globalMiddleware,D)}else if(typeof D==="function"){let E=D;E.applyBeforeValidation=u,E.global=F,E.mutates=C,this.globalMiddleware.push(D)}return this.yargs}addCoerceMiddleware(D,u){let F=this.yargs.getAliases();return this.globalMiddleware=this.globalMiddleware.filter((C)=>{let E=[...F[u]||[],u];if(!C.option)return!0;else return!E.includes(C.option)}),D.option=u,this.addMiddleware(D,!0,!0,!0)}getMiddleware(){return this.globalMiddleware}freeze(){this.frozens.push([...this.globalMiddleware])}unfreeze(){let D=this.frozens.pop();if(D!==void 0)this.globalMiddleware=D}reset(){this.globalMiddleware=this.globalMiddleware.filter((D)=>D.global)}}function b0(D){if(!D)return[];return D.map((u)=>{return u.applyBeforeValidation=!1,u})}function yD(D,u,F,C){return F.reduce((E,B)=>{if(B.applyBeforeValidation!==C)return E;if(B.mutates){if(B.applied)return E;B.applied=!0}if(i(E))return E.then(($)=>Promise.all([$,B($,u)])).then(([$,Z])=>Object.assign($,Z));else{let $=B(E,u);return i($)?$.then((Z)=>Object.assign(E,Z)):Object.assign(E,$)}},D)}function gD(D,u,F=(C)=>{throw C}){try{let C=c3(D)?D():D;return i(C)?C.then((E)=>u(E)):u(C)}catch(C){return F(C)}}function c3(D){return typeof D==="function"}var $u=/(^\*)|(^\$0)/;class w0{constructor(D,u,F,C){this.requireCache=new Set,this.handlers={},this.aliasMap={},this.frozens=[],this.shim=C,this.usage=D,this.globalMiddleware=F,this.validation=u}addDirectory(D,u,F,C){C=C||{},this.requireCache.add(F);let E=this.shim.path.resolve(this.shim.path.dirname(F),D),B=this.shim.readdirSync(E,{recursive:C.recurse?!0:!1});if(!Array.isArray(C.extensions))C.extensions=["js"];let $=typeof C.visit==="function"?C.visit:(Z)=>Z;for(let Z of B){let M=Z.toString();if(C.exclude){let V=!1;if(typeof C.exclude==="function")V=C.exclude(M);else V=C.exclude.test(M);if(V)continue}if(C.include){let V=!1;if(typeof C.include==="function")V=C.include(M);else V=C.include.test(M);if(!V)continue}let H=!1;for(let V of C.extensions)if(M.endsWith(V))H=!0;if(H){let V=this.shim.path.join(E,M),Y=u(V),q=Object.create(null,Object.getOwnPropertyDescriptors({...Y}));if($(q,V,M)){if(this.requireCache.has(V))continue;else this.requireCache.add(V);if(!q.command)q.command=this.shim.path.basename(V,this.shim.path.extname(V));this.addHandler(q)}}}}addHandler(D,u,F,C,E,B){let $=[],Z=b0(E);if(C=C||(()=>{}),Array.isArray(D))if(d3(D))[D,...$]=D;else for(let M of D)this.addHandler(M);else if(p3(D)){let M=Array.isArray(D.command)||typeof D.command==="string"?D.command:null;if(M===null)throw Error(`No command name given for module: ${this.shim.inspect(D)}`);if(D.aliases)M=[].concat(M).concat(D.aliases);this.addHandler(M,this.extractDesc(D),D.builder,D.handler,D.middlewares,D.deprecated);return}else if(h0(F)){this.addHandler([D].concat($),u,F.builder,F.handler,F.middlewares,F.deprecated);return}if(typeof D==="string"){let M=xD(D);$=$.map((Y)=>xD(Y).cmd);let H=!1,V=[M.cmd].concat($).filter((Y)=>{if($u.test(Y))return H=!0,!1;return!0});if(V.length===0&&H)V.push("$0");if(H)M.cmd=V[0],$=V.slice(1),D=D.replace($u,M.cmd);if($.forEach((Y)=>{this.aliasMap[Y]=M.cmd}),u!==!1)this.usage.command(D,u,H,$,B);if(this.handlers[M.cmd]={original:D,description:u,handler:C,builder:F||{},middlewares:Z,deprecated:B,demanded:M.demanded,optional:M.optional},H)this.defaultCommand=this.handlers[M.cmd]}}getCommandHandlers(){return this.handlers}getCommands(){return Object.keys(this.handlers).concat(Object.keys(this.aliasMap))}hasDefaultCommand(){return!!this.defaultCommand}runCommand(D,u,F,C,E,B){let $=this.handlers[D]||this.handlers[this.aliasMap[D]]||this.defaultCommand,Z=u.getInternalMethods().getContext(),M=Z.commands.slice(),H=!D;if(D)Z.commands.push(D),Z.fullCommands.push($.original);let V=this.applyBuilderUpdateUsageAndParse(H,$,u,F.aliases,M,C,E,B);return i(V)?V.then((Y)=>this.applyMiddlewareAndGetResult(H,$,Y.innerArgv,Z,E,Y.aliases,u)):this.applyMiddlewareAndGetResult(H,$,V.innerArgv,Z,E,V.aliases,u)}applyBuilderUpdateUsageAndParse(D,u,F,C,E,B,$,Z){let M=u.builder,H=F;if(Pu(M)){F.getInternalMethods().getUsageInstance().freeze();let V=M(F.getInternalMethods().reset(C),Z);if(i(V))return V.then((Y)=>{return H=v0(Y)?Y:F,this.parseAndUpdateUsage(D,u,H,E,B,$)})}else if(k3(M))F.getInternalMethods().getUsageInstance().freeze(),H=F.getInternalMethods().reset(C),Object.keys(u.builder).forEach((V)=>{H.option(V,M[V])});return this.parseAndUpdateUsage(D,u,H,E,B,$)}parseAndUpdateUsage(D,u,F,C,E,B){if(D)F.getInternalMethods().getUsageInstance().unfreeze(!0);if(this.shouldUpdateUsage(F))F.getInternalMethods().getUsageInstance().usage(this.usageFromParentCommandsCommandHandler(C,u),u.description);let $=F.getInternalMethods().runYargsParserAndExecuteCommands(null,void 0,!0,E,B);return i($)?$.then((Z)=>({aliases:F.parsed.aliases,innerArgv:Z})):{aliases:F.parsed.aliases,innerArgv:$}}shouldUpdateUsage(D){return!D.getInternalMethods().getUsageInstance().getUsageDisabled()&&D.getInternalMethods().getUsageInstance().getUsage().length===0}usageFromParentCommandsCommandHandler(D,u){let F=$u.test(u.original)?u.original.replace($u,"").trim():u.original,C=D.filter((E)=>{return!$u.test(E)});return C.push(F),`$0 ${C.join(" ")}`}handleValidationAndGetResult(D,u,F,C,E,B,$,Z){if(!B.getInternalMethods().getHasOutput()){let M=B.getInternalMethods().runValidation(E,Z,B.parsed.error,D);F=gD(F,(H)=>{return M(H),H})}if(u.handler&&!B.getInternalMethods().getHasOutput()){B.getInternalMethods().setHasOutput();let M=!!B.getOptions().configuration["populate--"];if(B.getInternalMethods().postProcess(F,M,!1,!1),F=yD(F,B,$,!1),F=gD(F,(H)=>{let V=u.handler(H);return i(V)?V.then(()=>H):H}),!D)B.getInternalMethods().getUsageInstance().cacheHelpMessage();if(i(F)&&!B.getInternalMethods().hasParseCallback())F.catch((H)=>{try{B.getInternalMethods().getUsageInstance().fail(null,H)}catch(V){}})}if(!D)C.commands.pop(),C.fullCommands.pop();return F}applyMiddlewareAndGetResult(D,u,F,C,E,B,$){let Z={};if(E)return F;if(!$.getInternalMethods().getHasOutput())Z=this.populatePositionals(u,F,C,$);let M=this.globalMiddleware.getMiddleware().slice(0).concat(u.middlewares),H=yD(F,$,M,!0);return i(H)?H.then((V)=>this.handleValidationAndGetResult(D,u,V,C,B,$,M,Z)):this.handleValidationAndGetResult(D,u,H,C,B,$,M,Z)}populatePositionals(D,u,F,C){u._=u._.slice(F.commands.length);let E=D.demanded.slice(0),B=D.optional.slice(0),$={};this.validation.positionalCount(E.length,u._.length);while(E.length){let Z=E.shift();this.populatePositional(Z,u,$)}while(B.length){let Z=B.shift();this.populatePositional(Z,u,$)}return u._=F.commands.concat(u._.map((Z)=>""+Z)),this.postProcessPositionals(u,$,this.cmdToParseOptions(D.original),C),$}populatePositional(D,u,F){let C=D.cmd[0];if(D.variadic)F[C]=u._.splice(0).map(String);else if(u._.length)F[C]=[String(u._.shift())]}cmdToParseOptions(D){let u={array:[],default:{},alias:{},demand:{}},F=xD(D);return F.demanded.forEach((C)=>{let[E,...B]=C.cmd;if(C.variadic)u.array.push(E),u.default[E]=[];u.alias[E]=B,u.demand[E]=!0}),F.optional.forEach((C)=>{let[E,...B]=C.cmd;if(C.variadic)u.array.push(E),u.default[E]=[];u.alias[E]=B}),u}postProcessPositionals(D,u,F,C){let E=Object.assign({},C.getOptions());E.default=Object.assign(F.default,E.default);for(let M of Object.keys(F.alias))E.alias[M]=(E.alias[M]||[]).concat(F.alias[M]);E.array=E.array.concat(F.array),E.config={};let B=[];if(Object.keys(u).forEach((M)=>{u[M].map((H)=>{if(E.configuration["unknown-options-as-args"])E.key[M]=!0;B.push(`--${M}`),B.push(H)})}),!B.length)return;let $=Object.assign({},E.configuration,{"populate--":!1}),Z=this.shim.Parser.detailed(B,Object.assign({},E,{configuration:$}));if(Z.error)C.getInternalMethods().getUsageInstance().fail(Z.error.message,Z.error);else{let M=Object.keys(u);Object.keys(u).forEach((H)=>{M.push(...Z.aliases[H])}),Object.keys(Z.argv).forEach((H)=>{if(M.includes(H)){if(!u[H])u[H]=Z.argv[H];if(!this.isInConfigs(C,H)&&!this.isDefaulted(C,H)&&Object.prototype.hasOwnProperty.call(D,H)&&Object.prototype.hasOwnProperty.call(Z.argv,H)&&(Array.isArray(D[H])||Array.isArray(Z.argv[H])))D[H]=[].concat(D[H],Z.argv[H]);else D[H]=Z.argv[H]}})}}isDefaulted(D,u){let{default:F}=D.getOptions();return Object.prototype.hasOwnProperty.call(F,u)||Object.prototype.hasOwnProperty.call(F,this.shim.Parser.camelCase(u))}isInConfigs(D,u){let{configObjects:F}=D.getOptions();return F.some((C)=>Object.prototype.hasOwnProperty.call(C,u))||F.some((C)=>Object.prototype.hasOwnProperty.call(C,this.shim.Parser.camelCase(u)))}runDefaultBuilderOn(D){if(!this.defaultCommand)return;if(this.shouldUpdateUsage(D)){let F=$u.test(this.defaultCommand.original)?this.defaultCommand.original:this.defaultCommand.original.replace(/^[^[\]<>]*/,"$0 ");D.getInternalMethods().getUsageInstance().usage(F,this.defaultCommand.description)}let u=this.defaultCommand.builder;if(Pu(u))return u(D,!0);else if(!h0(u))Object.keys(u).forEach((F)=>{D.option(F,u[F])});return}extractDesc({describe:D,description:u,desc:F}){for(let C of[D,u,F]){if(typeof C==="string"||C===!1)return C;GD(C,!0,this.shim)}return!1}freeze(){this.frozens.push({handlers:this.handlers,aliasMap:this.aliasMap,defaultCommand:this.defaultCommand})}unfreeze(){let D=this.frozens.pop();GD(D,void 0,this.shim),{handlers:this.handlers,aliasMap:this.aliasMap,defaultCommand:this.defaultCommand}=D}reset(){return this.handlers={},this.aliasMap={},this.defaultCommand=void 0,this.requireCache=new Set,this}}function m0(D,u,F,C){return new w0(D,u,F,C)}function h0(D){return typeof D==="object"&&!!D.builder&&typeof D.handler==="function"}function d3(D){return D.every((u)=>typeof u==="string")}function Pu(D){return typeof D==="function"}function k3(D){return typeof D==="object"}function p3(D){return typeof D==="object"&&!Array.isArray(D)}function bD(D={},u=()=>!0){let F={};return Bu(D).forEach((C)=>{if(u(C,D[C]))F[C]=D[C]}),F}function hD(D){if(typeof process>"u")return;[process.stdout,process.stderr].forEach((u)=>{let F=u;if(F._handle&&F.isTTY&&typeof F._handle.setBlocking==="function")F._handle.setBlocking(D)})}function y3(D){return typeof D==="boolean"}function d0(D,u){let F=u.y18n.__,C={},E=[];C.failFn=function(L){E.push(L)};let B=null,$=null,Z=!0;C.showHelpOnFail=function(L=!0,R){let[h,p]=typeof L==="string"?[!0,L]:[L,R];if(D.getInternalMethods().isGlobalContext())$=p;return B=p,Z=h,C};let M=!1;C.fail=function(L,R){let h=D.getInternalMethods().getLoggerInstance();if(E.length)for(let p=E.length-1;p>=0;--p){let DD=E[p];if(y3(DD)){if(R)throw R;else if(L)throw Error(L)}else DD(L,R,C)}else{if(D.getExitProcess())hD(!0);if(!M){if(M=!0,Z)D.showHelp("error"),h.error();if(L||R)h.error(L||R);let p=B||$;if(p){if(L||R)h.error("");h.error(p)}}if(R=R||new a(L),D.getExitProcess())return D.exit(1);else if(D.getInternalMethods().hasParseCallback())return D.exit(1,R);else throw R}};let H=[],V=!1;C.usage=(N,L)=>{if(N===null)return V=!0,H=[],C;return V=!1,H.push([N,L||""]),C},C.getUsage=()=>{return H},C.getUsageDisabled=()=>{return V},C.getPositionalGroupName=()=>{return F("Positionals:")};let Y=[];C.example=(N,L)=>{Y.push([N,L||""])};let q=[];C.command=function(L,R,h,p,DD=!1){if(h)q=q.map((k)=>{return k[2]=!1,k});q.push([L,R||"",h,p,DD])},C.getCommands=()=>q;let O={};C.describe=function(L,R){if(Array.isArray(L))L.forEach((h)=>{C.describe(h,R)});else if(typeof L==="object")Object.keys(L).forEach((h)=>{C.describe(h,L[h])});else O[L]=R},C.getDescriptions=()=>O;let W=[];C.epilog=(N)=>{W.push(N)};let J=!1,S;C.wrap=(N)=>{J=!0,S=N},C.getWrap=()=>{if(u.getEnv("YARGS_DISABLE_WRAP"))return null;if(!J)S=jD(),J=!0;return S};let d="__yargsString__:";C.deferY18nLookup=(N)=>d+N,C.help=function(){if(m)return m;QD();let L=D.customScriptName?D.$0:u.path.basename(D.$0),R=D.getDemandedOptions(),h=D.getDemandedCommands(),p=D.getDeprecatedOptions(),DD=D.getGroups(),k=D.getOptions(),FD=[];FD=FD.concat(Object.keys(O)),FD=FD.concat(Object.keys(R)),FD=FD.concat(Object.keys(h)),FD=FD.concat(Object.keys(k.default)),FD=FD.filter(uD),FD=Object.keys(FD.reduce((x,g)=>{if(g!=="_")x[g]=!0;return x},{}));let PD=C.getWrap(),t=u.cliui({width:PD,wrap:!!PD});if(!V){if(H.length)H.forEach((x)=>{if(t.div({text:`${x[0].replace(/\$0/g,L)}`}),x[1])t.div({text:`${x[1]}`,padding:[1,0,0,0]})}),t.div();else if(q.length){let x=null;if(h._)x=`${L} <${F("command")}>
15
+ `;else x=`${L} [${F("command")}]
16
+ `;t.div(`${x}`)}}if(q.length>1||q.length===1&&!q[0][2]){t.div(F("Commands:"));let x=D.getInternalMethods().getContext(),g=x.commands.length?`${x.commands.join(" ")} `:"";if(D.getInternalMethods().getParserConfiguration()["sort-commands"]===!0)q=q.sort((c,zD)=>c[0].localeCompare(zD[0]));let CD=L?`${L} `:"";q.forEach((c)=>{let zD=`${CD}${g}${c[0].replace(/^\$0 ?/,"")}`;t.span({text:zD,padding:[0,2,0,2],width:v(q,PD,`${L}${g}`)+4},{text:c[1]});let r=[];if(c[2])r.push(`[${F("default")}]`);if(c[3]&&c[3].length)r.push(`[${F("aliases:")} ${c[3].join(", ")}]`);if(c[4])if(typeof c[4]==="string")r.push(`[${F("deprecated: %s",c[4])}]`);else r.push(`[${F("deprecated")}]`);if(r.length)t.div({text:r.join(" "),padding:[0,0,0,2],align:"right"});else t.div()}),t.div()}let fD=(Object.keys(k.alias)||[]).concat(Object.keys(D.parsed.newAliases)||[]);FD=FD.filter((x)=>!D.parsed.newAliases[x]&&fD.every((g)=>(k.alias[g]||[]).indexOf(x)===-1));let Yu=F("Options:");if(!DD[Yu])DD[Yu]=[];l(FD,k.alias,DD,Yu);let P=(x)=>/^--/.test(xu(x)),Eu=Object.keys(DD).filter((x)=>DD[x].length>0).map((x)=>{let g=DD[x].filter(uD).map((CD)=>{if(fD.includes(CD))return CD;for(let c=0,zD;(zD=fD[c])!==void 0;c++)if((k.alias[zD]||[]).includes(CD))return zD;return CD});return{groupName:x,normalizedKeys:g}}).filter(({normalizedKeys:x})=>x.length>0).map(({groupName:x,normalizedKeys:g})=>{let CD=g.reduce((c,zD)=>{return c[zD]=[zD].concat(k.alias[zD]||[]).map((r)=>{if(x===C.getPositionalGroupName())return r;else return(/^[0-9]$/.test(r)?k.boolean.includes(zD)?"-":"--":r.length>1?"--":"-")+r}).sort((r,ED)=>P(r)===P(ED)?0:P(r)?1:-1).join(", "),c},{});return{groupName:x,normalizedKeys:g,switches:CD}});if(Eu.filter(({groupName:x})=>x!==C.getPositionalGroupName()).some(({normalizedKeys:x,switches:g})=>!x.every((CD)=>P(g[CD]))))Eu.filter(({groupName:x})=>x!==C.getPositionalGroupName()).forEach(({normalizedKeys:x,switches:g})=>{x.forEach((CD)=>{if(P(g[CD]))g[CD]=g3(g[CD],4)})});if(Eu.forEach(({groupName:x,normalizedKeys:g,switches:CD})=>{t.div(x),g.forEach((c)=>{let zD=CD[c],r=O[c]||"",ED=null;if(r.includes(d))r=F(r.substring(d.length));if(k.boolean.includes(c))ED=`[${F("boolean")}]`;if(k.count.includes(c))ED=`[${F("count")}]`;if(k.string.includes(c))ED=`[${F("string")}]`;if(k.normalize.includes(c))ED=`[${F("string")}]`;if(k.array.includes(c))ED=`[${F("array")}]`;if(k.number.includes(c))ED=`[${F("number")}]`;let au=(T)=>typeof T==="string"?`[${F("deprecated: %s",T)}]`:`[${F("deprecated")}]`,Q=[c in p?au(p[c]):null,ED,c in R?`[${F("required")}]`:null,k.choices&&k.choices[c]?`[${F("choices:")} ${C.stringifiedValues(k.choices[c])}]`:null,s(k.default[c],k.defaultDescription[c])].filter(Boolean).join(" ");t.span({text:xu(zD),padding:[0,2,0,2+c0(zD)],width:v(CD,PD)+4},r);let G=D.getInternalMethods().getUsageConfiguration()["hide-types"]===!0;if(Q&&!G)t.div({text:Q,padding:[0,0,0,2],align:"right"});else t.div()}),t.div()}),Y.length)t.div(F("Examples:")),Y.forEach((x)=>{x[0]=x[0].replace(/\$0/g,L)}),Y.forEach((x)=>{if(x[1]==="")t.div({text:x[0],padding:[0,2,0,2]});else t.div({text:x[0],padding:[0,2,0,2],width:v(Y,PD)+4},{text:x[1]})}),t.div();if(W.length>0){let x=W.map((g)=>g.replace(/\$0/g,L)).join(`
17
+ `);t.div(`${x}
18
+ `)}return t.toString().replace(/\s*$/,"")};function v(N,L,R){let h=0;if(!Array.isArray(N))N=Object.values(N).map((p)=>[p]);if(N.forEach((p)=>{h=Math.max(u.stringWidth(R?`${R} ${xu(p[0])}`:xu(p[0]))+c0(p[0]),h)}),L)h=Math.min(h,parseInt((L*0.5).toString(),10));return h}function QD(){let N=D.getDemandedOptions(),L=D.getOptions();(Object.keys(L.alias)||[]).forEach((R)=>{L.alias[R].forEach((h)=>{if(O[h])C.describe(R,O[h]);if(h in N)D.demandOption(R,N[h]);if(L.boolean.includes(h))D.boolean(R);if(L.count.includes(h))D.count(R);if(L.string.includes(h))D.string(R);if(L.normalize.includes(h))D.normalize(R);if(L.array.includes(h))D.array(R);if(L.number.includes(h))D.number(R)})})}let m;C.cacheHelpMessage=function(){m=this.help()},C.clearCachedHelpMessage=function(){m=void 0},C.hasCachedHelpMessage=function(){return!!m};function l(N,L,R,h){let p=[],DD=null;return Object.keys(R).forEach((k)=>{p=p.concat(R[k])}),N.forEach((k)=>{if(DD=[k].concat(L[k]),!DD.some((FD)=>p.indexOf(FD)!==-1))R[h].push(k)}),p}function uD(N){return D.getOptions().hiddenOptions.indexOf(N)<0||D.parsed.argv[D.getOptions().showHiddenOpt]}C.showHelp=(N)=>{let L=D.getInternalMethods().getLoggerInstance();if(!N)N="error";(typeof N==="function"?N:L[N])(C.help())},C.functionDescription=(N)=>{return["(",N.name?u.Parser.decamelize(N.name,"-"):F("generated-value"),")"].join("")},C.stringifiedValues=function(L,R){let h="",p=R||", ",DD=[].concat(L);if(!L||!DD.length)return h;return DD.forEach((k)=>{if(h.length)h+=p;h+=JSON.stringify(k)}),h};function s(N,L){let R=`[${F("default:")} `;if(N===void 0&&!L)return null;if(L)R+=L;else switch(typeof N){case"string":R+=`"${N}"`;break;case"object":R+=JSON.stringify(N);break;default:R+=N}return`${R}]`}function jD(){if(u.process.stdColumns)return Math.min(80,u.process.stdColumns);else return 80}let y=null;C.version=(N)=>{y=N},C.showVersion=(N)=>{let L=D.getInternalMethods().getLoggerInstance();if(!N)N="error";(typeof N==="function"?N:L[N])(y)},C.reset=function(L){return B=null,M=!1,H=[],V=!1,W=[],Y=[],q=[],O=bD(O,(R)=>!L[R]),C};let Ju=[];return C.freeze=function(){Ju.push({failMessage:B,failureOutput:M,usages:H,usageDisabled:V,epilogs:W,examples:Y,commands:q,descriptions:O})},C.unfreeze=function(L=!1){let R=Ju.pop();if(!R)return;if(L)O={...R.descriptions,...O},q=[...R.commands,...q],H=[...R.usages,...H],Y=[...R.examples,...Y],W=[...R.epilogs,...W];else({failMessage:B,failureOutput:M,usages:H,usageDisabled:V,epilogs:W,examples:Y,commands:q,descriptions:O}=R)},C}function YF(D){return typeof D==="object"}function g3(D,u){return YF(D)?{text:D.text,indentation:D.indentation+u}:{text:D,indentation:u}}function c0(D){return YF(D)?D.indentation:0}function xu(D){return YF(D)?D.text:D}var k0=`###-begin-{{app_name}}-completions-###
19
19
  #
20
20
  # yargs command completion script
21
21
  #
@@ -44,7 +44,7 @@ _{{app_name}}_yargs_completions()
44
44
  }
45
45
  complete -o bashdefault -o default -F _{{app_name}}_yargs_completions {{app_name}}
46
46
  ###-end-{{app_name}}-completions-###
47
- `,w0=`#compdef {{app_name}}
47
+ `,p0=`#compdef {{app_name}}
48
48
  ###-begin-{{app_name}}-completions-###
49
49
  #
50
50
  # yargs command completion script
@@ -71,14 +71,14 @@ else
71
71
  compdef _{{app_name}}_yargs_completions {{app_name}}
72
72
  fi
73
73
  ###-end-{{app_name}}-completions-###
74
- `;class m0{constructor(D,u,F,C){var E,B,$;this.yargs=D,this.usage=u,this.command=F,this.shim=C,this.completionKey="get-yargs-completions",this.aliases=null,this.customCompletionFunction=null,this.indexAfterLastReset=0,this.zshShell=($=((E=this.shim.getEnv("SHELL"))===null||E===void 0?void 0:E.includes("zsh"))||((B=this.shim.getEnv("ZSH_NAME"))===null||B===void 0?void 0:B.includes("zsh")))!==null&&$!==void 0?$:!1}defaultCompletion(D,u,F,C){let E=this.command.getCommandHandlers();for(let $=0,Z=D.length;$<Z;++$)if(E[D[$]]&&E[D[$]].builder){let M=E[D[$]].builder;if(Nu(M)){this.indexAfterLastReset=$+1;let O=this.yargs.getInternalMethods().reset();return M(O,!0),O.argv}}let B=[];this.commandCompletions(B,D,F),this.optionCompletions(B,D,u,F),this.choicesFromOptionsCompletions(B,D,u,F),this.choicesFromPositionalsCompletions(B,D,u,F),C(null,B)}commandCompletions(D,u,F){let C=this.yargs.getInternalMethods().getContext().commands;if(!F.match(/^-/)&&C[C.length-1]!==F&&!this.previousArgHasChoices(u))this.usage.getCommands().forEach((E)=>{let B=xD(E[0]).cmd;if(u.indexOf(B)===-1)if(!this.zshShell)D.push(B);else{let $=E[1]||"";D.push(B.replace(/:/g,"\\:")+":"+$)}})}optionCompletions(D,u,F,C){if((C.match(/^-/)||C===""&&D.length===0)&&!this.previousArgHasChoices(u)){let E=this.yargs.getOptions(),B=this.yargs.getGroups()[this.usage.getPositionalGroupName()]||[];Object.keys(E.key).forEach(($)=>{let Z=!!E.configuration["boolean-negation"]&&E.boolean.includes($);if(!B.includes($)&&!E.hiddenOptions.includes($)&&!this.argsContainKey(u,$,Z))this.completeOptionKey($,D,C,Z&&!!E.default[$])})}}choicesFromOptionsCompletions(D,u,F,C){if(this.previousArgHasChoices(u)){let E=this.getPreviousArgChoices(u);if(E&&E.length>0)D.push(...E.map((B)=>B.replace(/:/g,"\\:")))}}choicesFromPositionalsCompletions(D,u,F,C){if(C===""&&D.length>0&&this.previousArgHasChoices(u))return;let E=this.yargs.getGroups()[this.usage.getPositionalGroupName()]||[],B=Math.max(this.indexAfterLastReset,this.yargs.getInternalMethods().getContext().commands.length+1),$=E[F._.length-B-1];if(!$)return;let Z=this.yargs.getOptions().choices[$]||[];for(let M of Z)if(M.startsWith(C))D.push(M.replace(/:/g,"\\:"))}getPreviousArgChoices(D){if(D.length<1)return;let u=D[D.length-1],F="";if(!u.startsWith("-")&&D.length>1)F=u,u=D[D.length-2];if(!u.startsWith("-"))return;let C=u.replace(/^-+/,""),E=this.yargs.getOptions(),B=[C,...this.yargs.getAliases()[C]||[]],$;for(let Z of B)if(Object.prototype.hasOwnProperty.call(E.key,Z)&&Array.isArray(E.choices[Z])){$=E.choices[Z];break}if($)return $.filter((Z)=>!F||Z.startsWith(F))}previousArgHasChoices(D){let u=this.getPreviousArgChoices(D);return u!==void 0&&u.length>0}argsContainKey(D,u,F){let C=(E)=>D.indexOf((/^[^0-9]$/.test(E)?"-":"--")+E)!==-1;if(C(u))return!0;if(F&&C(`no-${u}`))return!0;if(this.aliases){for(let E of this.aliases[u])if(C(E))return!0}return!1}completeOptionKey(D,u,F,C){var E,B,$,Z;let M=D;if(this.zshShell){let q=this.usage.getDescriptions(),H=(B=(E=this===null||this===void 0?void 0:this.aliases)===null||E===void 0?void 0:E[D])===null||B===void 0?void 0:B.find((S)=>{let d=q[S];return typeof d==="string"&&d.length>0}),W=H?q[H]:void 0,J=(Z=($=q[D])!==null&&$!==void 0?$:W)!==null&&Z!==void 0?Z:"";M=`${D.replace(/:/g,"\\:")}:${J.replace("__yargsString__:","").replace(/(\r\n|\n|\r)/gm," ")}`}let O=(q)=>/^--/.test(q),V=(q)=>/^[^0-9]$/.test(q),Y=!O(F)&&V(D)?"-":"--";if(u.push(Y+M),C)u.push(Y+"no-"+M)}customCompletion(D,u,F,C){if(MD(this.customCompletionFunction,null,this.shim),x3(this.customCompletionFunction)){let E=this.customCompletionFunction(F,u);if(l(E))return E.then((B)=>{this.shim.process.nextTick(()=>{C(null,B)})}).catch((B)=>{this.shim.process.nextTick(()=>{C(B,void 0)})});return C(null,E)}else if(b3(this.customCompletionFunction))return this.customCompletionFunction(F,u,(E=C)=>this.defaultCompletion(D,u,F,E),(E)=>{C(null,E)});else return this.customCompletionFunction(F,u,(E)=>{C(null,E)})}getCompletion(D,u){let F=D.length?D[D.length-1]:"",C=this.yargs.parse(D,!0),E=this.customCompletionFunction?(B)=>this.customCompletion(D,B,F,u):(B)=>this.defaultCompletion(D,B,F,u);return l(C)?C.then(E):E(C)}generateCompletionScript(D,u){let F=this.zshShell?w0:h0,C=this.shim.path.basename(D);if(D.match(/\.js$/))D=`./${D}`;return F=F.replace(/{{app_name}}/g,C),F=F.replace(/{{completion_command}}/g,u),F.replace(/{{app_path}}/g,D)}registerFunction(D){this.customCompletionFunction=D}setParsed(D){this.aliases=D.aliases}}function v0(D,u,F,C){return new m0(D,u,F,C)}function x3(D){return D.length<3}function b3(D){return D.length>3}function c0(D,u){if(D.length===0)return u.length;if(u.length===0)return D.length;let F=[],C;for(C=0;C<=u.length;C++)F[C]=[C];let E;for(E=0;E<=D.length;E++)F[0][E]=E;for(C=1;C<=u.length;C++)for(E=1;E<=D.length;E++)if(u.charAt(C-1)===D.charAt(E-1))F[C][E]=F[C-1][E-1];else if(C>1&&E>1&&u.charAt(C-2)===D.charAt(E-1)&&u.charAt(C-1)===D.charAt(E-2))F[C][E]=F[C-2][E-2]+1;else F[C][E]=Math.min(F[C-1][E-1]+1,Math.min(F[C][E-1]+1,F[C-1][E]+1));return F[u.length][D.length]}var d0=["$0","--","_"];function p0(D,u,F){let C=F.y18n.__,E=F.y18n.__n,B={};B.nonOptionCount=function(Y){let q=D.getDemandedCommands(),W=Y._.length+(Y["--"]?Y["--"].length:0)-D.getInternalMethods().getContext().commands.length;if(q._&&(W<q._.min||W>q._.max)){if(W<q._.min)if(q._.minMsg!==void 0)u.fail(q._.minMsg?q._.minMsg.replace(/\$0/g,W.toString()).replace(/\$1/,q._.min.toString()):null);else u.fail(E("Not enough non-option arguments: got %s, need at least %s","Not enough non-option arguments: got %s, need at least %s",W,W.toString(),q._.min.toString()));else if(W>q._.max)if(q._.maxMsg!==void 0)u.fail(q._.maxMsg?q._.maxMsg.replace(/\$0/g,W.toString()).replace(/\$1/,q._.max.toString()):null);else u.fail(E("Too many non-option arguments: got %s, maximum of %s","Too many non-option arguments: got %s, maximum of %s",W,W.toString(),q._.max.toString()))}},B.positionalCount=function(Y,q){if(q<Y)u.fail(E("Not enough non-option arguments: got %s, need at least %s","Not enough non-option arguments: got %s, need at least %s",q,q+"",Y+""))},B.requiredArguments=function(Y,q){let H=null;for(let W of Object.keys(q))if(!Object.prototype.hasOwnProperty.call(Y,W)||typeof Y[W]>"u")H=H||{},H[W]=q[W];if(H){let W=[];for(let S of Object.keys(H)){let d=H[S];if(d&&W.indexOf(d)<0)W.push(d)}let J=W.length?`
74
+ `;class y0{constructor(D,u,F,C){var E,B,$;this.yargs=D,this.usage=u,this.command=F,this.shim=C,this.completionKey="get-yargs-completions",this.aliases=null,this.customCompletionFunction=null,this.indexAfterLastReset=0,this.zshShell=($=((E=this.shim.getEnv("SHELL"))===null||E===void 0?void 0:E.includes("zsh"))||((B=this.shim.getEnv("ZSH_NAME"))===null||B===void 0?void 0:B.includes("zsh")))!==null&&$!==void 0?$:!1}defaultCompletion(D,u,F,C){let E=this.command.getCommandHandlers();for(let $=0,Z=D.length;$<Z;++$)if(E[D[$]]&&E[D[$]].builder){let M=E[D[$]].builder;if(Pu(M)){this.indexAfterLastReset=$+1;let H=this.yargs.getInternalMethods().reset();return M(H,!0),H.argv}}let B=[];this.commandCompletions(B,D,F),this.optionCompletions(B,D,u,F),this.choicesFromOptionsCompletions(B,D,u,F),this.choicesFromPositionalsCompletions(B,D,u,F),C(null,B)}commandCompletions(D,u,F){let C=this.yargs.getInternalMethods().getContext().commands;if(!F.match(/^-/)&&C[C.length-1]!==F&&!this.previousArgHasChoices(u))this.usage.getCommands().forEach((E)=>{let B=xD(E[0]).cmd;if(u.indexOf(B)===-1)if(!this.zshShell)D.push(B);else{let $=E[1]||"";D.push(B.replace(/:/g,"\\:")+":"+$)}})}optionCompletions(D,u,F,C){if((C.match(/^-/)||C===""&&D.length===0)&&!this.previousArgHasChoices(u)){let E=this.yargs.getOptions(),B=this.yargs.getGroups()[this.usage.getPositionalGroupName()]||[];Object.keys(E.key).forEach(($)=>{let Z=!!E.configuration["boolean-negation"]&&E.boolean.includes($);if(!B.includes($)&&!E.hiddenOptions.includes($)&&!this.argsContainKey(u,$,Z))this.completeOptionKey($,D,C,Z&&!!E.default[$])})}}choicesFromOptionsCompletions(D,u,F,C){if(this.previousArgHasChoices(u)){let E=this.getPreviousArgChoices(u);if(E&&E.length>0)D.push(...E.map((B)=>B.replace(/:/g,"\\:")))}}choicesFromPositionalsCompletions(D,u,F,C){if(C===""&&D.length>0&&this.previousArgHasChoices(u))return;let E=this.yargs.getGroups()[this.usage.getPositionalGroupName()]||[],B=Math.max(this.indexAfterLastReset,this.yargs.getInternalMethods().getContext().commands.length+1),$=E[F._.length-B-1];if(!$)return;let Z=this.yargs.getOptions().choices[$]||[];for(let M of Z)if(M.startsWith(C))D.push(M.replace(/:/g,"\\:"))}getPreviousArgChoices(D){if(D.length<1)return;let u=D[D.length-1],F="";if(!u.startsWith("-")&&D.length>1)F=u,u=D[D.length-2];if(!u.startsWith("-"))return;let C=u.replace(/^-+/,""),E=this.yargs.getOptions(),B=[C,...this.yargs.getAliases()[C]||[]],$;for(let Z of B)if(Object.prototype.hasOwnProperty.call(E.key,Z)&&Array.isArray(E.choices[Z])){$=E.choices[Z];break}if($)return $.filter((Z)=>!F||Z.startsWith(F))}previousArgHasChoices(D){let u=this.getPreviousArgChoices(D);return u!==void 0&&u.length>0}argsContainKey(D,u,F){let C=(E)=>D.indexOf((/^[^0-9]$/.test(E)?"-":"--")+E)!==-1;if(C(u))return!0;if(F&&C(`no-${u}`))return!0;if(this.aliases){for(let E of this.aliases[u])if(C(E))return!0}return!1}completeOptionKey(D,u,F,C){var E,B,$,Z;let M=D;if(this.zshShell){let q=this.usage.getDescriptions(),O=(B=(E=this===null||this===void 0?void 0:this.aliases)===null||E===void 0?void 0:E[D])===null||B===void 0?void 0:B.find((S)=>{let d=q[S];return typeof d==="string"&&d.length>0}),W=O?q[O]:void 0,J=(Z=($=q[D])!==null&&$!==void 0?$:W)!==null&&Z!==void 0?Z:"";M=`${D.replace(/:/g,"\\:")}:${J.replace("__yargsString__:","").replace(/(\r\n|\n|\r)/gm," ")}`}let H=(q)=>/^--/.test(q),V=(q)=>/^[^0-9]$/.test(q),Y=!H(F)&&V(D)?"-":"--";if(u.push(Y+M),C)u.push(Y+"no-"+M)}customCompletion(D,u,F,C){if(GD(this.customCompletionFunction,null,this.shim),l3(this.customCompletionFunction)){let E=this.customCompletionFunction(F,u);if(i(E))return E.then((B)=>{this.shim.process.nextTick(()=>{C(null,B)})}).catch((B)=>{this.shim.process.nextTick(()=>{C(B,void 0)})});return C(null,E)}else if(i3(this.customCompletionFunction))return this.customCompletionFunction(F,u,(E=C)=>this.defaultCompletion(D,u,F,E),(E)=>{C(null,E)});else return this.customCompletionFunction(F,u,(E)=>{C(null,E)})}getCompletion(D,u){let F=D.length?D[D.length-1]:"",C=this.yargs.parse(D,!0),E=this.customCompletionFunction?(B)=>this.customCompletion(D,B,F,u):(B)=>this.defaultCompletion(D,B,F,u);return i(C)?C.then(E):E(C)}generateCompletionScript(D,u){let F=this.zshShell?p0:k0,C=this.shim.path.basename(D);if(D.match(/\.js$/))D=`./${D}`;return F=F.replace(/{{app_name}}/g,C),F=F.replace(/{{completion_command}}/g,u),F.replace(/{{app_path}}/g,D)}registerFunction(D){this.customCompletionFunction=D}setParsed(D){this.aliases=D.aliases}}function g0(D,u,F,C){return new y0(D,u,F,C)}function l3(D){return D.length<3}function i3(D){return D.length>3}function t0(D,u){if(D.length===0)return u.length;if(u.length===0)return D.length;let F=[],C;for(C=0;C<=u.length;C++)F[C]=[C];let E;for(E=0;E<=D.length;E++)F[0][E]=E;for(C=1;C<=u.length;C++)for(E=1;E<=D.length;E++)if(u.charAt(C-1)===D.charAt(E-1))F[C][E]=F[C-1][E-1];else if(C>1&&E>1&&u.charAt(C-2)===D.charAt(E-1)&&u.charAt(C-1)===D.charAt(E-2))F[C][E]=F[C-2][E-2]+1;else F[C][E]=Math.min(F[C-1][E-1]+1,Math.min(F[C][E-1]+1,F[C-1][E]+1));return F[u.length][D.length]}var l0=["$0","--","_"];function i0(D,u,F){let C=F.y18n.__,E=F.y18n.__n,B={};B.nonOptionCount=function(Y){let q=D.getDemandedCommands(),W=Y._.length+(Y["--"]?Y["--"].length:0)-D.getInternalMethods().getContext().commands.length;if(q._&&(W<q._.min||W>q._.max)){if(W<q._.min)if(q._.minMsg!==void 0)u.fail(q._.minMsg?q._.minMsg.replace(/\$0/g,W.toString()).replace(/\$1/,q._.min.toString()):null);else u.fail(E("Not enough non-option arguments: got %s, need at least %s","Not enough non-option arguments: got %s, need at least %s",W,W.toString(),q._.min.toString()));else if(W>q._.max)if(q._.maxMsg!==void 0)u.fail(q._.maxMsg?q._.maxMsg.replace(/\$0/g,W.toString()).replace(/\$1/,q._.max.toString()):null);else u.fail(E("Too many non-option arguments: got %s, maximum of %s","Too many non-option arguments: got %s, maximum of %s",W,W.toString(),q._.max.toString()))}},B.positionalCount=function(Y,q){if(q<Y)u.fail(E("Not enough non-option arguments: got %s, need at least %s","Not enough non-option arguments: got %s, need at least %s",q,q+"",Y+""))},B.requiredArguments=function(Y,q){let O=null;for(let W of Object.keys(q))if(!Object.prototype.hasOwnProperty.call(Y,W)||typeof Y[W]>"u")O=O||{},O[W]=q[W];if(O){let W=[];for(let S of Object.keys(O)){let d=O[S];if(d&&W.indexOf(d)<0)W.push(d)}let J=W.length?`
75
75
  ${W.join(`
76
- `)}`:"";u.fail(E("Missing required argument: %s","Missing required arguments: %s",Object.keys(H).length,Object.keys(H).join(", ")+J))}},B.unknownArguments=function(Y,q,H,W,J=!0){var S;let d=D.getInternalMethods().getCommandInstance().getCommands(),v=[],ZD=D.getInternalMethods().getContext();if(Object.keys(Y).forEach((m)=>{if(!d0.includes(m)&&!Object.prototype.hasOwnProperty.call(H,m)&&!Object.prototype.hasOwnProperty.call(D.getInternalMethods().getParseContext(),m)&&!B.isValidAndSomeAliasIsNotNew(m,q))v.push(m)}),J&&(ZD.commands.length>0||d.length>0||W))Y._.slice(ZD.commands.length).forEach((m)=>{if(!d.includes(""+m))v.push(""+m)});if(J){let g=((S=D.getDemandedCommands()._)===null||S===void 0?void 0:S.max)||0,uD=ZD.commands.length+g;if(uD<Y._.length)Y._.slice(uD).forEach((s)=>{if(s=String(s),!ZD.commands.includes(s)&&!v.includes(s))v.push(s)})}if(v.length)u.fail(E("Unknown argument: %s","Unknown arguments: %s",v.length,v.map((m)=>m.trim()?m:`"${m}"`).join(", ")))},B.unknownCommands=function(Y){let q=D.getInternalMethods().getCommandInstance().getCommands(),H=[],W=D.getInternalMethods().getContext();if(W.commands.length>0||q.length>0)Y._.slice(W.commands.length).forEach((J)=>{if(!q.includes(""+J))H.push(""+J)});if(H.length>0)return u.fail(E("Unknown command: %s","Unknown commands: %s",H.length,H.join(", "))),!0;else return!1},B.isValidAndSomeAliasIsNotNew=function(Y,q){if(!Object.prototype.hasOwnProperty.call(q,Y))return!1;let H=D.parsed.newAliases;return[Y,...q[Y]].some((W)=>!Object.prototype.hasOwnProperty.call(H,W)||!H[Y])},B.limitedChoices=function(Y){let q=D.getOptions(),H={};if(!Object.keys(q.choices).length)return;Object.keys(Y).forEach((S)=>{if(d0.indexOf(S)===-1&&Object.prototype.hasOwnProperty.call(q.choices,S))[].concat(Y[S]).forEach((d)=>{if(q.choices[S].indexOf(d)===-1&&d!==void 0)H[S]=(H[S]||[]).concat(d)})});let W=Object.keys(H);if(!W.length)return;let J=C("Invalid values:");W.forEach((S)=>{J+=`
77
- ${C("Argument: %s, Given: %s, Choices: %s",S,u.stringifiedValues(H[S]),u.stringifiedValues(q.choices[S]))}`}),u.fail(J)};let $={};B.implies=function(Y,q){if(L("<string|object> [array|number|string]",[Y,q],arguments.length),typeof Y==="object")Object.keys(Y).forEach((H)=>{B.implies(H,Y[H])});else{if(D.global(Y),!$[Y])$[Y]=[];if(Array.isArray(q))q.forEach((H)=>B.implies(Y,H));else MD(q,void 0,F),$[Y].push(q)}},B.getImplied=function(){return $};function Z(V,Y){let q=Number(Y);if(Y=isNaN(q)?Y:q,typeof Y==="number")Y=V._.length>=Y;else if(Y.match(/^--no-.+/))Y=Y.match(/^--no-(.+)/)[1],Y=!Object.prototype.hasOwnProperty.call(V,Y);else Y=Object.prototype.hasOwnProperty.call(V,Y);return Y}B.implications=function(Y){let q=[];if(Object.keys($).forEach((H)=>{let W=H;($[H]||[]).forEach((J)=>{let S=W,d=J;if(S=Z(Y,S),J=Z(Y,J),S&&!J)q.push(` ${W} -> ${d}`)})}),q.length){let H=`${C("Implications failed:")}
78
- `;q.forEach((W)=>{H+=W}),u.fail(H)}};let M={};B.conflicts=function(Y,q){if(L("<string|object> [array|string]",[Y,q],arguments.length),typeof Y==="object")Object.keys(Y).forEach((H)=>{B.conflicts(H,Y[H])});else{if(D.global(Y),!M[Y])M[Y]=[];if(Array.isArray(q))q.forEach((H)=>B.conflicts(Y,H));else M[Y].push(q)}},B.getConflicting=()=>M,B.conflicting=function(Y){if(Object.keys(Y).forEach((q)=>{if(M[q])M[q].forEach((H)=>{if(H&&Y[q]!==void 0&&Y[H]!==void 0)u.fail(C("Arguments %s and %s are mutually exclusive",q,H))})}),D.getInternalMethods().getParserConfiguration()["strip-dashed"])Object.keys(M).forEach((q)=>{M[q].forEach((H)=>{if(H&&Y[F.Parser.camelCase(q)]!==void 0&&Y[F.Parser.camelCase(H)]!==void 0)u.fail(C("Arguments %s and %s are mutually exclusive",q,H))})})},B.recommendCommands=function(Y,q){q=q.sort((S,d)=>d.length-S.length);let W=null,J=1/0;for(let S=0,d;(d=q[S])!==void 0;S++){let v=c0(Y,d);if(v<=3&&v<J)J=v,W=d}if(W)u.fail(C("Did you mean %s?",W))},B.reset=function(Y){return $=bD($,(q)=>!Y[q]),M=bD(M,(q)=>!Y[q]),B};let O=[];return B.freeze=function(){O.push({implied:$,conflicting:M})},B.unfreeze=function(){let Y=O.pop();MD(Y,void 0,F),{implied:$,conflicting:M}=Y},B}var GF=[],Yu;function Su(D,u,F,C){Yu=C;let E={};if(Object.prototype.hasOwnProperty.call(D,"extends")){if(typeof D.extends!=="string")return E;let B=/\.json|\..*rc$/.test(D.extends),$=null;if(!B)try{$=import.meta.resolve(D.extends)}catch(Z){return D}else $=w3(u,D.extends);h3($),GF.push($),E=B?JSON.parse(Yu.readFileSync($,"utf8")):C.require(D.extends),delete D.extends,E=Su(E,Yu.path.dirname($),F,Yu)}return GF=[],F?t0(E,D):Object.assign({},E,D)}function h3(D){if(GF.indexOf(D)>-1)throw new a(`Circular extended configurations: '${D}'.`)}function w3(D,u){return Yu.path.resolve(D,u)}function t0(D,u){let F={};function C(E){return E&&typeof E==="object"&&!Array.isArray(E)}Object.assign(F,D);for(let E of Object.keys(u))if(C(u[E])&&C(F[E]))F[E]=t0(D[E],u[E]);else F[E]=u[E];return F}var K=function(D,u,F,C,E){if(C==="m")throw TypeError("Private method is not writable");if(C==="a"&&!E)throw TypeError("Private accessor was defined without a setter");if(typeof u==="function"?D!==u||!E:!u.has(D))throw TypeError("Cannot write private member to an object whose class did not declare it");return C==="a"?E.call(D,F):E?E.value=F:u.set(D,F),F},z=function(D,u,F,C){if(F==="a"&&!C)throw TypeError("Private accessor was defined without a getter");if(typeof u==="function"?D!==u||!C:!u.has(D))throw TypeError("Cannot read private member from an object whose class did not declare it");return F==="m"?C:F==="a"?C.call(D):C?C.value:u.get(D)},e,yD,qu,GD,YD,Pu,wD,iD,xu,UD,bu,WD,jD,qD,VD,hu,gD,$D,N,wu,mu,OD,lD,$u,nD,mD,vu,b,oD,sD,rD,w,cu,_D,o;function Z2(D){return(u=[],F=D.process.cwd(),C)=>{let E=new Q2(u,F,C,D);return Object.defineProperty(E,"argv",{get:()=>{return E.parse()},enumerable:!0}),E.help(),E.version(),E}}var k0=Symbol("copyDoubleDash"),y0=Symbol("copyDoubleDash"),JF=Symbol("deleteFromParserHintObject"),i0=Symbol("emitWarning"),g0=Symbol("freeze"),l0=Symbol("getDollarZero"),aD=Symbol("getParserConfiguration"),n0=Symbol("getUsageConfiguration"),YF=Symbol("guessLocale"),o0=Symbol("guessVersion"),s0=Symbol("parsePositionalNumbers"),qF=Symbol("pkgUp"),vD=Symbol("populateParserHintArray"),zu=Symbol("populateParserHintSingleValueDictionary"),OF=Symbol("populateParserHintArrayDictionary"),HF=Symbol("populateParserHintDictionary"),UF=Symbol("sanitizeKey"),WF=Symbol("setKey"),VF=Symbol("unfreeze"),r0=Symbol("validateAsync"),a0=Symbol("getCommandInstance"),e0=Symbol("getContext"),D2=Symbol("getHasOutput"),u2=Symbol("getLoggerInstance"),F2=Symbol("getParseContext"),C2=Symbol("getUsageInstance"),E2=Symbol("getValidationInstance"),du=Symbol("hasParseCallback"),B2=Symbol("isGlobalContext"),eD=Symbol("postProcess"),$2=Symbol("rebase"),TF=Symbol("reset"),Ou=Symbol("runYargsParserAndExecuteCommands"),fF=Symbol("runValidation"),z2=Symbol("setHasOutput"),Du=Symbol("kTrackManuallySetKeys"),m3="en_US";class Q2{constructor(D=[],u,F,C){this.customScriptName=!1,this.parsed=!1,e.set(this,void 0),yD.set(this,void 0),qu.set(this,{commands:[],fullCommands:[]}),GD.set(this,null),YD.set(this,null),Pu.set(this,"show-hidden"),wD.set(this,null),iD.set(this,!0),xu.set(this,{}),UD.set(this,!0),bu.set(this,[]),WD.set(this,void 0),jD.set(this,{}),qD.set(this,!1),VD.set(this,null),hu.set(this,!0),gD.set(this,void 0),$D.set(this,""),N.set(this,void 0),wu.set(this,void 0),mu.set(this,{}),OD.set(this,null),lD.set(this,null),$u.set(this,{}),nD.set(this,{}),mD.set(this,void 0),vu.set(this,!1),b.set(this,void 0),oD.set(this,!1),sD.set(this,!1),rD.set(this,!1),w.set(this,void 0),cu.set(this,{}),_D.set(this,null),o.set(this,void 0),K(this,b,C,"f"),K(this,mD,D,"f"),K(this,yD,u,"f"),K(this,wu,F,"f"),K(this,WD,new XF(this),"f"),this.$0=this[l0](),this[TF](),K(this,e,z(this,e,"f"),"f"),K(this,w,z(this,w,"f"),"f"),K(this,o,z(this,o,"f"),"f"),K(this,N,z(this,N,"f"),"f"),z(this,N,"f").showHiddenOpt=z(this,Pu,"f"),K(this,gD,this[y0](),"f"),z(this,b,"f").y18n.setLocale(m3)}addHelpOpt(D,u){if(L("[string|boolean] [string]",[D,u],arguments.length),z(this,VD,"f"))this[JF](z(this,VD,"f")),K(this,VD,null,"f");if(D===!1&&u===void 0)return this;return K(this,VD,typeof D==="string"?D:"help","f"),this.boolean(z(this,VD,"f")),this.describe(z(this,VD,"f"),u||z(this,w,"f").deferY18nLookup("Show help")),this}help(D,u){return this.addHelpOpt(D,u)}addShowHiddenOpt(D,u){if(L("[string|boolean] [string]",[D,u],arguments.length),D===!1&&u===void 0)return this;let F=typeof D==="string"?D:z(this,Pu,"f");return this.boolean(F),this.describe(F,u||z(this,w,"f").deferY18nLookup("Show hidden options")),z(this,N,"f").showHiddenOpt=F,this}showHidden(D,u){return this.addShowHiddenOpt(D,u)}alias(D,u){return L("<object|string|array> [string|array]",[D,u],arguments.length),this[OF](this.alias.bind(this),"alias",D,u),this}array(D){return L("<array|string>",[D],arguments.length),this[vD]("array",D),this[Du](D),this}boolean(D){return L("<array|string>",[D],arguments.length),this[vD]("boolean",D),this[Du](D),this}check(D,u){return L("<function> [boolean]",[D,u],arguments.length),this.middleware((F,C)=>{return kD(()=>{return D(F,C.getOptions())},(E)=>{if(!E)z(this,w,"f").fail(z(this,b,"f").y18n.__("Argument check failed: %s",D.toString()));else if(typeof E==="string"||E instanceof Error)z(this,w,"f").fail(E.toString(),E);return F},(E)=>{return z(this,w,"f").fail(E.message?E.message:E.toString(),E),F})},!1,u),this}choices(D,u){return L("<object|string|array> [string|array]",[D,u],arguments.length),this[OF](this.choices.bind(this),"choices",D,u),this}coerce(D,u){if(L("<object|string|array> [function]",[D,u],arguments.length),Array.isArray(D)){if(!u)throw new a("coerce callback must be provided");for(let C of D)this.coerce(C,u);return this}else if(typeof D==="object"){for(let C of Object.keys(D))this.coerce(C,D[C]);return this}if(!u)throw new a("coerce callback must be provided");let F=D;return z(this,N,"f").key[F]=!0,z(this,WD,"f").addCoerceMiddleware((C,E)=>{var B;let $=(B=E.getAliases()[F])!==null&&B!==void 0?B:[],Z=[F,...$].filter((M)=>Object.prototype.hasOwnProperty.call(C,M));if(Z.length===0)return C;return kD(()=>{return u(C[Z[0]])},(M)=>{return Z.forEach((O)=>{C[O]=M}),C},(M)=>{throw new a(M.message)})},F),this}conflicts(D,u){return L("<string|object> [string|array]",[D,u],arguments.length),z(this,o,"f").conflicts(D,u),this}config(D="config",u,F){if(L("[object|string] [string|function] [function]",[D,u,F],arguments.length),typeof D==="object"&&!Array.isArray(D))return D=Su(D,z(this,yD,"f"),this[aD]()["deep-merge-config"]||!1,z(this,b,"f")),z(this,N,"f").configObjects=(z(this,N,"f").configObjects||[]).concat(D),this;if(typeof u==="function")F=u,u=void 0;return this.describe(D,u||z(this,w,"f").deferY18nLookup("Path to JSON config file")),(Array.isArray(D)?D:[D]).forEach((C)=>{z(this,N,"f").config[C]=F||!0}),this}completion(D,u,F){if(L("[string] [string|boolean|function] [function]",[D,u,F],arguments.length),typeof u==="function")F=u,u=void 0;if(K(this,YD,D||z(this,YD,"f")||"completion","f"),!u&&u!==!1)u="generate completion script";if(this.command(z(this,YD,"f"),u),F)z(this,GD,"f").registerFunction(F);return this}command(D,u,F,C,E,B){return L("<string|array|object> [string|boolean] [function|object] [function] [array] [boolean|string]",[D,u,F,C,E,B],arguments.length),z(this,e,"f").addHandler(D,u,F,C,E,B),this}commands(D,u,F,C,E,B){return this.command(D,u,F,C,E,B)}commandDir(D,u){L("<string> [object]",[D,u],arguments.length);let F=z(this,wu,"f")||z(this,b,"f").require;return z(this,e,"f").addDirectory(D,F,z(this,b,"f").getCallerFile(),u),this}count(D){return L("<array|string>",[D],arguments.length),this[vD]("count",D),this[Du](D),this}default(D,u,F){if(L("<object|string|array> [*] [string]",[D,u,F],arguments.length),F)QF(D,z(this,b,"f")),z(this,N,"f").defaultDescription[D]=F;if(typeof u==="function"){if(QF(D,z(this,b,"f")),!z(this,N,"f").defaultDescription[D])z(this,N,"f").defaultDescription[D]=z(this,w,"f").functionDescription(u);u=u.call()}return this[zu](this.default.bind(this),"default",D,u),this}defaults(D,u,F){return this.default(D,u,F)}demandCommand(D=1,u,F,C){if(L("[number] [number|string] [string|null|undefined] [string|null|undefined]",[D,u,F,C],arguments.length),typeof u!=="number")F=u,u=1/0;return this.global("_",!1),z(this,N,"f").demandedCommands._={min:D,max:u,minMsg:F,maxMsg:C},this}demand(D,u,F){if(Array.isArray(u))u.forEach((C)=>{MD(F,!0,z(this,b,"f")),this.demandOption(C,F)}),u=1/0;else if(typeof u!=="number")F=u,u=1/0;if(typeof D==="number")MD(F,!0,z(this,b,"f")),this.demandCommand(D,u,F,F);else if(Array.isArray(D))D.forEach((C)=>{MD(F,!0,z(this,b,"f")),this.demandOption(C,F)});else if(typeof F==="string")this.demandOption(D,F);else if(F===!0||typeof F>"u")this.demandOption(D);return this}demandOption(D,u){return L("<object|string|array> [string]",[D,u],arguments.length),this[zu](this.demandOption.bind(this),"demandedOptions",D,u),this}deprecateOption(D,u){return L("<string> [string|boolean]",[D,u],arguments.length),z(this,N,"f").deprecatedOptions[D]=u,this}describe(D,u){return L("<object|string|array> [string]",[D,u],arguments.length),this[WF](D,!0),z(this,w,"f").describe(D,u),this}detectLocale(D){return L("<boolean>",[D],arguments.length),K(this,iD,D,"f"),this}env(D){if(L("[string|boolean]",[D],arguments.length),D===!1)delete z(this,N,"f").envPrefix;else z(this,N,"f").envPrefix=D||"";return this}epilogue(D){return L("<string>",[D],arguments.length),z(this,w,"f").epilog(D),this}epilog(D){return this.epilogue(D)}example(D,u){if(L("<string|array> [string]",[D,u],arguments.length),Array.isArray(D))D.forEach((F)=>this.example(...F));else z(this,w,"f").example(D,u);return this}exit(D,u){if(K(this,qD,!0,"f"),K(this,wD,u,"f"),z(this,UD,"f"))z(this,b,"f").process.exit(D)}exitProcess(D=!0){return L("[boolean]",[D],arguments.length),K(this,UD,D,"f"),this}fail(D){if(L("<function|boolean>",[D],arguments.length),typeof D==="boolean"&&D!==!1)throw new a("Invalid first argument. Expected function or boolean 'false'");return z(this,w,"f").failFn(D),this}getAliases(){return this.parsed?this.parsed.aliases:{}}async getCompletion(D,u){if(L("<array> [function]",[D,u],arguments.length),!u)return new Promise((F,C)=>{z(this,GD,"f").getCompletion(D,(E,B)=>{if(E)C(E);else F(B)})});else return z(this,GD,"f").getCompletion(D,u)}getDemandedOptions(){return L([],0),z(this,N,"f").demandedOptions}getDemandedCommands(){return L([],0),z(this,N,"f").demandedCommands}getDeprecatedOptions(){return L([],0),z(this,N,"f").deprecatedOptions}getDetectLocale(){return z(this,iD,"f")}getExitProcess(){return z(this,UD,"f")}getGroups(){return Object.assign({},z(this,jD,"f"),z(this,nD,"f"))}getHelp(){if(K(this,qD,!0,"f"),!z(this,w,"f").hasCachedHelpMessage()){if(!this.parsed){let u=this[Ou](z(this,mD,"f"),void 0,void 0,0,!0);if(l(u))return u.then(()=>{return z(this,w,"f").help()})}let D=z(this,e,"f").runDefaultBuilderOn(this);if(l(D))return D.then(()=>{return z(this,w,"f").help()})}return Promise.resolve(z(this,w,"f").help())}getOptions(){return z(this,N,"f")}getStrict(){return z(this,oD,"f")}getStrictCommands(){return z(this,sD,"f")}getStrictOptions(){return z(this,rD,"f")}global(D,u){if(L("<string|array> [boolean]",[D,u],arguments.length),D=[].concat(D),u!==!1)z(this,N,"f").local=z(this,N,"f").local.filter((F)=>D.indexOf(F)===-1);else D.forEach((F)=>{if(!z(this,N,"f").local.includes(F))z(this,N,"f").local.push(F)});return this}group(D,u){L("<string|array> <string>",[D,u],arguments.length);let F=z(this,nD,"f")[u]||z(this,jD,"f")[u];if(z(this,nD,"f")[u])delete z(this,nD,"f")[u];let C={};return z(this,jD,"f")[u]=(F||[]).concat(D).filter((E)=>{if(C[E])return!1;return C[E]=!0}),this}hide(D){return L("<string>",[D],arguments.length),z(this,N,"f").hiddenOptions.push(D),this}implies(D,u){return L("<string|object> [number|string|array]",[D,u],arguments.length),z(this,o,"f").implies(D,u),this}locale(D){if(L("[string]",[D],arguments.length),D===void 0)return this[YF](),z(this,b,"f").y18n.getLocale();return K(this,iD,!1,"f"),z(this,b,"f").y18n.setLocale(D),this}middleware(D,u,F){return z(this,WD,"f").addMiddleware(D,!!u,F)}nargs(D,u){return L("<string|object|array> [number]",[D,u],arguments.length),this[zu](this.nargs.bind(this),"narg",D,u),this}normalize(D){return L("<array|string>",[D],arguments.length),this[vD]("normalize",D),this}number(D){return L("<array|string>",[D],arguments.length),this[vD]("number",D),this[Du](D),this}option(D,u){if(L("<string|object> [object]",[D,u],arguments.length),typeof D==="object")Object.keys(D).forEach((F)=>{this.options(F,D[F])});else{if(typeof u!=="object")u={};if(this[Du](D),z(this,_D,"f")&&(D==="version"||(u===null||u===void 0?void 0:u.alias)==="version"))this[i0](['"version" is a reserved word.',"Please do one of the following:",'- Disable version with `yargs.version(false)` if using "version" as an option',"- Use the built-in `yargs.version` method instead (if applicable)","- Use a different option key","https://yargs.js.org/docs/#api-reference-version"].join(`
79
- `),void 0,"versionWarning");if(z(this,N,"f").key[D]=!0,u.alias)this.alias(D,u.alias);let F=u.deprecate||u.deprecated;if(F)this.deprecateOption(D,F);let C=u.demand||u.required||u.require;if(C)this.demand(D,C);if(u.demandOption)this.demandOption(D,typeof u.demandOption==="string"?u.demandOption:void 0);if(u.conflicts)this.conflicts(D,u.conflicts);if("default"in u)this.default(D,u.default);if(u.implies!==void 0)this.implies(D,u.implies);if(u.nargs!==void 0)this.nargs(D,u.nargs);if(u.config)this.config(D,u.configParser);if(u.normalize)this.normalize(D);if(u.choices)this.choices(D,u.choices);if(u.coerce)this.coerce(D,u.coerce);if(u.group)this.group(D,u.group);if(u.boolean||u.type==="boolean"){if(this.boolean(D),u.alias)this.boolean(u.alias)}if(u.array||u.type==="array"){if(this.array(D),u.alias)this.array(u.alias)}if(u.number||u.type==="number"){if(this.number(D),u.alias)this.number(u.alias)}if(u.string||u.type==="string"){if(this.string(D),u.alias)this.string(u.alias)}if(u.count||u.type==="count")this.count(D);if(typeof u.global==="boolean")this.global(D,u.global);if(u.defaultDescription)z(this,N,"f").defaultDescription[D]=u.defaultDescription;if(u.skipValidation)this.skipValidation(D);let E=u.describe||u.description||u.desc,B=z(this,w,"f").getDescriptions();if(!Object.prototype.hasOwnProperty.call(B,D)||typeof E==="string")this.describe(D,E);if(u.hidden)this.hide(D);if(u.requiresArg)this.requiresArg(D)}return this}options(D,u){return this.option(D,u)}parse(D,u,F){if(L("[string|array] [function|boolean|object] [function]",[D,u,F],arguments.length),this[g0](),typeof D>"u")D=z(this,mD,"f");if(typeof u==="object")K(this,lD,u,"f"),u=F;if(typeof u==="function")K(this,OD,u,"f"),u=!1;if(!u)K(this,mD,D,"f");if(z(this,OD,"f"))K(this,UD,!1,"f");let C=this[Ou](D,!!u),E=this.parsed;if(z(this,GD,"f").setParsed(this.parsed),l(C))return C.then((B)=>{if(z(this,OD,"f"))z(this,OD,"f").call(this,z(this,wD,"f"),B,z(this,$D,"f"));return B}).catch((B)=>{if(z(this,OD,"f"))z(this,OD,"f")(B,this.parsed.argv,z(this,$D,"f"));throw B}).finally(()=>{this[VF](),this.parsed=E});else{if(z(this,OD,"f"))z(this,OD,"f").call(this,z(this,wD,"f"),C,z(this,$D,"f"));this[VF](),this.parsed=E}return C}parseAsync(D,u,F){let C=this.parse(D,u,F);return!l(C)?Promise.resolve(C):C}parseSync(D,u,F){let C=this.parse(D,u,F);if(l(C))throw new a(".parseSync() must not be used with asynchronous builders, handlers, or middleware");return C}parserConfiguration(D){return L("<object>",[D],arguments.length),K(this,mu,D,"f"),this}pkgConf(D,u){L("<string> [string]",[D,u],arguments.length);let F=null,C=this[qF](u||z(this,yD,"f"));if(C[D]&&typeof C[D]==="object")F=Su(C[D],u||z(this,yD,"f"),this[aD]()["deep-merge-config"]||!1,z(this,b,"f")),z(this,N,"f").configObjects=(z(this,N,"f").configObjects||[]).concat(F);return this}positional(D,u){L("<string> <object>",[D,u],arguments.length);let F=["default","defaultDescription","implies","normalize","choices","conflicts","coerce","type","describe","desc","description","alias"];u=bD(u,(B,$)=>{if(B==="type"&&!["string","number","boolean"].includes($))return!1;return F.includes(B)});let C=z(this,qu,"f").fullCommands[z(this,qu,"f").fullCommands.length-1],E=C?z(this,e,"f").cmdToParseOptions(C):{array:[],alias:{},default:{},demand:{}};return Eu(E).forEach((B)=>{let $=E[B];if(Array.isArray($)){if($.indexOf(D)!==-1)u[B]=!0}else if($[D]&&!(B in u))u[B]=$[D]}),this.group(D,z(this,w,"f").getPositionalGroupName()),this.option(D,u)}recommendCommands(D=!0){return L("[boolean]",[D],arguments.length),K(this,vu,D,"f"),this}required(D,u,F){return this.demand(D,u,F)}require(D,u,F){return this.demand(D,u,F)}requiresArg(D){if(L("<array|string|object> [number]",[D],arguments.length),typeof D==="string"&&z(this,N,"f").narg[D])return this;else this[zu](this.requiresArg.bind(this),"narg",D,NaN);return this}showCompletionScript(D,u){return L("[string] [string]",[D,u],arguments.length),D=D||this.$0,z(this,gD,"f").log(z(this,GD,"f").generateCompletionScript(D,u||z(this,YD,"f")||"completion")),this}showHelp(D){if(L("[string|function]",[D],arguments.length),K(this,qD,!0,"f"),!z(this,w,"f").hasCachedHelpMessage()){if(!this.parsed){let F=this[Ou](z(this,mD,"f"),void 0,void 0,0,!0);if(l(F))return F.then(()=>{z(this,w,"f").showHelp(D)}),this}let u=z(this,e,"f").runDefaultBuilderOn(this);if(l(u))return u.then(()=>{z(this,w,"f").showHelp(D)}),this}return z(this,w,"f").showHelp(D),this}scriptName(D){return this.customScriptName=!0,this.$0=D,this}showHelpOnFail(D,u){return L("[boolean|string] [string]",[D,u],arguments.length),z(this,w,"f").showHelpOnFail(D,u),this}showVersion(D){return L("[string|function]",[D],arguments.length),z(this,w,"f").showVersion(D),this}skipValidation(D){return L("<array|string>",[D],arguments.length),this[vD]("skipValidation",D),this}strict(D){return L("[boolean]",[D],arguments.length),K(this,oD,D!==!1,"f"),this}strictCommands(D){return L("[boolean]",[D],arguments.length),K(this,sD,D!==!1,"f"),this}strictOptions(D){return L("[boolean]",[D],arguments.length),K(this,rD,D!==!1,"f"),this}string(D){return L("<array|string>",[D],arguments.length),this[vD]("string",D),this[Du](D),this}terminalWidth(){return L([],0),z(this,b,"f").process.stdColumns}updateLocale(D){return this.updateStrings(D)}updateStrings(D){return L("<object>",[D],arguments.length),K(this,iD,!1,"f"),z(this,b,"f").y18n.updateLocale(D),this}usage(D,u,F,C){if(L("<string|null|undefined> [string|boolean] [function|object] [function]",[D,u,F,C],arguments.length),u!==void 0)if(MD(D,null,z(this,b,"f")),(D||"").match(/^\$0( |$)/))return this.command(D,u,F,C);else throw new a(".usage() description must start with $0 if being used as alias for .command()");else return z(this,w,"f").usage(D),this}usageConfiguration(D){return L("<object>",[D],arguments.length),K(this,cu,D,"f"),this}version(D,u,F){if(L("[boolean|string] [string] [string]",[D,u,F],arguments.length),z(this,_D,"f"))this[JF](z(this,_D,"f")),z(this,w,"f").version(void 0),K(this,_D,null,"f");if(arguments.length===0)F=this[o0](),D="version";else if(arguments.length===1){if(D===!1)return this;F=D,D="version"}else if(arguments.length===2)F=u,u=void 0;return K(this,_D,typeof D==="string"?D:"version","f"),u=u||z(this,w,"f").deferY18nLookup("Show version number"),z(this,w,"f").version(F||void 0),this.boolean(z(this,_D,"f")),this.describe(z(this,_D,"f"),u),this}wrap(D){return L("<number|null|undefined>",[D],arguments.length),z(this,w,"f").wrap(D),this}[(e=new WeakMap,yD=new WeakMap,qu=new WeakMap,GD=new WeakMap,YD=new WeakMap,Pu=new WeakMap,wD=new WeakMap,iD=new WeakMap,xu=new WeakMap,UD=new WeakMap,bu=new WeakMap,WD=new WeakMap,jD=new WeakMap,qD=new WeakMap,VD=new WeakMap,hu=new WeakMap,gD=new WeakMap,$D=new WeakMap,N=new WeakMap,wu=new WeakMap,mu=new WeakMap,OD=new WeakMap,lD=new WeakMap,$u=new WeakMap,nD=new WeakMap,mD=new WeakMap,vu=new WeakMap,b=new WeakMap,oD=new WeakMap,sD=new WeakMap,rD=new WeakMap,w=new WeakMap,cu=new WeakMap,_D=new WeakMap,o=new WeakMap,k0)](D){if(!D._||!D["--"])return D;D._.push.apply(D._,D["--"]);try{delete D["--"]}catch(u){}return D}[y0](){return{log:(...D)=>{if(!this[du]())console.log(...D);if(K(this,qD,!0,"f"),z(this,$D,"f").length)K(this,$D,z(this,$D,"f")+`
80
- `,"f");K(this,$D,z(this,$D,"f")+D.join(" "),"f")},error:(...D)=>{if(!this[du]())console.error(...D);if(K(this,qD,!0,"f"),z(this,$D,"f").length)K(this,$D,z(this,$D,"f")+`
81
- `,"f");K(this,$D,z(this,$D,"f")+D.join(" "),"f")}}}[JF](D){Eu(z(this,N,"f")).forEach((u)=>{if(((C)=>C==="configObjects")(u))return;let F=z(this,N,"f")[u];if(Array.isArray(F)){if(F.includes(D))F.splice(F.indexOf(D),1)}else if(typeof F==="object")delete F[D]}),delete z(this,w,"f").getDescriptions()[D]}[i0](D,u,F){if(!z(this,xu,"f")[F])z(this,b,"f").process.emitWarning(D,u),z(this,xu,"f")[F]=!0}[g0](){z(this,bu,"f").push({options:z(this,N,"f"),configObjects:z(this,N,"f").configObjects.slice(0),exitProcess:z(this,UD,"f"),groups:z(this,jD,"f"),strict:z(this,oD,"f"),strictCommands:z(this,sD,"f"),strictOptions:z(this,rD,"f"),completionCommand:z(this,YD,"f"),output:z(this,$D,"f"),exitError:z(this,wD,"f"),hasOutput:z(this,qD,"f"),parsed:this.parsed,parseFn:z(this,OD,"f"),parseContext:z(this,lD,"f")}),z(this,w,"f").freeze(),z(this,o,"f").freeze(),z(this,e,"f").freeze(),z(this,WD,"f").freeze()}[l0](){let D="",u;if(/\b(node|iojs|electron)(\.exe)?$/.test(z(this,b,"f").process.argv()[0]))u=z(this,b,"f").process.argv().slice(1,2);else u=z(this,b,"f").process.argv().slice(0,1);if(D=u.map((F)=>{let C=this[$2](z(this,yD,"f"),F);return F.match(/^(\/|([a-zA-Z]:)?\\)/)&&C.length<F.length?C:F}).join(" ").trim(),z(this,b,"f").getEnv("_")&&z(this,b,"f").getProcessArgvBin()===z(this,b,"f").getEnv("_"))D=z(this,b,"f").getEnv("_").replace(`${z(this,b,"f").path.dirname(z(this,b,"f").process.execPath())}/`,"");return D}[aD](){return z(this,mu,"f")}[n0](){return z(this,cu,"f")}[YF](){if(!z(this,iD,"f"))return;let D=z(this,b,"f").getEnv("LC_ALL")||z(this,b,"f").getEnv("LC_MESSAGES")||z(this,b,"f").getEnv("LANG")||z(this,b,"f").getEnv("LANGUAGE")||"en_US";this.locale(D.replace(/[.:].*/,""))}[o0](){return this[qF]().version||"unknown"}[s0](D){let u=D["--"]?D["--"]:D._;for(let F=0,C;(C=u[F])!==void 0;F++)if(z(this,b,"f").Parser.looksLikeNumber(C)&&Number.isSafeInteger(Math.floor(parseFloat(`${C}`))))u[F]=Number(C);return D}[qF](D){let u=D||"*";if(z(this,$u,"f")[u])return z(this,$u,"f")[u];let F={};try{let C=D||z(this,b,"f").mainFilename;if(z(this,b,"f").path.extname(C))C=z(this,b,"f").path.dirname(C);let E=z(this,b,"f").findUp(C,(B,$)=>{if($.includes("package.json"))return"package.json";else return});MD(E,void 0,z(this,b,"f")),F=JSON.parse(z(this,b,"f").readFileSync(E,"utf8"))}catch(C){}return z(this,$u,"f")[u]=F||{},z(this,$u,"f")[u]}[vD](D,u){u=[].concat(u),u.forEach((F)=>{F=this[UF](F),z(this,N,"f")[D].push(F)})}[zu](D,u,F,C){this[HF](D,u,F,C,(E,B,$)=>{z(this,N,"f")[E][B]=$})}[OF](D,u,F,C){this[HF](D,u,F,C,(E,B,$)=>{z(this,N,"f")[E][B]=(z(this,N,"f")[E][B]||[]).concat($)})}[HF](D,u,F,C,E){if(Array.isArray(F))F.forEach((B)=>{D(B,C)});else if(((B)=>typeof B==="object")(F))for(let B of Eu(F))D(B,F[B]);else E(u,this[UF](F),C)}[UF](D){if(D==="__proto__")return"___proto___";return D}[WF](D,u){return this[zu](this[WF].bind(this),"key",D,u),this}[VF](){var D,u,F,C,E,B,$,Z,M,O,V,Y;let q=z(this,bu,"f").pop();MD(q,void 0,z(this,b,"f"));let H;D=this,u=this,F=this,C=this,E=this,B=this,$=this,Z=this,M=this,O=this,V=this,Y=this,{options:{set value(W){K(D,N,W,"f")}}.value,configObjects:H,exitProcess:{set value(W){K(u,UD,W,"f")}}.value,groups:{set value(W){K(F,jD,W,"f")}}.value,output:{set value(W){K(C,$D,W,"f")}}.value,exitError:{set value(W){K(E,wD,W,"f")}}.value,hasOutput:{set value(W){K(B,qD,W,"f")}}.value,parsed:this.parsed,strict:{set value(W){K($,oD,W,"f")}}.value,strictCommands:{set value(W){K(Z,sD,W,"f")}}.value,strictOptions:{set value(W){K(M,rD,W,"f")}}.value,completionCommand:{set value(W){K(O,YD,W,"f")}}.value,parseFn:{set value(W){K(V,OD,W,"f")}}.value,parseContext:{set value(W){K(Y,lD,W,"f")}}.value}=q,z(this,N,"f").configObjects=H,z(this,w,"f").unfreeze(),z(this,o,"f").unfreeze(),z(this,e,"f").unfreeze(),z(this,WD,"f").unfreeze()}[r0](D,u){return kD(u,(F)=>{return D(F),F})}getInternalMethods(){return{getCommandInstance:this[a0].bind(this),getContext:this[e0].bind(this),getHasOutput:this[D2].bind(this),getLoggerInstance:this[u2].bind(this),getParseContext:this[F2].bind(this),getParserConfiguration:this[aD].bind(this),getUsageConfiguration:this[n0].bind(this),getUsageInstance:this[C2].bind(this),getValidationInstance:this[E2].bind(this),hasParseCallback:this[du].bind(this),isGlobalContext:this[B2].bind(this),postProcess:this[eD].bind(this),reset:this[TF].bind(this),runValidation:this[fF].bind(this),runYargsParserAndExecuteCommands:this[Ou].bind(this),setHasOutput:this[z2].bind(this)}}[a0](){return z(this,e,"f")}[e0](){return z(this,qu,"f")}[D2](){return z(this,qD,"f")}[u2](){return z(this,gD,"f")}[F2](){return z(this,lD,"f")||{}}[C2](){return z(this,w,"f")}[E2](){return z(this,o,"f")}[du](){return!!z(this,OD,"f")}[B2](){return z(this,hu,"f")}[eD](D,u,F,C){if(F)return D;if(l(D))return D;if(!u)D=this[k0](D);if(this[aD]()["parse-positional-numbers"]||this[aD]()["parse-positional-numbers"]===void 0)D=this[s0](D);if(C)D=tD(D,this,z(this,WD,"f").getMiddleware(),!1);return D}[TF](D={}){K(this,N,z(this,N,"f")||{},"f");let u={};u.local=z(this,N,"f").local||[],u.configObjects=z(this,N,"f").configObjects||[];let F={};u.local.forEach((B)=>{F[B]=!0,(D[B]||[]).forEach(($)=>{F[$]=!0})}),Object.assign(z(this,nD,"f"),Object.keys(z(this,jD,"f")).reduce((B,$)=>{let Z=z(this,jD,"f")[$].filter((M)=>!(M in F));if(Z.length>0)B[$]=Z;return B},{})),K(this,jD,{},"f");let C=["array","boolean","string","skipValidation","count","normalize","number","hiddenOptions"],E=["narg","key","alias","default","defaultDescription","config","choices","demandedOptions","demandedCommands","deprecatedOptions"];if(C.forEach((B)=>{u[B]=(z(this,N,"f")[B]||[]).filter(($)=>!F[$])}),E.forEach((B)=>{u[B]=bD(z(this,N,"f")[B],($)=>!F[$])}),u.envPrefix=z(this,N,"f").envPrefix,K(this,N,u,"f"),K(this,w,z(this,w,"f")?z(this,w,"f").reset(F):b0(this,z(this,b,"f")),"f"),K(this,o,z(this,o,"f")?z(this,o,"f").reset(F):p0(this,z(this,w,"f"),z(this,b,"f")),"f"),K(this,e,z(this,e,"f")?z(this,e,"f").reset():S0(z(this,w,"f"),z(this,o,"f"),z(this,WD,"f"),z(this,b,"f")),"f"),!z(this,GD,"f"))K(this,GD,v0(this,z(this,w,"f"),z(this,e,"f"),z(this,b,"f")),"f");return z(this,WD,"f").reset(),K(this,YD,null,"f"),K(this,$D,"","f"),K(this,wD,null,"f"),K(this,qD,!1,"f"),this.parsed=!1,this}[$2](D,u){return z(this,b,"f").path.relative(D,u)}[Ou](D,u,F,C=0,E=!1){var B,$,Z,M;let O=!!F||E;D=D||z(this,mD,"f"),z(this,N,"f").__=z(this,b,"f").y18n.__,z(this,N,"f").configuration=this[aD]();let V=!!z(this,N,"f").configuration["populate--"],Y=Object.assign({},z(this,N,"f").configuration,{"populate--":!0}),q=z(this,b,"f").Parser.detailed(D,Object.assign({},z(this,N,"f"),{configuration:{"parse-positional-numbers":!1,...Y}})),H=Object.assign(q.argv,z(this,lD,"f")),W=void 0,J=q.aliases,S=!1,d=!1;if(Object.keys(H).forEach((v)=>{if(v===z(this,VD,"f")&&H[v])S=!0;else if(v===z(this,_D,"f")&&H[v])d=!0}),H.$0=this.$0,this.parsed=q,C===0)z(this,w,"f").clearCachedHelpMessage();try{if(this[YF](),u)return this[eD](H,V,!!F,!1);if(z(this,VD,"f")){if([z(this,VD,"f")].concat(J[z(this,VD,"f")]||[]).filter((uD)=>uD.length>1).includes(""+H._[H._.length-1]))H._.pop(),S=!0}K(this,hu,!1,"f");let v=z(this,e,"f").getCommands(),ZD=((B=z(this,GD,"f"))===null||B===void 0?void 0:B.completionKey)?[($=z(this,GD,"f"))===null||$===void 0?void 0:$.completionKey,...(M=this.getAliases()[(Z=z(this,GD,"f"))===null||Z===void 0?void 0:Z.completionKey])!==null&&M!==void 0?M:[]].some((g)=>Object.prototype.hasOwnProperty.call(H,g)):!1,m=S||ZD||E;if(H._.length){if(v.length){let g;for(let uD=C||0,s;H._[uD]!==void 0;uD++)if(s=String(H._[uD]),v.includes(s)&&s!==z(this,YD,"f")){let KD=z(this,e,"f").runCommand(s,this,q,uD+1,E,S||d||E);return this[eD](KD,V,!!F,!1)}else if(!g&&s!==z(this,YD,"f")){g=s;break}if(!z(this,e,"f").hasDefaultCommand()&&z(this,vu,"f")&&g&&!m)z(this,o,"f").recommendCommands(g,v)}if(z(this,YD,"f")&&H._.includes(z(this,YD,"f"))&&!ZD){if(z(this,UD,"f"))hD(!0);this.showCompletionScript(),this.exit(0)}}if(z(this,e,"f").hasDefaultCommand()&&!m){let g=z(this,e,"f").runCommand(null,this,q,0,E,S||d||E);return this[eD](g,V,!!F,!1)}if(ZD){if(z(this,UD,"f"))hD(!0);D=[].concat(D);let g=D.slice(D.indexOf(`--${z(this,GD,"f").completionKey}`)+1);return z(this,GD,"f").getCompletion(g,(uD,s)=>{if(uD)throw new a(uD.message);(s||[]).forEach((KD)=>{z(this,gD,"f").log(KD)}),this.exit(0)}),this[eD](H,!V,!!F,!1)}if(!z(this,qD,"f")){if(S){if(z(this,UD,"f"))hD(!0);O=!0,this.showHelp((g)=>{z(this,gD,"f").log(g),this.exit(0)})}else if(d){if(z(this,UD,"f"))hD(!0);O=!0,z(this,w,"f").showVersion("log"),this.exit(0)}}if(!O&&z(this,N,"f").skipValidation.length>0)O=Object.keys(H).some((g)=>z(this,N,"f").skipValidation.indexOf(g)>=0&&H[g]===!0);if(!O){if(q.error)throw new a(q.error.message);if(!ZD){let g=this[fF](J,{},q.error);if(!F)W=tD(H,this,z(this,WD,"f").getMiddleware(),!0);if(W=this[r0](g,W!==null&&W!==void 0?W:H),l(W)&&!F)W=W.then(()=>{return tD(H,this,z(this,WD,"f").getMiddleware(),!1)})}}}catch(v){if(v instanceof a)z(this,w,"f").fail(v.message,v);else throw v}return this[eD](W!==null&&W!==void 0?W:H,V,!!F,!0)}[fF](D,u,F,C){let E={...this.getDemandedOptions()};return(B)=>{if(F)throw new a(F.message);z(this,o,"f").nonOptionCount(B),z(this,o,"f").requiredArguments(B,E);let $=!1;if(z(this,sD,"f"))$=z(this,o,"f").unknownCommands(B);if(z(this,oD,"f")&&!$)z(this,o,"f").unknownArguments(B,D,u,!!C);else if(z(this,rD,"f"))z(this,o,"f").unknownArguments(B,D,{},!1,!1);z(this,o,"f").limitedChoices(B),z(this,o,"f").implications(B),z(this,o,"f").conflicting(B)}}[z2](){K(this,qD,!0,"f")}[Du](D){if(typeof D==="string")z(this,N,"f").key[D]=!0;else for(let u of D)z(this,N,"f").key[u]=!0}}function P0(D){return!!D&&typeof D.getInternalMethods==="function"}var v3=Z2(K0),X2=v3;var M2={name:"@coryrylan/cradle",version:"1.1.0",description:"A runtime for portable agents defined as folders \u2014 launches the pi coding agent configured from an agent folder, sandboxed with nono",main:"./dist/index.js",module:"./dist/index.js",types:"./dist/index.d.ts",type:"module",exports:{".":{types:"./dist/index.d.ts",default:"./dist/index.js"}},bin:{cradle:"dist/index.js"},files:["README.md","CHANGELOG.md","LICENSE","package.json","dist/index.js","dist/**/*.d.ts","!dist/**/*.test.d.ts"],repository:{type:"git",url:"git+https://github.com/coryrylan/cradle.git",directory:"projects/cli"},keywords:["pi","agents","agent-folders","sandbox","nono","cli","bun"],author:"Cory Rylan (https://coryrylan.com)",license:"MIT",bugs:{url:"https://github.com/coryrylan/cradle/issues"},homepage:"https://github.com/coryrylan/cradle/tree/main/projects/cli#readme",engines:{bun:">=1.3.0"},publishConfig:{access:"public"},scripts:{start:"wireit",ci:"wireit","ci:nocache":"bun run clean && bun run ci",clean:"rm -rf dist",test:"wireit","test:coverage":"wireit",lint:"wireit",build:"wireit","install:local":"wireit","uninstall:local":"wireit",release:"wireit"},wireit:{start:{command:"bun src/index.ts",cache:!1},ci:{dependencies:["lint","build","test:coverage"]},test:{command:"bun test",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json","bunfig.toml"],output:[]},"test:coverage":{command:"bun test --coverage",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json","bunfig.toml"],output:[]},lint:{command:"eslint .",files:["src/**/*.ts","eslint.config.js","package.json"],output:[]},build:{dependencies:["build:js","build:tsc","build:darwin-arm64","build:darwin-x64","build:linux-x64","build:linux-arm64","build:windows-x64"]},"build:js":{command:"bun build ./src/index.ts --outdir=./dist --target=bun --format=esm --minify",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/index.js"]},"build:tsc":{command:"tsc --emitDeclarationOnly --project tsconfig.types.json",files:["src/**/*.ts","src/**/*.json","tsconfig.json","tsconfig.types.json"],output:["dist/**/*.d.ts"]},"build:darwin-arm64":{command:"bun build --compile --minify src/index.ts --target=bun-darwin-arm64 --outfile dist/cradle-macos-arm64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-macos-arm64"]},"build:darwin-x64":{command:"bun build --compile --minify src/index.ts --target=bun-darwin-x64 --outfile dist/cradle-macos-x64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-macos-x64"]},"build:linux-x64":{command:"bun build --compile --minify src/index.ts --target=bun-linux-x64 --outfile dist/cradle-linux-x64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-linux-x64"]},"build:linux-arm64":{command:"bun build --compile --minify src/index.ts --target=bun-linux-arm64 --outfile dist/cradle-linux-arm64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-linux-arm64"]},"build:windows-x64":{command:"bun build --compile --minify src/index.ts --target=bun-windows-x64 --outfile dist/cradle-windows-x64.exe",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-windows-x64.exe"]},"install:local":{dependencies:["build"],command:"bash install.sh",cache:!1},"uninstall:local":{command:'rm -f "$HOME/.local/bin/cradle"',cache:!1},release:{command:"HUSKY=0 bun x semantic-release",dependencies:["ci"]}},dependencies:{yargs:"^18.0.0"},devDependencies:{"@coryrylan/tools":"1.1.0","@eslint/js":"catalog:","@eslint/json":"1.2.0","@types/bun":"catalog:","@types/yargs":"17.0.35",eslint:"catalog:","eslint-plugin-jsdoc":"63.2.0",typescript:"catalog:","typescript-eslint":"catalog:"}};import{join as J2}from"path";var pu="agent-browser-nono-fallback.ts";function G2(){return`// generated by cradle for sandboxed agent-browser processes \u2014 do not edit
76
+ `)}`:"";u.fail(E("Missing required argument: %s","Missing required arguments: %s",Object.keys(O).length,Object.keys(O).join(", ")+J))}},B.unknownArguments=function(Y,q,O,W,J=!0){var S;let d=D.getInternalMethods().getCommandInstance().getCommands(),v=[],QD=D.getInternalMethods().getContext();if(Object.keys(Y).forEach((m)=>{if(!l0.includes(m)&&!Object.prototype.hasOwnProperty.call(O,m)&&!Object.prototype.hasOwnProperty.call(D.getInternalMethods().getParseContext(),m)&&!B.isValidAndSomeAliasIsNotNew(m,q))v.push(m)}),J&&(QD.commands.length>0||d.length>0||W))Y._.slice(QD.commands.length).forEach((m)=>{if(!d.includes(""+m))v.push(""+m)});if(J){let l=((S=D.getDemandedCommands()._)===null||S===void 0?void 0:S.max)||0,uD=QD.commands.length+l;if(uD<Y._.length)Y._.slice(uD).forEach((s)=>{if(s=String(s),!QD.commands.includes(s)&&!v.includes(s))v.push(s)})}if(v.length)u.fail(E("Unknown argument: %s","Unknown arguments: %s",v.length,v.map((m)=>m.trim()?m:`"${m}"`).join(", ")))},B.unknownCommands=function(Y){let q=D.getInternalMethods().getCommandInstance().getCommands(),O=[],W=D.getInternalMethods().getContext();if(W.commands.length>0||q.length>0)Y._.slice(W.commands.length).forEach((J)=>{if(!q.includes(""+J))O.push(""+J)});if(O.length>0)return u.fail(E("Unknown command: %s","Unknown commands: %s",O.length,O.join(", "))),!0;else return!1},B.isValidAndSomeAliasIsNotNew=function(Y,q){if(!Object.prototype.hasOwnProperty.call(q,Y))return!1;let O=D.parsed.newAliases;return[Y,...q[Y]].some((W)=>!Object.prototype.hasOwnProperty.call(O,W)||!O[Y])},B.limitedChoices=function(Y){let q=D.getOptions(),O={};if(!Object.keys(q.choices).length)return;Object.keys(Y).forEach((S)=>{if(l0.indexOf(S)===-1&&Object.prototype.hasOwnProperty.call(q.choices,S))[].concat(Y[S]).forEach((d)=>{if(q.choices[S].indexOf(d)===-1&&d!==void 0)O[S]=(O[S]||[]).concat(d)})});let W=Object.keys(O);if(!W.length)return;let J=C("Invalid values:");W.forEach((S)=>{J+=`
77
+ ${C("Argument: %s, Given: %s, Choices: %s",S,u.stringifiedValues(O[S]),u.stringifiedValues(q.choices[S]))}`}),u.fail(J)};let $={};B.implies=function(Y,q){if(K("<string|object> [array|number|string]",[Y,q],arguments.length),typeof Y==="object")Object.keys(Y).forEach((O)=>{B.implies(O,Y[O])});else{if(D.global(Y),!$[Y])$[Y]=[];if(Array.isArray(q))q.forEach((O)=>B.implies(Y,O));else GD(q,void 0,F),$[Y].push(q)}},B.getImplied=function(){return $};function Z(V,Y){let q=Number(Y);if(Y=isNaN(q)?Y:q,typeof Y==="number")Y=V._.length>=Y;else if(Y.match(/^--no-.+/))Y=Y.match(/^--no-(.+)/)[1],Y=!Object.prototype.hasOwnProperty.call(V,Y);else Y=Object.prototype.hasOwnProperty.call(V,Y);return Y}B.implications=function(Y){let q=[];if(Object.keys($).forEach((O)=>{let W=O;($[O]||[]).forEach((J)=>{let S=W,d=J;if(S=Z(Y,S),J=Z(Y,J),S&&!J)q.push(` ${W} -> ${d}`)})}),q.length){let O=`${C("Implications failed:")}
78
+ `;q.forEach((W)=>{O+=W}),u.fail(O)}};let M={};B.conflicts=function(Y,q){if(K("<string|object> [array|string]",[Y,q],arguments.length),typeof Y==="object")Object.keys(Y).forEach((O)=>{B.conflicts(O,Y[O])});else{if(D.global(Y),!M[Y])M[Y]=[];if(Array.isArray(q))q.forEach((O)=>B.conflicts(Y,O));else M[Y].push(q)}},B.getConflicting=()=>M,B.conflicting=function(Y){if(Object.keys(Y).forEach((q)=>{if(M[q])M[q].forEach((O)=>{if(O&&Y[q]!==void 0&&Y[O]!==void 0)u.fail(C("Arguments %s and %s are mutually exclusive",q,O))})}),D.getInternalMethods().getParserConfiguration()["strip-dashed"])Object.keys(M).forEach((q)=>{M[q].forEach((O)=>{if(O&&Y[F.Parser.camelCase(q)]!==void 0&&Y[F.Parser.camelCase(O)]!==void 0)u.fail(C("Arguments %s and %s are mutually exclusive",q,O))})})},B.recommendCommands=function(Y,q){q=q.sort((S,d)=>d.length-S.length);let W=null,J=1/0;for(let S=0,d;(d=q[S])!==void 0;S++){let v=t0(Y,d);if(v<=3&&v<J)J=v,W=d}if(W)u.fail(C("Did you mean %s?",W))},B.reset=function(Y){return $=bD($,(q)=>!Y[q]),M=bD(M,(q)=>!Y[q]),B};let H=[];return B.freeze=function(){H.push({implied:$,conflicting:M})},B.unfreeze=function(){let Y=H.pop();GD(Y,void 0,F),{implied:$,conflicting:M}=Y},B}var qF=[],Hu;function bu(D,u,F,C){Hu=C;let E={};if(Object.prototype.hasOwnProperty.call(D,"extends")){if(typeof D.extends!=="string")return E;let B=/\.json|\..*rc$/.test(D.extends),$=null;if(!B)try{$=import.meta.resolve(D.extends)}catch(Z){return D}else $=n3(u,D.extends);o3($),qF.push($),E=B?JSON.parse(Hu.readFileSync($,"utf8")):C.require(D.extends),delete D.extends,E=bu(E,Hu.path.dirname($),F,Hu)}return qF=[],F?o0(E,D):Object.assign({},E,D)}function o3(D){if(qF.indexOf(D)>-1)throw new a(`Circular extended configurations: '${D}'.`)}function n3(D,u){return Hu.path.resolve(D,u)}function o0(D,u){let F={};function C(E){return E&&typeof E==="object"&&!Array.isArray(E)}Object.assign(F,D);for(let E of Object.keys(u))if(C(u[E])&&C(F[E]))F[E]=o0(D[E],u[E]);else F[E]=u[E];return F}var j=function(D,u,F,C,E){if(C==="m")throw TypeError("Private method is not writable");if(C==="a"&&!E)throw TypeError("Private accessor was defined without a setter");if(typeof u==="function"?D!==u||!E:!u.has(D))throw TypeError("Cannot write private member to an object whose class did not declare it");return C==="a"?E.call(D,F):E?E.value=F:u.set(D,F),F},z=function(D,u,F,C){if(F==="a"&&!C)throw TypeError("Private accessor was defined without a getter");if(typeof u==="function"?D!==u||!C:!u.has(D))throw TypeError("Cannot read private member from an object whose class did not declare it");return F==="m"?C:F==="a"?C.call(D):C?C.value:u.get(D)},e,tD,Ou,JD,qD,hu,wD,lD,wu,WD,mu,VD,_D,HD,TD,vu,iD,$D,f,cu,du,OD,oD,zu,nD,mD,ku,b,sD,rD,aD,w,pu,ND,n;function Y2(D){return(u=[],F=D.process.cwd(),C)=>{let E=new q2(u,F,C,D);return Object.defineProperty(E,"argv",{get:()=>{return E.parse()},enumerable:!0}),E.help(),E.version(),E}}var n0=Symbol("copyDoubleDash"),s0=Symbol("copyDoubleDash"),HF=Symbol("deleteFromParserHintObject"),r0=Symbol("emitWarning"),a0=Symbol("freeze"),e0=Symbol("getDollarZero"),eD=Symbol("getParserConfiguration"),D2=Symbol("getUsageConfiguration"),OF=Symbol("guessLocale"),u2=Symbol("guessVersion"),F2=Symbol("parsePositionalNumbers"),UF=Symbol("pkgUp"),vD=Symbol("populateParserHintArray"),Zu=Symbol("populateParserHintSingleValueDictionary"),WF=Symbol("populateParserHintArrayDictionary"),VF=Symbol("populateParserHintDictionary"),TF=Symbol("sanitizeKey"),LF=Symbol("setKey"),IF=Symbol("unfreeze"),C2=Symbol("validateAsync"),E2=Symbol("getCommandInstance"),B2=Symbol("getContext"),$2=Symbol("getHasOutput"),z2=Symbol("getLoggerInstance"),Z2=Symbol("getParseContext"),Q2=Symbol("getUsageInstance"),X2=Symbol("getValidationInstance"),yu=Symbol("hasParseCallback"),M2=Symbol("isGlobalContext"),Du=Symbol("postProcess"),G2=Symbol("rebase"),KF=Symbol("reset"),Uu=Symbol("runYargsParserAndExecuteCommands"),jF=Symbol("runValidation"),J2=Symbol("setHasOutput"),uu=Symbol("kTrackManuallySetKeys"),s3="en_US";class q2{constructor(D=[],u,F,C){this.customScriptName=!1,this.parsed=!1,e.set(this,void 0),tD.set(this,void 0),Ou.set(this,{commands:[],fullCommands:[]}),JD.set(this,null),qD.set(this,null),hu.set(this,"show-hidden"),wD.set(this,null),lD.set(this,!0),wu.set(this,{}),WD.set(this,!0),mu.set(this,[]),VD.set(this,void 0),_D.set(this,{}),HD.set(this,!1),TD.set(this,null),vu.set(this,!0),iD.set(this,void 0),$D.set(this,""),f.set(this,void 0),cu.set(this,void 0),du.set(this,{}),OD.set(this,null),oD.set(this,null),zu.set(this,{}),nD.set(this,{}),mD.set(this,void 0),ku.set(this,!1),b.set(this,void 0),sD.set(this,!1),rD.set(this,!1),aD.set(this,!1),w.set(this,void 0),pu.set(this,{}),ND.set(this,null),n.set(this,void 0),j(this,b,C,"f"),j(this,mD,D,"f"),j(this,tD,u,"f"),j(this,cu,F,"f"),j(this,VD,new JF(this),"f"),this.$0=this[e0](),this[KF](),j(this,e,z(this,e,"f"),"f"),j(this,w,z(this,w,"f"),"f"),j(this,n,z(this,n,"f"),"f"),j(this,f,z(this,f,"f"),"f"),z(this,f,"f").showHiddenOpt=z(this,hu,"f"),j(this,iD,this[s0](),"f"),z(this,b,"f").y18n.setLocale(s3)}addHelpOpt(D,u){if(K("[string|boolean] [string]",[D,u],arguments.length),z(this,TD,"f"))this[HF](z(this,TD,"f")),j(this,TD,null,"f");if(D===!1&&u===void 0)return this;return j(this,TD,typeof D==="string"?D:"help","f"),this.boolean(z(this,TD,"f")),this.describe(z(this,TD,"f"),u||z(this,w,"f").deferY18nLookup("Show help")),this}help(D,u){return this.addHelpOpt(D,u)}addShowHiddenOpt(D,u){if(K("[string|boolean] [string]",[D,u],arguments.length),D===!1&&u===void 0)return this;let F=typeof D==="string"?D:z(this,hu,"f");return this.boolean(F),this.describe(F,u||z(this,w,"f").deferY18nLookup("Show hidden options")),z(this,f,"f").showHiddenOpt=F,this}showHidden(D,u){return this.addShowHiddenOpt(D,u)}alias(D,u){return K("<object|string|array> [string|array]",[D,u],arguments.length),this[WF](this.alias.bind(this),"alias",D,u),this}array(D){return K("<array|string>",[D],arguments.length),this[vD]("array",D),this[uu](D),this}boolean(D){return K("<array|string>",[D],arguments.length),this[vD]("boolean",D),this[uu](D),this}check(D,u){return K("<function> [boolean]",[D,u],arguments.length),this.middleware((F,C)=>{return gD(()=>{return D(F,C.getOptions())},(E)=>{if(!E)z(this,w,"f").fail(z(this,b,"f").y18n.__("Argument check failed: %s",D.toString()));else if(typeof E==="string"||E instanceof Error)z(this,w,"f").fail(E.toString(),E);return F},(E)=>{return z(this,w,"f").fail(E.message?E.message:E.toString(),E),F})},!1,u),this}choices(D,u){return K("<object|string|array> [string|array]",[D,u],arguments.length),this[WF](this.choices.bind(this),"choices",D,u),this}coerce(D,u){if(K("<object|string|array> [function]",[D,u],arguments.length),Array.isArray(D)){if(!u)throw new a("coerce callback must be provided");for(let C of D)this.coerce(C,u);return this}else if(typeof D==="object"){for(let C of Object.keys(D))this.coerce(C,D[C]);return this}if(!u)throw new a("coerce callback must be provided");let F=D;return z(this,f,"f").key[F]=!0,z(this,VD,"f").addCoerceMiddleware((C,E)=>{var B;let $=(B=E.getAliases()[F])!==null&&B!==void 0?B:[],Z=[F,...$].filter((M)=>Object.prototype.hasOwnProperty.call(C,M));if(Z.length===0)return C;return gD(()=>{return u(C[Z[0]])},(M)=>{return Z.forEach((H)=>{C[H]=M}),C},(M)=>{throw new a(M.message)})},F),this}conflicts(D,u){return K("<string|object> [string|array]",[D,u],arguments.length),z(this,n,"f").conflicts(D,u),this}config(D="config",u,F){if(K("[object|string] [string|function] [function]",[D,u,F],arguments.length),typeof D==="object"&&!Array.isArray(D))return D=bu(D,z(this,tD,"f"),this[eD]()["deep-merge-config"]||!1,z(this,b,"f")),z(this,f,"f").configObjects=(z(this,f,"f").configObjects||[]).concat(D),this;if(typeof u==="function")F=u,u=void 0;return this.describe(D,u||z(this,w,"f").deferY18nLookup("Path to JSON config file")),(Array.isArray(D)?D:[D]).forEach((C)=>{z(this,f,"f").config[C]=F||!0}),this}completion(D,u,F){if(K("[string] [string|boolean|function] [function]",[D,u,F],arguments.length),typeof u==="function")F=u,u=void 0;if(j(this,qD,D||z(this,qD,"f")||"completion","f"),!u&&u!==!1)u="generate completion script";if(this.command(z(this,qD,"f"),u),F)z(this,JD,"f").registerFunction(F);return this}command(D,u,F,C,E,B){return K("<string|array|object> [string|boolean] [function|object] [function] [array] [boolean|string]",[D,u,F,C,E,B],arguments.length),z(this,e,"f").addHandler(D,u,F,C,E,B),this}commands(D,u,F,C,E,B){return this.command(D,u,F,C,E,B)}commandDir(D,u){K("<string> [object]",[D,u],arguments.length);let F=z(this,cu,"f")||z(this,b,"f").require;return z(this,e,"f").addDirectory(D,F,z(this,b,"f").getCallerFile(),u),this}count(D){return K("<array|string>",[D],arguments.length),this[vD]("count",D),this[uu](D),this}default(D,u,F){if(K("<object|string|array> [*] [string]",[D,u,F],arguments.length),F)GF(D,z(this,b,"f")),z(this,f,"f").defaultDescription[D]=F;if(typeof u==="function"){if(GF(D,z(this,b,"f")),!z(this,f,"f").defaultDescription[D])z(this,f,"f").defaultDescription[D]=z(this,w,"f").functionDescription(u);u=u.call()}return this[Zu](this.default.bind(this),"default",D,u),this}defaults(D,u,F){return this.default(D,u,F)}demandCommand(D=1,u,F,C){if(K("[number] [number|string] [string|null|undefined] [string|null|undefined]",[D,u,F,C],arguments.length),typeof u!=="number")F=u,u=1/0;return this.global("_",!1),z(this,f,"f").demandedCommands._={min:D,max:u,minMsg:F,maxMsg:C},this}demand(D,u,F){if(Array.isArray(u))u.forEach((C)=>{GD(F,!0,z(this,b,"f")),this.demandOption(C,F)}),u=1/0;else if(typeof u!=="number")F=u,u=1/0;if(typeof D==="number")GD(F,!0,z(this,b,"f")),this.demandCommand(D,u,F,F);else if(Array.isArray(D))D.forEach((C)=>{GD(F,!0,z(this,b,"f")),this.demandOption(C,F)});else if(typeof F==="string")this.demandOption(D,F);else if(F===!0||typeof F>"u")this.demandOption(D);return this}demandOption(D,u){return K("<object|string|array> [string]",[D,u],arguments.length),this[Zu](this.demandOption.bind(this),"demandedOptions",D,u),this}deprecateOption(D,u){return K("<string> [string|boolean]",[D,u],arguments.length),z(this,f,"f").deprecatedOptions[D]=u,this}describe(D,u){return K("<object|string|array> [string]",[D,u],arguments.length),this[LF](D,!0),z(this,w,"f").describe(D,u),this}detectLocale(D){return K("<boolean>",[D],arguments.length),j(this,lD,D,"f"),this}env(D){if(K("[string|boolean]",[D],arguments.length),D===!1)delete z(this,f,"f").envPrefix;else z(this,f,"f").envPrefix=D||"";return this}epilogue(D){return K("<string>",[D],arguments.length),z(this,w,"f").epilog(D),this}epilog(D){return this.epilogue(D)}example(D,u){if(K("<string|array> [string]",[D,u],arguments.length),Array.isArray(D))D.forEach((F)=>this.example(...F));else z(this,w,"f").example(D,u);return this}exit(D,u){if(j(this,HD,!0,"f"),j(this,wD,u,"f"),z(this,WD,"f"))z(this,b,"f").process.exit(D)}exitProcess(D=!0){return K("[boolean]",[D],arguments.length),j(this,WD,D,"f"),this}fail(D){if(K("<function|boolean>",[D],arguments.length),typeof D==="boolean"&&D!==!1)throw new a("Invalid first argument. Expected function or boolean 'false'");return z(this,w,"f").failFn(D),this}getAliases(){return this.parsed?this.parsed.aliases:{}}async getCompletion(D,u){if(K("<array> [function]",[D,u],arguments.length),!u)return new Promise((F,C)=>{z(this,JD,"f").getCompletion(D,(E,B)=>{if(E)C(E);else F(B)})});else return z(this,JD,"f").getCompletion(D,u)}getDemandedOptions(){return K([],0),z(this,f,"f").demandedOptions}getDemandedCommands(){return K([],0),z(this,f,"f").demandedCommands}getDeprecatedOptions(){return K([],0),z(this,f,"f").deprecatedOptions}getDetectLocale(){return z(this,lD,"f")}getExitProcess(){return z(this,WD,"f")}getGroups(){return Object.assign({},z(this,_D,"f"),z(this,nD,"f"))}getHelp(){if(j(this,HD,!0,"f"),!z(this,w,"f").hasCachedHelpMessage()){if(!this.parsed){let u=this[Uu](z(this,mD,"f"),void 0,void 0,0,!0);if(i(u))return u.then(()=>{return z(this,w,"f").help()})}let D=z(this,e,"f").runDefaultBuilderOn(this);if(i(D))return D.then(()=>{return z(this,w,"f").help()})}return Promise.resolve(z(this,w,"f").help())}getOptions(){return z(this,f,"f")}getStrict(){return z(this,sD,"f")}getStrictCommands(){return z(this,rD,"f")}getStrictOptions(){return z(this,aD,"f")}global(D,u){if(K("<string|array> [boolean]",[D,u],arguments.length),D=[].concat(D),u!==!1)z(this,f,"f").local=z(this,f,"f").local.filter((F)=>D.indexOf(F)===-1);else D.forEach((F)=>{if(!z(this,f,"f").local.includes(F))z(this,f,"f").local.push(F)});return this}group(D,u){K("<string|array> <string>",[D,u],arguments.length);let F=z(this,nD,"f")[u]||z(this,_D,"f")[u];if(z(this,nD,"f")[u])delete z(this,nD,"f")[u];let C={};return z(this,_D,"f")[u]=(F||[]).concat(D).filter((E)=>{if(C[E])return!1;return C[E]=!0}),this}hide(D){return K("<string>",[D],arguments.length),z(this,f,"f").hiddenOptions.push(D),this}implies(D,u){return K("<string|object> [number|string|array]",[D,u],arguments.length),z(this,n,"f").implies(D,u),this}locale(D){if(K("[string]",[D],arguments.length),D===void 0)return this[OF](),z(this,b,"f").y18n.getLocale();return j(this,lD,!1,"f"),z(this,b,"f").y18n.setLocale(D),this}middleware(D,u,F){return z(this,VD,"f").addMiddleware(D,!!u,F)}nargs(D,u){return K("<string|object|array> [number]",[D,u],arguments.length),this[Zu](this.nargs.bind(this),"narg",D,u),this}normalize(D){return K("<array|string>",[D],arguments.length),this[vD]("normalize",D),this}number(D){return K("<array|string>",[D],arguments.length),this[vD]("number",D),this[uu](D),this}option(D,u){if(K("<string|object> [object]",[D,u],arguments.length),typeof D==="object")Object.keys(D).forEach((F)=>{this.options(F,D[F])});else{if(typeof u!=="object")u={};if(this[uu](D),z(this,ND,"f")&&(D==="version"||(u===null||u===void 0?void 0:u.alias)==="version"))this[r0](['"version" is a reserved word.',"Please do one of the following:",'- Disable version with `yargs.version(false)` if using "version" as an option',"- Use the built-in `yargs.version` method instead (if applicable)","- Use a different option key","https://yargs.js.org/docs/#api-reference-version"].join(`
79
+ `),void 0,"versionWarning");if(z(this,f,"f").key[D]=!0,u.alias)this.alias(D,u.alias);let F=u.deprecate||u.deprecated;if(F)this.deprecateOption(D,F);let C=u.demand||u.required||u.require;if(C)this.demand(D,C);if(u.demandOption)this.demandOption(D,typeof u.demandOption==="string"?u.demandOption:void 0);if(u.conflicts)this.conflicts(D,u.conflicts);if("default"in u)this.default(D,u.default);if(u.implies!==void 0)this.implies(D,u.implies);if(u.nargs!==void 0)this.nargs(D,u.nargs);if(u.config)this.config(D,u.configParser);if(u.normalize)this.normalize(D);if(u.choices)this.choices(D,u.choices);if(u.coerce)this.coerce(D,u.coerce);if(u.group)this.group(D,u.group);if(u.boolean||u.type==="boolean"){if(this.boolean(D),u.alias)this.boolean(u.alias)}if(u.array||u.type==="array"){if(this.array(D),u.alias)this.array(u.alias)}if(u.number||u.type==="number"){if(this.number(D),u.alias)this.number(u.alias)}if(u.string||u.type==="string"){if(this.string(D),u.alias)this.string(u.alias)}if(u.count||u.type==="count")this.count(D);if(typeof u.global==="boolean")this.global(D,u.global);if(u.defaultDescription)z(this,f,"f").defaultDescription[D]=u.defaultDescription;if(u.skipValidation)this.skipValidation(D);let E=u.describe||u.description||u.desc,B=z(this,w,"f").getDescriptions();if(!Object.prototype.hasOwnProperty.call(B,D)||typeof E==="string")this.describe(D,E);if(u.hidden)this.hide(D);if(u.requiresArg)this.requiresArg(D)}return this}options(D,u){return this.option(D,u)}parse(D,u,F){if(K("[string|array] [function|boolean|object] [function]",[D,u,F],arguments.length),this[a0](),typeof D>"u")D=z(this,mD,"f");if(typeof u==="object")j(this,oD,u,"f"),u=F;if(typeof u==="function")j(this,OD,u,"f"),u=!1;if(!u)j(this,mD,D,"f");if(z(this,OD,"f"))j(this,WD,!1,"f");let C=this[Uu](D,!!u),E=this.parsed;if(z(this,JD,"f").setParsed(this.parsed),i(C))return C.then((B)=>{if(z(this,OD,"f"))z(this,OD,"f").call(this,z(this,wD,"f"),B,z(this,$D,"f"));return B}).catch((B)=>{if(z(this,OD,"f"))z(this,OD,"f")(B,this.parsed.argv,z(this,$D,"f"));throw B}).finally(()=>{this[IF](),this.parsed=E});else{if(z(this,OD,"f"))z(this,OD,"f").call(this,z(this,wD,"f"),C,z(this,$D,"f"));this[IF](),this.parsed=E}return C}parseAsync(D,u,F){let C=this.parse(D,u,F);return!i(C)?Promise.resolve(C):C}parseSync(D,u,F){let C=this.parse(D,u,F);if(i(C))throw new a(".parseSync() must not be used with asynchronous builders, handlers, or middleware");return C}parserConfiguration(D){return K("<object>",[D],arguments.length),j(this,du,D,"f"),this}pkgConf(D,u){K("<string> [string]",[D,u],arguments.length);let F=null,C=this[UF](u||z(this,tD,"f"));if(C[D]&&typeof C[D]==="object")F=bu(C[D],u||z(this,tD,"f"),this[eD]()["deep-merge-config"]||!1,z(this,b,"f")),z(this,f,"f").configObjects=(z(this,f,"f").configObjects||[]).concat(F);return this}positional(D,u){K("<string> <object>",[D,u],arguments.length);let F=["default","defaultDescription","implies","normalize","choices","conflicts","coerce","type","describe","desc","description","alias"];u=bD(u,(B,$)=>{if(B==="type"&&!["string","number","boolean"].includes($))return!1;return F.includes(B)});let C=z(this,Ou,"f").fullCommands[z(this,Ou,"f").fullCommands.length-1],E=C?z(this,e,"f").cmdToParseOptions(C):{array:[],alias:{},default:{},demand:{}};return Bu(E).forEach((B)=>{let $=E[B];if(Array.isArray($)){if($.indexOf(D)!==-1)u[B]=!0}else if($[D]&&!(B in u))u[B]=$[D]}),this.group(D,z(this,w,"f").getPositionalGroupName()),this.option(D,u)}recommendCommands(D=!0){return K("[boolean]",[D],arguments.length),j(this,ku,D,"f"),this}required(D,u,F){return this.demand(D,u,F)}require(D,u,F){return this.demand(D,u,F)}requiresArg(D){if(K("<array|string|object> [number]",[D],arguments.length),typeof D==="string"&&z(this,f,"f").narg[D])return this;else this[Zu](this.requiresArg.bind(this),"narg",D,NaN);return this}showCompletionScript(D,u){return K("[string] [string]",[D,u],arguments.length),D=D||this.$0,z(this,iD,"f").log(z(this,JD,"f").generateCompletionScript(D,u||z(this,qD,"f")||"completion")),this}showHelp(D){if(K("[string|function]",[D],arguments.length),j(this,HD,!0,"f"),!z(this,w,"f").hasCachedHelpMessage()){if(!this.parsed){let F=this[Uu](z(this,mD,"f"),void 0,void 0,0,!0);if(i(F))return F.then(()=>{z(this,w,"f").showHelp(D)}),this}let u=z(this,e,"f").runDefaultBuilderOn(this);if(i(u))return u.then(()=>{z(this,w,"f").showHelp(D)}),this}return z(this,w,"f").showHelp(D),this}scriptName(D){return this.customScriptName=!0,this.$0=D,this}showHelpOnFail(D,u){return K("[boolean|string] [string]",[D,u],arguments.length),z(this,w,"f").showHelpOnFail(D,u),this}showVersion(D){return K("[string|function]",[D],arguments.length),z(this,w,"f").showVersion(D),this}skipValidation(D){return K("<array|string>",[D],arguments.length),this[vD]("skipValidation",D),this}strict(D){return K("[boolean]",[D],arguments.length),j(this,sD,D!==!1,"f"),this}strictCommands(D){return K("[boolean]",[D],arguments.length),j(this,rD,D!==!1,"f"),this}strictOptions(D){return K("[boolean]",[D],arguments.length),j(this,aD,D!==!1,"f"),this}string(D){return K("<array|string>",[D],arguments.length),this[vD]("string",D),this[uu](D),this}terminalWidth(){return K([],0),z(this,b,"f").process.stdColumns}updateLocale(D){return this.updateStrings(D)}updateStrings(D){return K("<object>",[D],arguments.length),j(this,lD,!1,"f"),z(this,b,"f").y18n.updateLocale(D),this}usage(D,u,F,C){if(K("<string|null|undefined> [string|boolean] [function|object] [function]",[D,u,F,C],arguments.length),u!==void 0)if(GD(D,null,z(this,b,"f")),(D||"").match(/^\$0( |$)/))return this.command(D,u,F,C);else throw new a(".usage() description must start with $0 if being used as alias for .command()");else return z(this,w,"f").usage(D),this}usageConfiguration(D){return K("<object>",[D],arguments.length),j(this,pu,D,"f"),this}version(D,u,F){if(K("[boolean|string] [string] [string]",[D,u,F],arguments.length),z(this,ND,"f"))this[HF](z(this,ND,"f")),z(this,w,"f").version(void 0),j(this,ND,null,"f");if(arguments.length===0)F=this[u2](),D="version";else if(arguments.length===1){if(D===!1)return this;F=D,D="version"}else if(arguments.length===2)F=u,u=void 0;return j(this,ND,typeof D==="string"?D:"version","f"),u=u||z(this,w,"f").deferY18nLookup("Show version number"),z(this,w,"f").version(F||void 0),this.boolean(z(this,ND,"f")),this.describe(z(this,ND,"f"),u),this}wrap(D){return K("<number|null|undefined>",[D],arguments.length),z(this,w,"f").wrap(D),this}[(e=new WeakMap,tD=new WeakMap,Ou=new WeakMap,JD=new WeakMap,qD=new WeakMap,hu=new WeakMap,wD=new WeakMap,lD=new WeakMap,wu=new WeakMap,WD=new WeakMap,mu=new WeakMap,VD=new WeakMap,_D=new WeakMap,HD=new WeakMap,TD=new WeakMap,vu=new WeakMap,iD=new WeakMap,$D=new WeakMap,f=new WeakMap,cu=new WeakMap,du=new WeakMap,OD=new WeakMap,oD=new WeakMap,zu=new WeakMap,nD=new WeakMap,mD=new WeakMap,ku=new WeakMap,b=new WeakMap,sD=new WeakMap,rD=new WeakMap,aD=new WeakMap,w=new WeakMap,pu=new WeakMap,ND=new WeakMap,n=new WeakMap,n0)](D){if(!D._||!D["--"])return D;D._.push.apply(D._,D["--"]);try{delete D["--"]}catch(u){}return D}[s0](){return{log:(...D)=>{if(!this[yu]())console.log(...D);if(j(this,HD,!0,"f"),z(this,$D,"f").length)j(this,$D,z(this,$D,"f")+`
80
+ `,"f");j(this,$D,z(this,$D,"f")+D.join(" "),"f")},error:(...D)=>{if(!this[yu]())console.error(...D);if(j(this,HD,!0,"f"),z(this,$D,"f").length)j(this,$D,z(this,$D,"f")+`
81
+ `,"f");j(this,$D,z(this,$D,"f")+D.join(" "),"f")}}}[HF](D){Bu(z(this,f,"f")).forEach((u)=>{if(((C)=>C==="configObjects")(u))return;let F=z(this,f,"f")[u];if(Array.isArray(F)){if(F.includes(D))F.splice(F.indexOf(D),1)}else if(typeof F==="object")delete F[D]}),delete z(this,w,"f").getDescriptions()[D]}[r0](D,u,F){if(!z(this,wu,"f")[F])z(this,b,"f").process.emitWarning(D,u),z(this,wu,"f")[F]=!0}[a0](){z(this,mu,"f").push({options:z(this,f,"f"),configObjects:z(this,f,"f").configObjects.slice(0),exitProcess:z(this,WD,"f"),groups:z(this,_D,"f"),strict:z(this,sD,"f"),strictCommands:z(this,rD,"f"),strictOptions:z(this,aD,"f"),completionCommand:z(this,qD,"f"),output:z(this,$D,"f"),exitError:z(this,wD,"f"),hasOutput:z(this,HD,"f"),parsed:this.parsed,parseFn:z(this,OD,"f"),parseContext:z(this,oD,"f")}),z(this,w,"f").freeze(),z(this,n,"f").freeze(),z(this,e,"f").freeze(),z(this,VD,"f").freeze()}[e0](){let D="",u;if(/\b(node|iojs|electron)(\.exe)?$/.test(z(this,b,"f").process.argv()[0]))u=z(this,b,"f").process.argv().slice(1,2);else u=z(this,b,"f").process.argv().slice(0,1);if(D=u.map((F)=>{let C=this[G2](z(this,tD,"f"),F);return F.match(/^(\/|([a-zA-Z]:)?\\)/)&&C.length<F.length?C:F}).join(" ").trim(),z(this,b,"f").getEnv("_")&&z(this,b,"f").getProcessArgvBin()===z(this,b,"f").getEnv("_"))D=z(this,b,"f").getEnv("_").replace(`${z(this,b,"f").path.dirname(z(this,b,"f").process.execPath())}/`,"");return D}[eD](){return z(this,du,"f")}[D2](){return z(this,pu,"f")}[OF](){if(!z(this,lD,"f"))return;let D=z(this,b,"f").getEnv("LC_ALL")||z(this,b,"f").getEnv("LC_MESSAGES")||z(this,b,"f").getEnv("LANG")||z(this,b,"f").getEnv("LANGUAGE")||"en_US";this.locale(D.replace(/[.:].*/,""))}[u2](){return this[UF]().version||"unknown"}[F2](D){let u=D["--"]?D["--"]:D._;for(let F=0,C;(C=u[F])!==void 0;F++)if(z(this,b,"f").Parser.looksLikeNumber(C)&&Number.isSafeInteger(Math.floor(parseFloat(`${C}`))))u[F]=Number(C);return D}[UF](D){let u=D||"*";if(z(this,zu,"f")[u])return z(this,zu,"f")[u];let F={};try{let C=D||z(this,b,"f").mainFilename;if(z(this,b,"f").path.extname(C))C=z(this,b,"f").path.dirname(C);let E=z(this,b,"f").findUp(C,(B,$)=>{if($.includes("package.json"))return"package.json";else return});GD(E,void 0,z(this,b,"f")),F=JSON.parse(z(this,b,"f").readFileSync(E,"utf8"))}catch(C){}return z(this,zu,"f")[u]=F||{},z(this,zu,"f")[u]}[vD](D,u){u=[].concat(u),u.forEach((F)=>{F=this[TF](F),z(this,f,"f")[D].push(F)})}[Zu](D,u,F,C){this[VF](D,u,F,C,(E,B,$)=>{z(this,f,"f")[E][B]=$})}[WF](D,u,F,C){this[VF](D,u,F,C,(E,B,$)=>{z(this,f,"f")[E][B]=(z(this,f,"f")[E][B]||[]).concat($)})}[VF](D,u,F,C,E){if(Array.isArray(F))F.forEach((B)=>{D(B,C)});else if(((B)=>typeof B==="object")(F))for(let B of Bu(F))D(B,F[B]);else E(u,this[TF](F),C)}[TF](D){if(D==="__proto__")return"___proto___";return D}[LF](D,u){return this[Zu](this[LF].bind(this),"key",D,u),this}[IF](){var D,u,F,C,E,B,$,Z,M,H,V,Y;let q=z(this,mu,"f").pop();GD(q,void 0,z(this,b,"f"));let O;D=this,u=this,F=this,C=this,E=this,B=this,$=this,Z=this,M=this,H=this,V=this,Y=this,{options:{set value(W){j(D,f,W,"f")}}.value,configObjects:O,exitProcess:{set value(W){j(u,WD,W,"f")}}.value,groups:{set value(W){j(F,_D,W,"f")}}.value,output:{set value(W){j(C,$D,W,"f")}}.value,exitError:{set value(W){j(E,wD,W,"f")}}.value,hasOutput:{set value(W){j(B,HD,W,"f")}}.value,parsed:this.parsed,strict:{set value(W){j($,sD,W,"f")}}.value,strictCommands:{set value(W){j(Z,rD,W,"f")}}.value,strictOptions:{set value(W){j(M,aD,W,"f")}}.value,completionCommand:{set value(W){j(H,qD,W,"f")}}.value,parseFn:{set value(W){j(V,OD,W,"f")}}.value,parseContext:{set value(W){j(Y,oD,W,"f")}}.value}=q,z(this,f,"f").configObjects=O,z(this,w,"f").unfreeze(),z(this,n,"f").unfreeze(),z(this,e,"f").unfreeze(),z(this,VD,"f").unfreeze()}[C2](D,u){return gD(u,(F)=>{return D(F),F})}getInternalMethods(){return{getCommandInstance:this[E2].bind(this),getContext:this[B2].bind(this),getHasOutput:this[$2].bind(this),getLoggerInstance:this[z2].bind(this),getParseContext:this[Z2].bind(this),getParserConfiguration:this[eD].bind(this),getUsageConfiguration:this[D2].bind(this),getUsageInstance:this[Q2].bind(this),getValidationInstance:this[X2].bind(this),hasParseCallback:this[yu].bind(this),isGlobalContext:this[M2].bind(this),postProcess:this[Du].bind(this),reset:this[KF].bind(this),runValidation:this[jF].bind(this),runYargsParserAndExecuteCommands:this[Uu].bind(this),setHasOutput:this[J2].bind(this)}}[E2](){return z(this,e,"f")}[B2](){return z(this,Ou,"f")}[$2](){return z(this,HD,"f")}[z2](){return z(this,iD,"f")}[Z2](){return z(this,oD,"f")||{}}[Q2](){return z(this,w,"f")}[X2](){return z(this,n,"f")}[yu](){return!!z(this,OD,"f")}[M2](){return z(this,vu,"f")}[Du](D,u,F,C){if(F)return D;if(i(D))return D;if(!u)D=this[n0](D);if(this[eD]()["parse-positional-numbers"]||this[eD]()["parse-positional-numbers"]===void 0)D=this[F2](D);if(C)D=yD(D,this,z(this,VD,"f").getMiddleware(),!1);return D}[KF](D={}){j(this,f,z(this,f,"f")||{},"f");let u={};u.local=z(this,f,"f").local||[],u.configObjects=z(this,f,"f").configObjects||[];let F={};u.local.forEach((B)=>{F[B]=!0,(D[B]||[]).forEach(($)=>{F[$]=!0})}),Object.assign(z(this,nD,"f"),Object.keys(z(this,_D,"f")).reduce((B,$)=>{let Z=z(this,_D,"f")[$].filter((M)=>!(M in F));if(Z.length>0)B[$]=Z;return B},{})),j(this,_D,{},"f");let C=["array","boolean","string","skipValidation","count","normalize","number","hiddenOptions"],E=["narg","key","alias","default","defaultDescription","config","choices","demandedOptions","demandedCommands","deprecatedOptions"];if(C.forEach((B)=>{u[B]=(z(this,f,"f")[B]||[]).filter(($)=>!F[$])}),E.forEach((B)=>{u[B]=bD(z(this,f,"f")[B],($)=>!F[$])}),u.envPrefix=z(this,f,"f").envPrefix,j(this,f,u,"f"),j(this,w,z(this,w,"f")?z(this,w,"f").reset(F):d0(this,z(this,b,"f")),"f"),j(this,n,z(this,n,"f")?z(this,n,"f").reset(F):i0(this,z(this,w,"f"),z(this,b,"f")),"f"),j(this,e,z(this,e,"f")?z(this,e,"f").reset():m0(z(this,w,"f"),z(this,n,"f"),z(this,VD,"f"),z(this,b,"f")),"f"),!z(this,JD,"f"))j(this,JD,g0(this,z(this,w,"f"),z(this,e,"f"),z(this,b,"f")),"f");return z(this,VD,"f").reset(),j(this,qD,null,"f"),j(this,$D,"","f"),j(this,wD,null,"f"),j(this,HD,!1,"f"),this.parsed=!1,this}[G2](D,u){return z(this,b,"f").path.relative(D,u)}[Uu](D,u,F,C=0,E=!1){var B,$,Z,M;let H=!!F||E;D=D||z(this,mD,"f"),z(this,f,"f").__=z(this,b,"f").y18n.__,z(this,f,"f").configuration=this[eD]();let V=!!z(this,f,"f").configuration["populate--"],Y=Object.assign({},z(this,f,"f").configuration,{"populate--":!0}),q=z(this,b,"f").Parser.detailed(D,Object.assign({},z(this,f,"f"),{configuration:{"parse-positional-numbers":!1,...Y}})),O=Object.assign(q.argv,z(this,oD,"f")),W=void 0,J=q.aliases,S=!1,d=!1;if(Object.keys(O).forEach((v)=>{if(v===z(this,TD,"f")&&O[v])S=!0;else if(v===z(this,ND,"f")&&O[v])d=!0}),O.$0=this.$0,this.parsed=q,C===0)z(this,w,"f").clearCachedHelpMessage();try{if(this[OF](),u)return this[Du](O,V,!!F,!1);if(z(this,TD,"f")){if([z(this,TD,"f")].concat(J[z(this,TD,"f")]||[]).filter((uD)=>uD.length>1).includes(""+O._[O._.length-1]))O._.pop(),S=!0}j(this,vu,!1,"f");let v=z(this,e,"f").getCommands(),QD=((B=z(this,JD,"f"))===null||B===void 0?void 0:B.completionKey)?[($=z(this,JD,"f"))===null||$===void 0?void 0:$.completionKey,...(M=this.getAliases()[(Z=z(this,JD,"f"))===null||Z===void 0?void 0:Z.completionKey])!==null&&M!==void 0?M:[]].some((l)=>Object.prototype.hasOwnProperty.call(O,l)):!1,m=S||QD||E;if(O._.length){if(v.length){let l;for(let uD=C||0,s;O._[uD]!==void 0;uD++)if(s=String(O._[uD]),v.includes(s)&&s!==z(this,qD,"f")){let jD=z(this,e,"f").runCommand(s,this,q,uD+1,E,S||d||E);return this[Du](jD,V,!!F,!1)}else if(!l&&s!==z(this,qD,"f")){l=s;break}if(!z(this,e,"f").hasDefaultCommand()&&z(this,ku,"f")&&l&&!m)z(this,n,"f").recommendCommands(l,v)}if(z(this,qD,"f")&&O._.includes(z(this,qD,"f"))&&!QD){if(z(this,WD,"f"))hD(!0);this.showCompletionScript(),this.exit(0)}}if(z(this,e,"f").hasDefaultCommand()&&!m){let l=z(this,e,"f").runCommand(null,this,q,0,E,S||d||E);return this[Du](l,V,!!F,!1)}if(QD){if(z(this,WD,"f"))hD(!0);D=[].concat(D);let l=D.slice(D.indexOf(`--${z(this,JD,"f").completionKey}`)+1);return z(this,JD,"f").getCompletion(l,(uD,s)=>{if(uD)throw new a(uD.message);(s||[]).forEach((jD)=>{z(this,iD,"f").log(jD)}),this.exit(0)}),this[Du](O,!V,!!F,!1)}if(!z(this,HD,"f")){if(S){if(z(this,WD,"f"))hD(!0);H=!0,this.showHelp((l)=>{z(this,iD,"f").log(l),this.exit(0)})}else if(d){if(z(this,WD,"f"))hD(!0);H=!0,z(this,w,"f").showVersion("log"),this.exit(0)}}if(!H&&z(this,f,"f").skipValidation.length>0)H=Object.keys(O).some((l)=>z(this,f,"f").skipValidation.indexOf(l)>=0&&O[l]===!0);if(!H){if(q.error)throw new a(q.error.message);if(!QD){let l=this[jF](J,{},q.error);if(!F)W=yD(O,this,z(this,VD,"f").getMiddleware(),!0);if(W=this[C2](l,W!==null&&W!==void 0?W:O),i(W)&&!F)W=W.then(()=>{return yD(O,this,z(this,VD,"f").getMiddleware(),!1)})}}}catch(v){if(v instanceof a)z(this,w,"f").fail(v.message,v);else throw v}return this[Du](W!==null&&W!==void 0?W:O,V,!!F,!0)}[jF](D,u,F,C){let E={...this.getDemandedOptions()};return(B)=>{if(F)throw new a(F.message);z(this,n,"f").nonOptionCount(B),z(this,n,"f").requiredArguments(B,E);let $=!1;if(z(this,rD,"f"))$=z(this,n,"f").unknownCommands(B);if(z(this,sD,"f")&&!$)z(this,n,"f").unknownArguments(B,D,u,!!C);else if(z(this,aD,"f"))z(this,n,"f").unknownArguments(B,D,{},!1,!1);z(this,n,"f").limitedChoices(B),z(this,n,"f").implications(B),z(this,n,"f").conflicting(B)}}[J2](){j(this,HD,!0,"f")}[uu](D){if(typeof D==="string")z(this,f,"f").key[D]=!0;else for(let u of D)z(this,f,"f").key[u]=!0}}function v0(D){return!!D&&typeof D.getInternalMethods==="function"}var r3=Y2(S0),H2=r3;var O2={name:"@coryrylan/cradle",version:"1.2.0",description:"A runtime for portable agents defined as folders \u2014 launches the pi coding agent configured from an agent folder, sandboxed with nono",main:"./dist/index.js",module:"./dist/index.js",types:"./dist/index.d.ts",type:"module",exports:{".":{types:"./dist/index.d.ts",default:"./dist/index.js"}},bin:{cradle:"dist/index.js"},files:["README.md","CHANGELOG.md","LICENSE","package.json","dist/index.js","dist/**/*.d.ts","!dist/**/*.test.d.ts"],repository:{type:"git",url:"git+https://github.com/coryrylan/cradle.git",directory:"projects/cli"},keywords:["pi","agents","agent-folders","sandbox","nono","cli","bun"],author:"Cory Rylan (https://coryrylan.com)",license:"MIT",bugs:{url:"https://github.com/coryrylan/cradle/issues"},homepage:"https://github.com/coryrylan/cradle/tree/main/projects/cli#readme",engines:{bun:">=1.3.0"},publishConfig:{access:"public"},scripts:{start:"wireit",ci:"wireit","ci:nocache":"bun run clean && bun run ci",clean:"rm -rf dist",test:"wireit","test:coverage":"wireit",lint:"wireit",build:"wireit","install:local":"wireit","uninstall:local":"wireit",release:"wireit"},wireit:{start:{command:"bun src/index.ts",cache:!1},ci:{dependencies:["lint","build","test:coverage"]},test:{command:"bun test",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json","bunfig.toml"],output:[]},"test:coverage":{command:"bun test --coverage",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json","bunfig.toml"],output:[]},lint:{command:"eslint .",files:["src/**/*.ts","eslint.config.js","package.json"],output:[]},build:{dependencies:["build:js","build:tsc","build:darwin-arm64","build:darwin-x64","build:linux-x64","build:linux-arm64","build:windows-x64"]},"build:js":{command:"bun build ./src/index.ts --outdir=./dist --target=bun --format=esm --minify",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/index.js"]},"build:tsc":{command:"tsc --emitDeclarationOnly --project tsconfig.types.json",files:["src/**/*.ts","src/**/*.json","tsconfig.json","tsconfig.types.json"],output:["dist/**/*.d.ts"]},"build:darwin-arm64":{command:"bun build --compile --minify src/index.ts --target=bun-darwin-arm64 --outfile dist/cradle-macos-arm64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-macos-arm64"]},"build:darwin-x64":{command:"bun build --compile --minify src/index.ts --target=bun-darwin-x64 --outfile dist/cradle-macos-x64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-macos-x64"]},"build:linux-x64":{command:"bun build --compile --minify src/index.ts --target=bun-linux-x64 --outfile dist/cradle-linux-x64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-linux-x64"]},"build:linux-arm64":{command:"bun build --compile --minify src/index.ts --target=bun-linux-arm64 --outfile dist/cradle-linux-arm64",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-linux-arm64"]},"build:windows-x64":{command:"bun build --compile --minify src/index.ts --target=bun-windows-x64 --outfile dist/cradle-windows-x64.exe",files:["src/**/*.ts","src/**/*.json","src/**/*.txt","tsconfig.json"],output:["dist/cradle-windows-x64.exe"]},"install:local":{dependencies:["build"],command:"bash install.sh",cache:!1},"uninstall:local":{command:'rm -f "$HOME/.local/bin/cradle"',cache:!1},release:{command:"HUSKY=0 bun x semantic-release",dependencies:["ci"]}},dependencies:{yargs:"^18.0.0"},devDependencies:{"@coryrylan/tools":"1.1.0","@eslint/js":"catalog:","@eslint/json":"1.2.0","@types/bun":"catalog:","@types/yargs":"17.0.35",eslint:"catalog:","eslint-plugin-jsdoc":"63.2.0",typescript:"catalog:","typescript-eslint":"catalog:"}};import{join as W2}from"path";var gu="agent-browser-nono-fallback.ts";function U2(){return`// generated by cradle for sandboxed agent-browser processes \u2014 do not edit
82
82
  import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
83
83
 
84
84
  export default function configureAgentBrowserNonoEnvironment(_pi: ExtensionAPI): void {
@@ -95,18 +95,18 @@ export default function configureAgentBrowserNonoEnvironment(_pi: ExtensionAPI):
95
95
  process.env.AGENT_BROWSER_PROXY = nonoProxy;
96
96
  }
97
97
  }
98
- `}function d3(D){let u=[];if(D.systemFilePath!==null)u.push("--system-prompt",D.systemFilePath);if(D.appendSystemFilePath!==null)u.push("--append-system-prompt",D.appendSystemFilePath);return u}function p3(D){let{folder:u}=D,{settings:F}=u,C=[D.piBin,...d3(u),"--no-extensions","--no-skills","--no-prompt-templates"];if(u.providersJson!==null)C.push("-e",J2(D.extensionsDir,"providers.ts"));if(D.backend==="nono")C.push("-e",J2(D.extensionsDir,pu));for(let E of D.packageEntries??[])C.push("-e",E);for(let E of u.extensionFiles)C.push("-e",E);if(u.skillsDir!==null)C.push("--skill",u.skillsDir);if(F.defaultProvider!==void 0)C.push("--provider",F.defaultProvider);if(F.defaultModel!==void 0)C.push("--model",F.defaultModel);if(F.defaultThinkingLevel!==void 0)C.push("--thinking",F.defaultThinkingLevel);return C.push("--session-dir",D.sessionsDir),C.push(...D.passthrough),C}function IF(D){return D.backend==="nono"?{MISE_CACHE_DIR:D.miseCacheDir}:{}}function Zu(D){let u=p3(D);if(D.backend!=="nono")return u;return[D.nonoBin,"run",...D.verbose===!0?[]:["--silent"],"--profile",D.profilePath,"--",...u]}import{existsSync as t3}from"fs";import{homedir as k3}from"os";import{join as y3}from"path";function i3(D,u=k3()){let F=y3(u,".local","share","mise","shims",D);return t3(F)?F:null}var Y2=(D)=>Bun.which(D)??i3(D);function LF(D,u=Y2){return u(D)}function tu(D,u=Y2){let F=LF(D,u);if(!F)throw Error(`Required executable "${D}" not found on PATH \u2014 install it, then run \`cradle doctor\` to verify`);return F}var g3="recommended: the supported way to install pi/nono \u2014 cradle resolves them from mise shims and the sandbox profile assumes a mise-managed install",l3="required for sandboxed runs (a folder declaring sandbox/nono.json, or --sandbox/--offline/--allow-host); not needed otherwise",n3="required for sbx-backend runs (a folder declaring sandbox/sbx.json, or --sandbox-backend sbx); not needed otherwise";async function q2(D={}){let u=(Y)=>LF(Y,D.which),F=async(Y,q)=>Y!==null&&D.readVersion?D.readVersion(Y,q):null,C=u("pi"),E=u("nono"),B=u("sbx"),$=u("mise"),[Z,M,O,V]=await Promise.all([F(C),F(E),F(B,["version"]),F($)]);return[{name:"pi",bin:"pi",required:!0,found:C,version:Z},{name:"nono",bin:"nono",required:!1,found:E,version:M,...E?{}:{note:l3}},{name:"sbx",bin:"sbx",required:!1,found:B,version:O,...B?{}:{note:n3}},{name:"mise",bin:"mise",required:!1,found:$,version:V,...$?{}:{note:g3}}]}function o3(D){let u=D.found?`\u2713 ${D.name.padEnd(8)} ${D.version??"?"} ${D.found}`:D.required?`\u2717 ${D.name.padEnd(8)} MISSING (required)`:`\u25CB ${D.name.padEnd(8)} not found (recommended)`;return D.note?`${u}
99
- \u26A0 ${D.note}`:u}function O2(D){return D.map(o3).join(`
100
- `)}function H2(D){return D.some((u)=>u.required&&!u.found)?1:0}import{exists as V6,mkdir as SF,rm as T6,writeFile as z8}from"fs/promises";import{homedir as f6}from"os";import{basename as I6,dirname as L6,join as fu}from"path";import{stat as G1}from"fs/promises";import{join as _2,resolve as J1}from"path";import{basename as r3,isAbsolute as a3,join as e3,relative as D1}from"path";var Hu={extends:"default",meta:{name:"cradle-pi"},groups:{include:["node_runtime","git_config","unlink_protection"]},filesystem:{read:["$HOME/.agents","$HOME/.local/share/mise","$HOME/.config/mise","$HOME/.local/state/mise","$HOME/.config/gh","/System/iOSSupport/System/Library/ExtensionKit/Extensions","/System/Library/AssetsV2/com_apple_MobileAsset_TTSAXResourceModelAssets","/System/Library/AssetsV2/com_apple_MobileAsset_UAF_Siri_TextToSpeech"],allow:["$HOME/.pi/agent"]},unsafe_macos_seatbelt_rules:['(allow user-preference-read (preference-domain "kCFPreferencesAnyApplication") (preference-domain "com.apple.speech.voice.prefs") (preference-domain "com.apple.speakselection") (preference-domain "com.apple.assistant.backedup") (preference-domain "com.apple.assistant.support") (preference-domain "com.apple.accessibility"))']};var U2="nono-profile.json";function ku(D,u){let F=D1(D,u);return F===""||!F.startsWith("..")&&!a3(F)}function W2(D,u){let F=e3(u,".local","state","nono");return ku(D,F)||ku(F,D)?D:void 0}function Uu(D,u){if(D==="~"||D==="$HOME")return u;if(D.startsWith("~/"))return`${u}${D.slice(1)}`;if(D.startsWith("$HOME/"))return`${u}${D.slice(5)}`;return D}function V2(D){let u=($)=>Uu($,D.home),F=Hu.filesystem,C=D.network!==void 0?u1(D.network):void 0,E=[...F.unix_socket_dir_bind??[],...D.grants.unixSocketDirBind.map(u)],B={...Hu,meta:{...Hu.meta,name:`cradle-${r3(D.stateDir)}`},filesystem:{...F,read:[...F.read??[],D.agentDir,...D.grants.read.map(u)],write:[...F.write??[],...D.grants.write.map(u)],allow:[...F.allow??[],D.cwd,D.stateDir,...D.linkedGitDir!==void 0?[D.linkedGitDir]:[],...D.grants.allow.map(u)],...E.length>0?{unix_socket_dir_bind:E}:{}},unsafe_macos_seatbelt_rules:[...Hu.unsafe_macos_seatbelt_rules,...D.rules],...C!==void 0?{network:C}:{}};return JSON.stringify(B,null,2)}function u1(D){return{...D.block!==void 0?{block:D.block}:{},...D.networkProfile!==void 0?{network_profile:D.networkProfile}:{},...D.allowDomain!==void 0?{allow_domain:D.allowDomain}:{},...D.openPort!==void 0?{open_port:D.openPort}:{},...D.listenPort!==void 0?{listen_port:D.listenPort}:{}}}import{chmod as T2,lstat as F1,mkdir as C1,readdir as f2,readFile as E1,rm as B1,writeFile as $1}from"fs/promises";import{dirname as z1,join as iu,relative as Z1}from"path";function QD(D){return typeof D==="object"&&D!==null&&!Array.isArray(D)}function Qu(D,u){try{return JSON.parse(D)}catch(F){throw Error(`${u} is not valid JSON: ${uu(F)}`,{cause:F})}}function uu(D){return D instanceof Error?D.message:String(D)}function ID(D,u){return typeof D==="object"&&D!==null&&"code"in D&&D.code===u}function Xu(D){if(/^[A-Za-z0-9_./:@%+=,-]+$/u.test(D))return D;return`'${D.replaceAll("'","'\\''")}'`}function cD(D){return Array.isArray(D)&&D.every((u)=>typeof u==="string")}function Wu(D){return/^(?:\/|~(?:\/|$)|\$HOME(?:\/|$)|[A-Za-z]:[\\/]|\\\\)/.test(D)}function RD(D,u,F,C){let E=Object.keys(D).filter((B)=>!F.includes(B));if(E.length>0)C.push(`${u}: unsupported keys ignored: ${E.join(", ")}`)}function yu(D,u,F,C){D.results.push({name:u,detail:F,status:C})}function Q1(D,u,F){D.failures.push(`${u}: ${F}`),yu(D,u,F,"failed")}async function I2(D,u,F,C){try{if(await M1(F,C)){yu(D,u,F,"unchanged");return}if(D.dryRun){yu(D,u,`would replace ${F}`,"changed");return}await K2(F),await B1(F,{force:!0,recursive:!0});for(let E of C)await X1(F,E);yu(D,u,F,"changed")}catch(E){Q1(D,u,uu(E))}}async function X1(D,u){let F=iu(D,u.rel);if(await C1(z1(F),{recursive:!0}),await $1(F,u.content,"utf8"),u.mode!==void 0)await T2(F,u.mode)}async function M1(D,u){let F=await L2(D);if(F.length!==u.length)return!1;let C=new Set(F);for(let E of u){if(!C.has(E.rel))return!1;if(await SD(iu(D,E.rel))!==E.content)return!1}return!0}async function L2(D,u=D){let F=await j2(D);if(!F||!F.isDirectory())return[];let C=[];for(let E of await f2(D,{withFileTypes:!0})){let B=iu(D,E.name);if(E.isDirectory())C.push(...await L2(B,u));else C.push(Z1(u,B))}return C}async function K2(D){let u=await j2(D);if(!u||u.isSymbolicLink())return;if(await T2(D,u.isDirectory()?493:420),!u.isDirectory())return;let F=await f2(D);await Promise.all(F.map((C)=>K2(iu(D,C))))}async function SD(D){try{return await E1(D,"utf8")}catch(u){if(ID(u,"ENOENT"))return;throw u}}async function j2(D){try{return await F1(D)}catch(u){if(ID(u,"ENOENT"))return;throw u}}var Y1=/^[A-Za-z0-9][A-Za-z0-9._-]*$/;async function N2(D,u){if(!q1(D))return{dir:D,warnings:[]};let F=_2(u.home,".cradle","settings.json"),C=[],E=await O1(F,C),B=_2(u.cwd,D),$=E.get(D);if($!==void 0){let Z=J1(Uu($,u.home));if(await R2(B))C.push(W1(D,Z));return{dir:Z,warnings:C}}if(await R2(B))return{dir:B,warnings:C};throw Error(V1(D,B,F,E))}function q1(D){return Y1.test(D)}async function R2(D){try{return(await G1(D)).isDirectory()}catch(u){if(ID(u,"ENOENT")||ID(u,"ENOTDIR"))return!1;throw u}}async function O1(D,u){let F=await SD(D);if(F===void 0)return new Map;let C=Qu(F,D);if(!QD(C))return u.push(`${D}: settings must be a JSON object \u2014 ignored`),new Map;return RD(C,D,["agents"],u),H1(C,D,u)}function H1(D,u,F){let C=D.agents;if(C===void 0)return new Map;if(!QD(C))return F.push(`${u}: agents must be an object \u2014 ignored`),new Map;let E=Object.entries(C).map((B)=>{let[$,Z]=B,M=U1(Z,$,u,F);return M===void 0?void 0:[$,M]}).filter((B)=>B!==void 0);return new Map(E)}function U1(D,u,F,C){if(!QD(D)){C.push(`${F}: agents.${u} must be an object with a "path" \u2014 ignored`);return}let E=D.path;if(typeof E!=="string"||E.trim()===""){C.push(`${F}: agents.${u}.path must be a non-empty string \u2014 ignored`);return}if(!Wu(E)){C.push(`${F}: agents.${u}.path must be an absolute, ~/, or $HOME/ path \u2014 ignored: ${E}`);return}return E}function W1(D,u){return`started alias "${D}" (${u}) \u2014 a directory named ${D} exists in the current directory; use ./${D} to run it instead`}function V1(D,u,F,C){let E=C.size>0?` (known agents: ${[...C.keys()].join(", ")})`:"";return`Agent folder not found: ${u} \u2014 and no "agents.${D}" entry in ${F}${E}`}import{createHash as T1}from"crypto";import{join as f1}from"path";var S2="host.docker.internal",A2="@earendil-works/pi-coding-agent",I1=/^\d+\.\d+\.\d+\.\d+$/,L1=new Set(["localhost","127.0.0.1"]);function P2(D){let u=(C)=>Uu(C,D.home),F=[{path:D.cwd,readonly:!1},{path:D.agentDir,readonly:!0},{path:D.stateDir,readonly:!1},{path:f1(D.home,".pi","agent"),readonly:!1},...D.linkedGitDir!==void 0?[{path:D.linkedGitDir,readonly:!1}]:[],...D.grants.read.map((C)=>({path:u(C),readonly:!0})),...D.grants.write.map((C)=>({path:u(C),readonly:!1})),...D.grants.allow.map((C)=>({path:u(C),readonly:!1}))];return K1(F)}function K1(D){let u=[],F=new Map;for(let C of D){if(!F.has(C.path))u.push(C.path);if(F.get(C.path)!==!1)F.set(C.path,C.readonly)}return u.map((C)=>({path:C,readonly:F.get(C)===!0}))}function x2(D,u){let F=u.map((E)=>`${E.path}:${E.readonly?"ro":"rw"}`).sort().join("|"),C=T1("sha256").update(F).digest("hex").slice(0,8);return`cradle-${D}-${C}`}function b2(D){let u=D.mounts.map((F)=>F.readonly?`${F.path}:ro`:F.path);return[D.sbxBin,"create","shell",...u,"--name",D.name,"-q"]}function j1(D){let u=[],F=!1;for(let C of D)if(L1.has(C))F=!0;else if(I1.test(C))u.push(C);else u.push(C,`*.${C}`);if(F)u.push(S2);return u}function h2(D){let{network:u,sbxBin:F,name:C}=D;if(u===void 0)return[];if(u.block===!0)return[[F,"policy","deny","network","--sandbox",C,"**"]];let E=j1(u.allowDomain??[]);return E.length>0?[[F,"policy","allow","network","--sandbox",C,E.join(",")]]:[]}function _1(D){return D.networkProfile!==void 0?"network_profile is nono-only \u2014 ignored under the sbx backend":void 0}function R1(D){return(D.openPort?.length??0)>0||(D.listenPort?.length??0)>0?"open_port/listen_port are nono-only \u2014 guest-local ports are unrestricted and host services are reachable via host.docker.internal under sbx":void 0}function N1(D){return D.block!==!0&&(D.allowDomain?.length??0)>0?"sbx allow rules add to your global sbx policy but cannot subtract from it \u2014 run `sbx policy init deny-all` for strict allowlist semantics (nono enforces the allowlist exactly)":void 0}function w2(D){if(D===void 0)return[];return[_1(D),R1(D),N1(D)].filter((u)=>u!==void 0)}function m2(D){return D.unixSocketDirBind.length>0?["unix_socket_dir_bind is nono-only \u2014 Unix sockets cannot cross the sbx VM boundary; grant ignored"]:[]}function KF(D){let u=D.piVersion===null?`command -v pi >/dev/null 2>&1 || npm i -g ${A2}`:`command -v pi >/dev/null 2>&1 && [ "$(pi --version 2>/dev/null)" = "${D.piVersion}" ] || npm i -g ${A2}@${D.piVersion}`;return[D.sbxBin,"exec",D.name,"bash","-lc",u]}function gu(D,u){return[D.sbxBin,"exec","-i",...D.tty?["-t"]:[],"-e",`HOME=${D.home}`,"-w",D.cwd,D.name,...u]}function v2(D){return D.toLowerCase().includes("already exists")}function c2(D){let u;try{u=new URL(D)}catch{return D}if(u.hostname!=="localhost"&&u.hostname!=="127.0.0.1")return D;return u.hostname=S2,u.toString()}function d2(D,u={}){return`// generated by cradle from the agent folder's models.json \u2014 do not edit
98
+ `}function e3(D){let u=[];if(D.systemFilePath!==null)u.push("--system-prompt",D.systemFilePath);if(D.appendSystemFilePath!==null)u.push("--append-system-prompt",D.appendSystemFilePath);return u}function D1(D){let{folder:u}=D,{settings:F}=u,C=[D.piBin,...e3(u),"--no-extensions","--no-skills","--no-prompt-templates"];if(u.providersJson!==null)C.push("-e",W2(D.extensionsDir,"providers.ts"));if(D.backend==="nono")C.push("-e",W2(D.extensionsDir,gu));for(let E of D.packageEntries??[])C.push("-e",E);for(let E of u.extensionFiles)C.push("-e",E);if(u.skillsDir!==null)C.push("--skill",u.skillsDir);if(F.defaultProvider!==void 0)C.push("--provider",F.defaultProvider);if(F.defaultModel!==void 0)C.push("--model",F.defaultModel);if(F.defaultThinkingLevel!==void 0)C.push("--thinking",F.defaultThinkingLevel);return C.push("--session-dir",D.sessionsDir),C.push(...D.passthrough),C}function _F(D){return D.backend==="nono"?{MISE_CACHE_DIR:D.miseCacheDir}:{}}function Qu(D){let u=D1(D);if(D.backend!=="nono")return u;return[D.nonoBin,"run",...D.verbose===!0?[]:["--silent"],"--profile",D.profilePath,"--",...u]}import{existsSync as u1}from"fs";import{homedir as F1}from"os";import{join as C1}from"path";function E1(D,u=F1()){let F=C1(u,".local","share","mise","shims",D);return u1(F)?F:null}var V2=(D)=>Bun.which(D)??E1(D);function NF(D,u=V2){return u(D)}function tu(D,u=V2){let F=NF(D,u);if(!F)throw Error(`Required executable "${D}" not found on PATH \u2014 install it, then run \`cradle doctor\` to verify`);return F}var B1="recommended: the supported way to install pi/nono \u2014 cradle resolves them from mise shims and the sandbox profile assumes a mise-managed install",$1="required for sandboxed runs (a folder declaring sandbox/nono.json, or --sandbox/--offline/--allow-host); not needed otherwise",z1="required for sbx-backend runs (a folder declaring sandbox/sbx.json, or --sandbox-backend sbx); not needed otherwise";async function T2(D={}){let u=(Y)=>NF(Y,D.which),F=async(Y,q)=>Y!==null&&D.readVersion?D.readVersion(Y,q):null,C=u("pi"),E=u("nono"),B=u("sbx"),$=u("mise"),[Z,M,H,V]=await Promise.all([F(C),F(E),F(B,["version"]),F($)]);return[{name:"pi",bin:"pi",required:!0,found:C,version:Z},{name:"nono",bin:"nono",required:!1,found:E,version:M,...E?{}:{note:$1}},{name:"sbx",bin:"sbx",required:!1,found:B,version:H,...B?{}:{note:z1}},{name:"mise",bin:"mise",required:!1,found:$,version:V,...$?{}:{note:B1}}]}function Z1(D){let u=D.found?`\u2713 ${D.name.padEnd(8)} ${D.version??"?"} ${D.found}`:D.required?`\u2717 ${D.name.padEnd(8)} MISSING (required)`:`\u25CB ${D.name.padEnd(8)} not found (recommended)`;return D.note?`${u}
99
+ \u26A0 ${D.note}`:u}function L2(D){return D.map(Z1).join(`
100
+ `)}function I2(D){return D.some((u)=>u.required&&!u.found)?1:0}import{exists as a6,mkdir as mF,rm as e6,writeFile as V8}from"fs/promises";import{homedir as D7}from"os";import{basename as u7,dirname as F7,join as ju}from"path";import{stat as j1}from"fs/promises";import{join as x2,resolve as _1}from"path";import{basename as X1,isAbsolute as M1,join as G1,relative as J1}from"path";var Wu={extends:"default",meta:{name:"cradle-pi"},groups:{include:["node_runtime","git_config","unlink_protection"]},filesystem:{read:["$HOME/.agents","$HOME/.local/share/mise","$HOME/.config/mise","$HOME/.local/state/mise","$HOME/.config/gh","/System/iOSSupport/System/Library/ExtensionKit/Extensions","/System/Library/AssetsV2/com_apple_MobileAsset_TTSAXResourceModelAssets","/System/Library/AssetsV2/com_apple_MobileAsset_UAF_Siri_TextToSpeech"],allow:["$HOME/.pi/agent"]},unsafe_macos_seatbelt_rules:['(allow user-preference-read (preference-domain "kCFPreferencesAnyApplication") (preference-domain "com.apple.speech.voice.prefs") (preference-domain "com.apple.speakselection") (preference-domain "com.apple.assistant.backedup") (preference-domain "com.apple.assistant.support") (preference-domain "com.apple.accessibility"))']};var K2="nono-profile.json";function lu(D,u){let F=J1(D,u);return F===""||!F.startsWith("..")&&!M1(F)}function j2(D,u){let F=G1(u,".local","state","nono");return lu(D,F)||lu(F,D)?D:void 0}function Vu(D,u){if(D==="~"||D==="$HOME")return u;if(D.startsWith("~/"))return`${u}${D.slice(1)}`;if(D.startsWith("$HOME/"))return`${u}${D.slice(5)}`;return D}function _2(D){let u=($)=>Vu($,D.home),F=Wu.filesystem,C=D.network!==void 0?Y1(D.network):void 0,E=[...F.unix_socket_dir_bind??[],...D.grants.unixSocketDirBind.map(u)],B={...Wu,meta:{...Wu.meta,name:`cradle-${X1(D.stateDir)}`},filesystem:{...F,read:[...F.read??[],D.agentDir,...D.grants.read.map(u)],write:[...F.write??[],...D.grants.write.map(u)],allow:[...F.allow??[],D.cwd,D.stateDir,...D.linkedGitDir!==void 0?[D.linkedGitDir]:[],...D.grants.allow.map(u)],...E.length>0?{unix_socket_dir_bind:E}:{}},unsafe_macos_seatbelt_rules:[...Wu.unsafe_macos_seatbelt_rules,...D.rules],...C!==void 0?{network:C}:{}};return JSON.stringify(B,null,2)}function Y1(D){return{...D.block!==void 0?{block:D.block}:{},...D.networkProfile!==void 0?{network_profile:D.networkProfile}:{},...D.allowDomain!==void 0?{allow_domain:D.allowDomain}:{},...D.openPort!==void 0?{open_port:D.openPort}:{},...D.listenPort!==void 0?{listen_port:D.listenPort}:{}}}import{chmod as N2,lstat as q1,mkdir as H1,readdir as R2,readFile as O1,rm as U1,writeFile as W1}from"fs/promises";import{dirname as V1,join as ou,relative as T1}from"path";function ZD(D){return typeof D==="object"&&D!==null&&!Array.isArray(D)}function Xu(D,u){try{return JSON.parse(D)}catch(F){throw Error(`${u} is not valid JSON: ${Fu(F)}`,{cause:F})}}function Fu(D){return D instanceof Error?D.message:String(D)}function XD(D,u){return typeof D==="object"&&D!==null&&"code"in D&&D.code===u}function Mu(D){if(/^[A-Za-z0-9_./:@%+=,-]+$/u.test(D))return D;return`'${D.replaceAll("'","'\\''")}'`}function cD(D){return Array.isArray(D)&&D.every((u)=>typeof u==="string")}function Tu(D){return/^(?:\/|~(?:\/|$)|\$HOME(?:\/|$)|[A-Za-z]:[\\/]|\\\\)/.test(D)}function RD(D,u,F,C){let E=Object.keys(D).filter((B)=>!F.includes(B));if(E.length>0)C.push(`${u}: unsupported keys ignored: ${E.join(", ")}`)}function iu(D,u,F,C){D.results.push({name:u,detail:F,status:C})}function L1(D,u,F){D.failures.push(`${u}: ${F}`),iu(D,u,F,"failed")}async function f2(D,u,F,C){try{if(await K1(F,C)){iu(D,u,F,"unchanged");return}if(D.dryRun){iu(D,u,`would replace ${F}`,"changed");return}await S2(F),await U1(F,{force:!0,recursive:!0});for(let E of C)await I1(F,E);iu(D,u,F,"changed")}catch(E){L1(D,u,Fu(E))}}async function I1(D,u){let F=ou(D,u.rel);if(await H1(V1(F),{recursive:!0}),await W1(F,u.content,"utf8"),u.mode!==void 0)await N2(F,u.mode)}async function K1(D,u){let F=await A2(D);if(F.length!==u.length)return!1;let C=new Set(F);for(let E of u){if(!C.has(E.rel))return!1;if(await SD(ou(D,E.rel))!==E.content)return!1}return!0}async function A2(D,u=D){let F=await P2(D);if(!F||!F.isDirectory())return[];let C=[];for(let E of await R2(D,{withFileTypes:!0})){let B=ou(D,E.name);if(E.isDirectory())C.push(...await A2(B,u));else C.push(T1(u,B))}return C}async function S2(D){let u=await P2(D);if(!u||u.isSymbolicLink())return;if(await N2(D,u.isDirectory()?493:420),!u.isDirectory())return;let F=await R2(D);await Promise.all(F.map((C)=>S2(ou(D,C))))}async function SD(D){try{return await O1(D,"utf8")}catch(u){if(XD(u,"ENOENT"))return;throw u}}async function P2(D){try{return await q1(D)}catch(u){if(XD(u,"ENOENT"))return;throw u}}var N1=/^[A-Za-z0-9][A-Za-z0-9._-]*$/;async function h2(D,u){if(!R1(D))return{dir:D,warnings:[]};let F=x2(u.home,".cradle","settings.json"),C=[],E=await f1(F,C),B=x2(u.cwd,D),$=E.get(D);if($!==void 0){let Z=_1(Vu($,u.home));if(await b2(B))C.push(P1(D,Z));return{dir:Z,warnings:C}}if(await b2(B))return{dir:B,warnings:C};throw Error(x1(D,B,F,E))}function R1(D){return N1.test(D)}async function b2(D){try{return(await j1(D)).isDirectory()}catch(u){if(XD(u,"ENOENT")||XD(u,"ENOTDIR"))return!1;throw u}}async function f1(D,u){let F=await SD(D);if(F===void 0)return new Map;let C=Xu(F,D);if(!ZD(C))return u.push(`${D}: settings must be a JSON object \u2014 ignored`),new Map;return RD(C,D,["agents"],u),A1(C,D,u)}function A1(D,u,F){let C=D.agents;if(C===void 0)return new Map;if(!ZD(C))return F.push(`${u}: agents must be an object \u2014 ignored`),new Map;let E=Object.entries(C).map((B)=>{let[$,Z]=B,M=S1(Z,$,u,F);return M===void 0?void 0:[$,M]}).filter((B)=>B!==void 0);return new Map(E)}function S1(D,u,F,C){if(!ZD(D)){C.push(`${F}: agents.${u} must be an object with a "path" \u2014 ignored`);return}let E=D.path;if(typeof E!=="string"||E.trim()===""){C.push(`${F}: agents.${u}.path must be a non-empty string \u2014 ignored`);return}if(!Tu(E)){C.push(`${F}: agents.${u}.path must be an absolute, ~/, or $HOME/ path \u2014 ignored: ${E}`);return}return E}function P1(D,u){return`started alias "${D}" (${u}) \u2014 a directory named ${D} exists in the current directory; use ./${D} to run it instead`}function x1(D,u,F,C){let E=C.size>0?` (known agents: ${[...C.keys()].join(", ")})`:"";return`Agent folder not found: ${u} \u2014 and no "agents.${D}" entry in ${F}${E}`}import{createHash as b1}from"crypto";import{join as h1}from"path";var m2="host.docker.internal",w2="@earendil-works/pi-coding-agent",w1=/^\d+\.\d+\.\d+\.\d+$/,m1=new Set(["localhost","127.0.0.1"]);function v2(D){let u=(C)=>Vu(C,D.home),F=[{path:D.cwd,readonly:!1},{path:D.agentDir,readonly:!0},{path:D.stateDir,readonly:!1},{path:h1(D.home,".pi","agent"),readonly:!1},...D.linkedGitDir!==void 0?[{path:D.linkedGitDir,readonly:!1}]:[],...D.grants.read.map((C)=>({path:u(C),readonly:!0})),...D.grants.write.map((C)=>({path:u(C),readonly:!1})),...D.grants.allow.map((C)=>({path:u(C),readonly:!1}))];return v1(F)}function v1(D){let u=[],F=new Map;for(let C of D){if(!F.has(C.path))u.push(C.path);if(F.get(C.path)!==!1)F.set(C.path,C.readonly)}return u.map((C)=>({path:C,readonly:F.get(C)===!0}))}function c2(D,u){let F=u.map((E)=>`${E.path}:${E.readonly?"ro":"rw"}`).sort().join("|"),C=b1("sha256").update(F).digest("hex").slice(0,8);return`cradle-${D}-${C}`}function d2(D){let u=D.mounts.map((F)=>F.readonly?`${F.path}:ro`:F.path);return[D.sbxBin,"create","shell",...u,"--name",D.name,"-q"]}function c1(D){let u=[],F=!1;for(let C of D)if(m1.has(C))F=!0;else if(w1.test(C))u.push(C);else u.push(C,`*.${C}`);if(F)u.push(m2);return u}function k2(D){let{network:u,sbxBin:F,name:C}=D;if(u===void 0)return[];if(u.block===!0)return[[F,"policy","deny","network","--sandbox",C,"**"]];let E=c1(u.allowDomain??[]);return E.length>0?[[F,"policy","allow","network","--sandbox",C,E.join(",")]]:[]}function d1(D){return D.networkProfile!==void 0?"network_profile is nono-only \u2014 ignored under the sbx backend":void 0}function k1(D){return(D.openPort?.length??0)>0||(D.listenPort?.length??0)>0?"open_port/listen_port are nono-only \u2014 guest-local ports are unrestricted and host services are reachable via host.docker.internal under sbx":void 0}function p1(D){return D.block!==!0&&(D.allowDomain?.length??0)>0?"sbx allow rules add to your global sbx policy but cannot subtract from it \u2014 run `sbx policy init deny-all` for strict allowlist semantics (nono enforces the allowlist exactly)":void 0}function p2(D){if(D===void 0)return[];return[d1(D),k1(D),p1(D)].filter((u)=>u!==void 0)}function y2(D){return D.unixSocketDirBind.length>0?["unix_socket_dir_bind is nono-only \u2014 Unix sockets cannot cross the sbx VM boundary; grant ignored"]:[]}function RF(D){let u=D.piVersion===null?`command -v pi >/dev/null 2>&1 || npm i -g ${w2}`:`command -v pi >/dev/null 2>&1 && [ "$(pi --version 2>/dev/null)" = "${D.piVersion}" ] || npm i -g ${w2}@${D.piVersion}`;return[D.sbxBin,"exec",D.name,"bash","-lc",u]}function nu(D,u){return[D.sbxBin,"exec","-i",...D.tty?["-t"]:[],"-e",`HOME=${D.home}`,"-w",D.cwd,D.name,...u]}function g2(D){return D.toLowerCase().includes("already exists")}function t2(D){let u;try{u=new URL(D)}catch{return D}if(u.hostname!=="localhost"&&u.hostname!=="127.0.0.1")return D;return u.hostname=m2,u.toString()}function l2(D,u={}){return`// generated by cradle from the agent folder's models.json \u2014 do not edit
101
101
  import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
102
102
 
103
- const providers = ${u.rewriteLocalhostBaseUrls===!0?A1(D):D} as const;
103
+ const providers = ${u.rewriteLocalhostBaseUrls===!0?y1(D):D} as const;
104
104
 
105
105
  export default function (pi: ExtensionAPI): void {
106
106
  for (const [name, config] of Object.entries(providers)) {
107
107
  pi.registerProvider(name, config as never);
108
108
  }
109
109
  }
110
- `}function A1(D){let u=JSON.parse(D);for(let F of Object.values(u)){if(F===null||typeof F!=="object")continue;let C=F;if(typeof C.baseUrl==="string")C.baseUrl=c2(C.baseUrl)}return JSON.stringify(u,null,2)}import{lstat as t1,readdir as s2,stat as k1}from"fs/promises";import{join as LD,resolve as y1}from"path";import{join as jF,resolve as S1,sep as p2}from"path";var P1=/^(@[a-z0-9-~][a-z0-9-._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/,x1=/^[0-9A-Za-z.^~><=* +-]+$/;function t2(D,u,F){let C=D.packages;if(C===void 0)return[];if(!cD(C))return F.push(`${u}: packages must be an array of strings \u2014 ignored`),[];let E=b1(C,u,F);return h1(E,u,F)}function b1(D,u,F){let C=D.filter((B)=>B.startsWith("npm:")),E=D.filter((B)=>!B.startsWith("npm:"));if(E.length>0)F.push(`${u}: only npm: package sources are supported \u2014 ignored: ${E.join(", ")}`);return C}function h1(D,u,F){let C=[],E=[];for(let B of D){let $=w1(B.slice(4));if($===null)E.push(B);else C.push($)}if(E.length>0)F.push(`${u}: packages entries must be npm:<name>[@<version>] \u2014 ignored: ${E.join(", ")}`);return C}function w1(D){let u=D.lastIndexOf("@"),F=u>0,C=F?D.slice(0,u):D,E=F?D.slice(u+1):"latest";if(!P1.test(C)||!x1.test(E))return null;return{name:C,version:E}}function k2(D){let u=Object.fromEntries([...D].sort((F,C)=>F.name.localeCompare(C.name)).map((F)=>[F.name,F.version]));return`${JSON.stringify({name:"cradle-agent-packages",private:!0,dependencies:u},null,2)}
111
- `}async function y2(D,u){let F=await Promise.all(u.map(async(C)=>{let E=[];return{entries:await m1(D,C,E),warnings:E}}));return{entries:F.flatMap((C)=>C.entries),warnings:F.flatMap((C)=>C.warnings)}}async function m1(D,u,F){let C=jF(D,"node_modules",u.name),E=await v1(u.name,C,F);if(E===null)return[];let B=c1(E);if(B===void 0)return d1(u.name,C,F);let $=[];for(let Z of B){let M=await p1(u.name,C,Z,F);if(M!==null)$.push(M)}return $}async function v1(D,u,F){let C=jF(u,"package.json"),E=await SD(C);if(E===void 0)return F.push(`package ${D} is not installed \u2014 skipped`),null;try{let B=Qu(E,C);if(!QD(B))return F.push(`package ${D}: ${C} must be a JSON object \u2014 skipped`),null;return B}catch(B){return F.push(`package ${D}: ${uu(B)} \u2014 skipped`),null}}function c1(D){let u=D.pi;if(u===void 0||!QD(u))return;let F=u.extensions;if(F===void 0||!cD(F))return;return F}async function d1(D,u,F){let C=jF(u,"index.ts");if(await Bun.file(C).exists())return[C];return F.push(`package ${D} declares no pi extensions \u2014 skipped`),[]}async function p1(D,u,F,C){let E=S1(u,F),B=u.endsWith(p2)?u:`${u}${p2}`;if(E!==u&&!E.startsWith(B))return C.push(`package ${D}: extension entry "${F}" escapes the package directory \u2014 skipped`),null;if(!await Bun.file(E).exists())return C.push(`package ${D}: extension entry "${F}" not found \u2014 skipped`),null;return E}var i2=["off","minimal","low","medium","high","xhigh"],g2=new Set(["schedules","subagents","channels","connections"]),i1=new Set(["SYSTEM.md","APPEND_SYSTEM.md","settings.json","models.json","skills","extensions","sandbox"]),g1=new Set([".git",".gitignore",".DS_Store","README.md","LICENSE"]),Vu={read:[],write:[],allow:[],unixSocketDirBind:[]},lu={posture:"unconfigured",filesystem:Vu,unsafeMacosSeatbeltRules:[]};async function r2(D){let u=y1(D),F=await l1(u),C=new Map(F.map((M)=>[M.name,M])),E=C.has("SYSTEM.md"),B=C.has("APPEND_SYSTEM.md");if(!E&&!B){let M=C.has("AGENTS.md")?" \u2014 found AGENTS.md, rename it to APPEND_SYSTEM.md":"";throw Error(`Not an agent folder: ${u} (needs SYSTEM.md or APPEND_SYSTEM.md${M} \u2014 see ARCHITECTURE.md)`)}let $=[];n1(F,$);let Z=await C6(u,C.get("sandbox"),$);return{dir:u,systemFilePath:E?LD(u,"SYSTEM.md"):null,appendSystemFilePath:B?LD(u,"APPEND_SYSTEM.md"):null,settings:await o1(u,C.has("settings.json"),$),providersJson:await e1(u,C.has("models.json"),$),skillsDir:await u6(u,C.get("skills"),$),extensionFiles:await F6(u,C.get("extensions"),$),sandbox:Z.nono,sbx:Z.sbx,warnings:$}}async function l1(D){try{return await s2(D,{withFileTypes:!0})}catch(u){if(ID(u,"ENOENT")||ID(u,"ENOTDIR"))throw Error(`Agent folder not found: ${D}`,{cause:u});throw u}}async function RF(D,u){if(u.isDirectory())return!0;if(!u.isSymbolicLink())return!1;try{return(await k1(LD(D,u.name))).isDirectory()}catch(F){if(ID(F,"ENOENT"))return!1;throw F}}function n1(D,u){let F=D.filter((E)=>g2.has(E.name)).map((E)=>E.name),C=D.map((E)=>E.name).filter((E)=>!i1.has(E)&&!g2.has(E)&&!g1.has(E));if(F.length>0)u.push(`reserved for a future cradle release, ignored: ${F.join(", ")}`);if(C.length>0)u.push(`not part of the agent folder format, ignored: ${C.join(", ")}`)}async function o1(D,u,F){if(!u)return{};let C=LD(D,"settings.json"),E=await AF(C);r1(E,C,F);let B=_F(E,"defaultProvider",C,F),$=_F(E,"defaultModel",C,F),Z=Y6(E,C,F),M=t2(E,C,F),O=a1(E,C,F);return{...B!==void 0?{defaultProvider:B}:{},...$!==void 0?{defaultModel:$}:{},...Z!==void 0?{defaultThinkingLevel:Z}:{},...M.length>0?{packages:M}:{},...O!==void 0?{npmCommand:O}:{}}}var s1=new Set(["defaultProvider","defaultModel","defaultThinkingLevel","packages","npmCommand"]);function r1(D,u,F){let C=Object.keys(D).filter((E)=>!s1.has(E));if(C.length>0)F.push(`${u}: keys cradle does not map are ignored \u2014 pi reads them from ~/.pi/agent/settings.json or `+`the project's .pi/settings.json, not the agent folder: ${C.join(", ")}`)}var l2=new Set(["npm","pnpm","yarn","bun"]);function a1(D,u,F){let C=D.npmCommand;if(C===void 0)return;let[E,...B]=cD(C)?C:[];if(E===void 0||B.length>0||!l2.has(E)){let $=[...l2].join(", ");F.push(`${u}: npmCommand must be a single-element array naming one of ${$} \u2014 ignored`);return}return[E]}async function e1(D,u,F){if(!u)return null;let C=LD(D,"models.json"),E=await AF(C),B=E.providers;if(B===void 0||!QD(B))throw Error(`${C} must contain a "providers" object`);return RD(E,C,["providers"],F),JSON.stringify(D6(B),null,2)}function D6(D){let u={input:0,output:0,cacheRead:0,cacheWrite:0};return Object.fromEntries(Object.entries(D).map(([F,C])=>{if(!QD(C)||!Array.isArray(C.models))return[F,C];let E=C.models.map((B)=>QD(B)&&B.cost===void 0?{cost:u,...B}:B);return[F,{...C,models:E}]}))}async function u6(D,u,F){if(!u)return null;if(!await RF(D,u))return F.push("skills must be a directory \u2014 ignored"),null;return LD(D,"skills")}async function F6(D,u,F){if(!u)return[];if(!await RF(D,u))return F.push("extensions must be a directory \u2014 ignored"),[];let C=LD(D,"extensions"),E=await s2(C,{withFileTypes:!0});return(await Promise.all(E.sort(($,Z)=>$.name.localeCompare(Z.name)).map(async($)=>{if($.isFile()&&$.name.endsWith(".ts")&&!$.name.startsWith("."))return LD(C,$.name);if($.isDirectory()){let Z=LD(C,$.name,"index.ts");return await Bun.file(Z).exists()?Z:null}return null}))).filter(($)=>$!==null)}async function C6(D,u,F){let C={nono:lu,sbx:lu};if(!u)return C;if(!await RF(D,u))return F.push("sandbox must be a directory \u2014 ignored"),C;let E=LD(D,"sandbox","nono.json"),B=LD(D,"sandbox","sbx.json"),$=await n2(E),Z=await n2(B);if($===void 0&&Z===void 0)return F.push("sandbox/ has no nono.json or sbx.json \u2014 sandboxing stays off unless --sandbox is passed"),C;return{nono:$===void 0?lu:E6($,E,F),sbx:Z===void 0?lu:B6(Z,B,F)}}function E6(D,u,F){let C=nu(D,"sandbox",u,F),E=X6(D,u,F);return Q6(D,u,F),RD(D,u,["sandbox","network","filesystem","unsafe_macos_seatbelt_rules","net"],F),{posture:C===!1?"disabled":"enabled",...E!==void 0?{network:E}:{},filesystem:G6(D.filesystem,u,F),unsafeMacosSeatbeltRules:M6(D.unsafe_macos_seatbelt_rules,u,F)}}function B6(D,u,F){let C=nu(D,"sandbox",u,F),E=$6(D,u,F);return NF({record:D,key:"unsafe_macos_seatbelt_rules",path:u,explanation:"the sbx VM boundary replaces Seatbelt"},F),RD(D,u,["sandbox","network","filesystem","unsafe_macos_seatbelt_rules"],F),{posture:C===!1?"disabled":"enabled",...E!==void 0?{network:E}:{},filesystem:z6(D.filesystem,u,F),unsafeMacosSeatbeltRules:[]}}function $6(D,u,F){let C=D.network;if(C===void 0)return;if(!QD(C)){F.push(`${u}: network must be an object \u2014 ignored`);return}for(let M of["network_profile","open_port","listen_port"])NF({record:C,key:M,path:u},F);let E=`${u} network`;RD(C,E,["block","allow_domain","network_profile","open_port","listen_port"],F);let B=nu(C,"block",E,F),$=a2(C,"allow_domain",E,F),Z={...B!==void 0?{block:B}:{},...$.length>0?{allowDomain:$}:{}};return Object.keys(Z).length>0?Z:void 0}function z6(D,u,F){if(D===void 0)return Vu;if(!QD(D))return F.push(`${u}: filesystem must be an object \u2014 ignored`),Vu;return NF({record:D,key:"unix_socket_dir_bind",path:u,explanation:"Unix sockets cannot cross the sbx VM boundary"},F),RD(D,`${u} filesystem`,["read","write","allow","unix_socket_dir_bind"],F),{read:Fu(D,"read",u,F),write:Fu(D,"write",u,F),allow:Fu(D,"allow",u,F),unixSocketDirBind:[]}}function NF({record:D,key:u,path:F,explanation:C},E){if(D[u]===void 0)return;E.push(`${F}: ${u} is nono-only \u2014 ${C!==void 0?`${C}; `:""}ignored`)}async function n2(D){return await Z6(D)?AF(D):void 0}async function Z6(D){try{return await t1(D),!0}catch(u){if(ID(u,"ENOENT"))return!1;throw u}}function Q6(D,u,F){if(D.net!==void 0)F.push(`${u}: "net" was removed \u2014 use "network" instead (see ARCHITECTURE.md) \u2014 ignored`)}function X6(D,u,F){let C=D.network;if(C===void 0)return;if(!QD(C)){F.push(`${u}: network must be an object \u2014 ignored`);return}let E=`${u} network`;RD(C,E,["block","network_profile","allow_domain","open_port","listen_port"],F);let B=nu(C,"block",E,F),$=_F(C,"network_profile",E,F),Z=a2(C,"allow_domain",E,F),M=o2(C,"open_port",E,F),O=o2(C,"listen_port",E,F),V={...B!==void 0?{block:B}:{},...$!==void 0?{networkProfile:$}:{},...Z.length>0?{allowDomain:Z}:{},...M.length>0?{openPort:M}:{},...O.length>0?{listenPort:O}:{}};return Object.keys(V).length>0?V:void 0}function a2(D,u,F,C){let E=D[u];if(E===void 0)return[];if(!cD(E))return C.push(`${F}: ${u} must be an array of strings \u2014 ignored`),[];let B=E.map(($)=>$.trim()).filter(($)=>$!=="");if(B.length!==E.length)C.push(`${F}: ${u} entries must be non-empty \u2014 blanks ignored`);return B}function o2(D,u,F,C){let E=D[u];if(E===void 0)return[];if(!Array.isArray(E))return C.push(`${F}: ${u} must be an array of port numbers \u2014 ignored`),[];let B=(Z)=>typeof Z==="number"&&Number.isInteger(Z)&&Z>=0&&Z<=65535,$=E.filter((Z)=>!B(Z)).map((Z)=>typeof Z==="object"&&Z!==null?JSON.stringify(Z):String(Z));if($.length>0)C.push(`${F}: ${u} entries must be integers 0\u201365535 \u2014 ignored: ${$.join(", ")}`);return E.filter(B)}function M6(D,u,F){if(D===void 0)return[];if(!cD(D))return F.push(`${u}: unsafe_macos_seatbelt_rules must be an array of strings \u2014 ignored`),[];let C=(B)=>{let $=B.trim();return $.startsWith("(")&&$.endsWith(")")},E=D.filter((B)=>!C(B));if(E.length>0)F.push(`${u}: unsafe_macos_seatbelt_rules entries must be parenthesized s-expressions \u2014 ignored: ${E.join(", ")}`);return D.filter(C).map((B)=>B.trim())}function nu(D,u,F,C){let E=D[u];if(E===void 0)return;if(typeof E!=="boolean"){C.push(`${F}: ${u} must be true or false \u2014 ignored`);return}return E}function G6(D,u,F){if(D===void 0)return Vu;if(!QD(D))return F.push(`${u}: filesystem must be an object \u2014 ignored`),Vu;return RD(D,`${u} filesystem`,["read","write","allow","unix_socket_dir_bind"],F),{read:Fu(D,"read",u,F),write:Fu(D,"write",u,F),allow:Fu(D,"allow",u,F),unixSocketDirBind:Fu(D,"unix_socket_dir_bind",u,F)}}function Fu(D,u,F,C){let E=D[u];if(E===void 0)return[];if(!cD(E))return C.push(`${F}: ${u} must be an array of strings \u2014 ignored`),[];let B=E.filter(($)=>!Wu($));if(B.length>0)C.push(`${F}: ${u} entries must be absolute, ~/, or $HOME/ paths \u2014 ignored: ${B.join(", ")}`);return E.filter(Wu)}async function AF(D){let u=Qu(await J6(D),D);if(!QD(u))throw Error(`${D} must be a JSON object`);return u}async function J6(D){let u;try{u=await SD(D)}catch(F){throw Error(`${D} could not be read: ${uu(F)}`,{cause:F})}if(u===void 0)throw Error(`${D} could not be read \u2014 broken symlink?`);return u}function _F(D,u,F,C){let E=D[u];if(E===void 0)return;if(typeof E!=="string"){C.push(`${F}: ${u} must be a string \u2014 ignored`);return}return E}function Y6(D,u,F){let C=D.defaultThinkingLevel;if(C===void 0)return;if(typeof C!=="string"||!i2.includes(C)){F.push(`${u}: defaultThinkingLevel must be one of ${i2.join(", ")} \u2014 ignored`);return}return C}import{createHash as q6}from"crypto";import{homedir as O6}from"os";import{basename as H6,join as Tu}from"path";function U6(D){let u=H6(D).toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,""),F=q6("sha256").update(D).digest("hex").slice(0,8);return`${u===""?"agent":u}-${F}`}function e2(D,u=O6(),F=process.env.CRADLE_STATE_DIR){let C=F||Tu(u,".cradle");return Tu(C,"agents",U6(D))}function D8(D){return{extensionsDir:Tu(D,"extensions"),sessionsDir:Tu(D,"sessions"),miseCacheDir:Tu(D,"mise-cache")}}import{readFile as W6}from"fs/promises";import{join as u8,resolve as F8}from"path";var C8="gitdir:";async function E8(D){try{return await W6(D,"utf8")}catch{return}}async function B8(D){let u=await E8(u8(D,".git"));if(u===void 0||!u.startsWith(C8))return;let F=F8(D,u.slice(C8.length).trim()),C=await E8(u8(F,"commondir")),E=C!==void 0?F8(F,C.trim()):F;return ku(D,E)?void 0:E}async function Z8(D,u={}){let F=u.home??f6(),C=u.cwd??process.cwd(),{dir:E,warnings:B}=await N2(D.dir,{home:F,cwd:C}),$=await r2(E),Z=e2($.dir,F),{extensionsDir:M,sessionsDir:O,miseCacheDir:V}=D8(Z),Y=_6(D,$),q=D.dryRun??!1,H=p6(Y.backend,q,u.which),W=K6({folder:$,flags:D,backend:Y.backend,bins:H,stateDir:Z,extensionsDir:M,sessionsDir:O,miseCacheDir:V}),J=await t6(Y,$,{home:F,cwd:C,stateDir:Z,profilePath:W.profilePath,sbxBin:H.sbxBin,hostPiBin:H.piBin,tty:u.tty??!1}),S=j6($,Z);return{files:i6($,Y.backend),extensionsDir:M,sessionsDir:O,warnings:[...B,...Y.warnings,...J.warnings],profile:J.profile,sbx:J.sbx,packages:S,launch:W,dryRun:q}}function K6(D){let{folder:u,flags:F,backend:C,bins:E,stateDir:B,extensionsDir:$,sessionsDir:Z,miseCacheDir:M}=D;return{folder:u,stateDir:B,extensionsDir:$,sessionsDir:Z,miseCacheDir:M,backend:C,passthrough:F.passthrough??[],nonoBin:E.nonoBin,piBin:C==="sbx"?"pi":E.piBin,profilePath:fu(B,U2),...F.verbose?{verbose:!0}:{}}}function j6(D,u){let F=D.settings.packages;if(F===void 0||F.length===0)return null;return{npmDir:fu(u,"npm"),manifest:k2(F),specs:F,installCommand:[...D.settings.npmCommand??["npm"],"install","--ignore-scripts"]}}function _6(D,u){let{backend:F,warnings:C}=x6(D,u),E=[],B=R6(D,u,F,E);return{backend:F,network:B,warnings:S6(F!==null,B,[...C,...E])}}function R6(D,u,F,C){if(D.offline)return{block:!0};let E=N6(D.allowHost??[],C);if(E.length>0)return{allowDomain:E};return F==="sbx"?u.sbx.network:u.sandbox.network}function N6(D,u){let F=D.map((C)=>C.trim()).filter((C)=>C!=="");if(F.length!==D.length)u.push("--allow-host entries must be non-empty \u2014 blanks ignored");return F}function A6(D){return D!==void 0&&(D.block===!0||(D.allowDomain?.length??0)>0)}function S6(D,u,F){if(D||!A6(u))return F;return[...F,"network policy has no effect without the sandbox \u2014 pi runs with no network isolation (--sandbox to enforce it)"]}function P6(D){return D.offline===!0||(D.allowHost?.length??0)>0}function x6(D,u){if(D.noSandbox===!0)return{backend:null,warnings:u.warnings};if(D.sandboxBackend!==void 0)return{backend:D.sandboxBackend,warnings:u.warnings};let F=b6(u);if(D.noSandbox===!1||F.backend!==null)return{...F,backend:F.backend??"nono"};return h6(D,u,F.warnings)}function b6(D){let u=D.sandbox.posture==="enabled",F=D.sbx.posture==="enabled";if(u&&F)return{backend:"nono",warnings:[...D.warnings,"both sandbox/nono.json and sandbox/sbx.json declare a sandbox \u2014 using nono (pass --sandbox-backend sbx to override)"]};return{backend:u?"nono":F?"sbx":null,warnings:D.warnings}}function h6(D,u,F){let C=w6(u);if(P6(D))return{backend:"nono",warnings:[...F,`${C} \u2014 sandbox forced on to enforce the requested network policy (--no-sandbox to override)`]};return{backend:null,warnings:[...F,`${C} \u2014 agent is running without OS isolation (--sandbox to force enable)`]}}function w6(D){if(D.sandbox.posture==="disabled")return"sandbox disabled by sandbox/nono.json";if(D.sbx.posture==="disabled")return"sandbox disabled by sandbox/sbx.json";return"sandbox/nono.json or sbx.json not found"}async function Q8(D,u={}){let F={dryRun:!1,results:[],failures:[]};if(await I2(F,"extensions",D.extensionsDir,D.files),F.failures.length>0)throw Error(`Failed to write agent extensions: ${F.failures.join("; ")}`);if(await SF(D.sessionsDir,{recursive:!0}),D.profile!==null)await SF(L6(D.profile.path),{recursive:!0}),await z8(D.profile.path,D.profile.content,"utf8");if(D.sbx!==null)await m6(D.sbx,u);let C={...D.launch,extensionsDir:D.extensionsDir,sessionsDir:D.sessionsDir},E=D.packages===null?{argv:Zu(C),warnings:[]}:await d6(D.packages,C,u);if(D.sbx===null)return E;return{argv:gu(D.sbx.spec,E.argv),warnings:E.warnings}}async function m6(D,u){let F=u.run;if(F===void 0)throw Error("An sbx-backend run needs a command runner but none was provided");let C=await F(D.createArgv);if(C.exitCode!==0&&!v2(C.stderr))throw Error(`Failed to create sbx sandbox ${D.spec.name}: ${C.stderr.trim()}`);for(let E of D.policyArgvs)await $8(F,E,`apply sbx network policy (${D.spec.name})`);await $8(F,await v6(D,u),`provision pi in sbx sandbox ${D.spec.name}`)}async function $8(D,u,F){let C=await D(u);if(C.exitCode!==0)throw Error(`Failed to ${F}: ${C.stderr.trim()}`)}async function v6(D,u){if(u.readPiVersion===void 0)return D.provisionArgv;let F=await u.readPiVersion(D.hostPiBin);return KF({...D.spec,piVersion:F})}async function c6(D,u){if(await SD(fu(D,"package.json"))!==u)return!1;return V6(fu(D,"node_modules"))}async function d6(D,u,F){if(await SF(D.npmDir,{recursive:!0}),!await c6(D.npmDir,D.manifest)){if(F.install===void 0)throw Error("Packages declared but no installer provided");let B=fu(D.npmDir,"package.json");await z8(B,D.manifest,"utf8");try{await F.install(D.installCommand,D.npmDir)}catch($){throw await T6(B,{force:!0}),$}}let{entries:C,warnings:E}=await y2(D.npmDir,D.specs);return{argv:Zu({...u,packageEntries:C}),warnings:E}}function p6(D,u,F){if(u)return{nonoBin:"nono",piBin:"pi",sbxBin:"sbx"};return{nonoBin:D==="nono"?tu("nono",F):"nono",sbxBin:D==="sbx"?tu("sbx",F):"sbx",piBin:tu("pi",F)}}async function t6(D,u,F){let C=D.backend!==null?await B8(F.cwd):void 0,E=y6(D.backend==="nono",u,D.network,{home:F.home,cwd:F.cwd,stateDir:F.stateDir,profilePath:F.profilePath,...C!==void 0?{linkedGitDir:C}:{}});if(D.backend!=="sbx")return{profile:E,sbx:null,warnings:[]};let B=k6(D.network,u,{...F,...C!==void 0?{linkedGitDir:C}:{}});return{profile:E,sbx:B,warnings:[...w2(D.network),...m2(u.sbx.filesystem)]}}function k6(D,u,F){let C=P2({cwd:F.cwd,agentDir:u.dir,stateDir:F.stateDir,home:F.home,grants:u.sbx.filesystem,...F.linkedGitDir!==void 0?{linkedGitDir:F.linkedGitDir}:{}}),E={sbxBin:F.sbxBin,name:x2(I6(F.stateDir),C),cwd:F.cwd,home:F.home,mounts:C,...D!==void 0?{network:D}:{},piVersion:null,tty:F.tty};return{spec:E,hostPiBin:F.hostPiBin,createArgv:b2(E),policyArgvs:h2(E),provisionArgv:KF(E)}}function y6(D,u,F,C){if(!D)return null;let E=W2(C.cwd,C.home);if(E!==void 0)throw Error(`cannot sandbox from ${E} \u2014 this directory is (or contains) nono's protected state root `+"(~/.local/state/nono) and nono refuses to start with an overlapping grant; run `cradle run` from a project directory instead");let B=V2({home:C.home,cwd:C.cwd,agentDir:u.dir,stateDir:C.stateDir,grants:u.sandbox.filesystem,rules:u.sandbox.unsafeMacosSeatbeltRules,...F!==void 0?{network:F}:{},...C.linkedGitDir!==void 0?{linkedGitDir:C.linkedGitDir}:{}});return{path:C.profilePath,content:B}}function i6(D,u){return[...D.providersJson!==null?[{rel:"providers.ts",content:d2(D.providersJson,{rewriteLocalhostBaseUrls:u==="sbx"})}]:[],...u==="nono"?[{rel:pu,content:G2()}]:[]]}function X8(D,u){return u?`\x1B[33m${D}\x1B[0m`:D}function M8(D,u){return()=>{D.kill(u)}}async function G8(D,u={}){let[F,...C]=D;if(!F)throw Error("Command requires at least one argument");let E=Bun.spawn([F,...C],{stdin:"inherit",stdout:"inherit",stderr:"inherit",env:{...process.env,...u}}),B=M8(E,"SIGINT"),$=M8(E,"SIGTERM");process.on("SIGINT",B),process.on("SIGTERM",$);try{return await E.exited}finally{process.off("SIGINT",B),process.off("SIGTERM",$)}}async function J8(D){let[u,...F]=D;if(!u)throw Error("Command requires at least one argument");let C=Bun.spawn([u,...F],{stdin:"ignore",stdout:"ignore",stderr:"pipe",env:process.env}),[E,B]=await Promise.all([new Response(C.stderr).text(),C.exited]);return{exitCode:B,stderr:E}}async function Y8(D,u){let[F,...C]=D;if(!F)throw Error("Command requires at least one argument");let B=await Bun.spawn([F,...C],{cwd:u,stdin:"ignore",stdout:"inherit",stderr:"inherit",env:process.env}).exited;if(B!==0)throw Error(`Package install failed (${D.join(" ")} exited ${String(B)})`)}var Iu=X2(process.argv.slice(2)).scriptName("cradle").version(M2.version).usage("$0 <cmd> [args]").parserConfiguration({"populate--":!0,"parse-numbers":!1,"parse-positional-numbers":!1}).strict();Iu.command("$0","show help",()=>{},async()=>{console.log(await Iu.getHelp())});Iu.command("run [dir]","run an agent folder with pi, sandboxed when sandbox/nono.json or sandbox/sbx.json is present",(D)=>D.positional("dir",{type:"string",default:".",describe:"agent folder, or a name from ~/.cradle/settings.json (default: .)"}).option("offline",{type:"boolean",description:"block all outbound network (overrides the folder network policy; implies --sandbox)"}).option("allow-host",{type:"array",string:!0,description:"restrict network to these hosts (repeatable; overrides the folder allowlist; implies --sandbox)"}).option("sandbox",{type:"boolean",description:"run sandboxed (--sandbox forces it when no sandbox/ file enables one or the folder opts out; --no-sandbox disables)"}).option("sandbox-backend",{type:"string",choices:["nono","sbx"],description:"sandbox implementation (implies --sandbox): nono (host OS policy) or sbx (Docker Sandboxes microVM)"}).option("verbose",{type:"boolean",default:!1,description:"show nono's full sandbox capabilities banner instead of the one-line status"}).option("dry-run",{type:"boolean",default:!1,description:"print the write plan + command, do not spawn"}).epilogue("Everything after `--` is forwarded to pi."),async(D)=>{let u=(D["--"]??[]).map(String),F=(D.allowHost??[]).map(String),C={dir:D.dir,dryRun:D.dryRun,...D.sandbox!==void 0?{noSandbox:!D.sandbox}:{},...D.sandboxBackend!==void 0?{sandboxBackend:D.sandboxBackend}:{},...D.offline?{offline:!0}:{},...F.length?{allowHost:F}:{},...D.verbose?{verbose:!0}:{},...u.length?{passthrough:u}:{}};await g6(C)});Iu.command("doctor","check pi / nono / mise on PATH",()=>{},async()=>{let D=await q2({readVersion:H8});console.log(O2(D)),process.exitCode=H2(D)});async function g6(D){try{let u=await Z8(D,{tty:process.stdout.isTTY});if(q8(u.warnings),u.dryRun){l6(u);return}let F=await Q8(u,{install:Y8,run:J8,readPiVersion:H8});if(q8(F.warnings),u.profile!==null&&!D.verbose)console.log("\uD83D\uDD12 Sandbox Active");if(u.sbx!==null&&!D.verbose)console.log("\uD83D\uDD12 Sandbox Active (sbx)");process.exit(await G8(F.argv,IF(u.launch)))}catch(u){s6(u)}}function l6(D){for(let C of D.files)console.log(`write: ${O8(D.extensionsDir,C.rel)}`);if(D.profile!==null)console.log(`write: ${D.profile.path}`);if(D.sbx!==null)n6(D.sbx);if(D.packages!==null)o6(D.packages);let u=Object.entries(IF(D.launch)).map(([C,E])=>`${C}=${Xu(E)}`),F=D.sbx!==null?gu(D.sbx.spec,Zu(D.launch)):Zu(D.launch);console.log([...u,...F.map(Xu)].join(" "))}function n6(D){console.log(`create: ${D.createArgv.map(Xu).join(" ")}`);for(let u of D.policyArgvs)console.log(`policy: ${u.map(Xu).join(" ")}`);console.log(`provision: ${D.provisionArgv.map(Xu).join(" ")}`)}function o6(D){console.log(`write: ${O8(D.npmDir,"package.json")}`);let u=D.specs.map((F)=>`${F.name}@${F.version}`).join(", ");console.log(`install: ${D.installCommand.join(" ")} (${D.npmDir}): ${u}`)}function q8(D){let u=process.stderr.isTTY;for(let F of D)console.error(X8(`warning: ${F}`,u))}async function H8(D,u=["--version"]){try{let F=Bun.spawn([D,...u],{stdout:"pipe",stderr:"ignore"}),[C,E]=await Promise.all([new Response(F.stdout).text(),F.exited]);if(E!==0)return null;return C.split(`
112
- `)[0]?.match(/v?\d+\.\d+\S*/)?.[0]??null}catch{return null}}function s6(D){console.error(D instanceof Error?D.message:String(D)),process.exitCode=1}Iu.parse();
110
+ `}function y1(D){let u=JSON.parse(D);for(let F of Object.values(u)){if(F===null||typeof F!=="object")continue;let C=F;if(typeof C.baseUrl==="string")C.baseUrl=t2(C.baseUrl)}return JSON.stringify(u,null,2)}import{lstat as V6,readdir as Q8,stat as T6}from"fs/promises";import{join as KD,resolve as L6}from"path";import{readdir as l1,stat as i1}from"fs/promises";import{join as dD,resolve as s2,sep as r2}from"path";import{basename as g1,relative as o2,sep as i2}from"path";function Lu(D){return D.startsWith("!")||D.startsWith("+")||D.startsWith("-")}function PF(D,u,F){let C=u.filter((Z)=>!Lu(Z)),E=fF(u,"!"),B=fF(u,"+"),$=fF(u,"-");return D.filter((Z)=>{if(SF(Z,$,F))return!1;if(SF(Z,B,F))return!0;if(AF(Z,E,F))return!1;return C.length===0||AF(Z,C,F)})}function n2(D,u,F){return D.filter((C)=>{let E=u.filter((B)=>t1(C,B,F)).at(-1);return E!==void 0&&!E.startsWith("-")&&!E.startsWith("!")})}function t1(D,u,F){let C=Lu(u)?u.slice(1):u;return u.startsWith("+")||u.startsWith("-")?SF(D,[C],F):AF(D,[C],F)}function fF(D,u){return D.filter((F)=>F.startsWith(u)).map((F)=>F.slice(1))}function AF(D,u,F){let C=[Gu(o2(F,D)),g1(D),Gu(D)];return u.some((E)=>{let B=new Bun.Glob(Gu(E));return C.some(($)=>B.match($))})}function SF(D,u,F){let C=Gu(o2(F,D)),E=Gu(D);return u.some((B)=>{let $=Gu(B.startsWith("./")?B.slice(2):B);return $===C||$===E})}function Gu(D){return i2==="/"?D:D.split(i2).join("/")}var o1=/^(@[a-z0-9-~][a-z0-9-._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/,n1=/^[0-9A-Za-z.^~><=* +-]+$/,s1=/\.[tj]s$/,r1=/[*?]/;function e2(D,u,F){let C=D.packages;if(C===void 0)return[];if(!Array.isArray(C))return F.push(`${u}: packages must be an array \u2014 ignored`),[];let E=a1(C,u,F),B=C6(E,u,F);return E6(B,u,F)}function a1(D,u,F){let C=[],E=[];for(let B of D){let $=typeof B==="string"?{source:B}:e1(B,u,F);if($===null)E.push(JSON.stringify(B));else C.push($)}if(E.length>0)F.push(`${u}: packages entries must be a source string or a { "source": \u2026 } object \u2014 ignored: ${E.join(", ")}`);return C}function e1(D,u,F){if(!ZD(D))return null;let C=D.source;if(typeof C!=="string")return null;F6(D,C,u,F);let E=D.autoload;if(E!==void 0&&typeof E!=="boolean")F.push(`${u}: packages entry ${C}: autoload must be a boolean \u2014 ignored`);let B=D6(D,C,u,F);return{source:C,...B!==void 0?{extensions:B}:{},...E===!1?{autoloadDisabled:!0}:{}}}function D6(D,u,F,C){let E=D.extensions;if(E===void 0)return;if(!cD(E)){C.push(`${F}: packages entry ${u}: extensions must be an array of strings \u2014 ignored`);return}return E}var u6=new Set(["source","extensions","autoload"]),a2=new Set(["skills","prompts","themes"]);function F6(D,u,F,C){let E=Object.keys(D).filter((Z)=>!u6.has(Z)),B=E.filter((Z)=>a2.has(Z)),$=E.filter((Z)=>!a2.has(Z));if(B.length>0)C.push(`${F}: packages entry ${u}: cradle loads a package's extensions and nothing else \u2014 ignored: ${B.join(", ")}`);if($.length>0)C.push(`${F}: packages entry ${u}: unknown filter keys \u2014 ignored: ${$.join(", ")}`)}function C6(D,u,F){let C=D.filter((B)=>B.source.startsWith("npm:")),E=D.filter((B)=>!B.source.startsWith("npm:"));if(E.length>0){let B=E.map(($)=>$.source).join(", ");F.push(`${u}: only npm: package sources are supported \u2014 ignored: ${B}`)}return C}function E6(D,u,F){let C=[],E=[];for(let{source:B,...$}of D){let Z=B6(B.slice(4));if(Z===null)E.push(B);else C.push({...Z,...$})}if(E.length>0)F.push(`${u}: packages entries must be npm:<name>[@<version>] \u2014 ignored: ${E.join(", ")}`);return C}function B6(D){let u=D.lastIndexOf("@"),F=u>0,C=F?D.slice(0,u):D,E=F?D.slice(u+1):"latest";if(!o1.test(C)||!n1.test(E))return null;return{name:C,version:E}}function D8(D){let u=Object.fromEntries([...D].sort((F,C)=>F.name.localeCompare(C.name)).map((F)=>[F.name,F.version]));return`${JSON.stringify({name:"cradle-agent-packages",private:!0,dependencies:u},null,2)}
111
+ `}async function u8(D,u){let F=await Promise.all(u.map(async(C)=>{let E=[];return{entries:await $6(D,C,E),warnings:E}}));return{entries:F.flatMap((C)=>C.entries),warnings:F.flatMap((C)=>C.warnings)}}async function $6(D,u,F){let C=dD(D,"node_modules",u.name),E=await z6(u.name,C,F);if(E===null)return[];let B=await Z6(C,E,u.name,F);return H6(B,u,C)}async function z6(D,u,F){let C=dD(u,"package.json"),E=await SD(C);if(E===void 0)return F.push(`package ${D} is not installed \u2014 skipped`),null;try{let B=Xu(E,C);if(!ZD(B))return F.push(`package ${D}: ${C} must be a JSON object \u2014 skipped`),null;return B}catch(B){return F.push(`package ${D}: ${Fu(B)} \u2014 skipped`),null}}async function Z6(D,u,F,C){let E=Q6(u);if(E!==void 0)return X6(D,E,F,C);let B=await F8(dD(D,"extensions"));if(B.length>0)return B;return q6(F,D,C)}function Q6(D){let u=D.pi;if(u===void 0||!ZD(u))return;let F=u.extensions;if(F===void 0||!cD(F)||F.length===0)return;return F}async function X6(D,u,F,C){let E=u.filter((M)=>!Lu(M)),$=(await Promise.all(E.map((M)=>M6(D,M,F,C)))).flat(),Z=u.filter(Lu);return Z.length>0?PF($,Z,D):$}async function M6(D,u,F,C){let E=await G6(D,u),B=E.filter((Z)=>O6(D,Z));if(B.length<E.length)C.push(`package ${F}: extension entry "${u}" escapes the package directory \u2014 skipped`);let $=await Promise.all(B.map(async(Z)=>({files:await J6(Z)})));if($.some((Z)=>Z.files===null))C.push(`package ${F}: extension entry "${u}" not found \u2014 skipped`);return $.flatMap((Z)=>Z.files??[])}async function G6(D,u){if(!r1.test(u))return[s2(D,u)];let F=new Bun.Glob(u).scan({cwd:D,absolute:!0,onlyFiles:!1});return(await Array.fromAsync(F)).map((C)=>s2(C)).sort()}async function J6(D){let u=await U6(D);if(u===void 0)return null;return u.isDirectory()?F8(D):[D]}async function F8(D){let F=[...await W6(D)].sort((E,B)=>E.name.localeCompare(B.name));return(await Promise.all(F.map((E)=>Y6(D,E)))).flat()}async function Y6(D,u){if(u.name.startsWith(".")||u.name==="node_modules")return[];if(u.isFile())return s1.test(u.name)?[dD(D,u.name)]:[];if(!u.isDirectory())return[];let F=await C8([dD(D,u.name,"index.ts"),dD(D,u.name,"index.js")]);return F===null?[]:[F]}async function q6(D,u,F){let C=await C8([dD(u,"index.ts"),dD(u,"index.js")]);if(C===null)return F.push(`package ${D} declares no pi extensions \u2014 skipped`),[];return[C]}function H6(D,u,F){if(u.autoloadDisabled===!0)return n2(D,u.extensions??[],F);if(u.extensions===void 0)return[...D];if(u.extensions.length===0)return[];return PF(D,u.extensions,F)}function O6(D,u){let F=D.endsWith(r2)?D:`${D}${r2}`;return u===D||u.startsWith(F)}async function C8(D){return(await Promise.all(D.map(async(F)=>await Bun.file(F).exists()?F:null))).find((F)=>F!==null)??null}async function U6(D){try{return await i1(D)}catch(u){if(XD(u,"ENOENT")||XD(u,"ENOTDIR"))return;throw u}}async function W6(D){try{return await l1(D,{withFileTypes:!0})}catch(u){if(XD(u,"ENOENT")||XD(u,"ENOTDIR"))return[];throw u}}var E8=["off","minimal","low","medium","high","xhigh"],B8=new Set(["schedules","subagents","channels","connections"]),I6=new Set(["SYSTEM.md","APPEND_SYSTEM.md","settings.json","models.json","skills","extensions","sandbox"]),K6=new Set([".git",".gitignore",".DS_Store","README.md","LICENSE"]),Iu={read:[],write:[],allow:[],unixSocketDirBind:[]},su={posture:"unconfigured",filesystem:Iu,unsafeMacosSeatbeltRules:[]};async function X8(D){let u=L6(D),F=await j6(u),C=new Map(F.map((M)=>[M.name,M])),E=C.has("SYSTEM.md"),B=C.has("APPEND_SYSTEM.md");if(!E&&!B){let M=C.has("AGENTS.md")?" \u2014 found AGENTS.md, rename it to APPEND_SYSTEM.md":"";throw Error(`Not an agent folder: ${u} (needs SYSTEM.md or APPEND_SYSTEM.md${M} \u2014 see ARCHITECTURE.md)`)}let $=[];_6(F,$);let Z=await h6(u,C.get("sandbox"),$);return{dir:u,systemFilePath:E?KD(u,"SYSTEM.md"):null,appendSystemFilePath:B?KD(u,"APPEND_SYSTEM.md"):null,settings:await N6(u,C.has("settings.json"),$),providersJson:await S6(u,C.has("models.json"),$),skillsDir:await x6(u,C.get("skills"),$),extensionFiles:await b6(u,C.get("extensions"),$),sandbox:Z.nono,sbx:Z.sbx,warnings:$}}async function j6(D){try{return await Q8(D,{withFileTypes:!0})}catch(u){if(XD(u,"ENOENT")||XD(u,"ENOTDIR"))throw Error(`Agent folder not found: ${D}`,{cause:u});throw u}}async function bF(D,u){if(u.isDirectory())return!0;if(!u.isSymbolicLink())return!1;try{return(await T6(KD(D,u.name))).isDirectory()}catch(F){if(XD(F,"ENOENT"))return!1;throw F}}function _6(D,u){let F=D.filter((E)=>B8.has(E.name)).map((E)=>E.name),C=D.map((E)=>E.name).filter((E)=>!I6.has(E)&&!B8.has(E)&&!K6.has(E));if(F.length>0)u.push(`reserved for a future cradle release, ignored: ${F.join(", ")}`);if(C.length>0)u.push(`not part of the agent folder format, ignored: ${C.join(", ")}`)}async function N6(D,u,F){if(!u)return{};let C=KD(D,"settings.json"),E=await wF(C);f6(E,C,F);let B=xF(E,"defaultProvider",C,F),$=xF(E,"defaultModel",C,F),Z=l6(E,C,F),M=e2(E,C,F),H=A6(E,C,F);return{...B!==void 0?{defaultProvider:B}:{},...$!==void 0?{defaultModel:$}:{},...Z!==void 0?{defaultThinkingLevel:Z}:{},...M.length>0?{packages:M}:{},...H!==void 0?{npmCommand:H}:{}}}var R6=new Set(["defaultProvider","defaultModel","defaultThinkingLevel","packages","npmCommand"]);function f6(D,u,F){let C=Object.keys(D).filter((E)=>!R6.has(E));if(C.length>0)F.push(`${u}: keys cradle does not map are ignored \u2014 pi reads them from ~/.pi/agent/settings.json or `+`the project's .pi/settings.json, not the agent folder: ${C.join(", ")}`)}var $8=new Set(["npm","pnpm","yarn","bun"]);function A6(D,u,F){let C=D.npmCommand;if(C===void 0)return;let[E,...B]=cD(C)?C:[];if(E===void 0||B.length>0||!$8.has(E)){let $=[...$8].join(", ");F.push(`${u}: npmCommand must be a single-element array naming one of ${$} \u2014 ignored`);return}return[E]}async function S6(D,u,F){if(!u)return null;let C=KD(D,"models.json"),E=await wF(C),B=E.providers;if(B===void 0||!ZD(B))throw Error(`${C} must contain a "providers" object`);return RD(E,C,["providers"],F),JSON.stringify(P6(B),null,2)}function P6(D){let u={input:0,output:0,cacheRead:0,cacheWrite:0};return Object.fromEntries(Object.entries(D).map(([F,C])=>{if(!ZD(C)||!Array.isArray(C.models))return[F,C];let E=C.models.map((B)=>ZD(B)&&B.cost===void 0?{cost:u,...B}:B);return[F,{...C,models:E}]}))}async function x6(D,u,F){if(!u)return null;if(!await bF(D,u))return F.push("skills must be a directory \u2014 ignored"),null;return KD(D,"skills")}async function b6(D,u,F){if(!u)return[];if(!await bF(D,u))return F.push("extensions must be a directory \u2014 ignored"),[];let C=KD(D,"extensions"),E=await Q8(C,{withFileTypes:!0});return(await Promise.all(E.sort(($,Z)=>$.name.localeCompare(Z.name)).map(async($)=>{if($.isFile()&&$.name.endsWith(".ts")&&!$.name.startsWith("."))return KD(C,$.name);if($.isDirectory()){let Z=KD(C,$.name,"index.ts");return await Bun.file(Z).exists()?Z:null}return null}))).filter(($)=>$!==null)}async function h6(D,u,F){let C={nono:su,sbx:su};if(!u)return C;if(!await bF(D,u))return F.push("sandbox must be a directory \u2014 ignored"),C;let E=KD(D,"sandbox","nono.json"),B=KD(D,"sandbox","sbx.json"),$=await z8(E),Z=await z8(B);if($===void 0&&Z===void 0)return F.push("sandbox/ has no nono.json or sbx.json \u2014 sandboxing stays off unless --sandbox is passed"),C;return{nono:$===void 0?su:w6($,E,F),sbx:Z===void 0?su:m6(Z,B,F)}}function w6(D,u,F){let C=ru(D,"sandbox",u,F),E=p6(D,u,F);return k6(D,u,F),RD(D,u,["sandbox","network","filesystem","unsafe_macos_seatbelt_rules","net"],F),{posture:C===!1?"disabled":"enabled",...E!==void 0?{network:E}:{},filesystem:g6(D.filesystem,u,F),unsafeMacosSeatbeltRules:y6(D.unsafe_macos_seatbelt_rules,u,F)}}function m6(D,u,F){let C=ru(D,"sandbox",u,F),E=v6(D,u,F);return hF({record:D,key:"unsafe_macos_seatbelt_rules",path:u,explanation:"the sbx VM boundary replaces Seatbelt"},F),RD(D,u,["sandbox","network","filesystem","unsafe_macos_seatbelt_rules"],F),{posture:C===!1?"disabled":"enabled",...E!==void 0?{network:E}:{},filesystem:c6(D.filesystem,u,F),unsafeMacosSeatbeltRules:[]}}function v6(D,u,F){let C=D.network;if(C===void 0)return;if(!ZD(C)){F.push(`${u}: network must be an object \u2014 ignored`);return}for(let M of["network_profile","open_port","listen_port"])hF({record:C,key:M,path:u},F);let E=`${u} network`;RD(C,E,["block","allow_domain","network_profile","open_port","listen_port"],F);let B=ru(C,"block",E,F),$=M8(C,"allow_domain",E,F),Z={...B!==void 0?{block:B}:{},...$.length>0?{allowDomain:$}:{}};return Object.keys(Z).length>0?Z:void 0}function c6(D,u,F){if(D===void 0)return Iu;if(!ZD(D))return F.push(`${u}: filesystem must be an object \u2014 ignored`),Iu;return hF({record:D,key:"unix_socket_dir_bind",path:u,explanation:"Unix sockets cannot cross the sbx VM boundary"},F),RD(D,`${u} filesystem`,["read","write","allow","unix_socket_dir_bind"],F),{read:Cu(D,"read",u,F),write:Cu(D,"write",u,F),allow:Cu(D,"allow",u,F),unixSocketDirBind:[]}}function hF({record:D,key:u,path:F,explanation:C},E){if(D[u]===void 0)return;E.push(`${F}: ${u} is nono-only \u2014 ${C!==void 0?`${C}; `:""}ignored`)}async function z8(D){return await d6(D)?wF(D):void 0}async function d6(D){try{return await V6(D),!0}catch(u){if(XD(u,"ENOENT"))return!1;throw u}}function k6(D,u,F){if(D.net!==void 0)F.push(`${u}: "net" was removed \u2014 use "network" instead (see ARCHITECTURE.md) \u2014 ignored`)}function p6(D,u,F){let C=D.network;if(C===void 0)return;if(!ZD(C)){F.push(`${u}: network must be an object \u2014 ignored`);return}let E=`${u} network`;RD(C,E,["block","network_profile","allow_domain","open_port","listen_port"],F);let B=ru(C,"block",E,F),$=xF(C,"network_profile",E,F),Z=M8(C,"allow_domain",E,F),M=Z8(C,"open_port",E,F),H=Z8(C,"listen_port",E,F),V={...B!==void 0?{block:B}:{},...$!==void 0?{networkProfile:$}:{},...Z.length>0?{allowDomain:Z}:{},...M.length>0?{openPort:M}:{},...H.length>0?{listenPort:H}:{}};return Object.keys(V).length>0?V:void 0}function M8(D,u,F,C){let E=D[u];if(E===void 0)return[];if(!cD(E))return C.push(`${F}: ${u} must be an array of strings \u2014 ignored`),[];let B=E.map(($)=>$.trim()).filter(($)=>$!=="");if(B.length!==E.length)C.push(`${F}: ${u} entries must be non-empty \u2014 blanks ignored`);return B}function Z8(D,u,F,C){let E=D[u];if(E===void 0)return[];if(!Array.isArray(E))return C.push(`${F}: ${u} must be an array of port numbers \u2014 ignored`),[];let B=(Z)=>typeof Z==="number"&&Number.isInteger(Z)&&Z>=0&&Z<=65535,$=E.filter((Z)=>!B(Z)).map((Z)=>typeof Z==="object"&&Z!==null?JSON.stringify(Z):String(Z));if($.length>0)C.push(`${F}: ${u} entries must be integers 0\u201365535 \u2014 ignored: ${$.join(", ")}`);return E.filter(B)}function y6(D,u,F){if(D===void 0)return[];if(!cD(D))return F.push(`${u}: unsafe_macos_seatbelt_rules must be an array of strings \u2014 ignored`),[];let C=(B)=>{let $=B.trim();return $.startsWith("(")&&$.endsWith(")")},E=D.filter((B)=>!C(B));if(E.length>0)F.push(`${u}: unsafe_macos_seatbelt_rules entries must be parenthesized s-expressions \u2014 ignored: ${E.join(", ")}`);return D.filter(C).map((B)=>B.trim())}function ru(D,u,F,C){let E=D[u];if(E===void 0)return;if(typeof E!=="boolean"){C.push(`${F}: ${u} must be true or false \u2014 ignored`);return}return E}function g6(D,u,F){if(D===void 0)return Iu;if(!ZD(D))return F.push(`${u}: filesystem must be an object \u2014 ignored`),Iu;return RD(D,`${u} filesystem`,["read","write","allow","unix_socket_dir_bind"],F),{read:Cu(D,"read",u,F),write:Cu(D,"write",u,F),allow:Cu(D,"allow",u,F),unixSocketDirBind:Cu(D,"unix_socket_dir_bind",u,F)}}function Cu(D,u,F,C){let E=D[u];if(E===void 0)return[];if(!cD(E))return C.push(`${F}: ${u} must be an array of strings \u2014 ignored`),[];let B=E.filter(($)=>!Tu($));if(B.length>0)C.push(`${F}: ${u} entries must be absolute, ~/, or $HOME/ paths \u2014 ignored: ${B.join(", ")}`);return E.filter(Tu)}async function wF(D){let u=Xu(await t6(D),D);if(!ZD(u))throw Error(`${D} must be a JSON object`);return u}async function t6(D){let u;try{u=await SD(D)}catch(F){throw Error(`${D} could not be read: ${Fu(F)}`,{cause:F})}if(u===void 0)throw Error(`${D} could not be read \u2014 broken symlink?`);return u}function xF(D,u,F,C){let E=D[u];if(E===void 0)return;if(typeof E!=="string"){C.push(`${F}: ${u} must be a string \u2014 ignored`);return}return E}function l6(D,u,F){let C=D.defaultThinkingLevel;if(C===void 0)return;if(typeof C!=="string"||!E8.includes(C)){F.push(`${u}: defaultThinkingLevel must be one of ${E8.join(", ")} \u2014 ignored`);return}return C}import{createHash as i6}from"crypto";import{homedir as o6}from"os";import{basename as n6,join as Ku}from"path";function s6(D){let u=n6(D).toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,""),F=i6("sha256").update(D).digest("hex").slice(0,8);return`${u===""?"agent":u}-${F}`}function G8(D,u=o6(),F=process.env.CRADLE_STATE_DIR){let C=F||Ku(u,".cradle");return Ku(C,"agents",s6(D))}function J8(D){return{extensionsDir:Ku(D,"extensions"),sessionsDir:Ku(D,"sessions"),miseCacheDir:Ku(D,"mise-cache")}}import{readFile as r6}from"fs/promises";import{join as Y8,resolve as q8}from"path";var H8="gitdir:";async function O8(D){try{return await r6(D,"utf8")}catch{return}}async function U8(D){let u=await O8(Y8(D,".git"));if(u===void 0||!u.startsWith(H8))return;let F=q8(D,u.slice(H8.length).trim()),C=await O8(Y8(F,"commondir")),E=C!==void 0?q8(F,C.trim()):F;return lu(D,E)?void 0:E}async function T8(D,u={}){let F=u.home??D7(),C=u.cwd??process.cwd(),{dir:E,warnings:B}=await h2(D.dir,{home:F,cwd:C}),$=await X8(E),Z=G8($.dir,F),{extensionsDir:M,sessionsDir:H,miseCacheDir:V}=J8(Z),Y=B7(D,$),q=D.dryRun??!1,O=W7(Y.backend,q,u.which),W=C7({folder:$,flags:D,backend:Y.backend,bins:O,stateDir:Z,extensionsDir:M,sessionsDir:H,miseCacheDir:V}),J=await V7(Y,$,{home:F,cwd:C,stateDir:Z,profilePath:W.profilePath,sbxBin:O.sbxBin,hostPiBin:O.piBin,tty:u.tty??!1}),S=E7($,Z);return{files:I7($,Y.backend),extensionsDir:M,sessionsDir:H,warnings:[...B,...Y.warnings,...J.warnings],profile:J.profile,sbx:J.sbx,packages:S,launch:W,dryRun:q}}function C7(D){let{folder:u,flags:F,backend:C,bins:E,stateDir:B,extensionsDir:$,sessionsDir:Z,miseCacheDir:M}=D;return{folder:u,stateDir:B,extensionsDir:$,sessionsDir:Z,miseCacheDir:M,backend:C,passthrough:F.passthrough??[],nonoBin:E.nonoBin,piBin:C==="sbx"?"pi":E.piBin,profilePath:ju(B,K2),...F.verbose?{verbose:!0}:{}}}function E7(D,u){let F=D.settings.packages;if(F===void 0||F.length===0)return null;return{npmDir:ju(u,"npm"),manifest:D8(F),specs:F,installCommand:[...D.settings.npmCommand??["npm"],"install","--ignore-scripts"]}}function B7(D,u){let{backend:F,warnings:C}=M7(D,u),E=[],B=$7(D,u,F,E);return{backend:F,network:B,warnings:Q7(F!==null,B,[...C,...E])}}function $7(D,u,F,C){if(D.offline)return{block:!0};let E=z7(D.allowHost??[],C);if(E.length>0)return{allowDomain:E};return F==="sbx"?u.sbx.network:u.sandbox.network}function z7(D,u){let F=D.map((C)=>C.trim()).filter((C)=>C!=="");if(F.length!==D.length)u.push("--allow-host entries must be non-empty \u2014 blanks ignored");return F}function Z7(D){return D!==void 0&&(D.block===!0||(D.allowDomain?.length??0)>0)}function Q7(D,u,F){if(D||!Z7(u))return F;return[...F,"network policy has no effect without the sandbox \u2014 pi runs with no network isolation (--sandbox to enforce it)"]}function X7(D){return D.offline===!0||(D.allowHost?.length??0)>0}function M7(D,u){if(D.noSandbox===!0)return{backend:null,warnings:u.warnings};if(D.sandboxBackend!==void 0)return{backend:D.sandboxBackend,warnings:u.warnings};let F=G7(u);if(D.noSandbox===!1||F.backend!==null)return{...F,backend:F.backend??"nono"};return J7(D,u,F.warnings)}function G7(D){let u=D.sandbox.posture==="enabled",F=D.sbx.posture==="enabled";if(u&&F)return{backend:"nono",warnings:[...D.warnings,"both sandbox/nono.json and sandbox/sbx.json declare a sandbox \u2014 using nono (pass --sandbox-backend sbx to override)"]};return{backend:u?"nono":F?"sbx":null,warnings:D.warnings}}function J7(D,u,F){let C=Y7(u);if(X7(D))return{backend:"nono",warnings:[...F,`${C} \u2014 sandbox forced on to enforce the requested network policy (--no-sandbox to override)`]};return{backend:null,warnings:[...F,`${C} \u2014 agent is running without OS isolation (--sandbox to force enable)`]}}function Y7(D){if(D.sandbox.posture==="disabled")return"sandbox disabled by sandbox/nono.json";if(D.sbx.posture==="disabled")return"sandbox disabled by sandbox/sbx.json";return"sandbox/nono.json or sbx.json not found"}async function L8(D,u={}){let F={dryRun:!1,results:[],failures:[]};if(await f2(F,"extensions",D.extensionsDir,D.files),F.failures.length>0)throw Error(`Failed to write agent extensions: ${F.failures.join("; ")}`);if(await mF(D.sessionsDir,{recursive:!0}),D.profile!==null)await mF(F7(D.profile.path),{recursive:!0}),await V8(D.profile.path,D.profile.content,"utf8");if(D.sbx!==null)await q7(D.sbx,u);let C={...D.launch,extensionsDir:D.extensionsDir,sessionsDir:D.sessionsDir},E=D.packages===null?{argv:Qu(C),warnings:[]}:await U7(D.packages,C,u);if(D.sbx===null)return E;return{argv:nu(D.sbx.spec,E.argv),warnings:E.warnings}}async function q7(D,u){let F=u.run;if(F===void 0)throw Error("An sbx-backend run needs a command runner but none was provided");let C=await F(D.createArgv);if(C.exitCode!==0&&!g2(C.stderr))throw Error(`Failed to create sbx sandbox ${D.spec.name}: ${C.stderr.trim()}`);for(let E of D.policyArgvs)await W8(F,E,`apply sbx network policy (${D.spec.name})`);await W8(F,await H7(D,u),`provision pi in sbx sandbox ${D.spec.name}`)}async function W8(D,u,F){let C=await D(u);if(C.exitCode!==0)throw Error(`Failed to ${F}: ${C.stderr.trim()}`)}async function H7(D,u){if(u.readPiVersion===void 0)return D.provisionArgv;let F=await u.readPiVersion(D.hostPiBin);return RF({...D.spec,piVersion:F})}async function O7(D,u){if(await SD(ju(D,"package.json"))!==u)return!1;return a6(ju(D,"node_modules"))}async function U7(D,u,F){if(await mF(D.npmDir,{recursive:!0}),!await O7(D.npmDir,D.manifest)){if(F.install===void 0)throw Error("Packages declared but no installer provided");let B=ju(D.npmDir,"package.json");await V8(B,D.manifest,"utf8");try{await F.install(D.installCommand,D.npmDir)}catch($){throw await e6(B,{force:!0}),$}}let{entries:C,warnings:E}=await u8(D.npmDir,D.specs);return{argv:Qu({...u,packageEntries:C}),warnings:E}}function W7(D,u,F){if(u)return{nonoBin:"nono",piBin:"pi",sbxBin:"sbx"};return{nonoBin:D==="nono"?tu("nono",F):"nono",sbxBin:D==="sbx"?tu("sbx",F):"sbx",piBin:tu("pi",F)}}async function V7(D,u,F){let C=D.backend!==null?await U8(F.cwd):void 0,E=L7(D.backend==="nono",u,D.network,{home:F.home,cwd:F.cwd,stateDir:F.stateDir,profilePath:F.profilePath,...C!==void 0?{linkedGitDir:C}:{}});if(D.backend!=="sbx")return{profile:E,sbx:null,warnings:[]};let B=T7(D.network,u,{...F,...C!==void 0?{linkedGitDir:C}:{}});return{profile:E,sbx:B,warnings:[...p2(D.network),...y2(u.sbx.filesystem)]}}function T7(D,u,F){let C=v2({cwd:F.cwd,agentDir:u.dir,stateDir:F.stateDir,home:F.home,grants:u.sbx.filesystem,...F.linkedGitDir!==void 0?{linkedGitDir:F.linkedGitDir}:{}}),E={sbxBin:F.sbxBin,name:c2(u7(F.stateDir),C),cwd:F.cwd,home:F.home,mounts:C,...D!==void 0?{network:D}:{},piVersion:null,tty:F.tty};return{spec:E,hostPiBin:F.hostPiBin,createArgv:d2(E),policyArgvs:k2(E),provisionArgv:RF(E)}}function L7(D,u,F,C){if(!D)return null;let E=j2(C.cwd,C.home);if(E!==void 0)throw Error(`cannot sandbox from ${E} \u2014 this directory is (or contains) nono's protected state root `+"(~/.local/state/nono) and nono refuses to start with an overlapping grant; run `cradle run` from a project directory instead");let B=_2({home:C.home,cwd:C.cwd,agentDir:u.dir,stateDir:C.stateDir,grants:u.sandbox.filesystem,rules:u.sandbox.unsafeMacosSeatbeltRules,...F!==void 0?{network:F}:{},...C.linkedGitDir!==void 0?{linkedGitDir:C.linkedGitDir}:{}});return{path:C.profilePath,content:B}}function I7(D,u){return[...D.providersJson!==null?[{rel:"providers.ts",content:l2(D.providersJson,{rewriteLocalhostBaseUrls:u==="sbx"})}]:[],...u==="nono"?[{rel:gu,content:U2()}]:[]]}function I8(D,u){return u?`\x1B[33m${D}\x1B[0m`:D}function K8(D,u){return()=>{D.kill(u)}}async function j8(D,u={}){let[F,...C]=D;if(!F)throw Error("Command requires at least one argument");let E=Bun.spawn([F,...C],{stdin:"inherit",stdout:"inherit",stderr:"inherit",env:{...process.env,...u}}),B=K8(E,"SIGINT"),$=K8(E,"SIGTERM");process.on("SIGINT",B),process.on("SIGTERM",$);try{return await E.exited}finally{process.off("SIGINT",B),process.off("SIGTERM",$)}}async function _8(D){let[u,...F]=D;if(!u)throw Error("Command requires at least one argument");let C=Bun.spawn([u,...F],{stdin:"ignore",stdout:"ignore",stderr:"pipe",env:process.env}),[E,B]=await Promise.all([new Response(C.stderr).text(),C.exited]);return{exitCode:B,stderr:E}}async function N8(D,u){let[F,...C]=D;if(!F)throw Error("Command requires at least one argument");let B=await Bun.spawn([F,...C],{cwd:u,stdin:"ignore",stdout:"inherit",stderr:"inherit",env:process.env}).exited;if(B!==0)throw Error(`Package install failed (${D.join(" ")} exited ${String(B)})`)}var _u=H2(process.argv.slice(2)).scriptName("cradle").version(O2.version).usage("$0 <cmd> [args]").parserConfiguration({"populate--":!0,"parse-numbers":!1,"parse-positional-numbers":!1}).strict();_u.command("$0","show help",()=>{},async()=>{console.log(await _u.getHelp())});_u.command("run [dir]","run an agent folder with pi, sandboxed when sandbox/nono.json or sandbox/sbx.json is present",(D)=>D.positional("dir",{type:"string",default:".",describe:"agent folder, or a name from ~/.cradle/settings.json (default: .)"}).option("offline",{type:"boolean",description:"block all outbound network (overrides the folder network policy; implies --sandbox)"}).option("allow-host",{type:"array",string:!0,description:"restrict network to these hosts (repeatable; overrides the folder allowlist; implies --sandbox)"}).option("sandbox",{type:"boolean",description:"run sandboxed (--sandbox forces it when no sandbox/ file enables one or the folder opts out; --no-sandbox disables)"}).option("sandbox-backend",{type:"string",choices:["nono","sbx"],description:"sandbox implementation (implies --sandbox): nono (host OS policy) or sbx (Docker Sandboxes microVM)"}).option("verbose",{type:"boolean",default:!1,description:"show nono's full sandbox capabilities banner instead of the one-line status"}).option("dry-run",{type:"boolean",default:!1,description:"print the write plan + command, do not spawn"}).epilogue("Everything after `--` is forwarded to pi."),async(D)=>{let u=(D["--"]??[]).map(String),F=(D.allowHost??[]).map(String),C={dir:D.dir,dryRun:D.dryRun,...D.sandbox!==void 0?{noSandbox:!D.sandbox}:{},...D.sandboxBackend!==void 0?{sandboxBackend:D.sandboxBackend}:{},...D.offline?{offline:!0}:{},...F.length?{allowHost:F}:{},...D.verbose?{verbose:!0}:{},...u.length?{passthrough:u}:{}};await K7(C)});_u.command("doctor","check pi / nono / mise on PATH",()=>{},async()=>{let D=await T2({readVersion:A8});console.log(L2(D)),process.exitCode=I2(D)});async function K7(D){try{let u=await T8(D,{tty:process.stdout.isTTY});if(R8(u.warnings),u.dryRun){j7(u);return}let F=await L8(u,{install:N8,run:_8,readPiVersion:A8});if(R8(F.warnings),u.profile!==null&&!D.verbose)console.log("\uD83D\uDD12 Sandbox Active");if(u.sbx!==null&&!D.verbose)console.log("\uD83D\uDD12 Sandbox Active (sbx)");process.exit(await j8(F.argv,_F(u.launch)))}catch(u){R7(u)}}function j7(D){for(let C of D.files)console.log(`write: ${f8(D.extensionsDir,C.rel)}`);if(D.profile!==null)console.log(`write: ${D.profile.path}`);if(D.sbx!==null)_7(D.sbx);if(D.packages!==null)N7(D.packages);let u=Object.entries(_F(D.launch)).map(([C,E])=>`${C}=${Mu(E)}`),F=D.sbx!==null?nu(D.sbx.spec,Qu(D.launch)):Qu(D.launch);console.log([...u,...F.map(Mu)].join(" "))}function _7(D){console.log(`create: ${D.createArgv.map(Mu).join(" ")}`);for(let u of D.policyArgvs)console.log(`policy: ${u.map(Mu).join(" ")}`);console.log(`provision: ${D.provisionArgv.map(Mu).join(" ")}`)}function N7(D){console.log(`write: ${f8(D.npmDir,"package.json")}`);let u=D.specs.map((F)=>`${F.name}@${F.version}`).join(", ");console.log(`install: ${D.installCommand.join(" ")} (${D.npmDir}): ${u}`)}function R8(D){let u=process.stderr.isTTY;for(let F of D)console.error(I8(`warning: ${F}`,u))}async function A8(D,u=["--version"]){try{let F=Bun.spawn([D,...u],{stdout:"pipe",stderr:"ignore"}),[C,E]=await Promise.all([new Response(F.stdout).text(),F.exited]);if(E!==0)return null;return C.split(`
112
+ `)[0]?.match(/v?\d+\.\d+\S*/)?.[0]??null}catch{return null}}function R7(D){console.error(D instanceof Error?D.message:String(D)),process.exitCode=1}_u.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coryrylan/cradle",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "A runtime for portable agents defined as folders — launches the pi coding agent configured from an agent folder, sandboxed with nono",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",