@crouton-kit/crouter 0.3.33 → 0.3.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (566) hide show
  1. package/README.md +2 -2
  2. package/dist/build-root.js +3 -6
  3. package/dist/builtin-memory/crouter-development/marketplaces.md +6 -6
  4. package/dist/builtin-memory/crouter-development/plugins.md +13 -13
  5. package/dist/builtin-memory/internal/examples/imessage-assistant.md +3 -3
  6. package/dist/builtin-memory/internal/nodes-and-canvas.md +4 -4
  7. package/dist/builtin-personas/developer/PERSONA.md +1 -1
  8. package/dist/builtin-personas/orchestration-kernel.md +1 -1
  9. package/dist/builtin-personas/waiting.md +1 -1
  10. package/dist/builtin-pi-packages/pi-crtr-extensions/README.md +71 -0
  11. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/__tests__/crtr-help-gate.test.ts +41 -0
  12. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/__tests__/provider-rotation.test.ts +663 -0
  13. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/__tests__/statusline.test.ts +52 -0
  14. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/claude-plugin-commands.ts +418 -0
  15. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crouter-help.ts +87 -0
  16. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crtr-commands/filters.json +7 -0
  17. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crtr-commands/index.ts +174 -0
  18. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/crtr-help-gate.ts +408 -0
  19. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/frontmatter-rules/index.ts +442 -0
  20. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/frontmatter-rules/test.ts +119 -0
  21. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/nested-context.ts +327 -0
  22. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/provider-rotation.ts +574 -0
  23. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/statusline.ts +260 -0
  24. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/strip-skills-docs.ts +40 -0
  25. package/dist/builtin-pi-packages/pi-crtr-extensions/extensions/sysprompt-window.ts +19 -0
  26. package/dist/builtin-pi-packages/pi-crtr-extensions/lib/package.json +3 -0
  27. package/dist/builtin-pi-packages/pi-crtr-extensions/lib/subscription-state.js +1 -0
  28. package/dist/builtin-pi-packages/pi-crtr-extensions/lib/subscription-state.ts +479 -0
  29. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/LICENSE +13 -0
  30. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/README.md +172 -0
  31. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/bin.mjs +11 -0
  32. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  33. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
  34. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
  35. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
  36. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/composer.js +219 -0
  37. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
  38. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  39. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
  40. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  41. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
  42. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
  43. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
  44. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  45. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
  46. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  47. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
  48. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/Document.js +335 -0
  49. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
  50. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  51. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
  52. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  53. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/errors.js +57 -0
  54. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/index.js +17 -0
  55. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/log.js +11 -0
  56. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
  57. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  58. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  59. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  60. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  61. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  62. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  63. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
  64. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  65. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  66. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  67. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  68. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  69. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  70. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
  71. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  72. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/parse/parser.js +975 -0
  73. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/public-api.js +102 -0
  74. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
  75. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  76. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  77. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  78. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  79. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  80. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  81. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  82. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  83. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  84. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/tags.js +96 -0
  85. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
  86. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  87. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  88. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  89. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
  90. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  91. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  92. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
  93. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  94. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  95. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  96. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
  97. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
  98. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  99. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  100. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
  101. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  102. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
  103. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/util.js +11 -0
  104. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/dist/visit.js +233 -0
  105. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/index.js +5 -0
  106. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/browser/package.json +3 -0
  107. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/cli.d.ts +8 -0
  108. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/cli.mjs +201 -0
  109. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  110. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  111. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  112. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  113. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
  114. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-node.js +112 -0
  115. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  116. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  117. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/composer.d.ts +63 -0
  118. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/composer.js +224 -0
  119. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  120. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  121. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  122. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  123. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  124. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  125. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  126. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  127. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  128. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  129. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  130. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
  131. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  132. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  133. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  134. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  135. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  136. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  137. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  138. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  139. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  140. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  141. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  142. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/Document.js +337 -0
  143. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  144. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/anchors.js +76 -0
  145. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  146. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  147. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  148. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/createNode.js +90 -0
  149. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  150. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/doc/directives.js +178 -0
  151. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/errors.d.ts +21 -0
  152. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/errors.js +62 -0
  153. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/index.d.ts +25 -0
  154. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/index.js +50 -0
  155. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/log.d.ts +3 -0
  156. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/log.js +19 -0
  157. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
  158. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Alias.js +118 -0
  159. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  160. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Collection.js +151 -0
  161. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
  162. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Node.js +40 -0
  163. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
  164. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Pair.js +39 -0
  165. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
  166. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  167. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  168. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  169. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  170. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  171. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  172. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  173. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  174. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/identity.js +53 -0
  175. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
  176. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/nodes/toJS.js +39 -0
  177. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/options.d.ts +350 -0
  178. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  179. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  180. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  181. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  182. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  183. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  184. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst.d.ts +109 -0
  185. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/cst.js +112 -0
  186. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  187. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/lexer.js +723 -0
  188. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  189. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/line-counter.js +41 -0
  190. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  191. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/parse/parser.js +980 -0
  192. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/public-api.d.ts +44 -0
  193. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/public-api.js +107 -0
  194. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
  195. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/Schema.js +39 -0
  196. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  197. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/map.js +19 -0
  198. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  199. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/null.js +17 -0
  200. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  201. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/seq.js +19 -0
  202. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  203. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/common/string.js +16 -0
  204. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  205. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/bool.js +21 -0
  206. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  207. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/float.js +47 -0
  208. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  209. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/int.js +42 -0
  210. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  211. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/core/schema.js +25 -0
  212. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  213. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/json/schema.js +64 -0
  214. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  215. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/tags.d.ts +48 -0
  216. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/tags.js +99 -0
  217. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/types.d.ts +92 -0
  218. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  219. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  220. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  221. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  222. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  223. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  224. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  225. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  226. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
  227. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
  228. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
  229. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  230. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  231. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  232. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  233. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  234. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  235. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  236. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  237. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  238. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  239. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  240. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  241. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringify.js +132 -0
  242. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  243. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  244. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  245. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  246. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  247. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  248. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  249. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
  250. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  251. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  252. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  253. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  254. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/test-events.d.ts +4 -0
  255. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/test-events.js +134 -0
  256. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/util.d.ts +16 -0
  257. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/util.js +28 -0
  258. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/visit.d.ts +102 -0
  259. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/dist/visit.js +236 -0
  260. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/package.json +97 -0
  261. package/dist/builtin-pi-packages/pi-crtr-extensions/node_modules/yaml/util.js +2 -0
  262. package/dist/builtin-pi-packages/pi-crtr-extensions/package-lock.json +3385 -0
  263. package/dist/builtin-pi-packages/pi-crtr-extensions/package.json +25 -0
  264. package/dist/builtin-pi-packages/pi-mode-switch/README.md +64 -0
  265. package/dist/builtin-pi-packages/pi-mode-switch/bin/mode +40 -0
  266. package/dist/builtin-pi-packages/pi-mode-switch/extensions/index.ts +422 -0
  267. package/dist/builtin-pi-packages/pi-mode-switch/package.json +13 -0
  268. package/dist/clients/attach/__tests__/crtr-output-coverage.test.js +55 -0
  269. package/dist/clients/attach/__tests__/crtr-output-render.test.js +2340 -0
  270. package/dist/clients/attach/attach-cmd.js +826 -754
  271. package/dist/clients/attach/auth-pickers.js +2 -2
  272. package/dist/clients/attach/canvas-panels.js +1 -1
  273. package/dist/clients/attach/chat-view.d.ts +3 -2
  274. package/dist/clients/attach/chat-view.js +30 -10
  275. package/dist/clients/attach/clipboard-image.js +1 -1
  276. package/dist/clients/attach/clipboard-text.js +1 -1
  277. package/dist/clients/attach/config-load.js +1 -1
  278. package/dist/clients/attach/crtr-output-render.d.ts +48 -0
  279. package/dist/clients/attach/crtr-output-render.js +646 -0
  280. package/dist/clients/attach/extension-dialogs.js +1 -1
  281. package/dist/clients/attach/graph-overlay.js +3 -3
  282. package/dist/clients/attach/input-controller.js +1 -1
  283. package/dist/clients/attach/pickers.js +1 -1
  284. package/dist/clients/attach/slash-commands.js +5 -6
  285. package/dist/clients/attach/titled-editor.d.ts +4 -0
  286. package/dist/clients/attach/titled-editor.js +13 -1
  287. package/dist/clients/attach/view-socket.js +1 -1
  288. package/dist/clients/web/__tests__/source-cache.test.js +5 -5
  289. package/dist/clients/web/server.js +29 -5
  290. package/dist/clients/web/source-cache.js +3 -3
  291. package/dist/clients/web/web-cmd.js +7 -7
  292. package/dist/commands/canvas-issue.js +1 -1
  293. package/dist/commands/canvas-prune.js +24 -2
  294. package/dist/commands/canvas-snapshot.js +3 -0
  295. package/dist/commands/canvas-tmux-spread.js +3 -3
  296. package/dist/commands/human.js +1 -1
  297. package/dist/commands/memory/lint.js +15 -8
  298. package/dist/commands/memory/origin.d.ts +1 -0
  299. package/dist/commands/memory/origin.js +88 -0
  300. package/dist/commands/memory/shared.d.ts +8 -0
  301. package/dist/commands/memory/shared.js +22 -1
  302. package/dist/commands/memory/write.js +17 -12
  303. package/dist/commands/memory.js +4 -3
  304. package/dist/commands/node-context.js +4 -4
  305. package/dist/commands/node-snapshot.js +4 -1
  306. package/dist/commands/node.d.ts +2 -2
  307. package/dist/commands/node.js +814 -606
  308. package/dist/commands/pkg/market-inspect.d.ts +2 -1
  309. package/dist/commands/pkg/market-inspect.js +14 -32
  310. package/dist/commands/pkg/market-manage.d.ts +3 -1
  311. package/dist/commands/pkg/market-manage.js +58 -154
  312. package/dist/commands/pkg/market.js +7 -7
  313. package/dist/commands/pkg/plugin-inspect.d.ts +2 -1
  314. package/dist/commands/pkg/plugin-inspect.js +8 -24
  315. package/dist/commands/pkg/plugin-manage.d.ts +5 -1
  316. package/dist/commands/pkg/plugin-manage.js +245 -171
  317. package/dist/commands/pkg/plugin.js +6 -6
  318. package/dist/commands/pkg.js +5 -5
  319. package/dist/commands/revive.js +5 -3
  320. package/dist/commands/search/answer.js +1 -1
  321. package/dist/commands/search/contents.js +1 -1
  322. package/dist/commands/search/web.js +2 -2
  323. package/dist/commands/search.js +1 -1
  324. package/dist/commands/surface.d.ts +2 -0
  325. package/dist/commands/surface.js +43 -0
  326. package/dist/commands/sys/promptstudio.js +1 -1
  327. package/dist/commands/sys/settings.js +2 -2
  328. package/dist/commands/sys/setup-core.d.ts +88 -0
  329. package/dist/commands/sys/setup-core.js +352 -0
  330. package/dist/commands/sys/setup.d.ts +2 -0
  331. package/dist/commands/sys/setup.js +516 -0
  332. package/dist/commands/sys/sysprompt.js +3 -0
  333. package/dist/commands/sys.js +3 -2
  334. package/dist/commands/view-cycle.js +5 -5
  335. package/dist/commands/view-list.js +3 -3
  336. package/dist/commands/view-new.js +5 -5
  337. package/dist/commands/view-pick.js +6 -6
  338. package/dist/commands/view-run.js +14 -14
  339. package/dist/commands/view.js +3 -3
  340. package/dist/commands/workspace.js +10 -10
  341. package/dist/core/__tests__/boot.test.js +140 -0
  342. package/dist/core/__tests__/broker-sdk-wiring.test.js +6 -27
  343. package/dist/core/__tests__/daemon-boot.test.js +22 -0
  344. package/dist/core/__tests__/fixtures/fake-engine.js +1 -1
  345. package/dist/core/__tests__/full/broker-attach-limits.test.js +1 -1
  346. package/dist/core/__tests__/full/broker-attach-stream.test.js +1 -1
  347. package/dist/core/__tests__/full/broker-crash-teardown.test.js +10 -5
  348. package/dist/core/__tests__/full/broker-model-changed-broadcast.test.js +1 -1
  349. package/dist/core/__tests__/full/broker-navigate-tree-rewelcome.test.js +1 -1
  350. package/dist/core/__tests__/full/broker-pane-resolution.test.js +1 -1
  351. package/dist/core/__tests__/full/cascade-close.test.js +31 -18
  352. package/dist/core/__tests__/full/detach-focus.test.js +2 -2
  353. package/dist/core/__tests__/hearth-bootstrap.test.js +136 -0
  354. package/dist/core/__tests__/helpers/harness.js +1 -1
  355. package/dist/core/__tests__/live-mutation-verbs.test.js +10 -10
  356. package/dist/core/__tests__/live-mutation.test.js +8 -8
  357. package/dist/core/__tests__/migration.test.js +124 -0
  358. package/dist/core/__tests__/on-read-dedup-resume.test.js +40 -0
  359. package/dist/core/__tests__/preview-registry-sync.test.js +36 -0
  360. package/dist/core/__tests__/prune-to-limit.test.js +91 -0
  361. package/dist/core/__tests__/revive.test.js +64 -21
  362. package/dist/core/__tests__/trigger-migration.test.js +48 -0
  363. package/dist/core/__tests__/wake-bearings.test.js +23 -21
  364. package/dist/core/__tests__/wake-origin.test.js +36 -33
  365. package/dist/core/canvas/boot.d.ts +48 -0
  366. package/dist/core/canvas/boot.js +157 -0
  367. package/dist/core/canvas/canvas.d.ts +27 -1
  368. package/dist/core/canvas/canvas.js +86 -5
  369. package/dist/core/canvas/db.js +86 -1
  370. package/dist/core/canvas/index.d.ts +1 -1
  371. package/dist/core/canvas/index.js +1 -1
  372. package/dist/core/canvas/nav-model.js +1 -1
  373. package/dist/core/canvas/pid.d.ts +6 -0
  374. package/dist/core/canvas/pid.js +13 -0
  375. package/dist/core/canvas/triggers.d.ts +108 -0
  376. package/dist/core/canvas/triggers.js +320 -0
  377. package/dist/core/canvas/types.d.ts +128 -46
  378. package/dist/core/command.js +13 -4
  379. package/dist/core/hearth/__tests__/model-auth-guest.test.js +151 -0
  380. package/dist/core/hearth/config.d.ts +1 -0
  381. package/dist/core/hearth/config.js +36 -0
  382. package/dist/core/hearth/guest-env.d.ts +7 -0
  383. package/dist/core/hearth/guest-env.js +17 -1
  384. package/dist/core/hearth/model-auth-guest.d.ts +8 -0
  385. package/dist/core/hearth/model-auth-guest.js +435 -0
  386. package/dist/core/hearth/provider.d.ts +13 -6
  387. package/dist/core/hearth/providers/blaxel-bootstrap.d.ts +2 -0
  388. package/dist/core/hearth/providers/blaxel-bootstrap.js +127 -19
  389. package/dist/core/hearth/providers/blaxel-home.d.ts +8 -4
  390. package/dist/core/hearth/providers/blaxel-home.js +85 -75
  391. package/dist/core/hearth/providers/blaxel.d.ts +5 -0
  392. package/dist/core/hearth/providers/blaxel.js +86 -12
  393. package/dist/core/hearth/providers/types.d.ts +6 -1
  394. package/dist/core/hearth/registry.js +2 -1
  395. package/dist/core/hearth/types.d.ts +35 -0
  396. package/dist/core/help.d.ts +16 -0
  397. package/dist/core/help.js +2 -0
  398. package/dist/core/memory-resolver.d.ts +8 -8
  399. package/dist/core/memory-resolver.js +58 -26
  400. package/dist/core/preview-registry.d.ts +25 -0
  401. package/dist/core/preview-registry.js +2047 -0
  402. package/dist/core/resolver.d.ts +1 -0
  403. package/dist/core/resolver.js +23 -16
  404. package/dist/core/runtime/bearings.d.ts +11 -10
  405. package/dist/core/runtime/bearings.js +8 -8
  406. package/dist/core/runtime/broker-protocol.d.ts +2 -2
  407. package/dist/core/runtime/broker-protocol.js +2 -2
  408. package/dist/core/runtime/close.js +2 -2
  409. package/dist/core/runtime/kickoff.js +1 -1
  410. package/dist/core/runtime/launch.d.ts +9 -3
  411. package/dist/core/runtime/launch.js +17 -9
  412. package/dist/core/runtime/lifecycle.js +7 -7
  413. package/dist/core/runtime/model-swap.js +1 -1
  414. package/dist/core/runtime/placement.d.ts +5 -5
  415. package/dist/core/runtime/placement.js +10 -10
  416. package/dist/core/runtime/recycle.js +7 -7
  417. package/dist/core/runtime/reset.d.ts +1 -1
  418. package/dist/core/runtime/reset.js +3 -3
  419. package/dist/core/runtime/revive-all.d.ts +5 -2
  420. package/dist/core/runtime/revive-all.js +5 -2
  421. package/dist/core/runtime/revive.d.ts +15 -8
  422. package/dist/core/runtime/revive.js +52 -16
  423. package/dist/core/runtime/spawn.d.ts +1 -1
  424. package/dist/core/runtime/spawn.js +7 -7
  425. package/dist/core/runtime/stop-guard.js +5 -5
  426. package/dist/core/runtime/surface-bg.js +1 -1
  427. package/dist/core/runtime/tmux.d.ts +1 -1
  428. package/dist/core/runtime/tmux.js +4 -4
  429. package/dist/core/scope.d.ts +9 -0
  430. package/dist/core/scope.js +37 -15
  431. package/dist/core/substrate/on-read.js +23 -21
  432. package/dist/core/substrate/render.js +3 -3
  433. package/dist/core/view/loader.js +2 -2
  434. package/dist/core/wake.d.ts +2 -2
  435. package/dist/core/wake.js +7 -7
  436. package/dist/daemon/__tests__/predicate-eval.test.js +109 -0
  437. package/dist/daemon/crtrd.js +222 -103
  438. package/dist/daemon/predicate-eval.d.ts +52 -0
  439. package/dist/daemon/predicate-eval.js +248 -0
  440. package/dist/hearth/control-plane/__tests__/node-message.test.js +60 -0
  441. package/dist/hearth/control-plane/__tests__/rate-limit-recurrence.test.js +49 -0
  442. package/dist/hearth/control-plane/__tests__/relay-security.test.js +314 -0
  443. package/dist/hearth/control-plane/__tests__/scheduler-scan-loop.test.js +133 -0
  444. package/dist/hearth/control-plane/__tests__/trigger-delivery.test.js +170 -0
  445. package/dist/hearth/control-plane/__tests__/webhook-ingress.test.js +167 -0
  446. package/dist/hearth/control-plane/config.d.ts +21 -0
  447. package/dist/hearth/control-plane/config.js +77 -0
  448. package/dist/hearth/control-plane/db.d.ts +30 -0
  449. package/dist/hearth/control-plane/db.js +534 -0
  450. package/dist/hearth/control-plane/ingress/rate-limit.d.ts +24 -0
  451. package/dist/hearth/control-plane/ingress/rate-limit.js +100 -0
  452. package/dist/hearth/control-plane/ingress/route-store.d.ts +31 -0
  453. package/dist/hearth/control-plane/ingress/route-store.js +61 -0
  454. package/dist/hearth/control-plane/ingress/webhook-delivery-store.d.ts +41 -0
  455. package/dist/hearth/control-plane/ingress/webhook-delivery-store.js +69 -0
  456. package/dist/hearth/control-plane/ingress/webhook-route.d.ts +55 -0
  457. package/dist/hearth/control-plane/ingress/webhook-route.js +285 -0
  458. package/dist/hearth/control-plane/main.js +88 -0
  459. package/dist/hearth/control-plane/node-message.d.ts +31 -0
  460. package/dist/hearth/control-plane/node-message.js +98 -0
  461. package/dist/hearth/control-plane/register.d.ts +15 -0
  462. package/dist/hearth/control-plane/register.js +34 -0
  463. package/dist/hearth/control-plane/registry.d.ts +17 -0
  464. package/dist/hearth/control-plane/registry.js +161 -0
  465. package/dist/hearth/control-plane/relay.d.ts +40 -0
  466. package/dist/hearth/control-plane/relay.js +642 -0
  467. package/dist/hearth/control-plane/scheduler/fire-store.d.ts +36 -0
  468. package/dist/hearth/control-plane/scheduler/fire-store.js +73 -0
  469. package/dist/hearth/control-plane/scheduler/recurrence.d.ts +7 -0
  470. package/dist/hearth/control-plane/scheduler/recurrence.js +58 -0
  471. package/dist/hearth/control-plane/scheduler/scan-loop.d.ts +38 -0
  472. package/dist/hearth/control-plane/scheduler/scan-loop.js +138 -0
  473. package/dist/hearth/control-plane/scheduler/schedule-store.d.ts +32 -0
  474. package/dist/hearth/control-plane/scheduler/schedule-store.js +66 -0
  475. package/dist/hearth/control-plane/secrets.d.ts +17 -0
  476. package/dist/hearth/control-plane/secrets.js +113 -0
  477. package/dist/hearth/control-plane/server.d.ts +27 -0
  478. package/dist/hearth/control-plane/server.js +346 -0
  479. package/dist/hearth/control-plane/session.d.ts +68 -0
  480. package/dist/hearth/control-plane/session.js +273 -0
  481. package/dist/hearth/control-plane/triggers/acl.d.ts +14 -0
  482. package/dist/hearth/control-plane/triggers/acl.js +52 -0
  483. package/dist/hearth/control-plane/triggers/audit-store.d.ts +38 -0
  484. package/dist/hearth/control-plane/triggers/audit-store.js +79 -0
  485. package/dist/hearth/control-plane/triggers/deliver.d.ts +43 -0
  486. package/dist/hearth/control-plane/triggers/deliver.js +76 -0
  487. package/dist/hearth/control-plane/triggers/envelope.d.ts +29 -0
  488. package/dist/hearth/control-plane/triggers/envelope.js +38 -0
  489. package/dist/hearth/control-plane/types.d.ts +66 -0
  490. package/dist/hearth/control-plane/wake.d.ts +80 -0
  491. package/dist/hearth/control-plane/wake.js +312 -0
  492. package/dist/hearth/wake-proxy/__tests__/guest-source.test.js +2 -2
  493. package/dist/hearth/wake-proxy/home.d.ts +2 -8
  494. package/dist/hearth/wake-proxy/home.js +48 -12
  495. package/dist/pi-extensions/canvas-doc-substrate.js +28 -2
  496. package/dist/pi-extensions/canvas-nav.js +1 -1
  497. package/dist/prompts/view.js +7 -8
  498. package/dist/types.js +4 -4
  499. package/dist/web-client/assets/{index-D36PNBj4.js → index-BRKxe-hy.js} +2 -2
  500. package/dist/web-client/index.html +1 -1
  501. package/package.json +12 -8
  502. package/scripts/postinstall.mjs +8 -0
  503. package/dist/clients/attach/__tests__/action-parity.test.js +0 -48
  504. package/dist/clients/attach/__tests__/autocomplete-and-bash-mode.test.js +0 -96
  505. package/dist/clients/attach/__tests__/bash-bang-routing.test.js +0 -58
  506. package/dist/clients/attach/__tests__/bundle-pi-tui-dedup.test.js +0 -56
  507. package/dist/clients/attach/__tests__/clipboard-image.test.js +0 -76
  508. package/dist/clients/attach/__tests__/editor-newline.test.js +0 -82
  509. package/dist/clients/attach/__tests__/git-info.test.js +0 -31
  510. package/dist/clients/attach/__tests__/onrequest-wired.test.js +0 -20
  511. package/dist/clients/attach/__tests__/reconnect-giveup.test.js +0 -30
  512. package/dist/clients/attach/__tests__/slash-quit-copy.test.js +0 -42
  513. package/dist/clients/attach/__tests__/titled-editor.test.js +0 -60
  514. package/dist/commands/memory/__tests__/lint-schema.test.js +0 -52
  515. package/dist/core/__tests__/argv-parser.test.js +0 -217
  516. package/dist/core/__tests__/artifact-paths.test.js +0 -44
  517. package/dist/core/__tests__/draw-style.test.js +0 -258
  518. package/dist/core/__tests__/editor-label.test.js +0 -26
  519. package/dist/core/__tests__/fault-marker.test.js +0 -112
  520. package/dist/core/__tests__/fault-retry-rewind.test.d.ts +0 -1
  521. package/dist/core/__tests__/fault-retry-rewind.test.js +0 -123
  522. package/dist/core/__tests__/frame-decoder-perf.test.d.ts +0 -1
  523. package/dist/core/__tests__/frame-decoder-perf.test.js +0 -224
  524. package/dist/core/__tests__/keystone.test.d.ts +0 -1
  525. package/dist/core/__tests__/keystone.test.js +0 -185
  526. package/dist/core/__tests__/listing-completeness.test.d.ts +0 -1
  527. package/dist/core/__tests__/listing-completeness.test.js +0 -31
  528. package/dist/core/__tests__/memory-resolver.test.d.ts +0 -1
  529. package/dist/core/__tests__/memory-resolver.test.js +0 -119
  530. package/dist/core/__tests__/memory.test.d.ts +0 -1
  531. package/dist/core/__tests__/memory.test.js +0 -60
  532. package/dist/core/__tests__/model-ladders.test.d.ts +0 -1
  533. package/dist/core/__tests__/model-ladders.test.js +0 -160
  534. package/dist/core/__tests__/node-env.test.d.ts +0 -1
  535. package/dist/core/__tests__/node-env.test.js +0 -26
  536. package/dist/core/__tests__/pane-column.test.d.ts +0 -1
  537. package/dist/core/__tests__/pane-column.test.js +0 -153
  538. package/dist/core/__tests__/persona-compose.test.d.ts +0 -1
  539. package/dist/core/__tests__/persona-compose.test.js +0 -53
  540. package/dist/core/__tests__/persona-subkind.test.d.ts +0 -1
  541. package/dist/core/__tests__/persona-subkind.test.js +0 -65
  542. package/dist/core/__tests__/persona.test.d.ts +0 -1
  543. package/dist/core/__tests__/persona.test.js +0 -107
  544. package/dist/core/__tests__/unknown-path.test.d.ts +0 -1
  545. package/dist/core/__tests__/unknown-path.test.js +0 -58
  546. package/dist/core/canvas/wakeups.d.ts +0 -76
  547. package/dist/core/canvas/wakeups.js +0 -185
  548. package/dist/hearth/wake-proxy/__tests__/source-bridge-gate.test.d.ts +0 -1
  549. package/dist/hearth/wake-proxy/__tests__/source-bridge-gate.test.js +0 -455
  550. /package/dist/clients/attach/__tests__/{action-parity.test.d.ts → crtr-output-coverage.test.d.ts} +0 -0
  551. /package/dist/clients/attach/__tests__/{autocomplete-and-bash-mode.test.d.ts → crtr-output-render.test.d.ts} +0 -0
  552. /package/dist/{clients/attach/__tests__/bash-bang-routing.test.d.ts → core/__tests__/boot.test.d.ts} +0 -0
  553. /package/dist/{clients/attach/__tests__/bundle-pi-tui-dedup.test.d.ts → core/__tests__/hearth-bootstrap.test.d.ts} +0 -0
  554. /package/dist/{clients/attach/__tests__/clipboard-image.test.d.ts → core/__tests__/preview-registry-sync.test.d.ts} +0 -0
  555. /package/dist/{clients/attach/__tests__/editor-newline.test.d.ts → core/__tests__/prune-to-limit.test.d.ts} +0 -0
  556. /package/dist/{clients/attach/__tests__/git-info.test.d.ts → core/__tests__/trigger-migration.test.d.ts} +0 -0
  557. /package/dist/{clients/attach/__tests__/onrequest-wired.test.d.ts → core/hearth/__tests__/model-auth-guest.test.d.ts} +0 -0
  558. /package/dist/{clients/attach/__tests__/reconnect-giveup.test.d.ts → daemon/__tests__/predicate-eval.test.d.ts} +0 -0
  559. /package/dist/{clients/attach/__tests__/slash-quit-copy.test.d.ts → hearth/control-plane/__tests__/node-message.test.d.ts} +0 -0
  560. /package/dist/{clients/attach/__tests__/titled-editor.test.d.ts → hearth/control-plane/__tests__/rate-limit-recurrence.test.d.ts} +0 -0
  561. /package/dist/{commands/memory/__tests__/lint-schema.test.d.ts → hearth/control-plane/__tests__/relay-security.test.d.ts} +0 -0
  562. /package/dist/{core/__tests__/argv-parser.test.d.ts → hearth/control-plane/__tests__/scheduler-scan-loop.test.d.ts} +0 -0
  563. /package/dist/{core/__tests__/artifact-paths.test.d.ts → hearth/control-plane/__tests__/trigger-delivery.test.d.ts} +0 -0
  564. /package/dist/{core/__tests__/draw-style.test.d.ts → hearth/control-plane/__tests__/webhook-ingress.test.d.ts} +0 -0
  565. /package/dist/{core/__tests__/editor-label.test.d.ts → hearth/control-plane/main.d.ts} +0 -0
  566. /package/dist/{core/__tests__/fault-marker.test.d.ts → hearth/control-plane/types.js} +0 -0
