@inline-chat/hermes-agent-adapter 0.0.4 → 0.0.5-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -8
- package/dist/install.js +74 -74
- package/package.json +10 -9
- package/plugin/inline/adapter.py +21 -23
- package/plugin/inline/cli.py +276 -14
- package/plugin/inline/plugin.yaml +2 -2
- package/plugin/inline/sidecar/index.mjs +68 -71
package/dist/install.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createRequire } from "node:module";
|
|
|
3
3
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
4
4
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
5
5
|
|
|
6
|
-
//
|
|
6
|
+
// node_modules/yaml/dist/nodes/identity.js
|
|
7
7
|
var require_identity = __commonJS((exports) => {
|
|
8
8
|
var ALIAS = Symbol.for("yaml.alias");
|
|
9
9
|
var DOC = Symbol.for("yaml.document");
|
|
@@ -57,7 +57,7 @@ var require_identity = __commonJS((exports) => {
|
|
|
57
57
|
exports.isSeq = isSeq;
|
|
58
58
|
});
|
|
59
59
|
|
|
60
|
-
//
|
|
60
|
+
// node_modules/yaml/dist/visit.js
|
|
61
61
|
var require_visit = __commonJS((exports) => {
|
|
62
62
|
var identity = require_identity();
|
|
63
63
|
var BREAK = Symbol("break visit");
|
|
@@ -212,7 +212,7 @@ var require_visit = __commonJS((exports) => {
|
|
|
212
212
|
exports.visitAsync = visitAsync;
|
|
213
213
|
});
|
|
214
214
|
|
|
215
|
-
//
|
|
215
|
+
// node_modules/yaml/dist/doc/directives.js
|
|
216
216
|
var require_directives = __commonJS((exports) => {
|
|
217
217
|
var identity = require_identity();
|
|
218
218
|
var visit = require_visit();
|
|
@@ -364,7 +364,7 @@ var require_directives = __commonJS((exports) => {
|
|
|
364
364
|
exports.Directives = Directives;
|
|
365
365
|
});
|
|
366
366
|
|
|
367
|
-
//
|
|
367
|
+
// node_modules/yaml/dist/doc/anchors.js
|
|
368
368
|
var require_anchors = __commonJS((exports) => {
|
|
369
369
|
var identity = require_identity();
|
|
370
370
|
var visit = require_visit();
|
|
@@ -426,7 +426,7 @@ var require_anchors = __commonJS((exports) => {
|
|
|
426
426
|
exports.findNewAnchor = findNewAnchor;
|
|
427
427
|
});
|
|
428
428
|
|
|
429
|
-
//
|
|
429
|
+
// node_modules/yaml/dist/doc/applyReviver.js
|
|
430
430
|
var require_applyReviver = __commonJS((exports) => {
|
|
431
431
|
function applyReviver(reviver, obj, key, val) {
|
|
432
432
|
if (val && typeof val === "object") {
|
|
@@ -473,7 +473,7 @@ var require_applyReviver = __commonJS((exports) => {
|
|
|
473
473
|
exports.applyReviver = applyReviver;
|
|
474
474
|
});
|
|
475
475
|
|
|
476
|
-
//
|
|
476
|
+
// node_modules/yaml/dist/nodes/toJS.js
|
|
477
477
|
var require_toJS = __commonJS((exports) => {
|
|
478
478
|
var identity = require_identity();
|
|
479
479
|
function toJS(value, arg, ctx) {
|
|
@@ -500,7 +500,7 @@ var require_toJS = __commonJS((exports) => {
|
|
|
500
500
|
exports.toJS = toJS;
|
|
501
501
|
});
|
|
502
502
|
|
|
503
|
-
//
|
|
503
|
+
// node_modules/yaml/dist/nodes/Node.js
|
|
504
504
|
var require_Node = __commonJS((exports) => {
|
|
505
505
|
var applyReviver = require_applyReviver();
|
|
506
506
|
var identity = require_identity();
|
|
@@ -537,7 +537,7 @@ var require_Node = __commonJS((exports) => {
|
|
|
537
537
|
exports.NodeBase = NodeBase;
|
|
538
538
|
});
|
|
539
539
|
|
|
540
|
-
//
|
|
540
|
+
// node_modules/yaml/dist/nodes/Alias.js
|
|
541
541
|
var require_Alias = __commonJS((exports) => {
|
|
542
542
|
var anchors = require_anchors();
|
|
543
543
|
var visit = require_visit();
|
|
@@ -647,7 +647,7 @@ var require_Alias = __commonJS((exports) => {
|
|
|
647
647
|
exports.Alias = Alias;
|
|
648
648
|
});
|
|
649
649
|
|
|
650
|
-
//
|
|
650
|
+
// node_modules/yaml/dist/nodes/Scalar.js
|
|
651
651
|
var require_Scalar = __commonJS((exports) => {
|
|
652
652
|
var identity = require_identity();
|
|
653
653
|
var Node = require_Node();
|
|
@@ -675,7 +675,7 @@ var require_Scalar = __commonJS((exports) => {
|
|
|
675
675
|
exports.isScalarValue = isScalarValue;
|
|
676
676
|
});
|
|
677
677
|
|
|
678
|
-
//
|
|
678
|
+
// node_modules/yaml/dist/doc/createNode.js
|
|
679
679
|
var require_createNode = __commonJS((exports) => {
|
|
680
680
|
var Alias = require_Alias();
|
|
681
681
|
var identity = require_identity();
|
|
@@ -747,7 +747,7 @@ var require_createNode = __commonJS((exports) => {
|
|
|
747
747
|
exports.createNode = createNode;
|
|
748
748
|
});
|
|
749
749
|
|
|
750
|
-
//
|
|
750
|
+
// node_modules/yaml/dist/nodes/Collection.js
|
|
751
751
|
var require_Collection = __commonJS((exports) => {
|
|
752
752
|
var createNode = require_createNode();
|
|
753
753
|
var identity = require_identity();
|
|
@@ -862,7 +862,7 @@ var require_Collection = __commonJS((exports) => {
|
|
|
862
862
|
exports.isEmptyPath = isEmptyPath;
|
|
863
863
|
});
|
|
864
864
|
|
|
865
|
-
//
|
|
865
|
+
// node_modules/yaml/dist/stringify/stringifyComment.js
|
|
866
866
|
var require_stringifyComment = __commonJS((exports) => {
|
|
867
867
|
var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
|
|
868
868
|
function indentComment(comment, indent) {
|
|
@@ -879,7 +879,7 @@ var require_stringifyComment = __commonJS((exports) => {
|
|
|
879
879
|
exports.stringifyComment = stringifyComment;
|
|
880
880
|
});
|
|
881
881
|
|
|
882
|
-
//
|
|
882
|
+
// node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
883
883
|
var require_foldFlowLines = __commonJS((exports) => {
|
|
884
884
|
var FOLD_FLOW = "flow";
|
|
885
885
|
var FOLD_BLOCK = "block";
|
|
@@ -1016,7 +1016,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
|
|
|
1016
1016
|
exports.foldFlowLines = foldFlowLines;
|
|
1017
1017
|
});
|
|
1018
1018
|
|
|
1019
|
-
//
|
|
1019
|
+
// node_modules/yaml/dist/stringify/stringifyString.js
|
|
1020
1020
|
var require_stringifyString = __commonJS((exports) => {
|
|
1021
1021
|
var Scalar = require_Scalar();
|
|
1022
1022
|
var foldFlowLines = require_foldFlowLines();
|
|
@@ -1314,7 +1314,7 @@ ${indent}`);
|
|
|
1314
1314
|
exports.stringifyString = stringifyString;
|
|
1315
1315
|
});
|
|
1316
1316
|
|
|
1317
|
-
//
|
|
1317
|
+
// node_modules/yaml/dist/stringify/stringify.js
|
|
1318
1318
|
var require_stringify = __commonJS((exports) => {
|
|
1319
1319
|
var anchors = require_anchors();
|
|
1320
1320
|
var identity = require_identity();
|
|
@@ -1435,7 +1435,7 @@ ${ctx.indent}${str}`;
|
|
|
1435
1435
|
exports.stringify = stringify;
|
|
1436
1436
|
});
|
|
1437
1437
|
|
|
1438
|
-
//
|
|
1438
|
+
// node_modules/yaml/dist/stringify/stringifyPair.js
|
|
1439
1439
|
var require_stringifyPair = __commonJS((exports) => {
|
|
1440
1440
|
var identity = require_identity();
|
|
1441
1441
|
var Scalar = require_Scalar();
|
|
@@ -1571,7 +1571,7 @@ ${ctx.indent}`;
|
|
|
1571
1571
|
exports.stringifyPair = stringifyPair;
|
|
1572
1572
|
});
|
|
1573
1573
|
|
|
1574
|
-
//
|
|
1574
|
+
// node_modules/yaml/dist/log.js
|
|
1575
1575
|
var require_log = __commonJS((exports) => {
|
|
1576
1576
|
var node_process = __require("process");
|
|
1577
1577
|
function debug(logLevel, ...messages) {
|
|
@@ -1590,7 +1590,7 @@ var require_log = __commonJS((exports) => {
|
|
|
1590
1590
|
exports.warn = warn;
|
|
1591
1591
|
});
|
|
1592
1592
|
|
|
1593
|
-
//
|
|
1593
|
+
// node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
1594
1594
|
var require_merge = __commonJS((exports) => {
|
|
1595
1595
|
var identity = require_identity();
|
|
1596
1596
|
var Scalar = require_Scalar();
|
|
@@ -1647,7 +1647,7 @@ var require_merge = __commonJS((exports) => {
|
|
|
1647
1647
|
exports.merge = merge;
|
|
1648
1648
|
});
|
|
1649
1649
|
|
|
1650
|
-
//
|
|
1650
|
+
// node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
1651
1651
|
var require_addPairToJSMap = __commonJS((exports) => {
|
|
1652
1652
|
var log = require_log();
|
|
1653
1653
|
var merge = require_merge();
|
|
@@ -1708,7 +1708,7 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
|
1708
1708
|
exports.addPairToJSMap = addPairToJSMap;
|
|
1709
1709
|
});
|
|
1710
1710
|
|
|
1711
|
-
//
|
|
1711
|
+
// node_modules/yaml/dist/nodes/Pair.js
|
|
1712
1712
|
var require_Pair = __commonJS((exports) => {
|
|
1713
1713
|
var createNode = require_createNode();
|
|
1714
1714
|
var stringifyPair = require_stringifyPair();
|
|
@@ -1746,7 +1746,7 @@ var require_Pair = __commonJS((exports) => {
|
|
|
1746
1746
|
exports.createPair = createPair;
|
|
1747
1747
|
});
|
|
1748
1748
|
|
|
1749
|
-
//
|
|
1749
|
+
// node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
1750
1750
|
var require_stringifyCollection = __commonJS((exports) => {
|
|
1751
1751
|
var identity = require_identity();
|
|
1752
1752
|
var stringify = require_stringify();
|
|
@@ -1898,7 +1898,7 @@ ${indent}${end}`;
|
|
|
1898
1898
|
exports.stringifyCollection = stringifyCollection;
|
|
1899
1899
|
});
|
|
1900
1900
|
|
|
1901
|
-
//
|
|
1901
|
+
// node_modules/yaml/dist/nodes/YAMLMap.js
|
|
1902
1902
|
var require_YAMLMap = __commonJS((exports) => {
|
|
1903
1903
|
var stringifyCollection = require_stringifyCollection();
|
|
1904
1904
|
var addPairToJSMap = require_addPairToJSMap();
|
|
@@ -2025,7 +2025,7 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
|
2025
2025
|
exports.findPair = findPair;
|
|
2026
2026
|
});
|
|
2027
2027
|
|
|
2028
|
-
//
|
|
2028
|
+
// node_modules/yaml/dist/schema/common/map.js
|
|
2029
2029
|
var require_map = __commonJS((exports) => {
|
|
2030
2030
|
var identity = require_identity();
|
|
2031
2031
|
var YAMLMap = require_YAMLMap();
|
|
@@ -2044,7 +2044,7 @@ var require_map = __commonJS((exports) => {
|
|
|
2044
2044
|
exports.map = map;
|
|
2045
2045
|
});
|
|
2046
2046
|
|
|
2047
|
-
//
|
|
2047
|
+
// node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
2048
2048
|
var require_YAMLSeq = __commonJS((exports) => {
|
|
2049
2049
|
var createNode = require_createNode();
|
|
2050
2050
|
var stringifyCollection = require_stringifyCollection();
|
|
@@ -2137,7 +2137,7 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
|
2137
2137
|
exports.YAMLSeq = YAMLSeq;
|
|
2138
2138
|
});
|
|
2139
2139
|
|
|
2140
|
-
//
|
|
2140
|
+
// node_modules/yaml/dist/schema/common/seq.js
|
|
2141
2141
|
var require_seq = __commonJS((exports) => {
|
|
2142
2142
|
var identity = require_identity();
|
|
2143
2143
|
var YAMLSeq = require_YAMLSeq();
|
|
@@ -2156,7 +2156,7 @@ var require_seq = __commonJS((exports) => {
|
|
|
2156
2156
|
exports.seq = seq;
|
|
2157
2157
|
});
|
|
2158
2158
|
|
|
2159
|
-
//
|
|
2159
|
+
// node_modules/yaml/dist/schema/common/string.js
|
|
2160
2160
|
var require_string = __commonJS((exports) => {
|
|
2161
2161
|
var stringifyString = require_stringifyString();
|
|
2162
2162
|
var string = {
|
|
@@ -2172,7 +2172,7 @@ var require_string = __commonJS((exports) => {
|
|
|
2172
2172
|
exports.string = string;
|
|
2173
2173
|
});
|
|
2174
2174
|
|
|
2175
|
-
//
|
|
2175
|
+
// node_modules/yaml/dist/schema/common/null.js
|
|
2176
2176
|
var require_null = __commonJS((exports) => {
|
|
2177
2177
|
var Scalar = require_Scalar();
|
|
2178
2178
|
var nullTag = {
|
|
@@ -2187,7 +2187,7 @@ var require_null = __commonJS((exports) => {
|
|
|
2187
2187
|
exports.nullTag = nullTag;
|
|
2188
2188
|
});
|
|
2189
2189
|
|
|
2190
|
-
//
|
|
2190
|
+
// node_modules/yaml/dist/schema/core/bool.js
|
|
2191
2191
|
var require_bool = __commonJS((exports) => {
|
|
2192
2192
|
var Scalar = require_Scalar();
|
|
2193
2193
|
var boolTag = {
|
|
@@ -2208,7 +2208,7 @@ var require_bool = __commonJS((exports) => {
|
|
|
2208
2208
|
exports.boolTag = boolTag;
|
|
2209
2209
|
});
|
|
2210
2210
|
|
|
2211
|
-
//
|
|
2211
|
+
// node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
2212
2212
|
var require_stringifyNumber = __commonJS((exports) => {
|
|
2213
2213
|
function stringifyNumber({ format, minFractionDigits, tag, value }) {
|
|
2214
2214
|
if (typeof value === "bigint")
|
|
@@ -2232,7 +2232,7 @@ var require_stringifyNumber = __commonJS((exports) => {
|
|
|
2232
2232
|
exports.stringifyNumber = stringifyNumber;
|
|
2233
2233
|
});
|
|
2234
2234
|
|
|
2235
|
-
//
|
|
2235
|
+
// node_modules/yaml/dist/schema/core/float.js
|
|
2236
2236
|
var require_float = __commonJS((exports) => {
|
|
2237
2237
|
var Scalar = require_Scalar();
|
|
2238
2238
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -2275,7 +2275,7 @@ var require_float = __commonJS((exports) => {
|
|
|
2275
2275
|
exports.floatNaN = floatNaN;
|
|
2276
2276
|
});
|
|
2277
2277
|
|
|
2278
|
-
//
|
|
2278
|
+
// node_modules/yaml/dist/schema/core/int.js
|
|
2279
2279
|
var require_int = __commonJS((exports) => {
|
|
2280
2280
|
var stringifyNumber = require_stringifyNumber();
|
|
2281
2281
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -2317,7 +2317,7 @@ var require_int = __commonJS((exports) => {
|
|
|
2317
2317
|
exports.intOct = intOct;
|
|
2318
2318
|
});
|
|
2319
2319
|
|
|
2320
|
-
//
|
|
2320
|
+
// node_modules/yaml/dist/schema/core/schema.js
|
|
2321
2321
|
var require_schema = __commonJS((exports) => {
|
|
2322
2322
|
var map = require_map();
|
|
2323
2323
|
var _null = require_null();
|
|
@@ -2342,7 +2342,7 @@ var require_schema = __commonJS((exports) => {
|
|
|
2342
2342
|
exports.schema = schema;
|
|
2343
2343
|
});
|
|
2344
2344
|
|
|
2345
|
-
//
|
|
2345
|
+
// node_modules/yaml/dist/schema/json/schema.js
|
|
2346
2346
|
var require_schema2 = __commonJS((exports) => {
|
|
2347
2347
|
var Scalar = require_Scalar();
|
|
2348
2348
|
var map = require_map();
|
|
@@ -2406,7 +2406,7 @@ var require_schema2 = __commonJS((exports) => {
|
|
|
2406
2406
|
exports.schema = schema;
|
|
2407
2407
|
});
|
|
2408
2408
|
|
|
2409
|
-
//
|
|
2409
|
+
// node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
2410
2410
|
var require_binary = __commonJS((exports) => {
|
|
2411
2411
|
var node_buffer = __require("buffer");
|
|
2412
2412
|
var Scalar = require_Scalar();
|
|
@@ -2461,7 +2461,7 @@ var require_binary = __commonJS((exports) => {
|
|
|
2461
2461
|
exports.binary = binary;
|
|
2462
2462
|
});
|
|
2463
2463
|
|
|
2464
|
-
//
|
|
2464
|
+
// node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
2465
2465
|
var require_pairs = __commonJS((exports) => {
|
|
2466
2466
|
var identity = require_identity();
|
|
2467
2467
|
var Pair = require_Pair();
|
|
@@ -2536,7 +2536,7 @@ ${cn.comment}` : item.comment;
|
|
|
2536
2536
|
exports.resolvePairs = resolvePairs;
|
|
2537
2537
|
});
|
|
2538
2538
|
|
|
2539
|
-
//
|
|
2539
|
+
// node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
2540
2540
|
var require_omap = __commonJS((exports) => {
|
|
2541
2541
|
var identity = require_identity();
|
|
2542
2542
|
var toJS = require_toJS();
|
|
@@ -2608,7 +2608,7 @@ var require_omap = __commonJS((exports) => {
|
|
|
2608
2608
|
exports.omap = omap;
|
|
2609
2609
|
});
|
|
2610
2610
|
|
|
2611
|
-
//
|
|
2611
|
+
// node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
2612
2612
|
var require_bool2 = __commonJS((exports) => {
|
|
2613
2613
|
var Scalar = require_Scalar();
|
|
2614
2614
|
function boolStringify({ value, source }, ctx) {
|
|
@@ -2637,7 +2637,7 @@ var require_bool2 = __commonJS((exports) => {
|
|
|
2637
2637
|
exports.trueTag = trueTag;
|
|
2638
2638
|
});
|
|
2639
2639
|
|
|
2640
|
-
//
|
|
2640
|
+
// node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
2641
2641
|
var require_float2 = __commonJS((exports) => {
|
|
2642
2642
|
var Scalar = require_Scalar();
|
|
2643
2643
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -2683,7 +2683,7 @@ var require_float2 = __commonJS((exports) => {
|
|
|
2683
2683
|
exports.floatNaN = floatNaN;
|
|
2684
2684
|
});
|
|
2685
2685
|
|
|
2686
|
-
//
|
|
2686
|
+
// node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
2687
2687
|
var require_int2 = __commonJS((exports) => {
|
|
2688
2688
|
var stringifyNumber = require_stringifyNumber();
|
|
2689
2689
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -2759,7 +2759,7 @@ var require_int2 = __commonJS((exports) => {
|
|
|
2759
2759
|
exports.intOct = intOct;
|
|
2760
2760
|
});
|
|
2761
2761
|
|
|
2762
|
-
//
|
|
2762
|
+
// node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
2763
2763
|
var require_set = __commonJS((exports) => {
|
|
2764
2764
|
var identity = require_identity();
|
|
2765
2765
|
var Pair = require_Pair();
|
|
@@ -2842,7 +2842,7 @@ var require_set = __commonJS((exports) => {
|
|
|
2842
2842
|
exports.set = set;
|
|
2843
2843
|
});
|
|
2844
2844
|
|
|
2845
|
-
//
|
|
2845
|
+
// node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
2846
2846
|
var require_timestamp = __commonJS((exports) => {
|
|
2847
2847
|
var stringifyNumber = require_stringifyNumber();
|
|
2848
2848
|
function parseSexagesimal(str, asBigInt) {
|
|
@@ -2924,7 +2924,7 @@ var require_timestamp = __commonJS((exports) => {
|
|
|
2924
2924
|
exports.timestamp = timestamp;
|
|
2925
2925
|
});
|
|
2926
2926
|
|
|
2927
|
-
//
|
|
2927
|
+
// node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
2928
2928
|
var require_schema3 = __commonJS((exports) => {
|
|
2929
2929
|
var map = require_map();
|
|
2930
2930
|
var _null = require_null();
|
|
@@ -2965,7 +2965,7 @@ var require_schema3 = __commonJS((exports) => {
|
|
|
2965
2965
|
exports.schema = schema;
|
|
2966
2966
|
});
|
|
2967
2967
|
|
|
2968
|
-
//
|
|
2968
|
+
// node_modules/yaml/dist/schema/tags.js
|
|
2969
2969
|
var require_tags = __commonJS((exports) => {
|
|
2970
2970
|
var map = require_map();
|
|
2971
2971
|
var _null = require_null();
|
|
@@ -3056,7 +3056,7 @@ var require_tags = __commonJS((exports) => {
|
|
|
3056
3056
|
exports.getTags = getTags;
|
|
3057
3057
|
});
|
|
3058
3058
|
|
|
3059
|
-
//
|
|
3059
|
+
// node_modules/yaml/dist/schema/Schema.js
|
|
3060
3060
|
var require_Schema = __commonJS((exports) => {
|
|
3061
3061
|
var identity = require_identity();
|
|
3062
3062
|
var map = require_map();
|
|
@@ -3086,7 +3086,7 @@ var require_Schema = __commonJS((exports) => {
|
|
|
3086
3086
|
exports.Schema = Schema;
|
|
3087
3087
|
});
|
|
3088
3088
|
|
|
3089
|
-
//
|
|
3089
|
+
// node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
3090
3090
|
var require_stringifyDocument = __commonJS((exports) => {
|
|
3091
3091
|
var identity = require_identity();
|
|
3092
3092
|
var stringify = require_stringify();
|
|
@@ -3166,7 +3166,7 @@ var require_stringifyDocument = __commonJS((exports) => {
|
|
|
3166
3166
|
exports.stringifyDocument = stringifyDocument;
|
|
3167
3167
|
});
|
|
3168
3168
|
|
|
3169
|
-
//
|
|
3169
|
+
// node_modules/yaml/dist/doc/Document.js
|
|
3170
3170
|
var require_Document = __commonJS((exports) => {
|
|
3171
3171
|
var Alias = require_Alias();
|
|
3172
3172
|
var Collection = require_Collection();
|
|
@@ -3401,7 +3401,7 @@ var require_Document = __commonJS((exports) => {
|
|
|
3401
3401
|
exports.Document = Document;
|
|
3402
3402
|
});
|
|
3403
3403
|
|
|
3404
|
-
//
|
|
3404
|
+
// node_modules/yaml/dist/errors.js
|
|
3405
3405
|
var require_errors = __commonJS((exports) => {
|
|
3406
3406
|
class YAMLError extends Error {
|
|
3407
3407
|
constructor(name, pos, code, message) {
|
|
@@ -3466,7 +3466,7 @@ ${pointer}
|
|
|
3466
3466
|
exports.prettifyError = prettifyError;
|
|
3467
3467
|
});
|
|
3468
3468
|
|
|
3469
|
-
//
|
|
3469
|
+
// node_modules/yaml/dist/compose/resolve-props.js
|
|
3470
3470
|
var require_resolve_props = __commonJS((exports) => {
|
|
3471
3471
|
function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
|
|
3472
3472
|
let spaceBefore = false;
|
|
@@ -3596,7 +3596,7 @@ var require_resolve_props = __commonJS((exports) => {
|
|
|
3596
3596
|
exports.resolveProps = resolveProps;
|
|
3597
3597
|
});
|
|
3598
3598
|
|
|
3599
|
-
//
|
|
3599
|
+
// node_modules/yaml/dist/compose/util-contains-newline.js
|
|
3600
3600
|
var require_util_contains_newline = __commonJS((exports) => {
|
|
3601
3601
|
function containsNewline(key) {
|
|
3602
3602
|
if (!key)
|
|
@@ -3636,7 +3636,7 @@ var require_util_contains_newline = __commonJS((exports) => {
|
|
|
3636
3636
|
exports.containsNewline = containsNewline;
|
|
3637
3637
|
});
|
|
3638
3638
|
|
|
3639
|
-
//
|
|
3639
|
+
// node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
3640
3640
|
var require_util_flow_indent_check = __commonJS((exports) => {
|
|
3641
3641
|
var utilContainsNewline = require_util_contains_newline();
|
|
3642
3642
|
function flowIndentCheck(indent, fc, onError) {
|
|
@@ -3651,7 +3651,7 @@ var require_util_flow_indent_check = __commonJS((exports) => {
|
|
|
3651
3651
|
exports.flowIndentCheck = flowIndentCheck;
|
|
3652
3652
|
});
|
|
3653
3653
|
|
|
3654
|
-
//
|
|
3654
|
+
// node_modules/yaml/dist/compose/util-map-includes.js
|
|
3655
3655
|
var require_util_map_includes = __commonJS((exports) => {
|
|
3656
3656
|
var identity = require_identity();
|
|
3657
3657
|
function mapIncludes(ctx, items, search) {
|
|
@@ -3664,7 +3664,7 @@ var require_util_map_includes = __commonJS((exports) => {
|
|
|
3664
3664
|
exports.mapIncludes = mapIncludes;
|
|
3665
3665
|
});
|
|
3666
3666
|
|
|
3667
|
-
//
|
|
3667
|
+
// node_modules/yaml/dist/compose/resolve-block-map.js
|
|
3668
3668
|
var require_resolve_block_map = __commonJS((exports) => {
|
|
3669
3669
|
var Pair = require_Pair();
|
|
3670
3670
|
var YAMLMap = require_YAMLMap();
|
|
@@ -3771,7 +3771,7 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
|
3771
3771
|
exports.resolveBlockMap = resolveBlockMap;
|
|
3772
3772
|
});
|
|
3773
3773
|
|
|
3774
|
-
//
|
|
3774
|
+
// node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
3775
3775
|
var require_resolve_block_seq = __commonJS((exports) => {
|
|
3776
3776
|
var YAMLSeq = require_YAMLSeq();
|
|
3777
3777
|
var resolveProps = require_resolve_props();
|
|
@@ -3819,7 +3819,7 @@ var require_resolve_block_seq = __commonJS((exports) => {
|
|
|
3819
3819
|
exports.resolveBlockSeq = resolveBlockSeq;
|
|
3820
3820
|
});
|
|
3821
3821
|
|
|
3822
|
-
//
|
|
3822
|
+
// node_modules/yaml/dist/compose/resolve-end.js
|
|
3823
3823
|
var require_resolve_end = __commonJS((exports) => {
|
|
3824
3824
|
function resolveEnd(end, offset, reqSpace, onError) {
|
|
3825
3825
|
let comment = "";
|
|
@@ -3859,7 +3859,7 @@ var require_resolve_end = __commonJS((exports) => {
|
|
|
3859
3859
|
exports.resolveEnd = resolveEnd;
|
|
3860
3860
|
});
|
|
3861
3861
|
|
|
3862
|
-
//
|
|
3862
|
+
// node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
3863
3863
|
var require_resolve_flow_collection = __commonJS((exports) => {
|
|
3864
3864
|
var identity = require_identity();
|
|
3865
3865
|
var Pair = require_Pair();
|
|
@@ -4050,7 +4050,7 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
|
4050
4050
|
exports.resolveFlowCollection = resolveFlowCollection;
|
|
4051
4051
|
});
|
|
4052
4052
|
|
|
4053
|
-
//
|
|
4053
|
+
// node_modules/yaml/dist/compose/compose-collection.js
|
|
4054
4054
|
var require_compose_collection = __commonJS((exports) => {
|
|
4055
4055
|
var identity = require_identity();
|
|
4056
4056
|
var Scalar = require_Scalar();
|
|
@@ -4112,7 +4112,7 @@ var require_compose_collection = __commonJS((exports) => {
|
|
|
4112
4112
|
exports.composeCollection = composeCollection;
|
|
4113
4113
|
});
|
|
4114
4114
|
|
|
4115
|
-
//
|
|
4115
|
+
// node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
4116
4116
|
var require_resolve_block_scalar = __commonJS((exports) => {
|
|
4117
4117
|
var Scalar = require_Scalar();
|
|
4118
4118
|
function resolveBlockScalar(ctx, scalar, onError) {
|
|
@@ -4305,7 +4305,7 @@ var require_resolve_block_scalar = __commonJS((exports) => {
|
|
|
4305
4305
|
exports.resolveBlockScalar = resolveBlockScalar;
|
|
4306
4306
|
});
|
|
4307
4307
|
|
|
4308
|
-
//
|
|
4308
|
+
// node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
4309
4309
|
var require_resolve_flow_scalar = __commonJS((exports) => {
|
|
4310
4310
|
var Scalar = require_Scalar();
|
|
4311
4311
|
var resolveEnd = require_resolve_end();
|
|
@@ -4522,7 +4522,7 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
|
|
|
4522
4522
|
exports.resolveFlowScalar = resolveFlowScalar;
|
|
4523
4523
|
});
|
|
4524
4524
|
|
|
4525
|
-
//
|
|
4525
|
+
// node_modules/yaml/dist/compose/compose-scalar.js
|
|
4526
4526
|
var require_compose_scalar = __commonJS((exports) => {
|
|
4527
4527
|
var identity = require_identity();
|
|
4528
4528
|
var Scalar = require_Scalar();
|
|
@@ -4600,7 +4600,7 @@ var require_compose_scalar = __commonJS((exports) => {
|
|
|
4600
4600
|
exports.composeScalar = composeScalar;
|
|
4601
4601
|
});
|
|
4602
4602
|
|
|
4603
|
-
//
|
|
4603
|
+
// node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
4604
4604
|
var require_util_empty_scalar_position = __commonJS((exports) => {
|
|
4605
4605
|
function emptyScalarPosition(offset, before, pos) {
|
|
4606
4606
|
if (before) {
|
|
@@ -4627,7 +4627,7 @@ var require_util_empty_scalar_position = __commonJS((exports) => {
|
|
|
4627
4627
|
exports.emptyScalarPosition = emptyScalarPosition;
|
|
4628
4628
|
});
|
|
4629
4629
|
|
|
4630
|
-
//
|
|
4630
|
+
// node_modules/yaml/dist/compose/compose-node.js
|
|
4631
4631
|
var require_compose_node = __commonJS((exports) => {
|
|
4632
4632
|
var Alias = require_Alias();
|
|
4633
4633
|
var identity = require_identity();
|
|
@@ -4730,7 +4730,7 @@ var require_compose_node = __commonJS((exports) => {
|
|
|
4730
4730
|
exports.composeNode = composeNode;
|
|
4731
4731
|
});
|
|
4732
4732
|
|
|
4733
|
-
//
|
|
4733
|
+
// node_modules/yaml/dist/compose/compose-doc.js
|
|
4734
4734
|
var require_compose_doc = __commonJS((exports) => {
|
|
4735
4735
|
var Document = require_Document();
|
|
4736
4736
|
var composeNode = require_compose_node();
|
|
@@ -4770,7 +4770,7 @@ var require_compose_doc = __commonJS((exports) => {
|
|
|
4770
4770
|
exports.composeDoc = composeDoc;
|
|
4771
4771
|
});
|
|
4772
4772
|
|
|
4773
|
-
//
|
|
4773
|
+
// node_modules/yaml/dist/compose/composer.js
|
|
4774
4774
|
var require_composer = __commonJS((exports) => {
|
|
4775
4775
|
var node_process = __require("process");
|
|
4776
4776
|
var directives = require_directives();
|
|
@@ -4961,7 +4961,7 @@ ${end.comment}` : end.comment;
|
|
|
4961
4961
|
exports.Composer = Composer;
|
|
4962
4962
|
});
|
|
4963
4963
|
|
|
4964
|
-
//
|
|
4964
|
+
// node_modules/yaml/dist/parse/cst-scalar.js
|
|
4965
4965
|
var require_cst_scalar = __commonJS((exports) => {
|
|
4966
4966
|
var resolveBlockScalar = require_resolve_block_scalar();
|
|
4967
4967
|
var resolveFlowScalar = require_resolve_flow_scalar();
|
|
@@ -5151,7 +5151,7 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
|
5151
5151
|
exports.setScalarValue = setScalarValue;
|
|
5152
5152
|
});
|
|
5153
5153
|
|
|
5154
|
-
//
|
|
5154
|
+
// node_modules/yaml/dist/parse/cst-stringify.js
|
|
5155
5155
|
var require_cst_stringify = __commonJS((exports) => {
|
|
5156
5156
|
var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
|
|
5157
5157
|
function stringifyToken(token) {
|
|
@@ -5209,7 +5209,7 @@ var require_cst_stringify = __commonJS((exports) => {
|
|
|
5209
5209
|
exports.stringify = stringify;
|
|
5210
5210
|
});
|
|
5211
5211
|
|
|
5212
|
-
//
|
|
5212
|
+
// node_modules/yaml/dist/parse/cst-visit.js
|
|
5213
5213
|
var require_cst_visit = __commonJS((exports) => {
|
|
5214
5214
|
var BREAK = Symbol("break visit");
|
|
5215
5215
|
var SKIP = Symbol("skip children");
|
|
@@ -5268,7 +5268,7 @@ var require_cst_visit = __commonJS((exports) => {
|
|
|
5268
5268
|
exports.visit = visit;
|
|
5269
5269
|
});
|
|
5270
5270
|
|
|
5271
|
-
//
|
|
5271
|
+
// node_modules/yaml/dist/parse/cst.js
|
|
5272
5272
|
var require_cst = __commonJS((exports) => {
|
|
5273
5273
|
var cstScalar = require_cst_scalar();
|
|
5274
5274
|
var cstStringify = require_cst_stringify();
|
|
@@ -5369,7 +5369,7 @@ var require_cst = __commonJS((exports) => {
|
|
|
5369
5369
|
exports.tokenType = tokenType;
|
|
5370
5370
|
});
|
|
5371
5371
|
|
|
5372
|
-
//
|
|
5372
|
+
// node_modules/yaml/dist/parse/lexer.js
|
|
5373
5373
|
var require_lexer = __commonJS((exports) => {
|
|
5374
5374
|
var cst = require_cst();
|
|
5375
5375
|
function isEmpty(ch) {
|
|
@@ -5966,7 +5966,7 @@ var require_lexer = __commonJS((exports) => {
|
|
|
5966
5966
|
exports.Lexer = Lexer;
|
|
5967
5967
|
});
|
|
5968
5968
|
|
|
5969
|
-
//
|
|
5969
|
+
// node_modules/yaml/dist/parse/line-counter.js
|
|
5970
5970
|
var require_line_counter = __commonJS((exports) => {
|
|
5971
5971
|
class LineCounter {
|
|
5972
5972
|
constructor() {
|
|
@@ -5994,7 +5994,7 @@ var require_line_counter = __commonJS((exports) => {
|
|
|
5994
5994
|
exports.LineCounter = LineCounter;
|
|
5995
5995
|
});
|
|
5996
5996
|
|
|
5997
|
-
//
|
|
5997
|
+
// node_modules/yaml/dist/parse/parser.js
|
|
5998
5998
|
var require_parser = __commonJS((exports) => {
|
|
5999
5999
|
var node_process = __require("process");
|
|
6000
6000
|
var cst = require_cst();
|
|
@@ -6850,7 +6850,7 @@ var require_parser = __commonJS((exports) => {
|
|
|
6850
6850
|
exports.Parser = Parser;
|
|
6851
6851
|
});
|
|
6852
6852
|
|
|
6853
|
-
//
|
|
6853
|
+
// node_modules/yaml/dist/public-api.js
|
|
6854
6854
|
var require_public_api = __commonJS((exports) => {
|
|
6855
6855
|
var composer = require_composer();
|
|
6856
6856
|
var Document = require_Document();
|
|
@@ -6955,7 +6955,7 @@ import os from "node:os";
|
|
|
6955
6955
|
import path from "node:path";
|
|
6956
6956
|
import { fileURLToPath } from "node:url";
|
|
6957
6957
|
|
|
6958
|
-
//
|
|
6958
|
+
// node_modules/yaml/dist/index.js
|
|
6959
6959
|
var composer = require_composer();
|
|
6960
6960
|
var Document = require_Document();
|
|
6961
6961
|
var Schema = require_Schema();
|
|
@@ -7840,8 +7840,8 @@ function printInstallResult(result) {
|
|
|
7840
7840
|
printStatus(result);
|
|
7841
7841
|
if (result.installed || result.dryRun) {
|
|
7842
7842
|
console.log("");
|
|
7843
|
-
console.log(`Enable the Hermes plugin with \`hermes plugins enable ${pluginEnableKey}
|
|
7844
|
-
console.log("
|
|
7843
|
+
console.log(`Enable the Hermes plugin with \`hermes plugins enable ${pluginEnableKey}\`.`);
|
|
7844
|
+
console.log("Then run `hermes gateway setup`, select Inline, and follow the guided bot setup.");
|
|
7845
7845
|
}
|
|
7846
7846
|
}
|
|
7847
7847
|
function printTestSendResult(result) {
|