@crouton-kit/crouter 0.3.33 → 0.3.35
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 +2 -2
- package/dist/build-root.js +3 -6
- package/dist/builtin-memory/crouter-development/marketplaces.md +6 -6
- package/dist/builtin-memory/crouter-development/plugins.md +13 -13
- package/dist/builtin-memory/internal/examples/imessage-assistant.md +3 -3
- package/dist/builtin-memory/internal/nodes-and-canvas.md +4 -4
- package/dist/builtin-personas/developer/PERSONA.md +1 -1
- package/dist/builtin-personas/orchestration-kernel.md +1 -1
- package/dist/builtin-personas/waiting.md +1 -1
- package/dist/builtin-pi-packages/pi-crtr-extensions/README.md +71 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/__tests__/crtr-help-gate.test.ts +41 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/__tests__/provider-rotation.test.ts +663 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/__tests__/statusline.test.ts +52 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/claude-plugin-commands.ts +418 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crouter-help.ts +87 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crtr-commands/filters.json +7 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crtr-commands/index.ts +174 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crtr-help-gate.ts +408 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/frontmatter-rules/index.ts +442 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/frontmatter-rules/test.ts +119 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/nested-context.ts +327 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/provider-rotation.ts +574 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/statusline.ts +260 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/strip-skills-docs.ts +40 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/sysprompt-window.ts +19 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/lib/package.json +3 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/lib/subscription-state.js +1 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/lib/subscription-state.ts +479 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/LICENSE +13 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/README.md +172 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/bin.mjs +11 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/composer.js +219 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/errors.js +57 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/index.js +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/log.js +11 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/parser.js +975 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/util.js +11 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/visit.js +233 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/index.js +5 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/package.json +3 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/cli.d.ts +8 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/cli.mjs +201 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/composer.js +224 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/Document.js +337 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/directives.js +178 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/errors.d.ts +21 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/errors.js +62 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/index.d.ts +25 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/index.js +50 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/log.d.ts +3 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/log.js +19 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Alias.js +118 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/options.d.ts +350 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst.js +112 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/lexer.js +723 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/parser.js +980 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/public-api.js +107 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/tags.js +99 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/test-events.js +134 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/util.d.ts +16 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/util.js +28 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/visit.d.ts +102 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/visit.js +236 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/package.json +97 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/util.js +2 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/package-lock.json +3385 -0
- package/dist/builtin-pi-packages/pi-crtr-extensions/package.json +25 -0
- package/dist/builtin-pi-packages/pi-mode-switch/README.md +64 -0
- package/dist/builtin-pi-packages/pi-mode-switch/bin/mode +40 -0
- package/dist/builtin-pi-packages/pi-mode-switch/extensions/index.ts +427 -0
- package/dist/builtin-pi-packages/pi-mode-switch/package.json +13 -0
- package/dist/clients/attach/__tests__/crtr-output-coverage.test.js +55 -0
- package/dist/clients/attach/__tests__/crtr-output-render.test.js +2340 -0
- package/dist/clients/attach/attach-cmd.js +843 -743
- package/dist/clients/attach/auth-pickers.js +2 -2
- package/dist/clients/attach/canvas-panels.js +1 -1
- package/dist/clients/attach/chat-view.d.ts +3 -2
- package/dist/clients/attach/chat-view.js +30 -10
- package/dist/clients/attach/clipboard-image.js +1 -1
- package/dist/clients/attach/clipboard-text.js +1 -1
- package/dist/clients/attach/config-load.js +1 -1
- package/dist/clients/attach/crtr-output-render.d.ts +48 -0
- package/dist/clients/attach/crtr-output-render.js +646 -0
- package/dist/clients/attach/extension-dialogs.js +1 -1
- package/dist/clients/attach/graph-overlay.js +3 -3
- package/dist/clients/attach/input-controller.js +1 -1
- package/dist/clients/attach/pickers.js +1 -1
- package/dist/clients/attach/slash-commands.js +5 -6
- package/dist/clients/attach/titled-editor.d.ts +4 -0
- package/dist/clients/attach/titled-editor.js +13 -1
- package/dist/clients/attach/view-socket.js +1 -1
- package/dist/clients/web/__tests__/source-cache.test.js +5 -5
- package/dist/clients/web/server.js +29 -5
- package/dist/clients/web/source-cache.js +3 -3
- package/dist/clients/web/web-cmd.js +7 -7
- package/dist/commands/canvas-issue.js +1 -1
- package/dist/commands/canvas-prune.js +24 -2
- package/dist/commands/canvas-snapshot.js +3 -0
- package/dist/commands/canvas-tmux-spread.js +3 -3
- package/dist/commands/human.js +1 -1
- package/dist/commands/memory/lint.js +15 -8
- package/dist/commands/memory/origin.d.ts +1 -0
- package/dist/commands/memory/origin.js +88 -0
- package/dist/commands/memory/shared.d.ts +8 -0
- package/dist/commands/memory/shared.js +22 -1
- package/dist/commands/memory/write.js +17 -12
- package/dist/commands/memory.js +4 -3
- package/dist/commands/node-context.js +4 -4
- package/dist/commands/node-snapshot.js +4 -1
- package/dist/commands/node.d.ts +2 -2
- package/dist/commands/node.js +814 -606
- package/dist/commands/pkg/market-inspect.d.ts +2 -1
- package/dist/commands/pkg/market-inspect.js +14 -32
- package/dist/commands/pkg/market-manage.d.ts +3 -1
- package/dist/commands/pkg/market-manage.js +58 -154
- package/dist/commands/pkg/market.js +7 -7
- package/dist/commands/pkg/plugin-inspect.d.ts +2 -1
- package/dist/commands/pkg/plugin-inspect.js +8 -24
- package/dist/commands/pkg/plugin-manage.d.ts +5 -1
- package/dist/commands/pkg/plugin-manage.js +245 -171
- package/dist/commands/pkg/plugin.js +6 -6
- package/dist/commands/pkg.js +5 -5
- package/dist/commands/revive.js +5 -3
- package/dist/commands/search/answer.js +1 -1
- package/dist/commands/search/contents.js +1 -1
- package/dist/commands/search/web.js +2 -2
- package/dist/commands/search.js +1 -1
- package/dist/commands/surface.d.ts +2 -0
- package/dist/commands/surface.js +43 -0
- package/dist/commands/sys/promptstudio.js +1 -1
- package/dist/commands/sys/settings.js +2 -2
- package/dist/commands/sys/setup-core.d.ts +88 -0
- package/dist/commands/sys/setup-core.js +352 -0
- package/dist/commands/sys/setup.d.ts +2 -0
- package/dist/commands/sys/setup.js +516 -0
- package/dist/commands/sys/sysprompt.js +3 -0
- package/dist/commands/sys.js +3 -2
- package/dist/commands/view-cycle.js +5 -5
- package/dist/commands/view-list.js +3 -3
- package/dist/commands/view-new.js +5 -5
- package/dist/commands/view-pick.js +6 -6
- package/dist/commands/view-run.js +14 -14
- package/dist/commands/view.js +3 -3
- package/dist/commands/workspace.js +10 -10
- package/dist/core/__tests__/boot.test.js +140 -0
- package/dist/core/__tests__/broker-sdk-wiring.test.js +6 -27
- package/dist/core/__tests__/daemon-boot.test.js +22 -0
- package/dist/core/__tests__/fixtures/fake-engine.js +19 -9
- package/dist/core/__tests__/flagship-lifecycle.test.js +4 -1
- package/dist/core/__tests__/full/broker-attach-limits.test.js +1 -1
- package/dist/core/__tests__/full/broker-attach-stream.test.js +1 -1
- package/dist/core/__tests__/full/broker-crash-teardown.test.js +10 -5
- package/dist/core/__tests__/full/broker-model-changed-broadcast.test.js +1 -1
- package/dist/core/__tests__/full/broker-navigate-tree-rewelcome.test.js +2 -2
- package/dist/core/__tests__/full/broker-pane-resolution.test.js +1 -1
- package/dist/core/__tests__/full/cascade-close.test.js +31 -18
- package/dist/core/__tests__/full/detach-focus.test.js +17 -3
- package/dist/core/__tests__/hearth-bootstrap.test.js +136 -0
- package/dist/core/__tests__/helpers/harness.js +1 -1
- package/dist/core/__tests__/live-mutation-verbs.test.js +17 -11
- package/dist/core/__tests__/live-mutation.test.js +15 -10
- package/dist/core/__tests__/migration.test.js +124 -0
- package/dist/core/__tests__/on-read-dedup-resume.test.js +40 -0
- package/dist/core/__tests__/preview-registry-sync.test.js +36 -0
- package/dist/core/__tests__/prune-to-limit.test.js +91 -0
- package/dist/core/__tests__/revive.test.js +64 -21
- package/dist/core/__tests__/trigger-migration.test.js +48 -0
- package/dist/core/__tests__/wake-bearings.test.js +23 -21
- package/dist/core/__tests__/wake-origin.test.js +36 -33
- package/dist/core/canvas/boot.d.ts +48 -0
- package/dist/core/canvas/boot.js +157 -0
- package/dist/core/canvas/canvas.d.ts +27 -1
- package/dist/core/canvas/canvas.js +86 -5
- package/dist/core/canvas/db.js +86 -1
- package/dist/core/canvas/index.d.ts +1 -1
- package/dist/core/canvas/index.js +1 -1
- package/dist/core/canvas/nav-model.js +1 -1
- package/dist/core/canvas/pid.d.ts +6 -0
- package/dist/core/canvas/pid.js +13 -0
- package/dist/core/canvas/triggers.d.ts +108 -0
- package/dist/core/canvas/triggers.js +320 -0
- package/dist/core/canvas/types.d.ts +128 -46
- package/dist/core/command.js +13 -4
- package/dist/core/hearth/__tests__/model-auth-guest.test.js +151 -0
- package/dist/core/hearth/config.d.ts +1 -0
- package/dist/core/hearth/config.js +36 -3
- package/dist/core/hearth/guest-env.d.ts +7 -0
- package/dist/core/hearth/guest-env.js +17 -1
- package/dist/core/hearth/index.d.ts +0 -1
- package/dist/core/hearth/index.js +0 -1
- package/dist/core/hearth/model-auth-guest.d.ts +8 -0
- package/dist/core/hearth/model-auth-guest.js +430 -0
- package/dist/core/hearth/provider.d.ts +13 -6
- package/dist/core/hearth/providers/blaxel-bootstrap.d.ts +2 -0
- package/dist/core/hearth/providers/blaxel-bootstrap.js +127 -19
- package/dist/core/hearth/providers/blaxel-home.d.ts +8 -4
- package/dist/core/hearth/providers/blaxel-home.js +85 -75
- package/dist/core/hearth/providers/blaxel.d.ts +5 -0
- package/dist/core/hearth/providers/blaxel.js +86 -12
- package/dist/core/hearth/providers/types.d.ts +6 -1
- package/dist/core/hearth/types.d.ts +35 -1
- package/dist/core/help.d.ts +16 -0
- package/dist/core/help.js +2 -0
- package/dist/core/memory-resolver.d.ts +8 -8
- package/dist/core/memory-resolver.js +58 -26
- package/dist/core/preview-registry.d.ts +25 -0
- package/dist/core/preview-registry.js +2047 -0
- package/dist/core/resolver.d.ts +1 -0
- package/dist/core/resolver.js +23 -16
- package/dist/core/runtime/bearings.d.ts +11 -10
- package/dist/core/runtime/bearings.js +8 -8
- package/dist/core/runtime/broker-protocol.d.ts +2 -2
- package/dist/core/runtime/broker-protocol.js +2 -2
- package/dist/core/runtime/close.js +2 -2
- package/dist/core/runtime/kickoff.js +1 -1
- package/dist/core/runtime/launch.d.ts +9 -3
- package/dist/core/runtime/launch.js +17 -9
- package/dist/core/runtime/lifecycle.js +7 -7
- package/dist/core/runtime/model-swap.js +1 -1
- package/dist/core/runtime/placement.d.ts +5 -5
- package/dist/core/runtime/placement.js +10 -10
- package/dist/core/runtime/recycle.js +7 -7
- package/dist/core/runtime/reset.d.ts +1 -1
- package/dist/core/runtime/reset.js +3 -3
- package/dist/core/runtime/revive-all.d.ts +5 -2
- package/dist/core/runtime/revive-all.js +5 -2
- package/dist/core/runtime/revive.d.ts +15 -8
- package/dist/core/runtime/revive.js +52 -16
- package/dist/core/runtime/spawn.d.ts +1 -1
- package/dist/core/runtime/spawn.js +7 -7
- package/dist/core/runtime/stop-guard.js +5 -5
- package/dist/core/runtime/surface-bg.js +1 -1
- package/dist/core/runtime/tmux.d.ts +1 -1
- package/dist/core/runtime/tmux.js +4 -4
- package/dist/core/scope.d.ts +9 -0
- package/dist/core/scope.js +37 -15
- package/dist/core/substrate/on-read.js +23 -21
- package/dist/core/substrate/render.js +3 -3
- package/dist/core/view/loader.js +2 -2
- package/dist/core/wake.d.ts +2 -2
- package/dist/core/wake.js +7 -7
- package/dist/daemon/__tests__/predicate-eval.test.js +109 -0
- package/dist/daemon/crtrd.js +222 -103
- package/dist/daemon/predicate-eval.d.ts +52 -0
- package/dist/daemon/predicate-eval.js +248 -0
- package/dist/hearth/control-plane/__tests__/node-message.test.js +60 -0
- package/dist/hearth/control-plane/__tests__/rate-limit-recurrence.test.js +49 -0
- package/dist/hearth/control-plane/__tests__/relay-security.test.js +314 -0
- package/dist/hearth/control-plane/__tests__/scheduler-scan-loop.test.js +133 -0
- package/dist/hearth/control-plane/__tests__/trigger-delivery.test.js +170 -0
- package/dist/hearth/control-plane/__tests__/webhook-ingress.test.js +167 -0
- package/dist/hearth/control-plane/config.d.ts +21 -0
- package/dist/hearth/control-plane/config.js +77 -0
- package/dist/hearth/control-plane/db.d.ts +30 -0
- package/dist/hearth/control-plane/db.js +534 -0
- package/dist/hearth/control-plane/ingress/rate-limit.d.ts +24 -0
- package/dist/hearth/control-plane/ingress/rate-limit.js +100 -0
- package/dist/hearth/control-plane/ingress/route-store.d.ts +31 -0
- package/dist/hearth/control-plane/ingress/route-store.js +61 -0
- package/dist/hearth/control-plane/ingress/webhook-delivery-store.d.ts +41 -0
- package/dist/hearth/control-plane/ingress/webhook-delivery-store.js +69 -0
- package/dist/hearth/control-plane/ingress/webhook-route.d.ts +55 -0
- package/dist/hearth/control-plane/ingress/webhook-route.js +285 -0
- package/dist/hearth/control-plane/main.js +88 -0
- package/dist/hearth/control-plane/node-message.d.ts +31 -0
- package/dist/hearth/control-plane/node-message.js +98 -0
- package/dist/hearth/control-plane/register.d.ts +15 -0
- package/dist/hearth/control-plane/register.js +34 -0
- package/dist/hearth/control-plane/registry.d.ts +17 -0
- package/dist/hearth/control-plane/registry.js +161 -0
- package/dist/hearth/control-plane/relay.d.ts +40 -0
- package/dist/hearth/{wake-proxy/proxy.js → control-plane/relay.js} +201 -275
- package/dist/hearth/control-plane/scheduler/fire-store.d.ts +36 -0
- package/dist/hearth/control-plane/scheduler/fire-store.js +73 -0
- package/dist/hearth/control-plane/scheduler/recurrence.d.ts +7 -0
- package/dist/hearth/control-plane/scheduler/recurrence.js +58 -0
- package/dist/hearth/control-plane/scheduler/scan-loop.d.ts +38 -0
- package/dist/hearth/control-plane/scheduler/scan-loop.js +138 -0
- package/dist/hearth/control-plane/scheduler/schedule-store.d.ts +32 -0
- package/dist/hearth/control-plane/scheduler/schedule-store.js +66 -0
- package/dist/hearth/control-plane/secrets.d.ts +17 -0
- package/dist/hearth/control-plane/secrets.js +113 -0
- package/dist/hearth/control-plane/server.d.ts +27 -0
- package/dist/hearth/control-plane/server.js +346 -0
- package/dist/hearth/control-plane/session.d.ts +68 -0
- package/dist/hearth/control-plane/session.js +273 -0
- package/dist/hearth/control-plane/triggers/acl.d.ts +14 -0
- package/dist/hearth/control-plane/triggers/acl.js +52 -0
- package/dist/hearth/control-plane/triggers/audit-store.d.ts +38 -0
- package/dist/hearth/control-plane/triggers/audit-store.js +79 -0
- package/dist/hearth/control-plane/triggers/deliver.d.ts +43 -0
- package/dist/hearth/control-plane/triggers/deliver.js +76 -0
- package/dist/hearth/control-plane/triggers/envelope.d.ts +29 -0
- package/dist/hearth/control-plane/triggers/envelope.js +38 -0
- package/dist/hearth/control-plane/types.d.ts +66 -0
- package/dist/hearth/control-plane/wake.d.ts +80 -0
- package/dist/hearth/control-plane/wake.js +312 -0
- package/dist/pi-extensions/canvas-doc-substrate.js +28 -2
- package/dist/pi-extensions/canvas-nav.js +1 -1
- package/dist/prompts/view.js +7 -8
- package/dist/types.js +4 -4
- package/dist/web-client/assets/index-DUThOUzU.css +2 -0
- package/dist/web-client/assets/index-IAJVtuVe.js +80 -0
- package/dist/web-client/index.html +2 -2
- package/package.json +12 -9
- package/scripts/postinstall.mjs +8 -0
- package/dist/clients/attach/__tests__/action-parity.test.js +0 -48
- package/dist/clients/attach/__tests__/autocomplete-and-bash-mode.test.js +0 -96
- package/dist/clients/attach/__tests__/bash-bang-routing.test.js +0 -58
- package/dist/clients/attach/__tests__/bundle-pi-tui-dedup.test.js +0 -56
- package/dist/clients/attach/__tests__/clipboard-image.test.js +0 -76
- package/dist/clients/attach/__tests__/editor-newline.test.js +0 -82
- package/dist/clients/attach/__tests__/git-info.test.js +0 -31
- package/dist/clients/attach/__tests__/onrequest-wired.test.js +0 -20
- package/dist/clients/attach/__tests__/reconnect-giveup.test.js +0 -30
- package/dist/clients/attach/__tests__/slash-quit-copy.test.js +0 -42
- package/dist/clients/attach/__tests__/titled-editor.test.js +0 -60
- package/dist/commands/memory/__tests__/lint-schema.test.js +0 -52
- package/dist/core/__tests__/argv-parser.test.js +0 -217
- package/dist/core/__tests__/artifact-paths.test.js +0 -44
- package/dist/core/__tests__/draw-style.test.js +0 -258
- package/dist/core/__tests__/editor-label.test.d.ts +0 -1
- package/dist/core/__tests__/editor-label.test.js +0 -26
- package/dist/core/__tests__/fault-marker.test.d.ts +0 -1
- package/dist/core/__tests__/fault-marker.test.js +0 -112
- package/dist/core/__tests__/fault-retry-rewind.test.d.ts +0 -1
- package/dist/core/__tests__/fault-retry-rewind.test.js +0 -123
- package/dist/core/__tests__/frame-decoder-perf.test.d.ts +0 -1
- package/dist/core/__tests__/frame-decoder-perf.test.js +0 -224
- package/dist/core/__tests__/keystone.test.d.ts +0 -1
- package/dist/core/__tests__/keystone.test.js +0 -185
- package/dist/core/__tests__/listing-completeness.test.d.ts +0 -1
- package/dist/core/__tests__/listing-completeness.test.js +0 -31
- package/dist/core/__tests__/memory-resolver.test.d.ts +0 -1
- package/dist/core/__tests__/memory-resolver.test.js +0 -119
- package/dist/core/__tests__/memory.test.d.ts +0 -1
- package/dist/core/__tests__/memory.test.js +0 -60
- package/dist/core/__tests__/model-ladders.test.d.ts +0 -1
- package/dist/core/__tests__/model-ladders.test.js +0 -160
- package/dist/core/__tests__/node-env.test.d.ts +0 -1
- package/dist/core/__tests__/node-env.test.js +0 -26
- package/dist/core/__tests__/pane-column.test.d.ts +0 -1
- package/dist/core/__tests__/pane-column.test.js +0 -153
- package/dist/core/__tests__/persona-compose.test.d.ts +0 -1
- package/dist/core/__tests__/persona-compose.test.js +0 -53
- package/dist/core/__tests__/persona-subkind.test.d.ts +0 -1
- package/dist/core/__tests__/persona-subkind.test.js +0 -65
- package/dist/core/__tests__/persona.test.d.ts +0 -1
- package/dist/core/__tests__/persona.test.js +0 -107
- package/dist/core/__tests__/unknown-path.test.d.ts +0 -1
- package/dist/core/__tests__/unknown-path.test.js +0 -58
- package/dist/core/canvas/wakeups.d.ts +0 -76
- package/dist/core/canvas/wakeups.js +0 -185
- package/dist/core/hearth/registry.d.ts +0 -15
- package/dist/core/hearth/registry.js +0 -179
- package/dist/hearth/wake-proxy/__tests__/anthropic-oauth.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/anthropic-oauth.test.js +0 -289
- package/dist/hearth/wake-proxy/__tests__/config-timeout.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/config-timeout.test.js +0 -34
- package/dist/hearth/wake-proxy/__tests__/guest-source.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/guest-source.test.js +0 -203
- package/dist/hearth/wake-proxy/__tests__/hardening.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/hardening.test.js +0 -59
- package/dist/hearth/wake-proxy/__tests__/hearth-status-route.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/hearth-status-route.test.js +0 -372
- package/dist/hearth/wake-proxy/__tests__/http-running-route-fast-path.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/http-running-route-fast-path.test.js +0 -258
- package/dist/hearth/wake-proxy/__tests__/model-auth-routes.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/model-auth-routes.test.js +0 -437
- package/dist/hearth/wake-proxy/__tests__/source-bridge-gate.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/source-bridge-gate.test.js +0 -455
- package/dist/hearth/wake-proxy/__tests__/static-asset-allowlist.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/static-asset-allowlist.test.js +0 -15
- package/dist/hearth/wake-proxy/__tests__/warm-path-concurrency.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/warm-path-concurrency.test.js +0 -141
- package/dist/hearth/wake-proxy/__tests__/ws-teardown-accounting.test.d.ts +0 -1
- package/dist/hearth/wake-proxy/__tests__/ws-teardown-accounting.test.js +0 -143
- package/dist/hearth/wake-proxy/anthropic-oauth.d.ts +0 -58
- package/dist/hearth/wake-proxy/anthropic-oauth.js +0 -189
- package/dist/hearth/wake-proxy/auth.d.ts +0 -22
- package/dist/hearth/wake-proxy/auth.js +0 -128
- package/dist/hearth/wake-proxy/config.d.ts +0 -2
- package/dist/hearth/wake-proxy/config.js +0 -151
- package/dist/hearth/wake-proxy/guest-source.d.ts +0 -14
- package/dist/hearth/wake-proxy/guest-source.js +0 -130
- package/dist/hearth/wake-proxy/hearth-status.d.ts +0 -44
- package/dist/hearth/wake-proxy/hearth-status.js +0 -267
- package/dist/hearth/wake-proxy/home.d.ts +0 -67
- package/dist/hearth/wake-proxy/home.js +0 -297
- package/dist/hearth/wake-proxy/main.js +0 -134
- package/dist/hearth/wake-proxy/model-auth.d.ts +0 -13
- package/dist/hearth/wake-proxy/model-auth.js +0 -345
- package/dist/hearth/wake-proxy/proxy.d.ts +0 -35
- package/dist/hearth/wake-proxy/public-source-gate.d.ts +0 -9
- package/dist/hearth/wake-proxy/public-source-gate.js +0 -409
- package/dist/hearth/wake-proxy/redact.d.ts +0 -1
- package/dist/hearth/wake-proxy/redact.js +0 -17
- package/dist/hearth/wake-proxy/server.d.ts +0 -11
- package/dist/hearth/wake-proxy/server.js +0 -142
- package/dist/hearth/wake-proxy/state.d.ts +0 -18
- package/dist/hearth/wake-proxy/state.js +0 -342
- package/dist/hearth/wake-proxy/types.d.ts +0 -76
- package/dist/web-client/assets/index-BZUxTkv5.css +0 -2
- package/dist/web-client/assets/index-D36PNBj4.js +0 -80
- /package/dist/clients/attach/__tests__/{action-parity.test.d.ts → crtr-output-coverage.test.d.ts} +0 -0
- /package/dist/clients/attach/__tests__/{autocomplete-and-bash-mode.test.d.ts → crtr-output-render.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/bash-bang-routing.test.d.ts → core/__tests__/boot.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/bundle-pi-tui-dedup.test.d.ts → core/__tests__/hearth-bootstrap.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/clipboard-image.test.d.ts → core/__tests__/preview-registry-sync.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/editor-newline.test.d.ts → core/__tests__/prune-to-limit.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/git-info.test.d.ts → core/__tests__/trigger-migration.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/onrequest-wired.test.d.ts → core/hearth/__tests__/model-auth-guest.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/reconnect-giveup.test.d.ts → daemon/__tests__/predicate-eval.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/slash-quit-copy.test.d.ts → hearth/control-plane/__tests__/node-message.test.d.ts} +0 -0
- /package/dist/{clients/attach/__tests__/titled-editor.test.d.ts → hearth/control-plane/__tests__/rate-limit-recurrence.test.d.ts} +0 -0
- /package/dist/{commands/memory/__tests__/lint-schema.test.d.ts → hearth/control-plane/__tests__/relay-security.test.d.ts} +0 -0
- /package/dist/{core/__tests__/argv-parser.test.d.ts → hearth/control-plane/__tests__/scheduler-scan-loop.test.d.ts} +0 -0
- /package/dist/{core/__tests__/artifact-paths.test.d.ts → hearth/control-plane/__tests__/trigger-delivery.test.d.ts} +0 -0
- /package/dist/{core/__tests__/draw-style.test.d.ts → hearth/control-plane/__tests__/webhook-ingress.test.d.ts} +0 -0
- /package/dist/hearth/{wake-proxy → control-plane}/main.d.ts +0 -0
- /package/dist/hearth/{wake-proxy → control-plane}/types.js +0 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var anchors = require('../doc/anchors.js');
|
|
4
|
+
var visit = require('../visit.js');
|
|
5
|
+
var identity = require('./identity.js');
|
|
6
|
+
var Node = require('./Node.js');
|
|
7
|
+
var toJS = require('./toJS.js');
|
|
8
|
+
|
|
9
|
+
class Alias extends Node.NodeBase {
|
|
10
|
+
constructor(source) {
|
|
11
|
+
super(identity.ALIAS);
|
|
12
|
+
this.source = source;
|
|
13
|
+
Object.defineProperty(this, 'tag', {
|
|
14
|
+
set() {
|
|
15
|
+
throw new Error('Alias nodes cannot have tags');
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Resolve the value of this alias within `doc`, finding the last
|
|
21
|
+
* instance of the `source` anchor before this node.
|
|
22
|
+
*/
|
|
23
|
+
resolve(doc, ctx) {
|
|
24
|
+
if (ctx?.maxAliasCount === 0)
|
|
25
|
+
throw new ReferenceError('Alias resolution is disabled');
|
|
26
|
+
let nodes;
|
|
27
|
+
if (ctx?.aliasResolveCache) {
|
|
28
|
+
nodes = ctx.aliasResolveCache;
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
nodes = [];
|
|
32
|
+
visit.visit(doc, {
|
|
33
|
+
Node: (_key, node) => {
|
|
34
|
+
if (identity.isAlias(node) || identity.hasAnchor(node))
|
|
35
|
+
nodes.push(node);
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
if (ctx)
|
|
39
|
+
ctx.aliasResolveCache = nodes;
|
|
40
|
+
}
|
|
41
|
+
let found = undefined;
|
|
42
|
+
for (const node of nodes) {
|
|
43
|
+
if (node === this)
|
|
44
|
+
break;
|
|
45
|
+
if (node.anchor === this.source)
|
|
46
|
+
found = node;
|
|
47
|
+
}
|
|
48
|
+
return found;
|
|
49
|
+
}
|
|
50
|
+
toJSON(_arg, ctx) {
|
|
51
|
+
if (!ctx)
|
|
52
|
+
return { source: this.source };
|
|
53
|
+
const { anchors, doc, maxAliasCount } = ctx;
|
|
54
|
+
const source = this.resolve(doc, ctx);
|
|
55
|
+
if (!source) {
|
|
56
|
+
const msg = `Unresolved alias (the anchor must be set before the alias): ${this.source}`;
|
|
57
|
+
throw new ReferenceError(msg);
|
|
58
|
+
}
|
|
59
|
+
let data = anchors.get(source);
|
|
60
|
+
if (!data) {
|
|
61
|
+
// Resolve anchors for Node.prototype.toJS()
|
|
62
|
+
toJS.toJS(source, null, ctx);
|
|
63
|
+
data = anchors.get(source);
|
|
64
|
+
}
|
|
65
|
+
/* istanbul ignore if */
|
|
66
|
+
if (data?.res === undefined) {
|
|
67
|
+
const msg = 'This should not happen: Alias anchor was not resolved?';
|
|
68
|
+
throw new ReferenceError(msg);
|
|
69
|
+
}
|
|
70
|
+
if (maxAliasCount >= 0) {
|
|
71
|
+
data.count += 1;
|
|
72
|
+
if (data.aliasCount === 0)
|
|
73
|
+
data.aliasCount = getAliasCount(doc, source, anchors);
|
|
74
|
+
if (data.count * data.aliasCount > maxAliasCount) {
|
|
75
|
+
const msg = 'Excessive alias count indicates a resource exhaustion attack';
|
|
76
|
+
throw new ReferenceError(msg);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return data.res;
|
|
80
|
+
}
|
|
81
|
+
toString(ctx, _onComment, _onChompKeep) {
|
|
82
|
+
const src = `*${this.source}`;
|
|
83
|
+
if (ctx) {
|
|
84
|
+
anchors.anchorIsValid(this.source);
|
|
85
|
+
if (ctx.options.verifyAliasOrder && !ctx.anchors.has(this.source)) {
|
|
86
|
+
const msg = `Unresolved alias (the anchor must be set before the alias): ${this.source}`;
|
|
87
|
+
throw new Error(msg);
|
|
88
|
+
}
|
|
89
|
+
if (ctx.implicitKey)
|
|
90
|
+
return `${src} `;
|
|
91
|
+
}
|
|
92
|
+
return src;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
function getAliasCount(doc, node, anchors) {
|
|
96
|
+
if (identity.isAlias(node)) {
|
|
97
|
+
const source = node.resolve(doc);
|
|
98
|
+
const anchor = anchors && source && anchors.get(source);
|
|
99
|
+
return anchor ? anchor.count * anchor.aliasCount : 0;
|
|
100
|
+
}
|
|
101
|
+
else if (identity.isCollection(node)) {
|
|
102
|
+
let count = 0;
|
|
103
|
+
for (const item of node.items) {
|
|
104
|
+
const c = getAliasCount(doc, item, anchors);
|
|
105
|
+
if (c > count)
|
|
106
|
+
count = c;
|
|
107
|
+
}
|
|
108
|
+
return count;
|
|
109
|
+
}
|
|
110
|
+
else if (identity.isPair(node)) {
|
|
111
|
+
const kc = getAliasCount(doc, node.key, anchors);
|
|
112
|
+
const vc = getAliasCount(doc, node.value, anchors);
|
|
113
|
+
return Math.max(kc, vc);
|
|
114
|
+
}
|
|
115
|
+
return 1;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
exports.Alias = Alias;
|
package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Collection.d.ts
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { Schema } from '../schema/Schema';
|
|
2
|
+
import { NODE_TYPE } from './identity';
|
|
3
|
+
import { NodeBase } from './Node';
|
|
4
|
+
export declare function collectionFromPath(schema: Schema, path: unknown[], value: unknown): import('./Node').Node;
|
|
5
|
+
export declare const isEmptyPath: (path: Iterable<unknown> | null | undefined) => path is null | undefined;
|
|
6
|
+
export declare abstract class Collection extends NodeBase {
|
|
7
|
+
schema: Schema | undefined;
|
|
8
|
+
[NODE_TYPE]: symbol;
|
|
9
|
+
items: unknown[];
|
|
10
|
+
/** An optional anchor on this node. Used by alias nodes. */
|
|
11
|
+
anchor?: string;
|
|
12
|
+
/**
|
|
13
|
+
* If true, stringify this and all child nodes using flow rather than
|
|
14
|
+
* block styles.
|
|
15
|
+
*/
|
|
16
|
+
flow?: boolean;
|
|
17
|
+
constructor(type: symbol, schema?: Schema);
|
|
18
|
+
/**
|
|
19
|
+
* Create a copy of this collection.
|
|
20
|
+
*
|
|
21
|
+
* @param schema - If defined, overwrites the original's schema
|
|
22
|
+
*/
|
|
23
|
+
clone(schema?: Schema): Collection;
|
|
24
|
+
/** Adds a value to the collection. */
|
|
25
|
+
abstract add(value: unknown): void;
|
|
26
|
+
/**
|
|
27
|
+
* Removes a value from the collection.
|
|
28
|
+
* @returns `true` if the item was found and removed.
|
|
29
|
+
*/
|
|
30
|
+
abstract delete(key: unknown): boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Returns item at `key`, or `undefined` if not found. By default unwraps
|
|
33
|
+
* scalar values from their surrounding node; to disable set `keepScalar` to
|
|
34
|
+
* `true` (collections are always returned intact).
|
|
35
|
+
*/
|
|
36
|
+
abstract get(key: unknown, keepScalar?: boolean): unknown;
|
|
37
|
+
/**
|
|
38
|
+
* Checks if the collection includes a value with the key `key`.
|
|
39
|
+
*/
|
|
40
|
+
abstract has(key: unknown): boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
43
|
+
* boolean to add/remove the item from the set.
|
|
44
|
+
*/
|
|
45
|
+
abstract set(key: unknown, value: unknown): void;
|
|
46
|
+
/**
|
|
47
|
+
* Adds a value to the collection. For `!!map` and `!!omap` the value must
|
|
48
|
+
* be a Pair instance or a `{ key, value }` object, which may not have a key
|
|
49
|
+
* that already exists in the map.
|
|
50
|
+
*/
|
|
51
|
+
addIn(path: Iterable<unknown>, value: unknown): void;
|
|
52
|
+
/**
|
|
53
|
+
* Removes a value from the collection.
|
|
54
|
+
* @returns `true` if the item was found and removed.
|
|
55
|
+
*/
|
|
56
|
+
deleteIn(path: Iterable<unknown>): boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Returns item at `key`, or `undefined` if not found. By default unwraps
|
|
59
|
+
* scalar values from their surrounding node; to disable set `keepScalar` to
|
|
60
|
+
* `true` (collections are always returned intact).
|
|
61
|
+
*/
|
|
62
|
+
getIn(path: Iterable<unknown>, keepScalar?: boolean): unknown;
|
|
63
|
+
hasAllNullValues(allowScalar?: boolean): boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Checks if the collection includes a value with the key `key`.
|
|
66
|
+
*/
|
|
67
|
+
hasIn(path: Iterable<unknown>): boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
70
|
+
* boolean to add/remove the item from the set.
|
|
71
|
+
*/
|
|
72
|
+
setIn(path: Iterable<unknown>, value: unknown): void;
|
|
73
|
+
}
|
package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Collection.js
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var createNode = require('../doc/createNode.js');
|
|
4
|
+
var identity = require('./identity.js');
|
|
5
|
+
var Node = require('./Node.js');
|
|
6
|
+
|
|
7
|
+
function collectionFromPath(schema, path, value) {
|
|
8
|
+
let v = value;
|
|
9
|
+
for (let i = path.length - 1; i >= 0; --i) {
|
|
10
|
+
const k = path[i];
|
|
11
|
+
if (typeof k === 'number' && Number.isInteger(k) && k >= 0) {
|
|
12
|
+
const a = [];
|
|
13
|
+
a[k] = v;
|
|
14
|
+
v = a;
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
v = new Map([[k, v]]);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
return createNode.createNode(v, undefined, {
|
|
21
|
+
aliasDuplicateObjects: false,
|
|
22
|
+
keepUndefined: false,
|
|
23
|
+
onAnchor: () => {
|
|
24
|
+
throw new Error('This should not happen, please report a bug.');
|
|
25
|
+
},
|
|
26
|
+
schema,
|
|
27
|
+
sourceObjects: new Map()
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
// Type guard is intentionally a little wrong so as to be more useful,
|
|
31
|
+
// as it does not cover untypable empty non-string iterables (e.g. []).
|
|
32
|
+
const isEmptyPath = (path) => path == null ||
|
|
33
|
+
(typeof path === 'object' && !!path[Symbol.iterator]().next().done);
|
|
34
|
+
class Collection extends Node.NodeBase {
|
|
35
|
+
constructor(type, schema) {
|
|
36
|
+
super(type);
|
|
37
|
+
Object.defineProperty(this, 'schema', {
|
|
38
|
+
value: schema,
|
|
39
|
+
configurable: true,
|
|
40
|
+
enumerable: false,
|
|
41
|
+
writable: true
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Create a copy of this collection.
|
|
46
|
+
*
|
|
47
|
+
* @param schema - If defined, overwrites the original's schema
|
|
48
|
+
*/
|
|
49
|
+
clone(schema) {
|
|
50
|
+
const copy = Object.create(Object.getPrototypeOf(this), Object.getOwnPropertyDescriptors(this));
|
|
51
|
+
if (schema)
|
|
52
|
+
copy.schema = schema;
|
|
53
|
+
copy.items = copy.items.map(it => identity.isNode(it) || identity.isPair(it) ? it.clone(schema) : it);
|
|
54
|
+
if (this.range)
|
|
55
|
+
copy.range = this.range.slice();
|
|
56
|
+
return copy;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Adds a value to the collection. For `!!map` and `!!omap` the value must
|
|
60
|
+
* be a Pair instance or a `{ key, value }` object, which may not have a key
|
|
61
|
+
* that already exists in the map.
|
|
62
|
+
*/
|
|
63
|
+
addIn(path, value) {
|
|
64
|
+
if (isEmptyPath(path))
|
|
65
|
+
this.add(value);
|
|
66
|
+
else {
|
|
67
|
+
const [key, ...rest] = path;
|
|
68
|
+
const node = this.get(key, true);
|
|
69
|
+
if (identity.isCollection(node))
|
|
70
|
+
node.addIn(rest, value);
|
|
71
|
+
else if (node === undefined && this.schema)
|
|
72
|
+
this.set(key, collectionFromPath(this.schema, rest, value));
|
|
73
|
+
else
|
|
74
|
+
throw new Error(`Expected YAML collection at ${key}. Remaining path: ${rest}`);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Removes a value from the collection.
|
|
79
|
+
* @returns `true` if the item was found and removed.
|
|
80
|
+
*/
|
|
81
|
+
deleteIn(path) {
|
|
82
|
+
const [key, ...rest] = path;
|
|
83
|
+
if (rest.length === 0)
|
|
84
|
+
return this.delete(key);
|
|
85
|
+
const node = this.get(key, true);
|
|
86
|
+
if (identity.isCollection(node))
|
|
87
|
+
return node.deleteIn(rest);
|
|
88
|
+
else
|
|
89
|
+
throw new Error(`Expected YAML collection at ${key}. Remaining path: ${rest}`);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Returns item at `key`, or `undefined` if not found. By default unwraps
|
|
93
|
+
* scalar values from their surrounding node; to disable set `keepScalar` to
|
|
94
|
+
* `true` (collections are always returned intact).
|
|
95
|
+
*/
|
|
96
|
+
getIn(path, keepScalar) {
|
|
97
|
+
const [key, ...rest] = path;
|
|
98
|
+
const node = this.get(key, true);
|
|
99
|
+
if (rest.length === 0)
|
|
100
|
+
return !keepScalar && identity.isScalar(node) ? node.value : node;
|
|
101
|
+
else
|
|
102
|
+
return identity.isCollection(node) ? node.getIn(rest, keepScalar) : undefined;
|
|
103
|
+
}
|
|
104
|
+
hasAllNullValues(allowScalar) {
|
|
105
|
+
return this.items.every(node => {
|
|
106
|
+
if (!identity.isPair(node))
|
|
107
|
+
return false;
|
|
108
|
+
const n = node.value;
|
|
109
|
+
return (n == null ||
|
|
110
|
+
(allowScalar &&
|
|
111
|
+
identity.isScalar(n) &&
|
|
112
|
+
n.value == null &&
|
|
113
|
+
!n.commentBefore &&
|
|
114
|
+
!n.comment &&
|
|
115
|
+
!n.tag));
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Checks if the collection includes a value with the key `key`.
|
|
120
|
+
*/
|
|
121
|
+
hasIn(path) {
|
|
122
|
+
const [key, ...rest] = path;
|
|
123
|
+
if (rest.length === 0)
|
|
124
|
+
return this.has(key);
|
|
125
|
+
const node = this.get(key, true);
|
|
126
|
+
return identity.isCollection(node) ? node.hasIn(rest) : false;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
130
|
+
* boolean to add/remove the item from the set.
|
|
131
|
+
*/
|
|
132
|
+
setIn(path, value) {
|
|
133
|
+
const [key, ...rest] = path;
|
|
134
|
+
if (rest.length === 0) {
|
|
135
|
+
this.set(key, value);
|
|
136
|
+
}
|
|
137
|
+
else {
|
|
138
|
+
const node = this.get(key, true);
|
|
139
|
+
if (identity.isCollection(node))
|
|
140
|
+
node.setIn(rest, value);
|
|
141
|
+
else if (node === undefined && this.schema)
|
|
142
|
+
this.set(key, collectionFromPath(this.schema, rest, value));
|
|
143
|
+
else
|
|
144
|
+
throw new Error(`Expected YAML collection at ${key}. Remaining path: ${rest}`);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
exports.Collection = Collection;
|
|
150
|
+
exports.collectionFromPath = collectionFromPath;
|
|
151
|
+
exports.isEmptyPath = isEmptyPath;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { Document } from '../doc/Document';
|
|
2
|
+
import type { ToJSOptions } from '../options';
|
|
3
|
+
import type { Token } from '../parse/cst';
|
|
4
|
+
import type { StringifyContext } from '../stringify/stringify';
|
|
5
|
+
import type { Alias } from './Alias';
|
|
6
|
+
import { NODE_TYPE } from './identity';
|
|
7
|
+
import type { Scalar } from './Scalar';
|
|
8
|
+
import type { ToJSContext } from './toJS';
|
|
9
|
+
import type { MapLike, YAMLMap } from './YAMLMap';
|
|
10
|
+
import type { YAMLSeq } from './YAMLSeq';
|
|
11
|
+
export type Node<T = unknown> = Alias | Scalar<T> | YAMLMap<unknown, T> | YAMLSeq<T>;
|
|
12
|
+
/** Utility type mapper */
|
|
13
|
+
export type NodeType<T> = T extends string | number | bigint | boolean | null | undefined ? Scalar<T> : T extends Date ? Scalar<string | Date> : T extends Array<any> ? YAMLSeq<NodeType<T[number]>> : T extends {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
} ? YAMLMap<NodeType<keyof T>, NodeType<T[keyof T]>> : T extends {
|
|
16
|
+
[key: number]: any;
|
|
17
|
+
} ? YAMLMap<NodeType<keyof T>, NodeType<T[keyof T]>> : Node;
|
|
18
|
+
export type ParsedNode = Alias.Parsed | Scalar.Parsed | YAMLMap.Parsed | YAMLSeq.Parsed;
|
|
19
|
+
/** `[start, value-end, node-end]` */
|
|
20
|
+
export type Range = [number, number, number];
|
|
21
|
+
export declare abstract class NodeBase {
|
|
22
|
+
readonly [NODE_TYPE]: symbol;
|
|
23
|
+
/** A comment on or immediately after this */
|
|
24
|
+
comment?: string | null;
|
|
25
|
+
/** A comment before this */
|
|
26
|
+
commentBefore?: string | null;
|
|
27
|
+
/**
|
|
28
|
+
* The `[start, value-end, node-end]` character offsets for the part of the
|
|
29
|
+
* source parsed into this node (undefined if not parsed). The `value-end`
|
|
30
|
+
* and `node-end` positions are themselves not included in their respective
|
|
31
|
+
* ranges.
|
|
32
|
+
*/
|
|
33
|
+
range?: Range | null;
|
|
34
|
+
/** A blank line before this node and its commentBefore */
|
|
35
|
+
spaceBefore?: boolean;
|
|
36
|
+
/** The CST token that was composed into this node. */
|
|
37
|
+
srcToken?: Token;
|
|
38
|
+
/** A fully qualified tag, if required */
|
|
39
|
+
tag?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Customize the way that a key-value pair is resolved.
|
|
42
|
+
* Used for YAML 1.1 !!merge << handling.
|
|
43
|
+
*/
|
|
44
|
+
addToJSMap?: (ctx: ToJSContext | undefined, map: MapLike, value: unknown) => void;
|
|
45
|
+
/** A plain JS representation of this node */
|
|
46
|
+
abstract toJSON(): any;
|
|
47
|
+
abstract toString(ctx?: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
|
|
48
|
+
constructor(type: symbol);
|
|
49
|
+
/** Create a copy of this node. */
|
|
50
|
+
clone(): NodeBase;
|
|
51
|
+
/** A plain JavaScript representation of this node. */
|
|
52
|
+
toJS(doc: Document<Node, boolean>, { mapAsMap, maxAliasCount, onAnchor, reviver }?: ToJSOptions): any;
|
|
53
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var applyReviver = require('../doc/applyReviver.js');
|
|
4
|
+
var identity = require('./identity.js');
|
|
5
|
+
var toJS = require('./toJS.js');
|
|
6
|
+
|
|
7
|
+
class NodeBase {
|
|
8
|
+
constructor(type) {
|
|
9
|
+
Object.defineProperty(this, identity.NODE_TYPE, { value: type });
|
|
10
|
+
}
|
|
11
|
+
/** Create a copy of this node. */
|
|
12
|
+
clone() {
|
|
13
|
+
const copy = Object.create(Object.getPrototypeOf(this), Object.getOwnPropertyDescriptors(this));
|
|
14
|
+
if (this.range)
|
|
15
|
+
copy.range = this.range.slice();
|
|
16
|
+
return copy;
|
|
17
|
+
}
|
|
18
|
+
/** A plain JavaScript representation of this node. */
|
|
19
|
+
toJS(doc, { mapAsMap, maxAliasCount, onAnchor, reviver } = {}) {
|
|
20
|
+
if (!identity.isDocument(doc))
|
|
21
|
+
throw new TypeError('A document argument is required');
|
|
22
|
+
const ctx = {
|
|
23
|
+
anchors: new Map(),
|
|
24
|
+
doc,
|
|
25
|
+
keep: true,
|
|
26
|
+
mapAsMap: mapAsMap === true,
|
|
27
|
+
mapKeyWarned: false,
|
|
28
|
+
maxAliasCount: typeof maxAliasCount === 'number' ? maxAliasCount : 100
|
|
29
|
+
};
|
|
30
|
+
const res = toJS.toJS(this, '', ctx);
|
|
31
|
+
if (typeof onAnchor === 'function')
|
|
32
|
+
for (const { count, res } of ctx.anchors.values())
|
|
33
|
+
onAnchor(res, count);
|
|
34
|
+
return typeof reviver === 'function'
|
|
35
|
+
? applyReviver.applyReviver(reviver, { '': res }, '', res)
|
|
36
|
+
: res;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
exports.NodeBase = NodeBase;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { CreateNodeContext } from '../doc/createNode';
|
|
2
|
+
import type { CollectionItem } from '../parse/cst';
|
|
3
|
+
import type { Schema } from '../schema/Schema';
|
|
4
|
+
import type { StringifyContext } from '../stringify/stringify';
|
|
5
|
+
import { addPairToJSMap } from './addPairToJSMap';
|
|
6
|
+
import { NODE_TYPE } from './identity';
|
|
7
|
+
import type { Node } from './Node';
|
|
8
|
+
import type { ToJSContext } from './toJS';
|
|
9
|
+
export declare function createPair(key: unknown, value: unknown, ctx: CreateNodeContext): Pair<Node, Node>;
|
|
10
|
+
export declare class Pair<K = unknown, V = unknown> {
|
|
11
|
+
readonly [NODE_TYPE]: symbol;
|
|
12
|
+
/** Always Node or null when parsed, but can be set to anything. */
|
|
13
|
+
key: K;
|
|
14
|
+
/** Always Node or null when parsed, but can be set to anything. */
|
|
15
|
+
value: V | null;
|
|
16
|
+
/** The CST token that was composed into this pair. */
|
|
17
|
+
srcToken?: CollectionItem;
|
|
18
|
+
constructor(key: K, value?: V | null);
|
|
19
|
+
clone(schema?: Schema): Pair<K, V>;
|
|
20
|
+
toJSON(_?: unknown, ctx?: ToJSContext): ReturnType<typeof addPairToJSMap>;
|
|
21
|
+
toString(ctx?: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var createNode = require('../doc/createNode.js');
|
|
4
|
+
var stringifyPair = require('../stringify/stringifyPair.js');
|
|
5
|
+
var addPairToJSMap = require('./addPairToJSMap.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
|
|
8
|
+
function createPair(key, value, ctx) {
|
|
9
|
+
const k = createNode.createNode(key, undefined, ctx);
|
|
10
|
+
const v = createNode.createNode(value, undefined, ctx);
|
|
11
|
+
return new Pair(k, v);
|
|
12
|
+
}
|
|
13
|
+
class Pair {
|
|
14
|
+
constructor(key, value = null) {
|
|
15
|
+
Object.defineProperty(this, identity.NODE_TYPE, { value: identity.PAIR });
|
|
16
|
+
this.key = key;
|
|
17
|
+
this.value = value;
|
|
18
|
+
}
|
|
19
|
+
clone(schema) {
|
|
20
|
+
let { key, value } = this;
|
|
21
|
+
if (identity.isNode(key))
|
|
22
|
+
key = key.clone(schema);
|
|
23
|
+
if (identity.isNode(value))
|
|
24
|
+
value = value.clone(schema);
|
|
25
|
+
return new Pair(key, value);
|
|
26
|
+
}
|
|
27
|
+
toJSON(_, ctx) {
|
|
28
|
+
const pair = ctx?.mapAsMap ? new Map() : {};
|
|
29
|
+
return addPairToJSMap.addPairToJSMap(ctx, pair, this);
|
|
30
|
+
}
|
|
31
|
+
toString(ctx, onComment, onChompKeep) {
|
|
32
|
+
return ctx?.doc
|
|
33
|
+
? stringifyPair.stringifyPair(this, ctx, onComment, onChompKeep)
|
|
34
|
+
: JSON.stringify(this);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
exports.Pair = Pair;
|
|
39
|
+
exports.createPair = createPair;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { BlockScalar, FlowScalar } from '../parse/cst';
|
|
2
|
+
import type { Range } from './Node';
|
|
3
|
+
import { NodeBase } from './Node';
|
|
4
|
+
import type { ToJSContext } from './toJS';
|
|
5
|
+
export declare const isScalarValue: (value: unknown) => boolean;
|
|
6
|
+
export declare namespace Scalar {
|
|
7
|
+
interface Parsed extends Scalar {
|
|
8
|
+
range: Range;
|
|
9
|
+
source: string;
|
|
10
|
+
srcToken?: FlowScalar | BlockScalar;
|
|
11
|
+
}
|
|
12
|
+
type BLOCK_FOLDED = 'BLOCK_FOLDED';
|
|
13
|
+
type BLOCK_LITERAL = 'BLOCK_LITERAL';
|
|
14
|
+
type PLAIN = 'PLAIN';
|
|
15
|
+
type QUOTE_DOUBLE = 'QUOTE_DOUBLE';
|
|
16
|
+
type QUOTE_SINGLE = 'QUOTE_SINGLE';
|
|
17
|
+
type Type = BLOCK_FOLDED | BLOCK_LITERAL | PLAIN | QUOTE_DOUBLE | QUOTE_SINGLE;
|
|
18
|
+
}
|
|
19
|
+
export declare class Scalar<T = unknown> extends NodeBase {
|
|
20
|
+
static readonly BLOCK_FOLDED = "BLOCK_FOLDED";
|
|
21
|
+
static readonly BLOCK_LITERAL = "BLOCK_LITERAL";
|
|
22
|
+
static readonly PLAIN = "PLAIN";
|
|
23
|
+
static readonly QUOTE_DOUBLE = "QUOTE_DOUBLE";
|
|
24
|
+
static readonly QUOTE_SINGLE = "QUOTE_SINGLE";
|
|
25
|
+
value: T;
|
|
26
|
+
/** An optional anchor on this node. Used by alias nodes. */
|
|
27
|
+
anchor?: string;
|
|
28
|
+
/**
|
|
29
|
+
* By default (undefined), numbers use decimal notation.
|
|
30
|
+
* The YAML 1.2 core schema only supports 'HEX' and 'OCT'.
|
|
31
|
+
* The YAML 1.1 schema also supports 'BIN' and 'TIME'
|
|
32
|
+
*/
|
|
33
|
+
format?: string;
|
|
34
|
+
/**
|
|
35
|
+
* If `value` is a number that is serialized as a decimal string
|
|
36
|
+
* (i.e. not using exponential notation),
|
|
37
|
+
* use this value when stringifying this node.
|
|
38
|
+
*/
|
|
39
|
+
minFractionDigits?: number;
|
|
40
|
+
/** Set during parsing to the source string value */
|
|
41
|
+
source?: string;
|
|
42
|
+
/** The scalar style used for the node's string representation */
|
|
43
|
+
type?: Scalar.Type;
|
|
44
|
+
constructor(value: T);
|
|
45
|
+
toJSON(arg?: any, ctx?: ToJSContext): any;
|
|
46
|
+
toString(): string;
|
|
47
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var identity = require('./identity.js');
|
|
4
|
+
var Node = require('./Node.js');
|
|
5
|
+
var toJS = require('./toJS.js');
|
|
6
|
+
|
|
7
|
+
const isScalarValue = (value) => !value || (typeof value !== 'function' && typeof value !== 'object');
|
|
8
|
+
class Scalar extends Node.NodeBase {
|
|
9
|
+
constructor(value) {
|
|
10
|
+
super(identity.SCALAR);
|
|
11
|
+
this.value = value;
|
|
12
|
+
}
|
|
13
|
+
toJSON(arg, ctx) {
|
|
14
|
+
return ctx?.keep ? this.value : toJS.toJS(this.value, arg, ctx);
|
|
15
|
+
}
|
|
16
|
+
toString() {
|
|
17
|
+
return String(this.value);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
Scalar.BLOCK_FOLDED = 'BLOCK_FOLDED';
|
|
21
|
+
Scalar.BLOCK_LITERAL = 'BLOCK_LITERAL';
|
|
22
|
+
Scalar.PLAIN = 'PLAIN';
|
|
23
|
+
Scalar.QUOTE_DOUBLE = 'QUOTE_DOUBLE';
|
|
24
|
+
Scalar.QUOTE_SINGLE = 'QUOTE_SINGLE';
|
|
25
|
+
|
|
26
|
+
exports.Scalar = Scalar;
|
|
27
|
+
exports.isScalarValue = isScalarValue;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { BlockMap, FlowCollection } from '../parse/cst';
|
|
2
|
+
import type { Schema } from '../schema/Schema';
|
|
3
|
+
import type { StringifyContext } from '../stringify/stringify';
|
|
4
|
+
import type { CreateNodeContext } from '../util';
|
|
5
|
+
import { Collection } from './Collection';
|
|
6
|
+
import type { ParsedNode, Range } from './Node';
|
|
7
|
+
import { Pair } from './Pair';
|
|
8
|
+
import type { Scalar } from './Scalar';
|
|
9
|
+
import type { ToJSContext } from './toJS';
|
|
10
|
+
export type MapLike = Map<unknown, unknown> | Set<unknown> | Record<string | number | symbol, unknown>;
|
|
11
|
+
export declare function findPair<K = unknown, V = unknown>(items: Iterable<Pair<K, V>>, key: unknown): Pair<K, V> | undefined;
|
|
12
|
+
export declare namespace YAMLMap {
|
|
13
|
+
interface Parsed<K extends ParsedNode = ParsedNode, V extends ParsedNode | null = ParsedNode | null> extends YAMLMap<K, V> {
|
|
14
|
+
items: Pair<K, V>[];
|
|
15
|
+
range: Range;
|
|
16
|
+
srcToken?: BlockMap | FlowCollection;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export declare class YAMLMap<K = unknown, V = unknown> extends Collection {
|
|
20
|
+
static get tagName(): 'tag:yaml.org,2002:map';
|
|
21
|
+
items: Pair<K, V>[];
|
|
22
|
+
constructor(schema?: Schema);
|
|
23
|
+
/**
|
|
24
|
+
* A generic collection parsing method that can be extended
|
|
25
|
+
* to other node classes that inherit from YAMLMap
|
|
26
|
+
*/
|
|
27
|
+
static from(schema: Schema, obj: unknown, ctx: CreateNodeContext): YAMLMap;
|
|
28
|
+
/**
|
|
29
|
+
* Adds a value to the collection.
|
|
30
|
+
*
|
|
31
|
+
* @param overwrite - If not set `true`, using a key that is already in the
|
|
32
|
+
* collection will throw. Otherwise, overwrites the previous value.
|
|
33
|
+
*/
|
|
34
|
+
add(pair: Pair<K, V> | {
|
|
35
|
+
key: K;
|
|
36
|
+
value: V;
|
|
37
|
+
}, overwrite?: boolean): void;
|
|
38
|
+
delete(key: unknown): boolean;
|
|
39
|
+
get(key: unknown, keepScalar: true): Scalar<V> | undefined;
|
|
40
|
+
get(key: unknown, keepScalar?: false): V | undefined;
|
|
41
|
+
get(key: unknown, keepScalar?: boolean): V | Scalar<V> | undefined;
|
|
42
|
+
has(key: unknown): boolean;
|
|
43
|
+
set(key: K, value: V): void;
|
|
44
|
+
/**
|
|
45
|
+
* @param ctx - Conversion context, originally set in Document#toJS()
|
|
46
|
+
* @param {Class} Type - If set, forces the returned collection type
|
|
47
|
+
* @returns Instance of Type, Map, or Object
|
|
48
|
+
*/
|
|
49
|
+
toJSON<T extends MapLike = Map<unknown, unknown>>(_?: unknown, ctx?: ToJSContext, Type?: {
|
|
50
|
+
new (): T;
|
|
51
|
+
}): any;
|
|
52
|
+
toString(ctx?: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
|
|
53
|
+
}
|