@@ -0,0 +1,3385 @@
1
+ {
2
+ "name": "pi-personal-extensions",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "pi-personal-extensions",
9
+ "version": "0.1.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "yaml": "^2.9.0"
13
+ },
14
+ "devDependencies": {
15
+ "@earendil-works/pi-ai": "^0.79.6"
16
+ },
17
+ "peerDependencies": {
18
+ "@earendil-works/pi-coding-agent": "*"
19
+ }
20
+ },
21
+ "node_modules/@anthropic-ai/sdk": {
22
+ "version": "0.91.1",
23
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.91.1.tgz",
24
+ "integrity": "sha512-LAmu761tSN9r66ixvmciswUj/ZC+1Q4iAfpedTfSVLeswRwnY3n2Nb6Tsk+cLPP28aLOPWeMgIuTuCcMC6W/iw==",
25
+ "dev": true,
26
+ "license": "MIT",
27
+ "dependencies": {
28
+ "json-schema-to-ts": "^3.1.1"
29
+ },
30
+ "bin": {
31
+ "anthropic-ai-sdk": "bin/cli"
32
+ },
33
+ "peerDependencies": {
34
+ "zod": "^3.25.0 || ^4.0.0"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "zod": {
38
+ "optional": true
39
+ }
40
+ }
41
+ },
42
+ "node_modules/@aws-crypto/crc32": {
43
+ "version": "5.2.0",
44
+ "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
45
+ "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
46
+ "dev": true,
47
+ "license": "Apache-2.0",
48
+ "dependencies": {
49
+ "@aws-crypto/util": "^5.2.0",
50
+ "@aws-sdk/types": "^3.222.0",
51
+ "tslib": "^2.6.2"
52
+ },
53
+ "engines": {
54
+ "node": ">=16.0.0"
55
+ }
56
+ },
57
+ "node_modules/@aws-crypto/sha256-browser": {
58
+ "version": "5.2.0",
59
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
60
+ "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
61
+ "dev": true,
62
+ "license": "Apache-2.0",
63
+ "dependencies": {
64
+ "@aws-crypto/sha256-js": "^5.2.0",
65
+ "@aws-crypto/supports-web-crypto": "^5.2.0",
66
+ "@aws-crypto/util": "^5.2.0",
67
+ "@aws-sdk/types": "^3.222.0",
68
+ "@aws-sdk/util-locate-window": "^3.0.0",
69
+ "@smithy/util-utf8": "^2.0.0",
70
+ "tslib": "^2.6.2"
71
+ }
72
+ },
73
+ "node_modules/@aws-crypto/sha256-js": {
74
+ "version": "5.2.0",
75
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
76
+ "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
77
+ "dev": true,
78
+ "license": "Apache-2.0",
79
+ "dependencies": {
80
+ "@aws-crypto/util": "^5.2.0",
81
+ "@aws-sdk/types": "^3.222.0",
82
+ "tslib": "^2.6.2"
83
+ },
84
+ "engines": {
85
+ "node": ">=16.0.0"
86
+ }
87
+ },
88
+ "node_modules/@aws-crypto/supports-web-crypto": {
89
+ "version": "5.2.0",
90
+ "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
91
+ "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
92
+ "dev": true,
93
+ "license": "Apache-2.0",
94
+ "dependencies": {
95
+ "tslib": "^2.6.2"
96
+ }
97
+ },
98
+ "node_modules/@aws-crypto/util": {
99
+ "version": "5.2.0",
100
+ "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
101
+ "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
102
+ "dev": true,
103
+ "license": "Apache-2.0",
104
+ "dependencies": {
105
+ "@aws-sdk/types": "^3.222.0",
106
+ "@smithy/util-utf8": "^2.0.0",
107
+ "tslib": "^2.6.2"
108
+ }
109
+ },
110
+ "node_modules/@aws-sdk/client-bedrock-runtime": {
111
+ "version": "3.1048.0",
112
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.1048.0.tgz",
113
+ "integrity": "sha512-u+NT61JZEkRFtpL0CAw1N1dwxnaLgwVXQl/zjJxTGgLyS/jTIdg2SdoEoCTHxgDyCnqa1HEi9QOoE9/pYRNpOQ==",
114
+ "dev": true,
115
+ "license": "Apache-2.0",
116
+ "dependencies": {
117
+ "@aws-crypto/sha256-browser": "5.2.0",
118
+ "@aws-crypto/sha256-js": "5.2.0",
119
+ "@aws-sdk/core": "^3.974.11",
120
+ "@aws-sdk/credential-provider-node": "^3.972.42",
121
+ "@aws-sdk/eventstream-handler-node": "^3.972.16",
122
+ "@aws-sdk/middleware-eventstream": "^3.972.12",
123
+ "@aws-sdk/middleware-websocket": "^3.972.19",
124
+ "@aws-sdk/token-providers": "3.1048.0",
125
+ "@aws-sdk/types": "^3.973.8",
126
+ "@smithy/core": "^3.24.2",
127
+ "@smithy/fetch-http-handler": "^5.4.2",
128
+ "@smithy/node-http-handler": "^4.7.2",
129
+ "@smithy/types": "^4.14.1",
130
+ "tslib": "^2.6.2"
131
+ },
132
+ "engines": {
133
+ "node": ">=20.0.0"
134
+ }
135
+ },
136
+ "node_modules/@aws-sdk/core": {
137
+ "version": "3.974.21",
138
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.974.21.tgz",
139
+ "integrity": "sha512-P5JAHvn4dTi96UsAGS67LVOqqpUNNRhnfFXqzCYtdBIGZtqBue4CXvRr9YenOO7PALj/Pn8uuyw53FBCiCYw8w==",
140
+ "dev": true,
141
+ "license": "Apache-2.0",
142
+ "dependencies": {
143
+ "@aws-sdk/types": "^3.973.13",
144
+ "@aws-sdk/xml-builder": "^3.972.30",
145
+ "@aws/lambda-invoke-store": "^0.2.2",
146
+ "@smithy/core": "^3.24.6",
147
+ "@smithy/signature-v4": "^5.4.6",
148
+ "@smithy/types": "^4.14.3",
149
+ "bowser": "^2.11.0",
150
+ "tslib": "^2.6.2"
151
+ },
152
+ "engines": {
153
+ "node": ">=20.0.0"
154
+ }
155
+ },
156
+ "node_modules/@aws-sdk/credential-provider-env": {
157
+ "version": "3.972.47",
158
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.47.tgz",
159
+ "integrity": "sha512-3YoPwJczcc+MtX2xxXaYaOOWO6xKUJr1ZIIDIFuninr51BYONVVcF/CP8K2xfVRC/PztJjqKWxNGFH7BWQAw1Q==",
160
+ "dev": true,
161
+ "license": "Apache-2.0",
162
+ "dependencies": {
163
+ "@aws-sdk/core": "^3.974.21",
164
+ "@aws-sdk/types": "^3.973.13",
165
+ "@smithy/core": "^3.24.6",
166
+ "@smithy/types": "^4.14.3",
167
+ "tslib": "^2.6.2"
168
+ },
169
+ "engines": {
170
+ "node": ">=20.0.0"
171
+ }
172
+ },
173
+ "node_modules/@aws-sdk/credential-provider-http": {
174
+ "version": "3.972.49",
175
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.49.tgz",
176
+ "integrity": "sha512-2UtGUPy+x3lqyceHrtC1uEuVxBZbDalPF6KAFqBwYgm4edWdBrZKNnCqzDs7KynWUvEC6mrR+ojRk+ZgQz9C2w==",
177
+ "dev": true,
178
+ "license": "Apache-2.0",
179
+ "dependencies": {
180
+ "@aws-sdk/core": "^3.974.21",
181
+ "@aws-sdk/types": "^3.973.13",
182
+ "@smithy/core": "^3.24.6",
183
+ "@smithy/fetch-http-handler": "^5.4.6",
184
+ "@smithy/node-http-handler": "^4.7.6",
185
+ "@smithy/types": "^4.14.3",
186
+ "tslib": "^2.6.2"
187
+ },
188
+ "engines": {
189
+ "node": ">=20.0.0"
190
+ }
191
+ },
192
+ "node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler": {
193
+ "version": "4.8.0",
194
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.8.0.tgz",
195
+ "integrity": "sha512-Mq7TNt/VhlEWiYRLQGpzUWeUxh899UGpjKh7Ru0WVIDIjnE+cTRAn0NYlFQ6bWfsQnKnpCbWJj86HzmcG0qEdg==",
196
+ "dev": true,
197
+ "license": "Apache-2.0",
198
+ "dependencies": {
199
+ "@smithy/core": "^3.25.0",
200
+ "@smithy/types": "^4.15.0",
201
+ "tslib": "^2.6.2"
202
+ },
203
+ "engines": {
204
+ "node": ">=18.0.0"
205
+ }
206
+ },
207
+ "node_modules/@aws-sdk/credential-provider-ini": {
208
+ "version": "3.972.54",
209
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.54.tgz",
210
+ "integrity": "sha512-Hx4gO4YRjFwitf3MVl3cDwYe1aryJthC4txVl9b+JAURovA50M2ywf9r8j1E/Q6SCTPT4qQpjOAbKYIC9CG+Vw==",
211
+ "dev": true,
212
+ "license": "Apache-2.0",
213
+ "dependencies": {
214
+ "@aws-sdk/core": "^3.974.21",
215
+ "@aws-sdk/credential-provider-env": "^3.972.47",
216
+ "@aws-sdk/credential-provider-http": "^3.972.49",
217
+ "@aws-sdk/credential-provider-login": "^3.972.53",
218
+ "@aws-sdk/credential-provider-process": "^3.972.47",
219
+ "@aws-sdk/credential-provider-sso": "^3.972.53",
220
+ "@aws-sdk/credential-provider-web-identity": "^3.972.53",
221
+ "@aws-sdk/nested-clients": "^3.997.21",
222
+ "@aws-sdk/types": "^3.973.13",
223
+ "@smithy/core": "^3.24.6",
224
+ "@smithy/credential-provider-imds": "^4.3.7",
225
+ "@smithy/types": "^4.14.3",
226
+ "tslib": "^2.6.2"
227
+ },
228
+ "engines": {
229
+ "node": ">=20.0.0"
230
+ }
231
+ },
232
+ "node_modules/@aws-sdk/credential-provider-login": {
233
+ "version": "3.972.53",
234
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.53.tgz",
235
+ "integrity": "sha512-+71sluhkgPqdhbbD3UDwUpj24GCkng9HQx6z7qoBFb8dwkF4ktpOcVKDeHpgg8PvBgLYwAnUYLTEGRC/PniCiQ==",
236
+ "dev": true,
237
+ "license": "Apache-2.0",
238
+ "dependencies": {
239
+ "@aws-sdk/core": "^3.974.21",
240
+ "@aws-sdk/nested-clients": "^3.997.21",
241
+ "@aws-sdk/types": "^3.973.13",
242
+ "@smithy/core": "^3.24.6",
243
+ "@smithy/types": "^4.14.3",
244
+ "tslib": "^2.6.2"
245
+ },
246
+ "engines": {
247
+ "node": ">=20.0.0"
248
+ }
249
+ },
250
+ "node_modules/@aws-sdk/credential-provider-node": {
251
+ "version": "3.972.56",
252
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.56.tgz",
253
+ "integrity": "sha512-iI+4o0dvQQ4NHel4FMDiFy5q2gaU/ryLK3niOsoPccAt9WLFRkV4XTYPWRr9XvmBUqEzXG73S4p/8gm0Lu/W3A==",
254
+ "dev": true,
255
+ "license": "Apache-2.0",
256
+ "dependencies": {
257
+ "@aws-sdk/credential-provider-env": "^3.972.47",
258
+ "@aws-sdk/credential-provider-http": "^3.972.49",
259
+ "@aws-sdk/credential-provider-ini": "^3.972.54",
260
+ "@aws-sdk/credential-provider-process": "^3.972.47",
261
+ "@aws-sdk/credential-provider-sso": "^3.972.53",
262
+ "@aws-sdk/credential-provider-web-identity": "^3.972.53",
263
+ "@aws-sdk/types": "^3.973.13",
264
+ "@smithy/core": "^3.24.6",
265
+ "@smithy/credential-provider-imds": "^4.3.7",
266
+ "@smithy/types": "^4.14.3",
267
+ "tslib": "^2.6.2"
268
+ },
269
+ "engines": {
270
+ "node": ">=20.0.0"
271
+ }
272
+ },
273
+ "node_modules/@aws-sdk/credential-provider-process": {
274
+ "version": "3.972.47",
275
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.47.tgz",
276
+ "integrity": "sha512-tAizPm9IFo/PHn06c+LQJlzfY2AGOlyF0CUljFejrU6LcZBjnk8pmbZK3/xoIDdnIzjEdbClfvY3mXfr818ZEg==",
277
+ "dev": true,
278
+ "license": "Apache-2.0",
279
+ "dependencies": {
280
+ "@aws-sdk/core": "^3.974.21",
281
+ "@aws-sdk/types": "^3.973.13",
282
+ "@smithy/core": "^3.24.6",
283
+ "@smithy/types": "^4.14.3",
284
+ "tslib": "^2.6.2"
285
+ },
286
+ "engines": {
287
+ "node": ">=20.0.0"
288
+ }
289
+ },
290
+ "node_modules/@aws-sdk/credential-provider-sso": {
291
+ "version": "3.972.53",
292
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.53.tgz",
293
+ "integrity": "sha512-pUXE3fu4tfEDV8BksIgf4dXvuIH10FhwHMl/wu8rBD5T1sMpryQWFVitH3kdPS90wlgrGYJQ/meQTSPacyZfeg==",
294
+ "dev": true,
295
+ "license": "Apache-2.0",
296
+ "dependencies": {
297
+ "@aws-sdk/core": "^3.974.21",
298
+ "@aws-sdk/nested-clients": "^3.997.21",
299
+ "@aws-sdk/token-providers": "3.1069.0",
300
+ "@aws-sdk/types": "^3.973.13",
301
+ "@smithy/core": "^3.24.6",
302
+ "@smithy/types": "^4.14.3",
303
+ "tslib": "^2.6.2"
304
+ },
305
+ "engines": {
306
+ "node": ">=20.0.0"
307
+ }
308
+ },
309
+ "node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": {
310
+ "version": "3.1069.0",
311
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1069.0.tgz",
312
+ "integrity": "sha512-ks4X+kngC3PA5howV7Qu1TgG4bfC4jPykKdvw3nmBSXR9yZxRJouBholFSNQ5kY3L+Fgwyw+LCjzQmNi+KR91g==",
313
+ "dev": true,
314
+ "license": "Apache-2.0",
315
+ "dependencies": {
316
+ "@aws-sdk/core": "^3.974.21",
317
+ "@aws-sdk/nested-clients": "^3.997.21",
318
+ "@aws-sdk/types": "^3.973.13",
319
+ "@smithy/core": "^3.24.6",
320
+ "@smithy/types": "^4.14.3",
321
+ "tslib": "^2.6.2"
322
+ },
323
+ "engines": {
324
+ "node": ">=20.0.0"
325
+ }
326
+ },
327
+ "node_modules/@aws-sdk/credential-provider-web-identity": {
328
+ "version": "3.972.53",
329
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.53.tgz",
330
+ "integrity": "sha512-JmMGlhVvSj8uSG9CpeDkJAXT35H89tc6v84iMgEIE75q4yp1MKVVKvopv6Gg28HJIR7hMNkojRF8H2m5W44wyg==",
331
+ "dev": true,
332
+ "license": "Apache-2.0",
333
+ "dependencies": {
334
+ "@aws-sdk/core": "^3.974.21",
335
+ "@aws-sdk/nested-clients": "^3.997.21",
336
+ "@aws-sdk/types": "^3.973.13",
337
+ "@smithy/core": "^3.24.6",
338
+ "@smithy/types": "^4.14.3",
339
+ "tslib": "^2.6.2"
340
+ },
341
+ "engines": {
342
+ "node": ">=20.0.0"
343
+ }
344
+ },
345
+ "node_modules/@aws-sdk/eventstream-handler-node": {
346
+ "version": "3.972.22",
347
+ "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.22.tgz",
348
+ "integrity": "sha512-tqPJv0dz4+O0hWGm1a6YekcMZyPhDFs/zH73Von7icaVT5n0Jqvm86typ3jRrG+qoUdPhALOnboRLTmnWQTlYQ==",
349
+ "dev": true,
350
+ "license": "Apache-2.0",
351
+ "dependencies": {
352
+ "@aws-sdk/types": "^3.973.13",
353
+ "@smithy/core": "^3.24.6",
354
+ "@smithy/types": "^4.14.3",
355
+ "tslib": "^2.6.2"
356
+ },
357
+ "engines": {
358
+ "node": ">=20.0.0"
359
+ }
360
+ },
361
+ "node_modules/@aws-sdk/middleware-eventstream": {
362
+ "version": "3.972.18",
363
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.18.tgz",
364
+ "integrity": "sha512-OHpk8YoZi3yexPq8aFt1vN1IxA2zLKvsIR5GpWYylX/ve6kQmY7wxHNSFy/D3t2apMZ16rs76Co4dJWcDyIk3A==",
365
+ "dev": true,
366
+ "license": "Apache-2.0",
367
+ "dependencies": {
368
+ "@aws-sdk/types": "^3.973.13",
369
+ "@smithy/core": "^3.24.6",
370
+ "@smithy/types": "^4.14.3",
371
+ "tslib": "^2.6.2"
372
+ },
373
+ "engines": {
374
+ "node": ">=20.0.0"
375
+ }
376
+ },
377
+ "node_modules/@aws-sdk/middleware-websocket": {
378
+ "version": "3.972.29",
379
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.29.tgz",
380
+ "integrity": "sha512-Agv95NCgYyvuYUXt2PcFcOMrKCkhBFPhoH+nVMQh85RcXSCQrhAa4475plBOeomCihP26vKHT5KinVQT3iD14w==",
381
+ "dev": true,
382
+ "license": "Apache-2.0",
383
+ "dependencies": {
384
+ "@aws-sdk/core": "^3.974.21",
385
+ "@aws-sdk/types": "^3.973.13",
386
+ "@smithy/core": "^3.24.6",
387
+ "@smithy/fetch-http-handler": "^5.4.6",
388
+ "@smithy/signature-v4": "^5.4.6",
389
+ "@smithy/types": "^4.14.3",
390
+ "tslib": "^2.6.2"
391
+ },
392
+ "engines": {
393
+ "node": ">= 14.0.0"
394
+ }
395
+ },
396
+ "node_modules/@aws-sdk/nested-clients": {
397
+ "version": "3.997.21",
398
+ "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.21.tgz",
399
+ "integrity": "sha512-eC7Vl7Qom/BGhZjG9GEqPwdQ/fk45hg1t5LP4EUxG5d1fdshLbaxCiwh/tszUzDX/4mW40mu2QsbeJJRPBbqUw==",
400
+ "dev": true,
401
+ "license": "Apache-2.0",
402
+ "dependencies": {
403
+ "@aws-crypto/sha256-browser": "5.2.0",
404
+ "@aws-crypto/sha256-js": "5.2.0",
405
+ "@aws-sdk/core": "^3.974.21",
406
+ "@aws-sdk/signature-v4-multi-region": "^3.996.35",
407
+ "@aws-sdk/types": "^3.973.13",
408
+ "@smithy/core": "^3.24.6",
409
+ "@smithy/fetch-http-handler": "^5.4.6",
410
+ "@smithy/node-http-handler": "^4.7.6",
411
+ "@smithy/types": "^4.14.3",
412
+ "tslib": "^2.6.2"
413
+ },
414
+ "engines": {
415
+ "node": ">=20.0.0"
416
+ }
417
+ },
418
+ "node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler": {
419
+ "version": "4.8.0",
420
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.8.0.tgz",
421
+ "integrity": "sha512-Mq7TNt/VhlEWiYRLQGpzUWeUxh899UGpjKh7Ru0WVIDIjnE+cTRAn0NYlFQ6bWfsQnKnpCbWJj86HzmcG0qEdg==",
422
+ "dev": true,
423
+ "license": "Apache-2.0",
424
+ "dependencies": {
425
+ "@smithy/core": "^3.25.0",
426
+ "@smithy/types": "^4.15.0",
427
+ "tslib": "^2.6.2"
428
+ },
429
+ "engines": {
430
+ "node": ">=18.0.0"
431
+ }
432
+ },
433
+ "node_modules/@aws-sdk/signature-v4-multi-region": {
434
+ "version": "3.996.35",
435
+ "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.35.tgz",
436
+ "integrity": "sha512-6L/VWs+Wch2stHemCGTmUNqKLMzURxQDK5boNG3Jn3kAOp71meDUuS5sbObpEvFxHDq0uWeSLFDNSYsjNt+Dlg==",
437
+ "dev": true,
438
+ "license": "Apache-2.0",
439
+ "dependencies": {
440
+ "@aws-sdk/types": "^3.973.13",
441
+ "@smithy/signature-v4": "^5.4.6",
442
+ "@smithy/types": "^4.14.3",
443
+ "tslib": "^2.6.2"
444
+ },
445
+ "engines": {
446
+ "node": ">=20.0.0"
447
+ }
448
+ },
449
+ "node_modules/@aws-sdk/token-providers": {
450
+ "version": "3.1048.0",
451
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1048.0.tgz",
452
+ "integrity": "sha512-k0y/GcuesuSfWyUM0WamrGyeZmltRYaPbHO82UDA6mZ/doB+FOHKutikPAtSXMn/hDz970cF+iRuuiYO9VEbAA==",
453
+ "dev": true,
454
+ "license": "Apache-2.0",
455
+ "dependencies": {
456
+ "@aws-sdk/core": "^3.974.11",
457
+ "@aws-sdk/nested-clients": "^3.997.9",
458
+ "@aws-sdk/types": "^3.973.8",
459
+ "@smithy/core": "^3.24.2",
460
+ "@smithy/types": "^4.14.1",
461
+ "tslib": "^2.6.2"
462
+ },
463
+ "engines": {
464
+ "node": ">=20.0.0"
465
+ }
466
+ },
467
+ "node_modules/@aws-sdk/types": {
468
+ "version": "3.973.13",
469
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.13.tgz",
470
+ "integrity": "sha512-pEHZqRkAlHfnfAU9tK+WpKv/gBNjGJrHMgA3A0iYRGyswBS2t0pfez+lWlwktb3Bqa0ovh7w/QJTFwp3fDxLNg==",
471
+ "dev": true,
472
+ "license": "Apache-2.0",
473
+ "dependencies": {
474
+ "@smithy/types": "^4.14.3",
475
+ "tslib": "^2.6.2"
476
+ },
477
+ "engines": {
478
+ "node": ">=20.0.0"
479
+ }
480
+ },
481
+ "node_modules/@aws-sdk/util-locate-window": {
482
+ "version": "3.965.8",
483
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.8.tgz",
484
+ "integrity": "sha512-uUbMs1cBZPafD0ohUj6EwNf0fPZ534NvBxHox4hjX+0Rxq5paSYUem7+hi833pYrzrcnBATKIYpR02MDXT5M9g==",
485
+ "dev": true,
486
+ "license": "Apache-2.0",
487
+ "dependencies": {
488
+ "tslib": "^2.6.2"
489
+ },
490
+ "engines": {
491
+ "node": ">=20.0.0"
492
+ }
493
+ },
494
+ "node_modules/@aws-sdk/xml-builder": {
495
+ "version": "3.972.30",
496
+ "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.30.tgz",
497
+ "integrity": "sha512-StElZPEoBquWwNqw1AcfpzEyZqJvFxouG+mpDNYlcH6ZOrqd2CuIryv+8LV8gNHZUOyKyJF3Dq9vxaXEmDR9TQ==",
498
+ "dev": true,
499
+ "license": "Apache-2.0",
500
+ "dependencies": {
501
+ "@smithy/types": "^4.14.3",
502
+ "fast-xml-parser": "5.7.3",
503
+ "tslib": "^2.6.2"
504
+ },
505
+ "engines": {
506
+ "node": ">=20.0.0"
507
+ }
508
+ },
509
+ "node_modules/@aws/lambda-invoke-store": {
510
+ "version": "0.2.4",
511
+ "resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.4.tgz",
512
+ "integrity": "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ==",
513
+ "dev": true,
514
+ "license": "Apache-2.0",
515
+ "engines": {
516
+ "node": ">=18.0.0"
517
+ }
518
+ },
519
+ "node_modules/@babel/runtime": {
520
+ "version": "7.29.7",
521
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
522
+ "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
523
+ "dev": true,
524
+ "license": "MIT",
525
+ "engines": {
526
+ "node": ">=6.9.0"
527
+ }
528
+ },
529
+ "node_modules/@earendil-works/pi-ai": {
530
+ "version": "0.79.6",
531
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.79.6.tgz",
532
+ "integrity": "sha512-KGepEdgEeWDs7Imwlp96tBsO8TjSIpcDBvazsCDtHRa81+uwJI/YGetTegI52pMlKhVpJFLIGajRi4PCGC5MUg==",
533
+ "dev": true,
534
+ "license": "MIT",
535
+ "dependencies": {
536
+ "@anthropic-ai/sdk": "0.91.1",
537
+ "@aws-sdk/client-bedrock-runtime": "3.1048.0",
538
+ "@google/genai": "1.52.0",
539
+ "@mistralai/mistralai": "2.2.1",
540
+ "@smithy/node-http-handler": "4.7.3",
541
+ "http-proxy-agent": "7.0.2",
542
+ "https-proxy-agent": "7.0.6",
543
+ "openai": "6.26.0",
544
+ "partial-json": "0.1.7",
545
+ "typebox": "1.1.38"
546
+ },
547
+ "bin": {
548
+ "pi-ai": "dist/cli.js"
549
+ },
550
+ "engines": {
551
+ "node": ">=22.19.0"
552
+ }
553
+ },
554
+ "node_modules/@earendil-works/pi-coding-agent": {
555
+ "version": "0.79.6",
556
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-coding-agent/-/pi-coding-agent-0.79.6.tgz",
557
+ "integrity": "sha512-xPQDoA3+4Q8UsInST8OGFHPHyi7JQIbx51ku5kf2VuhXrrTv/npjVTXYD3A3D5xs6QRebV0B2mQqHfXaxQAplw==",
558
+ "hasShrinkwrap": true,
559
+ "license": "MIT",
560
+ "peer": true,
561
+ "dependencies": {
562
+ "@earendil-works/pi-agent-core": "^0.79.6",
563
+ "@earendil-works/pi-ai": "^0.79.6",
564
+ "@earendil-works/pi-tui": "^0.79.6",
565
+ "@silvia-odwyer/photon-node": "0.3.4",
566
+ "chalk": "5.6.2",
567
+ "cross-spawn": "7.0.6",
568
+ "diff": "8.0.4",
569
+ "glob": "13.0.6",
570
+ "highlight.js": "10.7.3",
571
+ "hosted-git-info": "9.0.3",
572
+ "ignore": "7.0.5",
573
+ "jiti": "2.7.0",
574
+ "minimatch": "10.2.5",
575
+ "proper-lockfile": "4.1.2",
576
+ "semver": "7.8.0",
577
+ "typebox": "1.1.38",
578
+ "undici": "8.3.0",
579
+ "yaml": "2.9.0"
580
+ },
581
+ "bin": {
582
+ "pi": "dist/cli.js"
583
+ },
584
+ "engines": {
585
+ "node": ">=22.19.0"
586
+ },
587
+ "optionalDependencies": {
588
+ "@mariozechner/clipboard": "0.3.9"
589
+ }
590
+ },
591
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@anthropic-ai/sdk": {
592
+ "version": "0.91.1",
593
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.91.1.tgz",
594
+ "integrity": "sha512-LAmu761tSN9r66ixvmciswUj/ZC+1Q4iAfpedTfSVLeswRwnY3n2Nb6Tsk+cLPP28aLOPWeMgIuTuCcMC6W/iw==",
595
+ "license": "MIT",
596
+ "peer": true,
597
+ "dependencies": {
598
+ "json-schema-to-ts": "^3.1.1"
599
+ },
600
+ "bin": {
601
+ "anthropic-ai-sdk": "bin/cli"
602
+ },
603
+ "peerDependencies": {
604
+ "zod": "^3.25.0 || ^4.0.0"
605
+ },
606
+ "peerDependenciesMeta": {
607
+ "zod": {
608
+ "optional": true
609
+ }
610
+ }
611
+ },
612
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/crc32": {
613
+ "version": "5.2.0",
614
+ "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
615
+ "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
616
+ "license": "Apache-2.0",
617
+ "peer": true,
618
+ "dependencies": {
619
+ "@aws-crypto/util": "^5.2.0",
620
+ "@aws-sdk/types": "^3.222.0",
621
+ "tslib": "^2.6.2"
622
+ },
623
+ "engines": {
624
+ "node": ">=16.0.0"
625
+ }
626
+ },
627
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/sha256-browser": {
628
+ "version": "5.2.0",
629
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
630
+ "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
631
+ "license": "Apache-2.0",
632
+ "peer": true,
633
+ "dependencies": {
634
+ "@aws-crypto/sha256-js": "^5.2.0",
635
+ "@aws-crypto/supports-web-crypto": "^5.2.0",
636
+ "@aws-crypto/util": "^5.2.0",
637
+ "@aws-sdk/types": "^3.222.0",
638
+ "@aws-sdk/util-locate-window": "^3.0.0",
639
+ "@smithy/util-utf8": "^2.0.0",
640
+ "tslib": "^2.6.2"
641
+ }
642
+ },
643
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/sha256-js": {
644
+ "version": "5.2.0",
645
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
646
+ "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
647
+ "license": "Apache-2.0",
648
+ "peer": true,
649
+ "dependencies": {
650
+ "@aws-crypto/util": "^5.2.0",
651
+ "@aws-sdk/types": "^3.222.0",
652
+ "tslib": "^2.6.2"
653
+ },
654
+ "engines": {
655
+ "node": ">=16.0.0"
656
+ }
657
+ },
658
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/supports-web-crypto": {
659
+ "version": "5.2.0",
660
+ "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
661
+ "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
662
+ "license": "Apache-2.0",
663
+ "peer": true,
664
+ "dependencies": {
665
+ "tslib": "^2.6.2"
666
+ }
667
+ },
668
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/util": {
669
+ "version": "5.2.0",
670
+ "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
671
+ "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
672
+ "license": "Apache-2.0",
673
+ "peer": true,
674
+ "dependencies": {
675
+ "@aws-sdk/types": "^3.222.0",
676
+ "@smithy/util-utf8": "^2.0.0",
677
+ "tslib": "^2.6.2"
678
+ }
679
+ },
680
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/client-bedrock-runtime": {
681
+ "version": "3.1048.0",
682
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.1048.0.tgz",
683
+ "integrity": "sha512-u+NT61JZEkRFtpL0CAw1N1dwxnaLgwVXQl/zjJxTGgLyS/jTIdg2SdoEoCTHxgDyCnqa1HEi9QOoE9/pYRNpOQ==",
684
+ "license": "Apache-2.0",
685
+ "peer": true,
686
+ "dependencies": {
687
+ "@aws-crypto/sha256-browser": "5.2.0",
688
+ "@aws-crypto/sha256-js": "5.2.0",
689
+ "@aws-sdk/core": "^3.974.11",
690
+ "@aws-sdk/credential-provider-node": "^3.972.42",
691
+ "@aws-sdk/eventstream-handler-node": "^3.972.16",
692
+ "@aws-sdk/middleware-eventstream": "^3.972.12",
693
+ "@aws-sdk/middleware-websocket": "^3.972.19",
694
+ "@aws-sdk/token-providers": "3.1048.0",
695
+ "@aws-sdk/types": "^3.973.8",
696
+ "@smithy/core": "^3.24.2",
697
+ "@smithy/fetch-http-handler": "^5.4.2",
698
+ "@smithy/node-http-handler": "^4.7.2",
699
+ "@smithy/types": "^4.14.1",
700
+ "tslib": "^2.6.2"
701
+ },
702
+ "engines": {
703
+ "node": ">=20.0.0"
704
+ }
705
+ },
706
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/core": {
707
+ "version": "3.974.11",
708
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.974.11.tgz",
709
+ "integrity": "sha512-QpnINq5FZH6EOaDEkmHdT7eUunbvD27pDNQypaWjFyYz7Zl1q3UCMQErBZxpmfGfI7MvI2TlK8KTkgNpv8b1ug==",
710
+ "license": "Apache-2.0",
711
+ "peer": true,
712
+ "dependencies": {
713
+ "@aws-sdk/types": "^3.973.8",
714
+ "@aws-sdk/xml-builder": "^3.972.24",
715
+ "@aws/lambda-invoke-store": "^0.2.2",
716
+ "@smithy/core": "^3.24.2",
717
+ "@smithy/signature-v4": "^5.4.2",
718
+ "@smithy/types": "^4.14.1",
719
+ "bowser": "^2.11.0",
720
+ "tslib": "^2.6.2"
721
+ },
722
+ "engines": {
723
+ "node": ">=20.0.0"
724
+ }
725
+ },
726
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-env": {
727
+ "version": "3.972.37",
728
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.37.tgz",
729
+ "integrity": "sha512-/jpPvEh6f7ntmIzf7dNxoNX6Q8vt8UpesCjbW6mFfk4V1NW6bIy9qxcQ6WbA8As5yQhsZOe+xeNd4xHX8kdY2Q==",
730
+ "license": "Apache-2.0",
731
+ "peer": true,
732
+ "dependencies": {
733
+ "@aws-sdk/core": "^3.974.11",
734
+ "@aws-sdk/types": "^3.973.8",
735
+ "@smithy/core": "^3.24.2",
736
+ "@smithy/types": "^4.14.1",
737
+ "tslib": "^2.6.2"
738
+ },
739
+ "engines": {
740
+ "node": ">=20.0.0"
741
+ }
742
+ },
743
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-http": {
744
+ "version": "3.972.39",
745
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.39.tgz",
746
+ "integrity": "sha512-pIgTpisWyWg7X1bUbzSjuUYosYTD0Ghz2M0hkSTmb3a6i3qV3uU+NYJPI/E2XSC0HcsZh5rsLPzeXrkb2DS0Cg==",
747
+ "license": "Apache-2.0",
748
+ "peer": true,
749
+ "dependencies": {
750
+ "@aws-sdk/core": "^3.974.11",
751
+ "@aws-sdk/types": "^3.973.8",
752
+ "@smithy/core": "^3.24.2",
753
+ "@smithy/fetch-http-handler": "^5.4.2",
754
+ "@smithy/node-http-handler": "^4.7.2",
755
+ "@smithy/types": "^4.14.1",
756
+ "tslib": "^2.6.2"
757
+ },
758
+ "engines": {
759
+ "node": ">=20.0.0"
760
+ }
761
+ },
762
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-ini": {
763
+ "version": "3.972.41",
764
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.41.tgz",
765
+ "integrity": "sha512-u2tyjaxJJzW8UtW4SM1ZcPMDwO6y+kV+llvou+Adts0FAKyzes5jG4izQN+KX3yE8ZROpS5y1LJ//xL2iSf76w==",
766
+ "license": "Apache-2.0",
767
+ "peer": true,
768
+ "dependencies": {
769
+ "@aws-sdk/core": "^3.974.11",
770
+ "@aws-sdk/credential-provider-env": "^3.972.37",
771
+ "@aws-sdk/credential-provider-http": "^3.972.39",
772
+ "@aws-sdk/credential-provider-login": "^3.972.41",
773
+ "@aws-sdk/credential-provider-process": "^3.972.37",
774
+ "@aws-sdk/credential-provider-sso": "^3.972.41",
775
+ "@aws-sdk/credential-provider-web-identity": "^3.972.41",
776
+ "@aws-sdk/nested-clients": "^3.997.9",
777
+ "@aws-sdk/types": "^3.973.8",
778
+ "@smithy/core": "^3.24.2",
779
+ "@smithy/credential-provider-imds": "^4.3.2",
780
+ "@smithy/types": "^4.14.1",
781
+ "tslib": "^2.6.2"
782
+ },
783
+ "engines": {
784
+ "node": ">=20.0.0"
785
+ }
786
+ },
787
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-login": {
788
+ "version": "3.972.41",
789
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.41.tgz",
790
+ "integrity": "sha512-0LBitxXiAiaE5nlFPfpNIww/8FRY/I7WIndWsc9GmNFOM7cE1wNpVNQEGEk9Outg5l8xl+3vybxFyUy4l9q/LQ==",
791
+ "license": "Apache-2.0",
792
+ "peer": true,
793
+ "dependencies": {
794
+ "@aws-sdk/core": "^3.974.11",
795
+ "@aws-sdk/nested-clients": "^3.997.9",
796
+ "@aws-sdk/types": "^3.973.8",
797
+ "@smithy/core": "^3.24.2",
798
+ "@smithy/types": "^4.14.1",
799
+ "tslib": "^2.6.2"
800
+ },
801
+ "engines": {
802
+ "node": ">=20.0.0"
803
+ }
804
+ },
805
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-node": {
806
+ "version": "3.972.42",
807
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.42.tgz",
808
+ "integrity": "sha512-D4oon2zbqqsWOJUM99Gm3/ZyJ0IJvTXVN3PyloGb3kQEyI36fjCZheZj422lAgTWWd6TSHgiImLt3RIaLdv3dQ==",
809
+ "license": "Apache-2.0",
810
+ "peer": true,
811
+ "dependencies": {
812
+ "@aws-sdk/credential-provider-env": "^3.972.37",
813
+ "@aws-sdk/credential-provider-http": "^3.972.39",
814
+ "@aws-sdk/credential-provider-ini": "^3.972.41",
815
+ "@aws-sdk/credential-provider-process": "^3.972.37",
816
+ "@aws-sdk/credential-provider-sso": "^3.972.41",
817
+ "@aws-sdk/credential-provider-web-identity": "^3.972.41",
818
+ "@aws-sdk/types": "^3.973.8",
819
+ "@smithy/core": "^3.24.2",
820
+ "@smithy/credential-provider-imds": "^4.3.2",
821
+ "@smithy/types": "^4.14.1",
822
+ "tslib": "^2.6.2"
823
+ },
824
+ "engines": {
825
+ "node": ">=20.0.0"
826
+ }
827
+ },
828
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-process": {
829
+ "version": "3.972.37",
830
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.37.tgz",
831
+ "integrity": "sha512-7nVaHBUaWIddASYfVaA9O4D5ZVjewU3sCol9WqZPGfW0nR+0WqE0xHZnD/U2L33PlOB8KNXGKZ6wOES/QijKzg==",
832
+ "license": "Apache-2.0",
833
+ "peer": true,
834
+ "dependencies": {
835
+ "@aws-sdk/core": "^3.974.11",
836
+ "@aws-sdk/types": "^3.973.8",
837
+ "@smithy/core": "^3.24.2",
838
+ "@smithy/types": "^4.14.1",
839
+ "tslib": "^2.6.2"
840
+ },
841
+ "engines": {
842
+ "node": ">=20.0.0"
843
+ }
844
+ },
845
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-sso": {
846
+ "version": "3.972.41",
847
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.41.tgz",
848
+ "integrity": "sha512-IOWAWEHe5LkjSKkkUUX9ciV6Y1scHTsnfEkdt5yyC4Slrc7AGbkLPrpntjqh18ksJAMOaVhoBsO8p2WyTcY2wQ==",
849
+ "license": "Apache-2.0",
850
+ "peer": true,
851
+ "dependencies": {
852
+ "@aws-sdk/core": "^3.974.11",
853
+ "@aws-sdk/nested-clients": "^3.997.9",
854
+ "@aws-sdk/token-providers": "3.1048.0",
855
+ "@aws-sdk/types": "^3.973.8",
856
+ "@smithy/core": "^3.24.2",
857
+ "@smithy/types": "^4.14.1",
858
+ "tslib": "^2.6.2"
859
+ },
860
+ "engines": {
861
+ "node": ">=20.0.0"
862
+ }
863
+ },
864
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-web-identity": {
865
+ "version": "3.972.41",
866
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.41.tgz",
867
+ "integrity": "sha512-mbACk9Yypa8nm4iGZLs0PofOXEcTDOUw6wDnsPXNDNSd2WNXs1tSo+6nc/fh0jLYdfVZThhBL98PHW4aXFsG5A==",
868
+ "license": "Apache-2.0",
869
+ "peer": true,
870
+ "dependencies": {
871
+ "@aws-sdk/core": "^3.974.11",
872
+ "@aws-sdk/nested-clients": "^3.997.9",
873
+ "@aws-sdk/types": "^3.973.8",
874
+ "@smithy/core": "^3.24.2",
875
+ "@smithy/types": "^4.14.1",
876
+ "tslib": "^2.6.2"
877
+ },
878
+ "engines": {
879
+ "node": ">=20.0.0"
880
+ }
881
+ },
882
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/eventstream-handler-node": {
883
+ "version": "3.972.16",
884
+ "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.16.tgz",
885
+ "integrity": "sha512-yedpPgKftqjU5SlPFHfqWpOw6xSCRieWRG1euWOlXn4WJxt2VX92VprCa2PpSOXjVCAeK6dTjW9eJRXVig9yGA==",
886
+ "license": "Apache-2.0",
887
+ "peer": true,
888
+ "dependencies": {
889
+ "@aws-sdk/types": "^3.973.8",
890
+ "@smithy/core": "^3.24.2",
891
+ "@smithy/types": "^4.14.1",
892
+ "tslib": "^2.6.2"
893
+ },
894
+ "engines": {
895
+ "node": ">=20.0.0"
896
+ }
897
+ },
898
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/middleware-eventstream": {
899
+ "version": "3.972.12",
900
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.12.tgz",
901
+ "integrity": "sha512-tHTHHCHNrq6XklQvlzHBDJG4Iuhh7NVPRdtmvP+nHFA+5sxPlIDzlAHHgfoYHGvT3NXP1yVP/L5c3opUn6T3Qg==",
902
+ "license": "Apache-2.0",
903
+ "peer": true,
904
+ "dependencies": {
905
+ "@aws-sdk/types": "^3.973.8",
906
+ "@smithy/core": "^3.24.2",
907
+ "@smithy/types": "^4.14.1",
908
+ "tslib": "^2.6.2"
909
+ },
910
+ "engines": {
911
+ "node": ">=20.0.0"
912
+ }
913
+ },
914
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/middleware-websocket": {
915
+ "version": "3.972.19",
916
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.19.tgz",
917
+ "integrity": "sha512-mkEhOGYozqKQkbFaVrjwr0faiwwZza1v5/jSY6Tucm3bD+uKTazIUH/4Yo6aMnQD2ua2W9cMP6s8mvwTcjtqHw==",
918
+ "license": "Apache-2.0",
919
+ "peer": true,
920
+ "dependencies": {
921
+ "@aws-sdk/core": "^3.974.11",
922
+ "@aws-sdk/types": "^3.973.8",
923
+ "@smithy/core": "^3.24.2",
924
+ "@smithy/fetch-http-handler": "^5.4.2",
925
+ "@smithy/signature-v4": "^5.4.2",
926
+ "@smithy/types": "^4.14.1",
927
+ "tslib": "^2.6.2"
928
+ },
929
+ "engines": {
930
+ "node": ">= 14.0.0"
931
+ }
932
+ },
933
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/nested-clients": {
934
+ "version": "3.997.9",
935
+ "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.9.tgz",
936
+ "integrity": "sha512-jPR3rnmRI4hWYyzfmTGBr7NblMp8QYYeflHXba1H6+7CGrWVqWKQzaXFQ4qbExqPRsXN3T3L3JxFhr6aouXUGQ==",
937
+ "license": "Apache-2.0",
938
+ "peer": true,
939
+ "dependencies": {
940
+ "@aws-crypto/sha256-browser": "5.2.0",
941
+ "@aws-crypto/sha256-js": "5.2.0",
942
+ "@aws-sdk/core": "^3.974.11",
943
+ "@aws-sdk/signature-v4-multi-region": "^3.996.27",
944
+ "@aws-sdk/types": "^3.973.8",
945
+ "@smithy/core": "^3.24.2",
946
+ "@smithy/fetch-http-handler": "^5.4.2",
947
+ "@smithy/node-http-handler": "^4.7.2",
948
+ "@smithy/types": "^4.14.1",
949
+ "tslib": "^2.6.2"
950
+ },
951
+ "engines": {
952
+ "node": ">=20.0.0"
953
+ }
954
+ },
955
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/signature-v4-multi-region": {
956
+ "version": "3.996.27",
957
+ "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.27.tgz",
958
+ "integrity": "sha512-0Phbz4t6HI3D3skxvG2uI+VWU034/nSIw1T8d+FPzzQG9EQTrw94o9mOKO2Gv3n3Oc8P7JD7RAUxkoneLWv5Eg==",
959
+ "license": "Apache-2.0",
960
+ "peer": true,
961
+ "dependencies": {
962
+ "@aws-sdk/types": "^3.973.8",
963
+ "@smithy/core": "^3.24.2",
964
+ "@smithy/signature-v4": "^5.4.2",
965
+ "@smithy/types": "^4.14.1",
966
+ "tslib": "^2.6.2"
967
+ },
968
+ "engines": {
969
+ "node": ">=20.0.0"
970
+ }
971
+ },
972
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/token-providers": {
973
+ "version": "3.1048.0",
974
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1048.0.tgz",
975
+ "integrity": "sha512-k0y/GcuesuSfWyUM0WamrGyeZmltRYaPbHO82UDA6mZ/doB+FOHKutikPAtSXMn/hDz970cF+iRuuiYO9VEbAA==",
976
+ "license": "Apache-2.0",
977
+ "peer": true,
978
+ "dependencies": {
979
+ "@aws-sdk/core": "^3.974.11",
980
+ "@aws-sdk/nested-clients": "^3.997.9",
981
+ "@aws-sdk/types": "^3.973.8",
982
+ "@smithy/core": "^3.24.2",
983
+ "@smithy/types": "^4.14.1",
984
+ "tslib": "^2.6.2"
985
+ },
986
+ "engines": {
987
+ "node": ">=20.0.0"
988
+ }
989
+ },
990
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/types": {
991
+ "version": "3.973.8",
992
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.8.tgz",
993
+ "integrity": "sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==",
994
+ "license": "Apache-2.0",
995
+ "peer": true,
996
+ "dependencies": {
997
+ "@smithy/types": "^4.14.1",
998
+ "tslib": "^2.6.2"
999
+ },
1000
+ "engines": {
1001
+ "node": ">=20.0.0"
1002
+ }
1003
+ },
1004
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/util-locate-window": {
1005
+ "version": "3.965.5",
1006
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.5.tgz",
1007
+ "integrity": "sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==",
1008
+ "license": "Apache-2.0",
1009
+ "peer": true,
1010
+ "dependencies": {
1011
+ "tslib": "^2.6.2"
1012
+ },
1013
+ "engines": {
1014
+ "node": ">=20.0.0"
1015
+ }
1016
+ },
1017
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/xml-builder": {
1018
+ "version": "3.972.24",
1019
+ "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.24.tgz",
1020
+ "integrity": "sha512-V8z5YcDPfsvzrBlj0xR1vhRtocblhYbqdreCJB/voGd4Sr5zjNAeWxexbnqVtskTJe0vFb5KMqbSL++ePl+zRw==",
1021
+ "license": "Apache-2.0",
1022
+ "peer": true,
1023
+ "dependencies": {
1024
+ "@nodable/entities": "2.1.0",
1025
+ "@smithy/types": "^4.14.1",
1026
+ "fast-xml-parser": "5.7.3",
1027
+ "tslib": "^2.6.2"
1028
+ },
1029
+ "engines": {
1030
+ "node": ">=20.0.0"
1031
+ }
1032
+ },
1033
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws/lambda-invoke-store": {
1034
+ "version": "0.2.4",
1035
+ "resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.4.tgz",
1036
+ "integrity": "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ==",
1037
+ "license": "Apache-2.0",
1038
+ "peer": true,
1039
+ "engines": {
1040
+ "node": ">=18.0.0"
1041
+ }
1042
+ },
1043
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@babel/runtime": {
1044
+ "version": "7.29.2",
1045
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
1046
+ "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
1047
+ "license": "MIT",
1048
+ "peer": true,
1049
+ "engines": {
1050
+ "node": ">=6.9.0"
1051
+ }
1052
+ },
1053
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-agent-core": {
1054
+ "version": "0.79.6",
1055
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.79.6.tgz",
1056
+ "license": "MIT",
1057
+ "peer": true,
1058
+ "dependencies": {
1059
+ "@earendil-works/pi-ai": "^0.79.6",
1060
+ "ignore": "7.0.5",
1061
+ "typebox": "1.1.38",
1062
+ "yaml": "2.9.0"
1063
+ },
1064
+ "engines": {
1065
+ "node": ">=22.19.0"
1066
+ }
1067
+ },
1068
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-ai": {
1069
+ "version": "0.79.6",
1070
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.79.6.tgz",
1071
+ "license": "MIT",
1072
+ "peer": true,
1073
+ "dependencies": {
1074
+ "@anthropic-ai/sdk": "0.91.1",
1075
+ "@aws-sdk/client-bedrock-runtime": "3.1048.0",
1076
+ "@google/genai": "1.52.0",
1077
+ "@mistralai/mistralai": "2.2.1",
1078
+ "@smithy/node-http-handler": "4.7.3",
1079
+ "http-proxy-agent": "7.0.2",
1080
+ "https-proxy-agent": "7.0.6",
1081
+ "openai": "6.26.0",
1082
+ "partial-json": "0.1.7",
1083
+ "typebox": "1.1.38"
1084
+ },
1085
+ "bin": {
1086
+ "pi-ai": "./dist/cli.js"
1087
+ },
1088
+ "engines": {
1089
+ "node": ">=22.19.0"
1090
+ }
1091
+ },
1092
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-tui": {
1093
+ "version": "0.79.6",
1094
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.79.6.tgz",
1095
+ "license": "MIT",
1096
+ "peer": true,
1097
+ "dependencies": {
1098
+ "get-east-asian-width": "1.6.0",
1099
+ "marked": "18.0.5"
1100
+ },
1101
+ "engines": {
1102
+ "node": ">=22.19.0"
1103
+ }
1104
+ },
1105
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@google/genai": {
1106
+ "version": "1.52.0",
1107
+ "resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.52.0.tgz",
1108
+ "integrity": "sha512-gwSvbpiN/17O9TbsqSsE/OzZcpv5Fo4RQjdngGgogtuB9RsyJ8ZHhX5KjHj1bp5N9snN2eK8LDGXSaWW2hof8Q==",
1109
+ "hasInstallScript": true,
1110
+ "license": "Apache-2.0",
1111
+ "peer": true,
1112
+ "dependencies": {
1113
+ "google-auth-library": "^10.3.0",
1114
+ "p-retry": "^4.6.2",
1115
+ "protobufjs": "^7.5.4",
1116
+ "ws": "^8.18.0"
1117
+ },
1118
+ "engines": {
1119
+ "node": ">=20.0.0"
1120
+ },
1121
+ "peerDependencies": {
1122
+ "@modelcontextprotocol/sdk": "^1.25.2"
1123
+ },
1124
+ "peerDependenciesMeta": {
1125
+ "@modelcontextprotocol/sdk": {
1126
+ "optional": true
1127
+ }
1128
+ }
1129
+ },
1130
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard": {
1131
+ "version": "0.3.9",
1132
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard/-/clipboard-0.3.9.tgz",
1133
+ "integrity": "sha512-ABnA53mdfkGZwOFUdZNv2S0CWGO/EIuPj8Vv9xmBFmSYg/qFc7ihO6q5FcQjvoE67kZpWkEc4AhD6B/os04yuA==",
1134
+ "license": "MIT",
1135
+ "optional": true,
1136
+ "peer": true,
1137
+ "engines": {
1138
+ "node": ">= 10"
1139
+ },
1140
+ "optionalDependencies": {
1141
+ "@mariozechner/clipboard-darwin-arm64": "0.3.9",
1142
+ "@mariozechner/clipboard-darwin-universal": "0.3.9",
1143
+ "@mariozechner/clipboard-darwin-x64": "0.3.9",
1144
+ "@mariozechner/clipboard-linux-arm64-gnu": "0.3.9",
1145
+ "@mariozechner/clipboard-linux-arm64-musl": "0.3.9",
1146
+ "@mariozechner/clipboard-linux-riscv64-gnu": "0.3.9",
1147
+ "@mariozechner/clipboard-linux-x64-gnu": "0.3.9",
1148
+ "@mariozechner/clipboard-linux-x64-musl": "0.3.9",
1149
+ "@mariozechner/clipboard-win32-arm64-msvc": "0.3.9",
1150
+ "@mariozechner/clipboard-win32-x64-msvc": "0.3.9"
1151
+ }
1152
+ },
1153
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-darwin-arm64": {
1154
+ "version": "0.3.9",
1155
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-arm64/-/clipboard-darwin-arm64-0.3.9.tgz",
1156
+ "integrity": "sha512-BfgV7vCEWZwJwZJw03r6bP5+tf0iI/ANuQYCxi9RNn7FrWB3yzGuMKCrNLRl6V761vXRdL8+OqZ0wd4TqlsNOQ==",
1157
+ "cpu": [
1158
+ "arm64"
1159
+ ],
1160
+ "license": "MIT",
1161
+ "optional": true,
1162
+ "os": [
1163
+ "darwin"
1164
+ ],
1165
+ "peer": true,
1166
+ "engines": {
1167
+ "node": ">= 10"
1168
+ }
1169
+ },
1170
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-darwin-universal": {
1171
+ "version": "0.3.9",
1172
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-universal/-/clipboard-darwin-universal-0.3.9.tgz",
1173
+ "integrity": "sha512-BGGR4iA9Z2shAjI65eI5xtyb3LYNlDW9X3gxKxDbqtbnREohsrqznov6zpKoIrsRWpzlYVEdKphS7ksJ0/ndSQ==",
1174
+ "license": "MIT",
1175
+ "optional": true,
1176
+ "os": [
1177
+ "darwin"
1178
+ ],
1179
+ "peer": true,
1180
+ "engines": {
1181
+ "node": ">= 10"
1182
+ }
1183
+ },
1184
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-darwin-x64": {
1185
+ "version": "0.3.9",
1186
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-x64/-/clipboard-darwin-x64-0.3.9.tgz",
1187
+ "integrity": "sha512-4kURmCbS6nt8uYhtmWpUcJWyPHfmAr5dTpXD1nO3pIfa+TSQ9DbrGOYCKH+aEFW47XhQ4Vp8ZTszie+wfFvDKg==",
1188
+ "cpu": [
1189
+ "x64"
1190
+ ],
1191
+ "license": "MIT",
1192
+ "optional": true,
1193
+ "os": [
1194
+ "darwin"
1195
+ ],
1196
+ "peer": true,
1197
+ "engines": {
1198
+ "node": ">= 10"
1199
+ }
1200
+ },
1201
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-arm64-gnu": {
1202
+ "version": "0.3.9",
1203
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-gnu/-/clipboard-linux-arm64-gnu-0.3.9.tgz",
1204
+ "integrity": "sha512-g59OkUGP2DDfCOIKypHeYgv2M55u/cKvXa5dSxFbEJ34XvIQMdcVmpKCkGUro3ZgefXiGVdwguvTMQGpHWzIXw==",
1205
+ "cpu": [
1206
+ "arm64"
1207
+ ],
1208
+ "libc": [
1209
+ "glibc"
1210
+ ],
1211
+ "license": "MIT",
1212
+ "optional": true,
1213
+ "os": [
1214
+ "linux"
1215
+ ],
1216
+ "peer": true,
1217
+ "engines": {
1218
+ "node": ">= 10"
1219
+ }
1220
+ },
1221
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-arm64-musl": {
1222
+ "version": "0.3.9",
1223
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-musl/-/clipboard-linux-arm64-musl-0.3.9.tgz",
1224
+ "integrity": "sha512-AGuJdgKsmJdm4Pych7kv3sqe591ERRaAHW3xjLooiFzn8J+PxUyof++7YZrB5Y5tpnTO+K18Og3taj2NpluCRQ==",
1225
+ "cpu": [
1226
+ "arm64"
1227
+ ],
1228
+ "libc": [
1229
+ "musl"
1230
+ ],
1231
+ "license": "MIT",
1232
+ "optional": true,
1233
+ "os": [
1234
+ "linux"
1235
+ ],
1236
+ "peer": true,
1237
+ "engines": {
1238
+ "node": ">= 10"
1239
+ }
1240
+ },
1241
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-riscv64-gnu": {
1242
+ "version": "0.3.9",
1243
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-riscv64-gnu/-/clipboard-linux-riscv64-gnu-0.3.9.tgz",
1244
+ "integrity": "sha512-DXBEAiuMpk7dhS1a9NzNxVAFi1vaKoPu7rQNgY8LIDLGrK3lnIp3nT10DUum+PKVJoJppIP+NAA8IZe4DMNDPw==",
1245
+ "cpu": [
1246
+ "riscv64"
1247
+ ],
1248
+ "libc": [
1249
+ "glibc"
1250
+ ],
1251
+ "license": "MIT",
1252
+ "optional": true,
1253
+ "os": [
1254
+ "linux"
1255
+ ],
1256
+ "peer": true,
1257
+ "engines": {
1258
+ "node": ">= 10"
1259
+ }
1260
+ },
1261
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-x64-gnu": {
1262
+ "version": "0.3.9",
1263
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-gnu/-/clipboard-linux-x64-gnu-0.3.9.tgz",
1264
+ "integrity": "sha512-WORrMLd6EpElEME7JRKfSaY34nW1P5LbdgK5YNCS1ncG2LqmITsSMEJ8nh2mpvxb3TxqbOOKgY7k9eMJYlW9Mw==",
1265
+ "cpu": [
1266
+ "x64"
1267
+ ],
1268
+ "libc": [
1269
+ "glibc"
1270
+ ],
1271
+ "license": "MIT",
1272
+ "optional": true,
1273
+ "os": [
1274
+ "linux"
1275
+ ],
1276
+ "peer": true,
1277
+ "engines": {
1278
+ "node": ">= 10"
1279
+ }
1280
+ },
1281
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-x64-musl": {
1282
+ "version": "0.3.9",
1283
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-musl/-/clipboard-linux-x64-musl-0.3.9.tgz",
1284
+ "integrity": "sha512-/DHn+1DrfL6oRaPPWXaOKvonFFrni666fxd+zFqiQEfvBH0tsHVWjq9iqBk0oDp0qaPA72lIMy5BptxISBEhZQ==",
1285
+ "cpu": [
1286
+ "x64"
1287
+ ],
1288
+ "libc": [
1289
+ "musl"
1290
+ ],
1291
+ "license": "MIT",
1292
+ "optional": true,
1293
+ "os": [
1294
+ "linux"
1295
+ ],
1296
+ "peer": true,
1297
+ "engines": {
1298
+ "node": ">= 10"
1299
+ }
1300
+ },
1301
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-win32-arm64-msvc": {
1302
+ "version": "0.3.9",
1303
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-arm64-msvc/-/clipboard-win32-arm64-msvc-0.3.9.tgz",
1304
+ "integrity": "sha512-O5FHD3ErkMwMhNzAfu3ggy0ug4z7btZuoQgwwxlzPrwV2bxlD6WDpqBY4NCgICAgZdDKdp+loUEKVAVt8aYnhQ==",
1305
+ "cpu": [
1306
+ "arm64"
1307
+ ],
1308
+ "license": "MIT",
1309
+ "optional": true,
1310
+ "os": [
1311
+ "win32"
1312
+ ],
1313
+ "peer": true,
1314
+ "engines": {
1315
+ "node": ">= 10"
1316
+ }
1317
+ },
1318
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-win32-x64-msvc": {
1319
+ "version": "0.3.9",
1320
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-x64-msvc/-/clipboard-win32-x64-msvc-0.3.9.tgz",
1321
+ "integrity": "sha512-ihQC3EufqEY81vhXBgVBtK4prL+wc62zJsSvxrgz7K1hsdt6OObz6v9p3Rn1OG3GJksTTKMJF0u/guMISHPhSA==",
1322
+ "cpu": [
1323
+ "x64"
1324
+ ],
1325
+ "license": "MIT",
1326
+ "optional": true,
1327
+ "os": [
1328
+ "win32"
1329
+ ],
1330
+ "peer": true,
1331
+ "engines": {
1332
+ "node": ">= 10"
1333
+ }
1334
+ },
1335
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mistralai/mistralai": {
1336
+ "version": "2.2.1",
1337
+ "resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-2.2.1.tgz",
1338
+ "integrity": "sha512-uKU8CZmL2RzYKmplsU01hii4p3pe4HqJefpWNRWXm1Tcm0Sm4xXfwSLIy4k7ZCPlbETCGcp69E7hZs+WOJ5itQ==",
1339
+ "license": "Apache-2.0",
1340
+ "peer": true,
1341
+ "dependencies": {
1342
+ "ws": "^8.18.0",
1343
+ "zod": "^3.25.0 || ^4.0.0",
1344
+ "zod-to-json-schema": "^3.25.0"
1345
+ }
1346
+ },
1347
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@nodable/entities": {
1348
+ "version": "2.1.0",
1349
+ "resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
1350
+ "integrity": "sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==",
1351
+ "funding": [
1352
+ {
1353
+ "type": "github",
1354
+ "url": "https://github.com/sponsors/nodable"
1355
+ }
1356
+ ],
1357
+ "license": "MIT",
1358
+ "peer": true
1359
+ },
1360
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/aspromise": {
1361
+ "version": "1.1.2",
1362
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
1363
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
1364
+ "license": "BSD-3-Clause",
1365
+ "peer": true
1366
+ },
1367
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/base64": {
1368
+ "version": "1.1.2",
1369
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
1370
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
1371
+ "license": "BSD-3-Clause",
1372
+ "peer": true
1373
+ },
1374
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/codegen": {
1375
+ "version": "2.0.5",
1376
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
1377
+ "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
1378
+ "license": "BSD-3-Clause",
1379
+ "peer": true
1380
+ },
1381
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/eventemitter": {
1382
+ "version": "1.1.0",
1383
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
1384
+ "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
1385
+ "license": "BSD-3-Clause",
1386
+ "peer": true
1387
+ },
1388
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/fetch": {
1389
+ "version": "1.1.1",
1390
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
1391
+ "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
1392
+ "license": "BSD-3-Clause",
1393
+ "peer": true,
1394
+ "dependencies": {
1395
+ "@protobufjs/aspromise": "^1.1.1"
1396
+ }
1397
+ },
1398
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/float": {
1399
+ "version": "1.0.2",
1400
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
1401
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
1402
+ "license": "BSD-3-Clause",
1403
+ "peer": true
1404
+ },
1405
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/inquire": {
1406
+ "version": "1.1.2",
1407
+ "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
1408
+ "integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
1409
+ "license": "BSD-3-Clause",
1410
+ "peer": true
1411
+ },
1412
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/path": {
1413
+ "version": "1.1.2",
1414
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
1415
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
1416
+ "license": "BSD-3-Clause",
1417
+ "peer": true
1418
+ },
1419
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/pool": {
1420
+ "version": "1.1.0",
1421
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
1422
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
1423
+ "license": "BSD-3-Clause",
1424
+ "peer": true
1425
+ },
1426
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/utf8": {
1427
+ "version": "1.1.1",
1428
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
1429
+ "integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
1430
+ "license": "BSD-3-Clause",
1431
+ "peer": true
1432
+ },
1433
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@silvia-odwyer/photon-node": {
1434
+ "version": "0.3.4",
1435
+ "resolved": "https://registry.npmjs.org/@silvia-odwyer/photon-node/-/photon-node-0.3.4.tgz",
1436
+ "integrity": "sha512-bnly4BKB3KDTFxrUIcgCLbaeVVS8lrAkri1pEzskpmxu9MdfGQTy8b8EgcD83ywD3RPMsIulY8xJH5Awa+t9fA==",
1437
+ "license": "Apache-2.0",
1438
+ "peer": true
1439
+ },
1440
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/core": {
1441
+ "version": "3.24.3",
1442
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.24.3.tgz",
1443
+ "integrity": "sha512-Ep/7tPamGY8mgESE3LyLKtxJyy6U52WWAqr/3wial47Sj4u3PiIF73AOGI27UyLy9duTkhZbgzodOfLV4TduZg==",
1444
+ "license": "Apache-2.0",
1445
+ "peer": true,
1446
+ "dependencies": {
1447
+ "@aws-crypto/crc32": "5.2.0",
1448
+ "@smithy/types": "^4.14.2",
1449
+ "tslib": "^2.6.2"
1450
+ },
1451
+ "engines": {
1452
+ "node": ">=18.0.0"
1453
+ }
1454
+ },
1455
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/credential-provider-imds": {
1456
+ "version": "4.3.3",
1457
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.3.3.tgz",
1458
+ "integrity": "sha512-I2Bti0DKFo2IJyN28ijCsx51BAumEYR4/1yZ1FXyBygy9MqbnMqCev4JPth/MbpRfBSRAX35hITSnAdJRo1u5w==",
1459
+ "license": "Apache-2.0",
1460
+ "peer": true,
1461
+ "dependencies": {
1462
+ "@smithy/core": "^3.24.3",
1463
+ "@smithy/types": "^4.14.2",
1464
+ "tslib": "^2.6.2"
1465
+ },
1466
+ "engines": {
1467
+ "node": ">=18.0.0"
1468
+ }
1469
+ },
1470
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/fetch-http-handler": {
1471
+ "version": "5.4.3",
1472
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.4.3.tgz",
1473
+ "integrity": "sha512-F+DRf8IJazRJgYog2A/yJK7eYVc0rqTlRzO+5ZxjJd4WkZoKz0IJRncf7G6t1pdVT3kryJcwuTFhN1c5m6N47A==",
1474
+ "license": "Apache-2.0",
1475
+ "peer": true,
1476
+ "dependencies": {
1477
+ "@smithy/core": "^3.24.3",
1478
+ "@smithy/types": "^4.14.2",
1479
+ "tslib": "^2.6.2"
1480
+ },
1481
+ "engines": {
1482
+ "node": ">=18.0.0"
1483
+ }
1484
+ },
1485
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/is-array-buffer": {
1486
+ "version": "2.2.0",
1487
+ "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
1488
+ "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
1489
+ "license": "Apache-2.0",
1490
+ "peer": true,
1491
+ "dependencies": {
1492
+ "tslib": "^2.6.2"
1493
+ },
1494
+ "engines": {
1495
+ "node": ">=14.0.0"
1496
+ }
1497
+ },
1498
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/node-http-handler": {
1499
+ "version": "4.7.3",
1500
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.7.3.tgz",
1501
+ "integrity": "sha512-/jPhevcTFPMVl6KNjbaI47iOg1zxC7IsnX4PQDGVZKMFceOXtB8IEYaB7a9VvkP/3oC60WzTeKocvSI7vLT0vA==",
1502
+ "license": "Apache-2.0",
1503
+ "peer": true,
1504
+ "dependencies": {
1505
+ "@smithy/core": "^3.24.3",
1506
+ "@smithy/types": "^4.14.2",
1507
+ "tslib": "^2.6.2"
1508
+ },
1509
+ "engines": {
1510
+ "node": ">=18.0.0"
1511
+ }
1512
+ },
1513
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/signature-v4": {
1514
+ "version": "5.4.3",
1515
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.4.3.tgz",
1516
+ "integrity": "sha512-53+75QuPl6DL+ct6vVEB51FDO5oulXr20TPV46VvJZg76lIlXNWfxi8j+G2V/t0I2qxCBOa3vX/8bmjrpFVo9g==",
1517
+ "license": "Apache-2.0",
1518
+ "peer": true,
1519
+ "dependencies": {
1520
+ "@smithy/core": "^3.24.3",
1521
+ "@smithy/types": "^4.14.2",
1522
+ "tslib": "^2.6.2"
1523
+ },
1524
+ "engines": {
1525
+ "node": ">=18.0.0"
1526
+ }
1527
+ },
1528
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/types": {
1529
+ "version": "4.14.2",
1530
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.14.2.tgz",
1531
+ "integrity": "sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==",
1532
+ "license": "Apache-2.0",
1533
+ "peer": true,
1534
+ "dependencies": {
1535
+ "tslib": "^2.6.2"
1536
+ },
1537
+ "engines": {
1538
+ "node": ">=18.0.0"
1539
+ }
1540
+ },
1541
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/util-buffer-from": {
1542
+ "version": "2.2.0",
1543
+ "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
1544
+ "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
1545
+ "license": "Apache-2.0",
1546
+ "peer": true,
1547
+ "dependencies": {
1548
+ "@smithy/is-array-buffer": "^2.2.0",
1549
+ "tslib": "^2.6.2"
1550
+ },
1551
+ "engines": {
1552
+ "node": ">=14.0.0"
1553
+ }
1554
+ },
1555
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/util-utf8": {
1556
+ "version": "2.3.0",
1557
+ "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
1558
+ "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
1559
+ "license": "Apache-2.0",
1560
+ "peer": true,
1561
+ "dependencies": {
1562
+ "@smithy/util-buffer-from": "^2.2.0",
1563
+ "tslib": "^2.6.2"
1564
+ },
1565
+ "engines": {
1566
+ "node": ">=14.0.0"
1567
+ }
1568
+ },
1569
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@types/node": {
1570
+ "version": "22.19.19",
1571
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.19.tgz",
1572
+ "integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==",
1573
+ "license": "MIT",
1574
+ "peer": true,
1575
+ "dependencies": {
1576
+ "undici-types": "~6.21.0"
1577
+ }
1578
+ },
1579
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/agent-base": {
1580
+ "version": "7.1.4",
1581
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
1582
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
1583
+ "license": "MIT",
1584
+ "peer": true,
1585
+ "engines": {
1586
+ "node": ">= 14"
1587
+ }
1588
+ },
1589
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/balanced-match": {
1590
+ "version": "4.0.4",
1591
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1592
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1593
+ "license": "MIT",
1594
+ "peer": true,
1595
+ "engines": {
1596
+ "node": "18 || 20 || >=22"
1597
+ }
1598
+ },
1599
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/base64-js": {
1600
+ "version": "1.5.1",
1601
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1602
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
1603
+ "funding": [
1604
+ {
1605
+ "type": "github",
1606
+ "url": "https://github.com/sponsors/feross"
1607
+ },
1608
+ {
1609
+ "type": "patreon",
1610
+ "url": "https://www.patreon.com/feross"
1611
+ },
1612
+ {
1613
+ "type": "consulting",
1614
+ "url": "https://feross.org/support"
1615
+ }
1616
+ ],
1617
+ "license": "MIT",
1618
+ "peer": true
1619
+ },
1620
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/bignumber.js": {
1621
+ "version": "9.3.1",
1622
+ "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz",
1623
+ "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
1624
+ "license": "MIT",
1625
+ "peer": true,
1626
+ "engines": {
1627
+ "node": "*"
1628
+ }
1629
+ },
1630
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/bowser": {
1631
+ "version": "2.14.1",
1632
+ "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.14.1.tgz",
1633
+ "integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
1634
+ "license": "MIT",
1635
+ "peer": true
1636
+ },
1637
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/brace-expansion": {
1638
+ "version": "5.0.6",
1639
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
1640
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
1641
+ "license": "MIT",
1642
+ "peer": true,
1643
+ "dependencies": {
1644
+ "balanced-match": "^4.0.2"
1645
+ },
1646
+ "engines": {
1647
+ "node": "18 || 20 || >=22"
1648
+ }
1649
+ },
1650
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/buffer-equal-constant-time": {
1651
+ "version": "1.0.1",
1652
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
1653
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
1654
+ "license": "BSD-3-Clause",
1655
+ "peer": true
1656
+ },
1657
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/chalk": {
1658
+ "version": "5.6.2",
1659
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
1660
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
1661
+ "license": "MIT",
1662
+ "peer": true,
1663
+ "engines": {
1664
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1665
+ },
1666
+ "funding": {
1667
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1668
+ }
1669
+ },
1670
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/cross-spawn": {
1671
+ "version": "7.0.6",
1672
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1673
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1674
+ "license": "MIT",
1675
+ "peer": true,
1676
+ "dependencies": {
1677
+ "path-key": "^3.1.0",
1678
+ "shebang-command": "^2.0.0",
1679
+ "which": "^2.0.1"
1680
+ },
1681
+ "engines": {
1682
+ "node": ">= 8"
1683
+ }
1684
+ },
1685
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/data-uri-to-buffer": {
1686
+ "version": "4.0.1",
1687
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
1688
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
1689
+ "license": "MIT",
1690
+ "peer": true,
1691
+ "engines": {
1692
+ "node": ">= 12"
1693
+ }
1694
+ },
1695
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/debug": {
1696
+ "version": "4.4.3",
1697
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1698
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1699
+ "license": "MIT",
1700
+ "peer": true,
1701
+ "dependencies": {
1702
+ "ms": "^2.1.3"
1703
+ },
1704
+ "engines": {
1705
+ "node": ">=6.0"
1706
+ },
1707
+ "peerDependenciesMeta": {
1708
+ "supports-color": {
1709
+ "optional": true
1710
+ }
1711
+ }
1712
+ },
1713
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/diff": {
1714
+ "version": "8.0.4",
1715
+ "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
1716
+ "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
1717
+ "license": "BSD-3-Clause",
1718
+ "peer": true,
1719
+ "engines": {
1720
+ "node": ">=0.3.1"
1721
+ }
1722
+ },
1723
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ecdsa-sig-formatter": {
1724
+ "version": "1.0.11",
1725
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
1726
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
1727
+ "license": "Apache-2.0",
1728
+ "peer": true,
1729
+ "dependencies": {
1730
+ "safe-buffer": "^5.0.1"
1731
+ }
1732
+ },
1733
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/extend": {
1734
+ "version": "3.0.2",
1735
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1736
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1737
+ "license": "MIT",
1738
+ "peer": true
1739
+ },
1740
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fast-xml-builder": {
1741
+ "version": "1.2.0",
1742
+ "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz",
1743
+ "integrity": "sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==",
1744
+ "funding": [
1745
+ {
1746
+ "type": "github",
1747
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1748
+ }
1749
+ ],
1750
+ "license": "MIT",
1751
+ "peer": true,
1752
+ "dependencies": {
1753
+ "path-expression-matcher": "^1.5.0",
1754
+ "xml-naming": "^0.1.0"
1755
+ }
1756
+ },
1757
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fast-xml-parser": {
1758
+ "version": "5.7.3",
1759
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
1760
+ "integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
1761
+ "funding": [
1762
+ {
1763
+ "type": "github",
1764
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1765
+ }
1766
+ ],
1767
+ "license": "MIT",
1768
+ "peer": true,
1769
+ "dependencies": {
1770
+ "@nodable/entities": "^2.1.0",
1771
+ "fast-xml-builder": "^1.1.7",
1772
+ "path-expression-matcher": "^1.5.0",
1773
+ "strnum": "^2.2.3"
1774
+ },
1775
+ "bin": {
1776
+ "fxparser": "src/cli/cli.js"
1777
+ }
1778
+ },
1779
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fetch-blob": {
1780
+ "version": "3.2.0",
1781
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
1782
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
1783
+ "funding": [
1784
+ {
1785
+ "type": "github",
1786
+ "url": "https://github.com/sponsors/jimmywarting"
1787
+ },
1788
+ {
1789
+ "type": "paypal",
1790
+ "url": "https://paypal.me/jimmywarting"
1791
+ }
1792
+ ],
1793
+ "license": "MIT",
1794
+ "peer": true,
1795
+ "dependencies": {
1796
+ "node-domexception": "^1.0.0",
1797
+ "web-streams-polyfill": "^3.0.3"
1798
+ },
1799
+ "engines": {
1800
+ "node": "^12.20 || >= 14.13"
1801
+ }
1802
+ },
1803
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/formdata-polyfill": {
1804
+ "version": "4.0.10",
1805
+ "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
1806
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
1807
+ "license": "MIT",
1808
+ "peer": true,
1809
+ "dependencies": {
1810
+ "fetch-blob": "^3.1.2"
1811
+ },
1812
+ "engines": {
1813
+ "node": ">=12.20.0"
1814
+ }
1815
+ },
1816
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/gaxios": {
1817
+ "version": "7.1.4",
1818
+ "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-7.1.4.tgz",
1819
+ "integrity": "sha512-bTIgTsM2bWn3XklZISBTQX7ZSddGW+IO3bMdGaemHZ3tbqExMENHLx6kKZ/KlejgrMtj8q7wBItt51yegqalrA==",
1820
+ "license": "Apache-2.0",
1821
+ "peer": true,
1822
+ "dependencies": {
1823
+ "extend": "^3.0.2",
1824
+ "https-proxy-agent": "^7.0.1",
1825
+ "node-fetch": "^3.3.2"
1826
+ },
1827
+ "engines": {
1828
+ "node": ">=18"
1829
+ }
1830
+ },
1831
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/gcp-metadata": {
1832
+ "version": "8.1.2",
1833
+ "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
1834
+ "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
1835
+ "license": "Apache-2.0",
1836
+ "peer": true,
1837
+ "dependencies": {
1838
+ "gaxios": "^7.0.0",
1839
+ "google-logging-utils": "^1.0.0",
1840
+ "json-bigint": "^1.0.0"
1841
+ },
1842
+ "engines": {
1843
+ "node": ">=18"
1844
+ }
1845
+ },
1846
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/get-east-asian-width": {
1847
+ "version": "1.6.0",
1848
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
1849
+ "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
1850
+ "license": "MIT",
1851
+ "peer": true,
1852
+ "engines": {
1853
+ "node": ">=18"
1854
+ },
1855
+ "funding": {
1856
+ "url": "https://github.com/sponsors/sindresorhus"
1857
+ }
1858
+ },
1859
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/glob": {
1860
+ "version": "13.0.6",
1861
+ "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
1862
+ "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
1863
+ "license": "BlueOak-1.0.0",
1864
+ "peer": true,
1865
+ "dependencies": {
1866
+ "minimatch": "^10.2.2",
1867
+ "minipass": "^7.1.3",
1868
+ "path-scurry": "^2.0.2"
1869
+ },
1870
+ "engines": {
1871
+ "node": "18 || 20 || >=22"
1872
+ },
1873
+ "funding": {
1874
+ "url": "https://github.com/sponsors/isaacs"
1875
+ }
1876
+ },
1877
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/google-auth-library": {
1878
+ "version": "10.6.2",
1879
+ "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-10.6.2.tgz",
1880
+ "integrity": "sha512-e27Z6EThmVNNvtYASwQxose/G57rkRuaRbQyxM2bvYLLX/GqWZ5chWq2EBoUchJbCc57eC9ArzO5wMsEmWftCw==",
1881
+ "license": "Apache-2.0",
1882
+ "peer": true,
1883
+ "dependencies": {
1884
+ "base64-js": "^1.3.0",
1885
+ "ecdsa-sig-formatter": "^1.0.11",
1886
+ "gaxios": "^7.1.4",
1887
+ "gcp-metadata": "8.1.2",
1888
+ "google-logging-utils": "1.1.3",
1889
+ "jws": "^4.0.0"
1890
+ },
1891
+ "engines": {
1892
+ "node": ">=18"
1893
+ }
1894
+ },
1895
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/google-logging-utils": {
1896
+ "version": "1.1.3",
1897
+ "resolved": "https://registry.npmjs.org/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
1898
+ "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
1899
+ "license": "Apache-2.0",
1900
+ "peer": true,
1901
+ "engines": {
1902
+ "node": ">=14"
1903
+ }
1904
+ },
1905
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/graceful-fs": {
1906
+ "version": "4.2.11",
1907
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1908
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1909
+ "license": "ISC",
1910
+ "peer": true
1911
+ },
1912
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/highlight.js": {
1913
+ "version": "10.7.3",
1914
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
1915
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
1916
+ "license": "BSD-3-Clause",
1917
+ "peer": true,
1918
+ "engines": {
1919
+ "node": "*"
1920
+ }
1921
+ },
1922
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/hosted-git-info": {
1923
+ "version": "9.0.3",
1924
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz",
1925
+ "integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==",
1926
+ "license": "ISC",
1927
+ "peer": true,
1928
+ "dependencies": {
1929
+ "lru-cache": "^11.1.0"
1930
+ },
1931
+ "engines": {
1932
+ "node": "^20.17.0 || >=22.9.0"
1933
+ }
1934
+ },
1935
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/http-proxy-agent": {
1936
+ "version": "7.0.2",
1937
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
1938
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
1939
+ "license": "MIT",
1940
+ "peer": true,
1941
+ "dependencies": {
1942
+ "agent-base": "^7.1.0",
1943
+ "debug": "^4.3.4"
1944
+ },
1945
+ "engines": {
1946
+ "node": ">= 14"
1947
+ }
1948
+ },
1949
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/https-proxy-agent": {
1950
+ "version": "7.0.6",
1951
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
1952
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
1953
+ "license": "MIT",
1954
+ "peer": true,
1955
+ "dependencies": {
1956
+ "agent-base": "^7.1.2",
1957
+ "debug": "4"
1958
+ },
1959
+ "engines": {
1960
+ "node": ">= 14"
1961
+ }
1962
+ },
1963
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ignore": {
1964
+ "version": "7.0.5",
1965
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
1966
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
1967
+ "license": "MIT",
1968
+ "peer": true,
1969
+ "engines": {
1970
+ "node": ">= 4"
1971
+ }
1972
+ },
1973
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/isexe": {
1974
+ "version": "2.0.0",
1975
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1976
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1977
+ "license": "ISC",
1978
+ "peer": true
1979
+ },
1980
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/jiti": {
1981
+ "version": "2.7.0",
1982
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
1983
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
1984
+ "license": "MIT",
1985
+ "peer": true,
1986
+ "bin": {
1987
+ "jiti": "lib/jiti-cli.mjs"
1988
+ }
1989
+ },
1990
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/json-bigint": {
1991
+ "version": "1.0.0",
1992
+ "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
1993
+ "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
1994
+ "license": "MIT",
1995
+ "peer": true,
1996
+ "dependencies": {
1997
+ "bignumber.js": "^9.0.0"
1998
+ }
1999
+ },
2000
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/json-schema-to-ts": {
2001
+ "version": "3.1.1",
2002
+ "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
2003
+ "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
2004
+ "license": "MIT",
2005
+ "peer": true,
2006
+ "dependencies": {
2007
+ "@babel/runtime": "^7.18.3",
2008
+ "ts-algebra": "^2.0.0"
2009
+ },
2010
+ "engines": {
2011
+ "node": ">=16"
2012
+ }
2013
+ },
2014
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/jwa": {
2015
+ "version": "2.0.1",
2016
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
2017
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
2018
+ "license": "MIT",
2019
+ "peer": true,
2020
+ "dependencies": {
2021
+ "buffer-equal-constant-time": "^1.0.1",
2022
+ "ecdsa-sig-formatter": "1.0.11",
2023
+ "safe-buffer": "^5.0.1"
2024
+ }
2025
+ },
2026
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/jws": {
2027
+ "version": "4.0.1",
2028
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
2029
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
2030
+ "license": "MIT",
2031
+ "peer": true,
2032
+ "dependencies": {
2033
+ "jwa": "^2.0.1",
2034
+ "safe-buffer": "^5.0.1"
2035
+ }
2036
+ },
2037
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/long": {
2038
+ "version": "5.3.2",
2039
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
2040
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
2041
+ "license": "Apache-2.0",
2042
+ "peer": true
2043
+ },
2044
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/lru-cache": {
2045
+ "version": "11.4.0",
2046
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.4.0.tgz",
2047
+ "integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
2048
+ "license": "BlueOak-1.0.0",
2049
+ "peer": true,
2050
+ "engines": {
2051
+ "node": "20 || >=22"
2052
+ }
2053
+ },
2054
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/marked": {
2055
+ "version": "18.0.5",
2056
+ "resolved": "https://registry.npmjs.org/marked/-/marked-18.0.5.tgz",
2057
+ "integrity": "sha512-S6GcvALHg6K4ohtu4E7x0a1AqhAjp6cV8KhLSyN9qVapnzJkusVBxZRcIU9AeYsbe6P1hKDusSbEOzGyyuce6w==",
2058
+ "license": "MIT",
2059
+ "peer": true,
2060
+ "bin": {
2061
+ "marked": "bin/marked.js"
2062
+ },
2063
+ "engines": {
2064
+ "node": ">= 20"
2065
+ }
2066
+ },
2067
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/minimatch": {
2068
+ "version": "10.2.5",
2069
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
2070
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
2071
+ "license": "BlueOak-1.0.0",
2072
+ "peer": true,
2073
+ "dependencies": {
2074
+ "brace-expansion": "^5.0.5"
2075
+ },
2076
+ "engines": {
2077
+ "node": "18 || 20 || >=22"
2078
+ },
2079
+ "funding": {
2080
+ "url": "https://github.com/sponsors/isaacs"
2081
+ }
2082
+ },
2083
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/minipass": {
2084
+ "version": "7.1.3",
2085
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
2086
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
2087
+ "license": "BlueOak-1.0.0",
2088
+ "peer": true,
2089
+ "engines": {
2090
+ "node": ">=16 || 14 >=14.17"
2091
+ }
2092
+ },
2093
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ms": {
2094
+ "version": "2.1.3",
2095
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2096
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2097
+ "license": "MIT",
2098
+ "peer": true
2099
+ },
2100
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/node-domexception": {
2101
+ "version": "1.0.0",
2102
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
2103
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
2104
+ "deprecated": "Use your platform's native DOMException instead",
2105
+ "funding": [
2106
+ {
2107
+ "type": "github",
2108
+ "url": "https://github.com/sponsors/jimmywarting"
2109
+ },
2110
+ {
2111
+ "type": "github",
2112
+ "url": "https://paypal.me/jimmywarting"
2113
+ }
2114
+ ],
2115
+ "license": "MIT",
2116
+ "peer": true,
2117
+ "engines": {
2118
+ "node": ">=10.5.0"
2119
+ }
2120
+ },
2121
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/node-fetch": {
2122
+ "version": "3.3.2",
2123
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
2124
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
2125
+ "license": "MIT",
2126
+ "peer": true,
2127
+ "dependencies": {
2128
+ "data-uri-to-buffer": "^4.0.0",
2129
+ "fetch-blob": "^3.1.4",
2130
+ "formdata-polyfill": "^4.0.10"
2131
+ },
2132
+ "engines": {
2133
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2134
+ },
2135
+ "funding": {
2136
+ "type": "opencollective",
2137
+ "url": "https://opencollective.com/node-fetch"
2138
+ }
2139
+ },
2140
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/openai": {
2141
+ "version": "6.26.0",
2142
+ "resolved": "https://registry.npmjs.org/openai/-/openai-6.26.0.tgz",
2143
+ "integrity": "sha512-zd23dbWTjiJ6sSAX6s0HrCZi41JwTA1bQVs0wLQPZ2/5o2gxOJA5wh7yOAUgwYybfhDXyhwlpeQf7Mlgx8EOCA==",
2144
+ "license": "Apache-2.0",
2145
+ "peer": true,
2146
+ "bin": {
2147
+ "openai": "bin/cli"
2148
+ },
2149
+ "peerDependencies": {
2150
+ "ws": "^8.18.0",
2151
+ "zod": "^3.25 || ^4.0"
2152
+ },
2153
+ "peerDependenciesMeta": {
2154
+ "ws": {
2155
+ "optional": true
2156
+ },
2157
+ "zod": {
2158
+ "optional": true
2159
+ }
2160
+ }
2161
+ },
2162
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/p-retry": {
2163
+ "version": "4.6.2",
2164
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
2165
+ "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
2166
+ "license": "MIT",
2167
+ "peer": true,
2168
+ "dependencies": {
2169
+ "@types/retry": "0.12.0",
2170
+ "retry": "^0.13.1"
2171
+ },
2172
+ "engines": {
2173
+ "node": ">=8"
2174
+ }
2175
+ },
2176
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/p-retry/node_modules/@types/retry": {
2177
+ "version": "0.12.0",
2178
+ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
2179
+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
2180
+ "license": "MIT",
2181
+ "peer": true
2182
+ },
2183
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/partial-json": {
2184
+ "version": "0.1.7",
2185
+ "resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
2186
+ "integrity": "sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==",
2187
+ "license": "MIT",
2188
+ "peer": true
2189
+ },
2190
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/path-expression-matcher": {
2191
+ "version": "1.5.0",
2192
+ "resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz",
2193
+ "integrity": "sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==",
2194
+ "funding": [
2195
+ {
2196
+ "type": "github",
2197
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2198
+ }
2199
+ ],
2200
+ "license": "MIT",
2201
+ "peer": true,
2202
+ "engines": {
2203
+ "node": ">=14.0.0"
2204
+ }
2205
+ },
2206
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/path-key": {
2207
+ "version": "3.1.1",
2208
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2209
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2210
+ "license": "MIT",
2211
+ "peer": true,
2212
+ "engines": {
2213
+ "node": ">=8"
2214
+ }
2215
+ },
2216
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/path-scurry": {
2217
+ "version": "2.0.2",
2218
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
2219
+ "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
2220
+ "license": "BlueOak-1.0.0",
2221
+ "peer": true,
2222
+ "dependencies": {
2223
+ "lru-cache": "^11.0.0",
2224
+ "minipass": "^7.1.2"
2225
+ },
2226
+ "engines": {
2227
+ "node": "18 || 20 || >=22"
2228
+ },
2229
+ "funding": {
2230
+ "url": "https://github.com/sponsors/isaacs"
2231
+ }
2232
+ },
2233
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/proper-lockfile": {
2234
+ "version": "4.1.2",
2235
+ "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
2236
+ "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
2237
+ "license": "MIT",
2238
+ "peer": true,
2239
+ "dependencies": {
2240
+ "graceful-fs": "^4.2.4",
2241
+ "retry": "^0.12.0",
2242
+ "signal-exit": "^3.0.2"
2243
+ }
2244
+ },
2245
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/proper-lockfile/node_modules/retry": {
2246
+ "version": "0.12.0",
2247
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
2248
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
2249
+ "license": "MIT",
2250
+ "peer": true,
2251
+ "engines": {
2252
+ "node": ">= 4"
2253
+ }
2254
+ },
2255
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/protobufjs": {
2256
+ "version": "7.5.9",
2257
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.9.tgz",
2258
+ "integrity": "sha512-Od4muIm3HW1AouyHF5lONOf1FWo3hY1NbFDoy191X9GzhpgW1clCoaFjfVs2rKJNFYpTNJbje4cbAIDBZJ63ZA==",
2259
+ "hasInstallScript": true,
2260
+ "license": "BSD-3-Clause",
2261
+ "peer": true,
2262
+ "dependencies": {
2263
+ "@protobufjs/aspromise": "^1.1.2",
2264
+ "@protobufjs/base64": "^1.1.2",
2265
+ "@protobufjs/codegen": "^2.0.5",
2266
+ "@protobufjs/eventemitter": "^1.1.0",
2267
+ "@protobufjs/fetch": "^1.1.1",
2268
+ "@protobufjs/float": "^1.0.2",
2269
+ "@protobufjs/inquire": "^1.1.2",
2270
+ "@protobufjs/path": "^1.1.2",
2271
+ "@protobufjs/pool": "^1.1.0",
2272
+ "@protobufjs/utf8": "^1.1.1",
2273
+ "@types/node": ">=13.7.0",
2274
+ "long": "^5.0.0"
2275
+ },
2276
+ "engines": {
2277
+ "node": ">=12.0.0"
2278
+ }
2279
+ },
2280
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/retry": {
2281
+ "version": "0.13.1",
2282
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
2283
+ "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
2284
+ "license": "MIT",
2285
+ "peer": true,
2286
+ "engines": {
2287
+ "node": ">= 4"
2288
+ }
2289
+ },
2290
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/safe-buffer": {
2291
+ "version": "5.2.1",
2292
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
2293
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
2294
+ "funding": [
2295
+ {
2296
+ "type": "github",
2297
+ "url": "https://github.com/sponsors/feross"
2298
+ },
2299
+ {
2300
+ "type": "patreon",
2301
+ "url": "https://www.patreon.com/feross"
2302
+ },
2303
+ {
2304
+ "type": "consulting",
2305
+ "url": "https://feross.org/support"
2306
+ }
2307
+ ],
2308
+ "license": "MIT",
2309
+ "peer": true
2310
+ },
2311
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/semver": {
2312
+ "version": "7.8.0",
2313
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
2314
+ "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==",
2315
+ "license": "ISC",
2316
+ "peer": true,
2317
+ "bin": {
2318
+ "semver": "bin/semver.js"
2319
+ },
2320
+ "engines": {
2321
+ "node": ">=10"
2322
+ }
2323
+ },
2324
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/shebang-command": {
2325
+ "version": "2.0.0",
2326
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2327
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2328
+ "license": "MIT",
2329
+ "peer": true,
2330
+ "dependencies": {
2331
+ "shebang-regex": "^3.0.0"
2332
+ },
2333
+ "engines": {
2334
+ "node": ">=8"
2335
+ }
2336
+ },
2337
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/shebang-regex": {
2338
+ "version": "3.0.0",
2339
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2340
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2341
+ "license": "MIT",
2342
+ "peer": true,
2343
+ "engines": {
2344
+ "node": ">=8"
2345
+ }
2346
+ },
2347
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/signal-exit": {
2348
+ "version": "3.0.7",
2349
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
2350
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
2351
+ "license": "ISC",
2352
+ "peer": true
2353
+ },
2354
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/strnum": {
2355
+ "version": "2.3.0",
2356
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
2357
+ "integrity": "sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==",
2358
+ "funding": [
2359
+ {
2360
+ "type": "github",
2361
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2362
+ }
2363
+ ],
2364
+ "license": "MIT",
2365
+ "peer": true
2366
+ },
2367
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ts-algebra": {
2368
+ "version": "2.0.0",
2369
+ "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz",
2370
+ "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
2371
+ "license": "MIT",
2372
+ "peer": true
2373
+ },
2374
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/tslib": {
2375
+ "version": "2.8.1",
2376
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2377
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2378
+ "license": "0BSD",
2379
+ "peer": true
2380
+ },
2381
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/typebox": {
2382
+ "version": "1.1.38",
2383
+ "resolved": "https://registry.npmjs.org/typebox/-/typebox-1.1.38.tgz",
2384
+ "integrity": "sha512-pZ0aQPmMmXoUvSbeuWf/Hzsc+avNw/Zd6VeE8CFgkVGWyuHPJvqeJJDeJqLve+K70LvjYIoleGcoJHPT17cWoA==",
2385
+ "license": "MIT",
2386
+ "peer": true
2387
+ },
2388
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/undici": {
2389
+ "version": "8.3.0",
2390
+ "resolved": "https://registry.npmjs.org/undici/-/undici-8.3.0.tgz",
2391
+ "integrity": "sha512-TkUDgb6tl7KOGZ+7e8E3d2FYgUQgF6z5YypqjWmixVQSQERFcVrVg0ySADm2LVLRh5ljAaHTCR5Fmz3Q34rB7Q==",
2392
+ "license": "MIT",
2393
+ "peer": true,
2394
+ "engines": {
2395
+ "node": ">=22.19.0"
2396
+ }
2397
+ },
2398
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/undici-types": {
2399
+ "version": "6.21.0",
2400
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
2401
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
2402
+ "license": "MIT",
2403
+ "peer": true
2404
+ },
2405
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/web-streams-polyfill": {
2406
+ "version": "3.3.3",
2407
+ "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
2408
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
2409
+ "license": "MIT",
2410
+ "peer": true,
2411
+ "engines": {
2412
+ "node": ">= 8"
2413
+ }
2414
+ },
2415
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/which": {
2416
+ "version": "2.0.2",
2417
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2418
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2419
+ "license": "ISC",
2420
+ "peer": true,
2421
+ "dependencies": {
2422
+ "isexe": "^2.0.0"
2423
+ },
2424
+ "bin": {
2425
+ "node-which": "bin/node-which"
2426
+ },
2427
+ "engines": {
2428
+ "node": ">= 8"
2429
+ }
2430
+ },
2431
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ws": {
2432
+ "version": "8.20.1",
2433
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz",
2434
+ "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==",
2435
+ "license": "MIT",
2436
+ "peer": true,
2437
+ "engines": {
2438
+ "node": ">=10.0.0"
2439
+ },
2440
+ "peerDependencies": {
2441
+ "bufferutil": "^4.0.1",
2442
+ "utf-8-validate": ">=5.0.2"
2443
+ },
2444
+ "peerDependenciesMeta": {
2445
+ "bufferutil": {
2446
+ "optional": true
2447
+ },
2448
+ "utf-8-validate": {
2449
+ "optional": true
2450
+ }
2451
+ }
2452
+ },
2453
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/xml-naming": {
2454
+ "version": "0.1.0",
2455
+ "resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz",
2456
+ "integrity": "sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==",
2457
+ "funding": [
2458
+ {
2459
+ "type": "github",
2460
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2461
+ }
2462
+ ],
2463
+ "license": "MIT",
2464
+ "peer": true,
2465
+ "engines": {
2466
+ "node": ">=16.0.0"
2467
+ }
2468
+ },
2469
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/yaml": {
2470
+ "version": "2.9.0",
2471
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
2472
+ "integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
2473
+ "license": "ISC",
2474
+ "peer": true,
2475
+ "bin": {
2476
+ "yaml": "bin.mjs"
2477
+ },
2478
+ "engines": {
2479
+ "node": ">= 14.6"
2480
+ },
2481
+ "funding": {
2482
+ "url": "https://github.com/sponsors/eemeli"
2483
+ }
2484
+ },
2485
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/zod": {
2486
+ "version": "3.25.76",
2487
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
2488
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
2489
+ "license": "MIT",
2490
+ "peer": true,
2491
+ "funding": {
2492
+ "url": "https://github.com/sponsors/colinhacks"
2493
+ }
2494
+ },
2495
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/zod-to-json-schema": {
2496
+ "version": "3.25.2",
2497
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
2498
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
2499
+ "license": "ISC",
2500
+ "peer": true,
2501
+ "peerDependencies": {
2502
+ "zod": "^3.25.28 || ^4"
2503
+ }
2504
+ },
2505
+ "node_modules/@google/genai": {
2506
+ "version": "1.52.0",
2507
+ "resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.52.0.tgz",
2508
+ "integrity": "sha512-gwSvbpiN/17O9TbsqSsE/OzZcpv5Fo4RQjdngGgogtuB9RsyJ8ZHhX5KjHj1bp5N9snN2eK8LDGXSaWW2hof8Q==",
2509
+ "dev": true,
2510
+ "hasInstallScript": true,
2511
+ "license": "Apache-2.0",
2512
+ "dependencies": {
2513
+ "google-auth-library": "^10.3.0",
2514
+ "p-retry": "^4.6.2",
2515
+ "protobufjs": "^7.5.4",
2516
+ "ws": "^8.18.0"
2517
+ },
2518
+ "engines": {
2519
+ "node": ">=20.0.0"
2520
+ },
2521
+ "peerDependencies": {
2522
+ "@modelcontextprotocol/sdk": "^1.25.2"
2523
+ },
2524
+ "peerDependenciesMeta": {
2525
+ "@modelcontextprotocol/sdk": {
2526
+ "optional": true
2527
+ }
2528
+ }
2529
+ },
2530
+ "node_modules/@mistralai/mistralai": {
2531
+ "version": "2.2.1",
2532
+ "resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-2.2.1.tgz",
2533
+ "integrity": "sha512-uKU8CZmL2RzYKmplsU01hii4p3pe4HqJefpWNRWXm1Tcm0Sm4xXfwSLIy4k7ZCPlbETCGcp69E7hZs+WOJ5itQ==",
2534
+ "dev": true,
2535
+ "license": "Apache-2.0",
2536
+ "dependencies": {
2537
+ "ws": "^8.18.0",
2538
+ "zod": "^3.25.0 || ^4.0.0",
2539
+ "zod-to-json-schema": "^3.25.0"
2540
+ }
2541
+ },
2542
+ "node_modules/@nodable/entities": {
2543
+ "version": "2.2.0",
2544
+ "resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.2.0.tgz",
2545
+ "integrity": "sha512-9uGyhaQavEUMC8AIddIjau4NsnsXhou+j5sBAGojCM1oxmQpVKTWR/9JxABD6UAv12vpIms55fPZKFQEhG6uBg==",
2546
+ "dev": true,
2547
+ "funding": [
2548
+ {
2549
+ "type": "github",
2550
+ "url": "https://github.com/sponsors/nodable"
2551
+ }
2552
+ ],
2553
+ "license": "MIT"
2554
+ },
2555
+ "node_modules/@protobufjs/aspromise": {
2556
+ "version": "1.1.2",
2557
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
2558
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
2559
+ "dev": true,
2560
+ "license": "BSD-3-Clause"
2561
+ },
2562
+ "node_modules/@protobufjs/base64": {
2563
+ "version": "1.1.2",
2564
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
2565
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
2566
+ "dev": true,
2567
+ "license": "BSD-3-Clause"
2568
+ },
2569
+ "node_modules/@protobufjs/codegen": {
2570
+ "version": "2.0.5",
2571
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
2572
+ "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
2573
+ "dev": true,
2574
+ "license": "BSD-3-Clause"
2575
+ },
2576
+ "node_modules/@protobufjs/eventemitter": {
2577
+ "version": "1.1.1",
2578
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
2579
+ "integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
2580
+ "dev": true,
2581
+ "license": "BSD-3-Clause"
2582
+ },
2583
+ "node_modules/@protobufjs/fetch": {
2584
+ "version": "1.1.1",
2585
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
2586
+ "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
2587
+ "dev": true,
2588
+ "license": "BSD-3-Clause",
2589
+ "dependencies": {
2590
+ "@protobufjs/aspromise": "^1.1.1"
2591
+ }
2592
+ },
2593
+ "node_modules/@protobufjs/float": {
2594
+ "version": "1.0.2",
2595
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
2596
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
2597
+ "dev": true,
2598
+ "license": "BSD-3-Clause"
2599
+ },
2600
+ "node_modules/@protobufjs/path": {
2601
+ "version": "1.1.2",
2602
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
2603
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
2604
+ "dev": true,
2605
+ "license": "BSD-3-Clause"
2606
+ },
2607
+ "node_modules/@protobufjs/pool": {
2608
+ "version": "1.1.0",
2609
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
2610
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
2611
+ "dev": true,
2612
+ "license": "BSD-3-Clause"
2613
+ },
2614
+ "node_modules/@protobufjs/utf8": {
2615
+ "version": "1.1.1",
2616
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
2617
+ "integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
2618
+ "dev": true,
2619
+ "license": "BSD-3-Clause"
2620
+ },
2621
+ "node_modules/@smithy/core": {
2622
+ "version": "3.25.0",
2623
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.25.0.tgz",
2624
+ "integrity": "sha512-TTD6el7tvKyafkXBf7XO3jLOE+qVxOTrLjp/fEGiV3BMfUHK/LfdYlQO9YgZvzxC7kqA3H/IhJXNqQgnbgjb7A==",
2625
+ "dev": true,
2626
+ "license": "Apache-2.0",
2627
+ "dependencies": {
2628
+ "@aws-crypto/crc32": "5.2.0",
2629
+ "@smithy/types": "^4.15.0",
2630
+ "tslib": "^2.6.2"
2631
+ },
2632
+ "engines": {
2633
+ "node": ">=18.0.0"
2634
+ }
2635
+ },
2636
+ "node_modules/@smithy/credential-provider-imds": {
2637
+ "version": "4.4.0",
2638
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.4.0.tgz",
2639
+ "integrity": "sha512-pPQmNdEvMJttv9z2kdYxoui83p/nr32zjMf0aMfmzmGmFEgKXUfy0vXiNg0fx4R5XLQzmJBLM9Wg0guEq2/q8A==",
2640
+ "dev": true,
2641
+ "license": "Apache-2.0",
2642
+ "dependencies": {
2643
+ "@smithy/core": "^3.25.0",
2644
+ "@smithy/types": "^4.15.0",
2645
+ "tslib": "^2.6.2"
2646
+ },
2647
+ "engines": {
2648
+ "node": ">=18.0.0"
2649
+ }
2650
+ },
2651
+ "node_modules/@smithy/fetch-http-handler": {
2652
+ "version": "5.5.0",
2653
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.5.0.tgz",
2654
+ "integrity": "sha512-OG8kBYAgX7lf32+xLzgirvuLffn1KNoszaSiButt45i2cRa5irk8LQXLYQ5Smij1SBTN4KMNcBsRwRrLPfIGyA==",
2655
+ "dev": true,
2656
+ "license": "Apache-2.0",
2657
+ "dependencies": {
2658
+ "@smithy/core": "^3.25.0",
2659
+ "@smithy/types": "^4.15.0",
2660
+ "tslib": "^2.6.2"
2661
+ },
2662
+ "engines": {
2663
+ "node": ">=18.0.0"
2664
+ }
2665
+ },
2666
+ "node_modules/@smithy/is-array-buffer": {
2667
+ "version": "2.2.0",
2668
+ "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
2669
+ "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
2670
+ "dev": true,
2671
+ "license": "Apache-2.0",
2672
+ "dependencies": {
2673
+ "tslib": "^2.6.2"
2674
+ },
2675
+ "engines": {
2676
+ "node": ">=14.0.0"
2677
+ }
2678
+ },
2679
+ "node_modules/@smithy/node-http-handler": {
2680
+ "version": "4.7.3",
2681
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.7.3.tgz",
2682
+ "integrity": "sha512-/jPhevcTFPMVl6KNjbaI47iOg1zxC7IsnX4PQDGVZKMFceOXtB8IEYaB7a9VvkP/3oC60WzTeKocvSI7vLT0vA==",
2683
+ "dev": true,
2684
+ "license": "Apache-2.0",
2685
+ "dependencies": {
2686
+ "@smithy/core": "^3.24.3",
2687
+ "@smithy/types": "^4.14.2",
2688
+ "tslib": "^2.6.2"
2689
+ },
2690
+ "engines": {
2691
+ "node": ">=18.0.0"
2692
+ }
2693
+ },
2694
+ "node_modules/@smithy/signature-v4": {
2695
+ "version": "5.5.0",
2696
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.5.0.tgz",
2697
+ "integrity": "sha512-vW6UdK7e7gV2wU/tXRsPq4pMQMusb8VymdVOyIFNA1FtyRmEClRFkYDtYI8UcO/HM0wK3qqjvvQs3HOlbgMbdg==",
2698
+ "dev": true,
2699
+ "license": "Apache-2.0",
2700
+ "dependencies": {
2701
+ "@smithy/core": "^3.25.0",
2702
+ "@smithy/types": "^4.15.0",
2703
+ "tslib": "^2.6.2"
2704
+ },
2705
+ "engines": {
2706
+ "node": ">=18.0.0"
2707
+ }
2708
+ },
2709
+ "node_modules/@smithy/types": {
2710
+ "version": "4.15.0",
2711
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.15.0.tgz",
2712
+ "integrity": "sha512-Z5TAOxygoFvybJV3igo5SloFflSokHx2hu1eFA+DxDTcn+FtKxUSui+rbTRG1pAafMA888Z3MVvCWUuvCrTXjg==",
2713
+ "dev": true,
2714
+ "license": "Apache-2.0",
2715
+ "dependencies": {
2716
+ "tslib": "^2.6.2"
2717
+ },
2718
+ "engines": {
2719
+ "node": ">=18.0.0"
2720
+ }
2721
+ },
2722
+ "node_modules/@smithy/util-buffer-from": {
2723
+ "version": "2.2.0",
2724
+ "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
2725
+ "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
2726
+ "dev": true,
2727
+ "license": "Apache-2.0",
2728
+ "dependencies": {
2729
+ "@smithy/is-array-buffer": "^2.2.0",
2730
+ "tslib": "^2.6.2"
2731
+ },
2732
+ "engines": {
2733
+ "node": ">=14.0.0"
2734
+ }
2735
+ },
2736
+ "node_modules/@smithy/util-utf8": {
2737
+ "version": "2.3.0",
2738
+ "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
2739
+ "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
2740
+ "dev": true,
2741
+ "license": "Apache-2.0",
2742
+ "dependencies": {
2743
+ "@smithy/util-buffer-from": "^2.2.0",
2744
+ "tslib": "^2.6.2"
2745
+ },
2746
+ "engines": {
2747
+ "node": ">=14.0.0"
2748
+ }
2749
+ },
2750
+ "node_modules/@types/node": {
2751
+ "version": "25.9.3",
2752
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.3.tgz",
2753
+ "integrity": "sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==",
2754
+ "dev": true,
2755
+ "license": "MIT",
2756
+ "dependencies": {
2757
+ "undici-types": ">=7.24.0 <7.24.7"
2758
+ }
2759
+ },
2760
+ "node_modules/@types/retry": {
2761
+ "version": "0.12.0",
2762
+ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
2763
+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
2764
+ "dev": true,
2765
+ "license": "MIT"
2766
+ },
2767
+ "node_modules/agent-base": {
2768
+ "version": "7.1.4",
2769
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
2770
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
2771
+ "dev": true,
2772
+ "license": "MIT",
2773
+ "engines": {
2774
+ "node": ">= 14"
2775
+ }
2776
+ },
2777
+ "node_modules/anynum": {
2778
+ "version": "1.0.0",
2779
+ "resolved": "https://registry.npmjs.org/anynum/-/anynum-1.0.0.tgz",
2780
+ "integrity": "sha512-xjR9/zBVnUOP6ztMIIgShjsxui80nQUQH+5xJnvrYLs+90bF25/KJqaAi8mk+B4RDtX1Nspi6fmp4YTEts8SfA==",
2781
+ "dev": true,
2782
+ "funding": [
2783
+ {
2784
+ "type": "github",
2785
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2786
+ }
2787
+ ],
2788
+ "license": "MIT"
2789
+ },
2790
+ "node_modules/base64-js": {
2791
+ "version": "1.5.1",
2792
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
2793
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
2794
+ "dev": true,
2795
+ "funding": [
2796
+ {
2797
+ "type": "github",
2798
+ "url": "https://github.com/sponsors/feross"
2799
+ },
2800
+ {
2801
+ "type": "patreon",
2802
+ "url": "https://www.patreon.com/feross"
2803
+ },
2804
+ {
2805
+ "type": "consulting",
2806
+ "url": "https://feross.org/support"
2807
+ }
2808
+ ],
2809
+ "license": "MIT"
2810
+ },
2811
+ "node_modules/bignumber.js": {
2812
+ "version": "9.3.1",
2813
+ "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz",
2814
+ "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
2815
+ "dev": true,
2816
+ "license": "MIT",
2817
+ "engines": {
2818
+ "node": "*"
2819
+ }
2820
+ },
2821
+ "node_modules/bowser": {
2822
+ "version": "2.14.1",
2823
+ "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.14.1.tgz",
2824
+ "integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
2825
+ "dev": true,
2826
+ "license": "MIT"
2827
+ },
2828
+ "node_modules/buffer-equal-constant-time": {
2829
+ "version": "1.0.1",
2830
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
2831
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
2832
+ "dev": true,
2833
+ "license": "BSD-3-Clause"
2834
+ },
2835
+ "node_modules/data-uri-to-buffer": {
2836
+ "version": "4.0.1",
2837
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
2838
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
2839
+ "dev": true,
2840
+ "license": "MIT",
2841
+ "engines": {
2842
+ "node": ">= 12"
2843
+ }
2844
+ },
2845
+ "node_modules/debug": {
2846
+ "version": "4.4.3",
2847
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2848
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2849
+ "dev": true,
2850
+ "license": "MIT",
2851
+ "dependencies": {
2852
+ "ms": "^2.1.3"
2853
+ },
2854
+ "engines": {
2855
+ "node": ">=6.0"
2856
+ },
2857
+ "peerDependenciesMeta": {
2858
+ "supports-color": {
2859
+ "optional": true
2860
+ }
2861
+ }
2862
+ },
2863
+ "node_modules/ecdsa-sig-formatter": {
2864
+ "version": "1.0.11",
2865
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
2866
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
2867
+ "dev": true,
2868
+ "license": "Apache-2.0",
2869
+ "dependencies": {
2870
+ "safe-buffer": "^5.0.1"
2871
+ }
2872
+ },
2873
+ "node_modules/extend": {
2874
+ "version": "3.0.2",
2875
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
2876
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
2877
+ "dev": true,
2878
+ "license": "MIT"
2879
+ },
2880
+ "node_modules/fast-xml-builder": {
2881
+ "version": "1.2.0",
2882
+ "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz",
2883
+ "integrity": "sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==",
2884
+ "dev": true,
2885
+ "funding": [
2886
+ {
2887
+ "type": "github",
2888
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2889
+ }
2890
+ ],
2891
+ "license": "MIT",
2892
+ "dependencies": {
2893
+ "path-expression-matcher": "^1.5.0",
2894
+ "xml-naming": "^0.1.0"
2895
+ }
2896
+ },
2897
+ "node_modules/fast-xml-parser": {
2898
+ "version": "5.7.3",
2899
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
2900
+ "integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
2901
+ "dev": true,
2902
+ "funding": [
2903
+ {
2904
+ "type": "github",
2905
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2906
+ }
2907
+ ],
2908
+ "license": "MIT",
2909
+ "dependencies": {
2910
+ "@nodable/entities": "^2.1.0",
2911
+ "fast-xml-builder": "^1.1.7",
2912
+ "path-expression-matcher": "^1.5.0",
2913
+ "strnum": "^2.2.3"
2914
+ },
2915
+ "bin": {
2916
+ "fxparser": "src/cli/cli.js"
2917
+ }
2918
+ },
2919
+ "node_modules/fetch-blob": {
2920
+ "version": "3.2.0",
2921
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
2922
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
2923
+ "dev": true,
2924
+ "funding": [
2925
+ {
2926
+ "type": "github",
2927
+ "url": "https://github.com/sponsors/jimmywarting"
2928
+ },
2929
+ {
2930
+ "type": "paypal",
2931
+ "url": "https://paypal.me/jimmywarting"
2932
+ }
2933
+ ],
2934
+ "license": "MIT",
2935
+ "dependencies": {
2936
+ "node-domexception": "^1.0.0",
2937
+ "web-streams-polyfill": "^3.0.3"
2938
+ },
2939
+ "engines": {
2940
+ "node": "^12.20 || >= 14.13"
2941
+ }
2942
+ },
2943
+ "node_modules/formdata-polyfill": {
2944
+ "version": "4.0.10",
2945
+ "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
2946
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
2947
+ "dev": true,
2948
+ "license": "MIT",
2949
+ "dependencies": {
2950
+ "fetch-blob": "^3.1.2"
2951
+ },
2952
+ "engines": {
2953
+ "node": ">=12.20.0"
2954
+ }
2955
+ },
2956
+ "node_modules/gaxios": {
2957
+ "version": "7.1.5",
2958
+ "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-7.1.5.tgz",
2959
+ "integrity": "sha512-5FZy72Rh8LhtjmvDrKkI+lVhrsQrVKVsItxMoDm5mNQE+xR0WVIIs+jzPSJgBvKVsLi24fZhXJIsNI0bihDzFg==",
2960
+ "dev": true,
2961
+ "license": "Apache-2.0",
2962
+ "dependencies": {
2963
+ "extend": "^3.0.2",
2964
+ "https-proxy-agent": "^7.0.1",
2965
+ "node-fetch": "^3.3.2"
2966
+ },
2967
+ "engines": {
2968
+ "node": ">=18"
2969
+ }
2970
+ },
2971
+ "node_modules/gcp-metadata": {
2972
+ "version": "8.1.2",
2973
+ "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
2974
+ "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
2975
+ "dev": true,
2976
+ "license": "Apache-2.0",
2977
+ "dependencies": {
2978
+ "gaxios": "^7.0.0",
2979
+ "google-logging-utils": "^1.0.0",
2980
+ "json-bigint": "^1.0.0"
2981
+ },
2982
+ "engines": {
2983
+ "node": ">=18"
2984
+ }
2985
+ },
2986
+ "node_modules/google-auth-library": {
2987
+ "version": "10.7.0",
2988
+ "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-10.7.0.tgz",
2989
+ "integrity": "sha512-QpTAbNJ36TliZLx3TTtahR8HG0hN9RllL1e3FymOvQSIKK8JmgV58H924ub2wa2DsS3ANjjP1Aw1N+Ramc8hqQ==",
2990
+ "dev": true,
2991
+ "license": "Apache-2.0",
2992
+ "dependencies": {
2993
+ "base64-js": "^1.3.0",
2994
+ "ecdsa-sig-formatter": "^1.0.11",
2995
+ "gaxios": "^7.1.4",
2996
+ "gcp-metadata": "8.1.2",
2997
+ "google-logging-utils": "1.1.3",
2998
+ "jws": "^4.0.0"
2999
+ },
3000
+ "engines": {
3001
+ "node": ">=18"
3002
+ }
3003
+ },
3004
+ "node_modules/google-logging-utils": {
3005
+ "version": "1.1.3",
3006
+ "resolved": "https://registry.npmjs.org/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
3007
+ "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
3008
+ "dev": true,
3009
+ "license": "Apache-2.0",
3010
+ "engines": {
3011
+ "node": ">=14"
3012
+ }
3013
+ },
3014
+ "node_modules/http-proxy-agent": {
3015
+ "version": "7.0.2",
3016
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
3017
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
3018
+ "dev": true,
3019
+ "license": "MIT",
3020
+ "dependencies": {
3021
+ "agent-base": "^7.1.0",
3022
+ "debug": "^4.3.4"
3023
+ },
3024
+ "engines": {
3025
+ "node": ">= 14"
3026
+ }
3027
+ },
3028
+ "node_modules/https-proxy-agent": {
3029
+ "version": "7.0.6",
3030
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
3031
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
3032
+ "dev": true,
3033
+ "license": "MIT",
3034
+ "dependencies": {
3035
+ "agent-base": "^7.1.2",
3036
+ "debug": "4"
3037
+ },
3038
+ "engines": {
3039
+ "node": ">= 14"
3040
+ }
3041
+ },
3042
+ "node_modules/json-bigint": {
3043
+ "version": "1.0.0",
3044
+ "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
3045
+ "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
3046
+ "dev": true,
3047
+ "license": "MIT",
3048
+ "dependencies": {
3049
+ "bignumber.js": "^9.0.0"
3050
+ }
3051
+ },
3052
+ "node_modules/json-schema-to-ts": {
3053
+ "version": "3.1.1",
3054
+ "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
3055
+ "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
3056
+ "dev": true,
3057
+ "license": "MIT",
3058
+ "dependencies": {
3059
+ "@babel/runtime": "^7.18.3",
3060
+ "ts-algebra": "^2.0.0"
3061
+ },
3062
+ "engines": {
3063
+ "node": ">=16"
3064
+ }
3065
+ },
3066
+ "node_modules/jwa": {
3067
+ "version": "2.0.1",
3068
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
3069
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
3070
+ "dev": true,
3071
+ "license": "MIT",
3072
+ "dependencies": {
3073
+ "buffer-equal-constant-time": "^1.0.1",
3074
+ "ecdsa-sig-formatter": "1.0.11",
3075
+ "safe-buffer": "^5.0.1"
3076
+ }
3077
+ },
3078
+ "node_modules/jws": {
3079
+ "version": "4.0.1",
3080
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
3081
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
3082
+ "dev": true,
3083
+ "license": "MIT",
3084
+ "dependencies": {
3085
+ "jwa": "^2.0.1",
3086
+ "safe-buffer": "^5.0.1"
3087
+ }
3088
+ },
3089
+ "node_modules/long": {
3090
+ "version": "5.3.2",
3091
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
3092
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
3093
+ "dev": true,
3094
+ "license": "Apache-2.0"
3095
+ },
3096
+ "node_modules/ms": {
3097
+ "version": "2.1.3",
3098
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3099
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3100
+ "dev": true,
3101
+ "license": "MIT"
3102
+ },
3103
+ "node_modules/node-domexception": {
3104
+ "version": "1.0.0",
3105
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
3106
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
3107
+ "deprecated": "Use your platform's native DOMException instead",
3108
+ "dev": true,
3109
+ "funding": [
3110
+ {
3111
+ "type": "github",
3112
+ "url": "https://github.com/sponsors/jimmywarting"
3113
+ },
3114
+ {
3115
+ "type": "github",
3116
+ "url": "https://paypal.me/jimmywarting"
3117
+ }
3118
+ ],
3119
+ "license": "MIT",
3120
+ "engines": {
3121
+ "node": ">=10.5.0"
3122
+ }
3123
+ },
3124
+ "node_modules/node-fetch": {
3125
+ "version": "3.3.2",
3126
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
3127
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
3128
+ "dev": true,
3129
+ "license": "MIT",
3130
+ "dependencies": {
3131
+ "data-uri-to-buffer": "^4.0.0",
3132
+ "fetch-blob": "^3.1.4",
3133
+ "formdata-polyfill": "^4.0.10"
3134
+ },
3135
+ "engines": {
3136
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
3137
+ },
3138
+ "funding": {
3139
+ "type": "opencollective",
3140
+ "url": "https://opencollective.com/node-fetch"
3141
+ }
3142
+ },
3143
+ "node_modules/openai": {
3144
+ "version": "6.26.0",
3145
+ "resolved": "https://registry.npmjs.org/openai/-/openai-6.26.0.tgz",
3146
+ "integrity": "sha512-zd23dbWTjiJ6sSAX6s0HrCZi41JwTA1bQVs0wLQPZ2/5o2gxOJA5wh7yOAUgwYybfhDXyhwlpeQf7Mlgx8EOCA==",
3147
+ "dev": true,
3148
+ "license": "Apache-2.0",
3149
+ "bin": {
3150
+ "openai": "bin/cli"
3151
+ },
3152
+ "peerDependencies": {
3153
+ "ws": "^8.18.0",
3154
+ "zod": "^3.25 || ^4.0"
3155
+ },
3156
+ "peerDependenciesMeta": {
3157
+ "ws": {
3158
+ "optional": true
3159
+ },
3160
+ "zod": {
3161
+ "optional": true
3162
+ }
3163
+ }
3164
+ },
3165
+ "node_modules/p-retry": {
3166
+ "version": "4.6.2",
3167
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
3168
+ "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
3169
+ "dev": true,
3170
+ "license": "MIT",
3171
+ "dependencies": {
3172
+ "@types/retry": "0.12.0",
3173
+ "retry": "^0.13.1"
3174
+ },
3175
+ "engines": {
3176
+ "node": ">=8"
3177
+ }
3178
+ },
3179
+ "node_modules/partial-json": {
3180
+ "version": "0.1.7",
3181
+ "resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
3182
+ "integrity": "sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==",
3183
+ "dev": true,
3184
+ "license": "MIT"
3185
+ },
3186
+ "node_modules/path-expression-matcher": {
3187
+ "version": "1.5.0",
3188
+ "resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz",
3189
+ "integrity": "sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==",
3190
+ "dev": true,
3191
+ "funding": [
3192
+ {
3193
+ "type": "github",
3194
+ "url": "https://github.com/sponsors/NaturalIntelligence"
3195
+ }
3196
+ ],
3197
+ "license": "MIT",
3198
+ "engines": {
3199
+ "node": ">=14.0.0"
3200
+ }
3201
+ },
3202
+ "node_modules/protobufjs": {
3203
+ "version": "7.6.4",
3204
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.6.4.tgz",
3205
+ "integrity": "sha512-RJJPTTpvFfHcWLkIa2JFWK4XvtSzS0yEWDmunqHXli1h3JlkbcQZXDZdcWxv+JK3Xsl5/UFDPZ0iGm7DAengYw==",
3206
+ "dev": true,
3207
+ "hasInstallScript": true,
3208
+ "license": "BSD-3-Clause",
3209
+ "dependencies": {
3210
+ "@protobufjs/aspromise": "^1.1.2",
3211
+ "@protobufjs/base64": "^1.1.2",
3212
+ "@protobufjs/codegen": "^2.0.5",
3213
+ "@protobufjs/eventemitter": "^1.1.1",
3214
+ "@protobufjs/fetch": "^1.1.1",
3215
+ "@protobufjs/float": "^1.0.2",
3216
+ "@protobufjs/path": "^1.1.2",
3217
+ "@protobufjs/pool": "^1.1.0",
3218
+ "@protobufjs/utf8": "^1.1.1",
3219
+ "@types/node": ">=13.7.0",
3220
+ "long": "^5.3.2"
3221
+ },
3222
+ "engines": {
3223
+ "node": ">=12.0.0"
3224
+ }
3225
+ },
3226
+ "node_modules/retry": {
3227
+ "version": "0.13.1",
3228
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
3229
+ "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
3230
+ "dev": true,
3231
+ "license": "MIT",
3232
+ "engines": {
3233
+ "node": ">= 4"
3234
+ }
3235
+ },
3236
+ "node_modules/safe-buffer": {
3237
+ "version": "5.2.1",
3238
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
3239
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
3240
+ "dev": true,
3241
+ "funding": [
3242
+ {
3243
+ "type": "github",
3244
+ "url": "https://github.com/sponsors/feross"
3245
+ },
3246
+ {
3247
+ "type": "patreon",
3248
+ "url": "https://www.patreon.com/feross"
3249
+ },
3250
+ {
3251
+ "type": "consulting",
3252
+ "url": "https://feross.org/support"
3253
+ }
3254
+ ],
3255
+ "license": "MIT"
3256
+ },
3257
+ "node_modules/strnum": {
3258
+ "version": "2.4.0",
3259
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.4.0.tgz",
3260
+ "integrity": "sha512-sHrVyWWdq28RbhjuJdZsA1SnGRJV6NiXbk6AXBxDOsgAcA+lmpUZCYjOdLBxkXMwis6RRe7dlZt4VlIWFVzkmg==",
3261
+ "dev": true,
3262
+ "funding": [
3263
+ {
3264
+ "type": "github",
3265
+ "url": "https://github.com/sponsors/NaturalIntelligence"
3266
+ }
3267
+ ],
3268
+ "license": "MIT",
3269
+ "dependencies": {
3270
+ "anynum": "^1.0.0"
3271
+ }
3272
+ },
3273
+ "node_modules/ts-algebra": {
3274
+ "version": "2.0.0",
3275
+ "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz",
3276
+ "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
3277
+ "dev": true,
3278
+ "license": "MIT"
3279
+ },
3280
+ "node_modules/tslib": {
3281
+ "version": "2.8.1",
3282
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3283
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3284
+ "dev": true,
3285
+ "license": "0BSD"
3286
+ },
3287
+ "node_modules/typebox": {
3288
+ "version": "1.1.38",
3289
+ "resolved": "https://registry.npmjs.org/typebox/-/typebox-1.1.38.tgz",
3290
+ "integrity": "sha512-pZ0aQPmMmXoUvSbeuWf/Hzsc+avNw/Zd6VeE8CFgkVGWyuHPJvqeJJDeJqLve+K70LvjYIoleGcoJHPT17cWoA==",
3291
+ "dev": true,
3292
+ "license": "MIT"
3293
+ },
3294
+ "node_modules/undici-types": {
3295
+ "version": "7.24.6",
3296
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
3297
+ "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
3298
+ "dev": true,
3299
+ "license": "MIT"
3300
+ },
3301
+ "node_modules/web-streams-polyfill": {
3302
+ "version": "3.3.3",
3303
+ "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
3304
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
3305
+ "dev": true,
3306
+ "license": "MIT",
3307
+ "engines": {
3308
+ "node": ">= 8"
3309
+ }
3310
+ },
3311
+ "node_modules/ws": {
3312
+ "version": "8.21.0",
3313
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
3314
+ "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
3315
+ "dev": true,
3316
+ "license": "MIT",
3317
+ "engines": {
3318
+ "node": ">=10.0.0"
3319
+ },
3320
+ "peerDependencies": {
3321
+ "bufferutil": "^4.0.1",
3322
+ "utf-8-validate": ">=5.0.2"
3323
+ },
3324
+ "peerDependenciesMeta": {
3325
+ "bufferutil": {
3326
+ "optional": true
3327
+ },
3328
+ "utf-8-validate": {
3329
+ "optional": true
3330
+ }
3331
+ }
3332
+ },
3333
+ "node_modules/xml-naming": {
3334
+ "version": "0.1.0",
3335
+ "resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz",
3336
+ "integrity": "sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==",
3337
+ "dev": true,
3338
+ "funding": [
3339
+ {
3340
+ "type": "github",
3341
+ "url": "https://github.com/sponsors/NaturalIntelligence"
3342
+ }
3343
+ ],
3344
+ "license": "MIT",
3345
+ "engines": {
3346
+ "node": ">=16.0.0"
3347
+ }
3348
+ },
3349
+ "node_modules/yaml": {
3350
+ "version": "2.9.0",
3351
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
3352
+ "integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
3353
+ "license": "ISC",
3354
+ "bin": {
3355
+ "yaml": "bin.mjs"
3356
+ },
3357
+ "engines": {
3358
+ "node": ">= 14.6"
3359
+ },
3360
+ "funding": {
3361
+ "url": "https://github.com/sponsors/eemeli"
3362
+ }
3363
+ },
3364
+ "node_modules/zod": {
3365
+ "version": "4.4.3",
3366
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
3367
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
3368
+ "dev": true,
3369
+ "license": "MIT",
3370
+ "funding": {
3371
+ "url": "https://github.com/sponsors/colinhacks"
3372
+ }
3373
+ },
3374
+ "node_modules/zod-to-json-schema": {
3375
+ "version": "3.25.2",
3376
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
3377
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
3378
+ "dev": true,
3379
+ "license": "ISC",
3380
+ "peerDependencies": {
3381
+ "zod": "^3.25.28 || ^4"
3382
+ }
3383
+ }
3384
+ }
3385
+ }