@jacfrost/autopm 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3030) hide show
  1. package/README.md +149 -0
  2. package/bin/autopm +4 -0
  3. package/docs/autopm-bootstrap.md +327 -0
  4. package/docs/autopm-command-surface.md +73 -0
  5. package/docs/autopm-gsd-pi-architecture.md +125 -0
  6. package/docs/autopm-heartbeat.md +94 -0
  7. package/docs/autopm-local-workspace-contract.md +34 -0
  8. package/docs/autopm-memory-operator-guide.md +301 -0
  9. package/docs/autopm-memory-runtime-contract.md +81 -0
  10. package/docs/autopm-memory-tree.md +142 -0
  11. package/docs/autopm-memory-workspace-contract.md +172 -0
  12. package/docs/autopm-package.md +46 -0
  13. package/docs/autopm-pi-upgrade-runbook.md +58 -0
  14. package/docs/autopm-runtime-context.md +125 -0
  15. package/docs/autopm-runtime-dashboard.md +101 -0
  16. package/docs/opportunities-agentic-workflow-requirements.md +255 -0
  17. package/docs/product-setup.md +112 -0
  18. package/docs/venture-signal.md +437 -0
  19. package/extensions/autopm/extension-manifest.json +98 -0
  20. package/extensions/autopm/index.js +2 -0
  21. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.d.ts +3 -0
  22. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.d.ts.map +1 -0
  23. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.js +9 -0
  24. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.js.map +1 -0
  25. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.d.ts +2 -0
  26. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.d.ts.map +1 -0
  27. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.js +4 -0
  28. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.js.map +1 -0
  29. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.d.ts +13 -0
  30. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.d.ts.map +1 -0
  31. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.js +32 -0
  32. package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.js.map +1 -0
  33. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.d.ts +53 -0
  34. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.d.ts.map +1 -0
  35. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.js +341 -0
  36. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.js.map +1 -0
  37. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.d.ts +14 -0
  38. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.d.ts.map +1 -0
  39. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.js +31 -0
  40. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.js.map +1 -0
  41. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.d.ts +15 -0
  42. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.d.ts.map +1 -0
  43. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.js +83 -0
  44. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.js.map +1 -0
  45. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.d.ts +18 -0
  46. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.d.ts.map +1 -0
  47. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.js +22 -0
  48. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.js.map +1 -0
  49. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.d.ts +9 -0
  50. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.d.ts.map +1 -0
  51. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.js +98 -0
  52. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.js.map +1 -0
  53. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.d.ts +9 -0
  54. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.d.ts.map +1 -0
  55. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.js +35 -0
  56. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.js.map +1 -0
  57. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.d.ts +3 -0
  58. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.d.ts.map +1 -0
  59. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.js +24 -0
  60. package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.js.map +1 -0
  61. package/forks/autopm-pi-mono/packages/coding-agent/dist/config.d.ts +95 -0
  62. package/forks/autopm-pi-mono/packages/coding-agent/dist/config.d.ts.map +1 -0
  63. package/forks/autopm-pi-mono/packages/coding-agent/dist/config.js +427 -0
  64. package/forks/autopm-pi-mono/packages/coding-agent/dist/config.js.map +1 -0
  65. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.d.ts +117 -0
  66. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.d.ts.map +1 -0
  67. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.js +300 -0
  68. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.js.map +1 -0
  69. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.d.ts +86 -0
  70. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.d.ts.map +1 -0
  71. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.js +117 -0
  72. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.js.map +1 -0
  73. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.d.ts +596 -0
  74. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.d.ts.map +1 -0
  75. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.js +2554 -0
  76. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.js.map +1 -0
  77. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.d.ts +5 -0
  78. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.d.ts.map +1 -0
  79. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.js +21 -0
  80. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.js.map +1 -0
  81. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.d.ts +141 -0
  82. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.d.ts.map +1 -0
  83. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.js +441 -0
  84. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.js.map +1 -0
  85. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.d.ts +32 -0
  86. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.d.ts.map +1 -0
  87. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.js +111 -0
  88. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.js.map +1 -0
  89. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.d.ts +88 -0
  90. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
  91. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.js +243 -0
  92. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
  93. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.d.ts +121 -0
  94. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
  95. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.js +625 -0
  96. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.js.map +1 -0
  97. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.d.ts +7 -0
  98. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.d.ts.map +1 -0
  99. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.js +7 -0
  100. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.js.map +1 -0
  101. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.d.ts +38 -0
  102. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
  103. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.js +153 -0
  104. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.js.map +1 -0
  105. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.d.ts +3 -0
  106. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.d.ts.map +1 -0
  107. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.js +2 -0
  108. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.js.map +1 -0
  109. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.d.ts +15 -0
  110. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.d.ts.map +1 -0
  111. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.js +2 -0
  112. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.js.map +1 -0
  113. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.d.ts +9 -0
  114. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.d.ts.map +1 -0
  115. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.js +25 -0
  116. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.js.map +1 -0
  117. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.d.ts +29 -0
  118. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.d.ts.map +1 -0
  119. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.js +75 -0
  120. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.js.map +1 -0
  121. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.d.ts +22 -0
  122. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
  123. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.js +249 -0
  124. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.js.map +1 -0
  125. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.d.ts +37 -0
  126. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.d.ts.map +1 -0
  127. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.js +224 -0
  128. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.js.map +1 -0
  129. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.css +1066 -0
  130. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.html +55 -0
  131. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.js +1834 -0
  132. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.d.ts +34 -0
  133. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
  134. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.js +108 -0
  135. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
  136. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/vendor/highlight.min.js +1213 -0
  137. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/vendor/marked.min.js +6 -0
  138. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.d.ts +12 -0
  139. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.d.ts.map +1 -0
  140. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.js +9 -0
  141. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.js.map +1 -0
  142. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.d.ts +24 -0
  143. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
  144. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.js +498 -0
  145. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.js.map +1 -0
  146. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.d.ts +159 -0
  147. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
  148. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.js +830 -0
  149. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.js.map +1 -0
  150. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.d.ts +1176 -0
  151. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.d.ts.map +1 -0
  152. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.js +45 -0
  153. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.js.map +1 -0
  154. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
  155. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
  156. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.js +22 -0
  157. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.js.map +1 -0
  158. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.d.ts +52 -0
  159. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.d.ts.map +1 -0
  160. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.js +310 -0
  161. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.js.map +1 -0
  162. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.d.ts +12 -0
  163. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.d.ts.map +1 -0
  164. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.js +12 -0
  165. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.js.map +1 -0
  166. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.d.ts +353 -0
  167. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.d.ts.map +1 -0
  168. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.js +295 -0
  169. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.js.map +1 -0
  170. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.d.ts +77 -0
  171. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.d.ts.map +1 -0
  172. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.js +123 -0
  173. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.js.map +1 -0
  174. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.d.ts +150 -0
  175. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.d.ts.map +1 -0
  176. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.js +728 -0
  177. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.js.map +1 -0
  178. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.d.ts +110 -0
  179. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.d.ts.map +1 -0
  180. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.js +495 -0
  181. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.js.map +1 -0
  182. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.d.ts +6 -0
  183. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.d.ts.map +1 -0
  184. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.js +59 -0
  185. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.js.map +1 -0
  186. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.d.ts +203 -0
  187. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.d.ts.map +1 -0
  188. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.js +2018 -0
  189. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.js.map +1 -0
  190. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.d.ts +52 -0
  191. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.d.ts.map +1 -0
  192. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.js +252 -0
  193. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.js.map +1 -0
  194. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.d.ts +2 -0
  195. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.d.ts.map +1 -0
  196. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.js +33 -0
  197. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.js.map +1 -0
  198. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.d.ts +23 -0
  199. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.d.ts.map +1 -0
  200. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.js +126 -0
  201. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.js.map +1 -0
  202. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.d.ts +194 -0
  203. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.d.ts.map +1 -0
  204. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.js +727 -0
  205. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.js.map +1 -0
  206. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.d.ts +107 -0
  207. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.d.ts.map +1 -0
  208. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.js +282 -0
  209. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.js.map +1 -0
  210. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.d.ts +19 -0
  211. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.d.ts.map +1 -0
  212. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.js +38 -0
  213. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.js.map +1 -0
  214. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.d.ts +333 -0
  215. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.d.ts.map +1 -0
  216. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.js +1139 -0
  217. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.js.map +1 -0
  218. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.d.ts +261 -0
  219. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.d.ts.map +1 -0
  220. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.js +782 -0
  221. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.js.map +1 -0
  222. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.d.ts +60 -0
  223. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.d.ts.map +1 -0
  224. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.js +401 -0
  225. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.js.map +1 -0
  226. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.d.ts +14 -0
  227. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.d.ts.map +1 -0
  228. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.js +25 -0
  229. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.js.map +1 -0
  230. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.d.ts +18 -0
  231. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.d.ts.map +1 -0
  232. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.js +19 -0
  233. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.js.map +1 -0
  234. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.d.ts +28 -0
  235. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.d.ts.map +1 -0
  236. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.js +121 -0
  237. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.js.map +1 -0
  238. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.d.ts +3 -0
  239. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.d.ts.map +1 -0
  240. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.js +9 -0
  241. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.js.map +1 -0
  242. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.d.ts +8 -0
  243. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.d.ts.map +1 -0
  244. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.js +31 -0
  245. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.js.map +1 -0
  246. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.d.ts +68 -0
  247. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.d.ts.map +1 -0
  248. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.js +364 -0
  249. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.js.map +1 -0
  250. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.d.ts +85 -0
  251. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.d.ts.map +1 -0
  252. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.js +338 -0
  253. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.js.map +1 -0
  254. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.d.ts +49 -0
  255. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.d.ts.map +1 -0
  256. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.js +310 -0
  257. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.js.map +1 -0
  258. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.d.ts +6 -0
  259. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.d.ts.map +1 -0
  260. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.js +37 -0
  261. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.js.map +1 -0
  262. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.d.ts +35 -0
  263. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.d.ts.map +1 -0
  264. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.js +298 -0
  265. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.js.map +1 -0
  266. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.d.ts +37 -0
  267. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.d.ts.map +1 -0
  268. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.js +304 -0
  269. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.js.map +1 -0
  270. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.d.ts +40 -0
  271. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.d.ts.map +1 -0
  272. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.js +112 -0
  273. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.js.map +1 -0
  274. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.d.ts +37 -0
  275. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.d.ts.map +1 -0
  276. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.js +169 -0
  277. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.js.map +1 -0
  278. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.d.ts +50 -0
  279. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.d.ts.map +1 -0
  280. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.js +178 -0
  281. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.js.map +1 -0
  282. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.d.ts +8 -0
  283. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.d.ts.map +1 -0
  284. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.js +81 -0
  285. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.js.map +1 -0
  286. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.d.ts +35 -0
  287. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.d.ts.map +1 -0
  288. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.js +286 -0
  289. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.js.map +1 -0
  290. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.d.ts +21 -0
  291. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.d.ts.map +1 -0
  292. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.js +49 -0
  293. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.js.map +1 -0
  294. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
  295. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
  296. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.js +34 -0
  297. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.js.map +1 -0
  298. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.d.ts +70 -0
  299. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.d.ts.map +1 -0
  300. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.js +205 -0
  301. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.js.map +1 -0
  302. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.d.ts +26 -0
  303. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.d.ts.map +1 -0
  304. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.js +213 -0
  305. package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.js.map +1 -0
  306. package/forks/autopm-pi-mono/packages/coding-agent/dist/index.d.ts +28 -0
  307. package/forks/autopm-pi-mono/packages/coding-agent/dist/index.d.ts.map +1 -0
  308. package/forks/autopm-pi-mono/packages/coding-agent/dist/index.js +41 -0
  309. package/forks/autopm-pi-mono/packages/coding-agent/dist/index.js.map +1 -0
  310. package/forks/autopm-pi-mono/packages/coding-agent/dist/main.d.ts +12 -0
  311. package/forks/autopm-pi-mono/packages/coding-agent/dist/main.d.ts.map +1 -0
  312. package/forks/autopm-pi-mono/packages/coding-agent/dist/main.js +577 -0
  313. package/forks/autopm-pi-mono/packages/coding-agent/dist/main.js.map +1 -0
  314. package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.d.ts +33 -0
  315. package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.d.ts.map +1 -0
  316. package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.js +281 -0
  317. package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.js.map +1 -0
  318. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.d.ts +9 -0
  319. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.d.ts.map +1 -0
  320. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.js +8 -0
  321. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.js.map +1 -0
  322. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
  323. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
  324. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
  325. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.js +333 -0
  326. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
  327. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.d.ts +20 -0
  328. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
  329. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.js +121 -0
  330. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
  331. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.d.ts +34 -0
  332. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
  333. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.js +175 -0
  334. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
  335. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
  336. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
  337. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.js +54 -0
  338. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
  339. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bottom-anchor-spacer.js +24 -0
  340. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
  341. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
  342. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
  343. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
  344. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
  345. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
  346. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
  347. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
  348. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
  349. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
  350. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.js +506 -0
  351. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
  352. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
  353. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
  354. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.js +33 -0
  355. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
  356. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
  357. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
  358. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
  359. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
  360. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
  361. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
  362. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
  363. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
  364. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
  365. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
  366. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.js +140 -0
  367. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
  368. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.d.ts +12 -0
  369. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.d.ts.map +1 -0
  370. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.js +133 -0
  371. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.js.map +1 -0
  372. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
  373. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
  374. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.js +21 -0
  375. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
  376. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
  377. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
  378. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.js +40 -0
  379. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
  380. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
  381. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
  382. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.js +119 -0
  383. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
  384. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
  385. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
  386. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
  387. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
  388. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.d.ts +26 -0
  389. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
  390. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.js +83 -0
  391. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
  392. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.d.ts +26 -0
  393. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
  394. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.js +133 -0
  395. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
  396. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.d.ts +32 -0
  397. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.d.ts.map +1 -0
  398. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.js +33 -0
  399. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.js.map +1 -0
  400. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +13 -0
  401. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
  402. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.js +36 -0
  403. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
  404. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.d.ts +46 -0
  405. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
  406. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.js +160 -0
  407. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
  408. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
  409. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
  410. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.js +278 -0
  411. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
  412. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
  413. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
  414. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.js +165 -0
  415. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
  416. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
  417. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
  418. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.js +290 -0
  419. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
  420. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +23 -0
  421. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
  422. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
  423. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
  424. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.d.ts +96 -0
  425. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
  426. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.js +861 -0
  427. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
  428. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.d.ts +67 -0
  429. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
  430. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.js +375 -0
  431. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
  432. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
  433. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
  434. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
  435. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
  436. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
  437. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
  438. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
  439. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
  440. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
  441. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
  442. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
  443. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
  444. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
  445. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
  446. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
  447. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
  448. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.d.ts +63 -0
  449. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
  450. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.js +407 -0
  451. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
  452. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.d.ts +89 -0
  453. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
  454. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.js +1093 -0
  455. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
  456. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
  457. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
  458. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.js +114 -0
  459. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
  460. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.d.ts +10 -0
  461. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
  462. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.js +29 -0
  463. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
  464. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +24 -0
  465. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
  466. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
  467. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
  468. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.d.ts +369 -0
  469. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
  470. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.js +4662 -0
  471. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
  472. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/dark.json +85 -0
  473. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/light.json +84 -0
  474. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme-schema.json +335 -0
  475. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.d.ts +81 -0
  476. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
  477. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.js +1062 -0
  478. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
  479. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.d.ts +28 -0
  480. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.d.ts.map +1 -0
  481. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.js +131 -0
  482. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.js.map +1 -0
  483. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.d.ts +17 -0
  484. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.d.ts.map +1 -0
  485. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.js +49 -0
  486. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.js.map +1 -0
  487. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.d.ts +224 -0
  488. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
  489. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.js +410 -0
  490. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
  491. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.d.ts +20 -0
  492. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
  493. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.js +601 -0
  494. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
  495. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.d.ts +419 -0
  496. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
  497. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.js +8 -0
  498. package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
  499. package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.d.ts +4 -0
  500. package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.d.ts.map +1 -0
  501. package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.js +476 -0
  502. package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.js.map +1 -0
  503. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.d.ts +2 -0
  504. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.d.ts.map +1 -0
  505. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.js +52 -0
  506. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.js.map +1 -0
  507. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.d.ts +21 -0
  508. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.d.ts.map +1 -0
  509. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.js +87 -0
  510. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.js.map +1 -0
  511. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.d.ts +15 -0
  512. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.d.ts.map +1 -0
  513. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.js +88 -0
  514. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.js.map +1 -0
  515. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.d.ts +11 -0
  516. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.d.ts.map +1 -0
  517. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.js +245 -0
  518. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.js.map +1 -0
  519. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.d.ts +8 -0
  520. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.d.ts.map +1 -0
  521. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.js +14 -0
  522. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.js.map +1 -0
  523. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.d.ts +2 -0
  524. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.d.ts.map +1 -0
  525. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.js +117 -0
  526. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.js.map +1 -0
  527. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.d.ts +5 -0
  528. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.d.ts.map +1 -0
  529. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.js +158 -0
  530. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.js.map +1 -0
  531. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.d.ts +8 -0
  532. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.d.ts.map +1 -0
  533. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.js +26 -0
  534. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.js.map +1 -0
  535. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.d.ts +5 -0
  536. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.d.ts.map +1 -0
  537. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.js +25 -0
  538. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.js.map +1 -0
  539. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.d.ts +26 -0
  540. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.d.ts.map +1 -0
  541. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.js +163 -0
  542. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.js.map +1 -0
  543. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.d.ts +7 -0
  544. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.d.ts.map +1 -0
  545. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.js +40 -0
  546. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.js.map +1 -0
  547. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.d.ts +9 -0
  548. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.d.ts.map +1 -0
  549. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.js +39 -0
  550. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.js.map +1 -0
  551. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.d.ts +36 -0
  552. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.d.ts.map +1 -0
  553. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.js +137 -0
  554. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.js.map +1 -0
  555. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.d.ts +3 -0
  556. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.d.ts.map +1 -0
  557. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.js +69 -0
  558. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.js.map +1 -0
  559. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.d.ts +16 -0
  560. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.d.ts.map +1 -0
  561. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.js +50 -0
  562. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.js.map +1 -0
  563. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.d.ts +21 -0
  564. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.d.ts.map +1 -0
  565. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.js +121 -0
  566. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.js.map +1 -0
  567. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.d.ts +2 -0
  568. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.d.ts.map +1 -0
  569. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.js +5 -0
  570. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.js.map +1 -0
  571. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.d.ts +30 -0
  572. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.d.ts.map +1 -0
  573. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.js +190 -0
  574. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.js.map +1 -0
  575. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.d.ts +5 -0
  576. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.d.ts.map +1 -0
  577. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.js +17 -0
  578. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.js.map +1 -0
  579. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.d.ts +12 -0
  580. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.d.ts.map +1 -0
  581. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.js +118 -0
  582. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.js.map +1 -0
  583. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.d.ts +3 -0
  584. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.d.ts.map +1 -0
  585. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.js +328 -0
  586. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.js.map +1 -0
  587. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.d.ts +14 -0
  588. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.d.ts.map +1 -0
  589. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.js +77 -0
  590. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.js.map +1 -0
  591. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.d.ts +3 -0
  592. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.d.ts.map +1 -0
  593. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.js +77 -0
  594. package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.js.map +1 -0
  595. package/node_modules/@mixmark-io/domino/.gitmodules +6 -0
  596. package/node_modules/@mixmark-io/domino/.mocharc.json +8 -0
  597. package/node_modules/@mixmark-io/domino/.nvmrc +1 -0
  598. package/node_modules/@mixmark-io/domino/.yarn/plugins/@yarnpkg/plugin-version.cjs +550 -0
  599. package/node_modules/@mixmark-io/domino/.yarn/versions/78b6ef77.yml +0 -0
  600. package/node_modules/@mixmark-io/domino/CHANGELOG.md +294 -0
  601. package/node_modules/@mixmark-io/domino/CONTRIBUTING.md +4 -0
  602. package/node_modules/@mixmark-io/domino/LICENSE +25 -0
  603. package/node_modules/@mixmark-io/domino/README.md +141 -0
  604. package/node_modules/@mixmark-io/domino/lib/CSSStyleDeclaration.js +234 -0
  605. package/node_modules/@mixmark-io/domino/lib/CharacterData.js +120 -0
  606. package/node_modules/@mixmark-io/domino/lib/ChildNode.js +119 -0
  607. package/node_modules/@mixmark-io/domino/lib/Comment.js +40 -0
  608. package/node_modules/@mixmark-io/domino/lib/ContainerNode.js +80 -0
  609. package/node_modules/@mixmark-io/domino/lib/CustomEvent.js +12 -0
  610. package/node_modules/@mixmark-io/domino/lib/DOMException.js +134 -0
  611. package/node_modules/@mixmark-io/domino/lib/DOMImplementation.js +94 -0
  612. package/node_modules/@mixmark-io/domino/lib/DOMTokenList.js +186 -0
  613. package/node_modules/@mixmark-io/domino/lib/Document.js +884 -0
  614. package/node_modules/@mixmark-io/domino/lib/DocumentFragment.js +71 -0
  615. package/node_modules/@mixmark-io/domino/lib/DocumentType.js +36 -0
  616. package/node_modules/@mixmark-io/domino/lib/Element.js +1228 -0
  617. package/node_modules/@mixmark-io/domino/lib/Event.js +66 -0
  618. package/node_modules/@mixmark-io/domino/lib/EventTarget.js +298 -0
  619. package/node_modules/@mixmark-io/domino/lib/FilteredElementList.js +92 -0
  620. package/node_modules/@mixmark-io/domino/lib/HTMLParser.js +7254 -0
  621. package/node_modules/@mixmark-io/domino/lib/Leaf.js +37 -0
  622. package/node_modules/@mixmark-io/domino/lib/LinkedList.js +44 -0
  623. package/node_modules/@mixmark-io/domino/lib/Location.js +56 -0
  624. package/node_modules/@mixmark-io/domino/lib/MouseEvent.js +52 -0
  625. package/node_modules/@mixmark-io/domino/lib/MutationConstants.js +9 -0
  626. package/node_modules/@mixmark-io/domino/lib/NamedNodeMap.js +41 -0
  627. package/node_modules/@mixmark-io/domino/lib/NavigatorID.js +17 -0
  628. package/node_modules/@mixmark-io/domino/lib/Node.js +764 -0
  629. package/node_modules/@mixmark-io/domino/lib/NodeFilter.js +24 -0
  630. package/node_modules/@mixmark-io/domino/lib/NodeIterator.js +217 -0
  631. package/node_modules/@mixmark-io/domino/lib/NodeList.es5.js +15 -0
  632. package/node_modules/@mixmark-io/domino/lib/NodeList.es6.js +12 -0
  633. package/node_modules/@mixmark-io/domino/lib/NodeList.js +13 -0
  634. package/node_modules/@mixmark-io/domino/lib/NodeTraversal.js +87 -0
  635. package/node_modules/@mixmark-io/domino/lib/NodeUtils.js +246 -0
  636. package/node_modules/@mixmark-io/domino/lib/NonDocumentTypeChildNode.js +26 -0
  637. package/node_modules/@mixmark-io/domino/lib/ProcessingInstruction.js +44 -0
  638. package/node_modules/@mixmark-io/domino/lib/Text.js +75 -0
  639. package/node_modules/@mixmark-io/domino/lib/TreeWalker.js +336 -0
  640. package/node_modules/@mixmark-io/domino/lib/UIEvent.js +19 -0
  641. package/node_modules/@mixmark-io/domino/lib/URL.js +194 -0
  642. package/node_modules/@mixmark-io/domino/lib/URLUtils.js +270 -0
  643. package/node_modules/@mixmark-io/domino/lib/Window.js +60 -0
  644. package/node_modules/@mixmark-io/domino/lib/WindowTimers.js +11 -0
  645. package/node_modules/@mixmark-io/domino/lib/attributes.js +152 -0
  646. package/node_modules/@mixmark-io/domino/lib/config.js +7 -0
  647. package/node_modules/@mixmark-io/domino/lib/defineElement.js +71 -0
  648. package/node_modules/@mixmark-io/domino/lib/events.js +7 -0
  649. package/node_modules/@mixmark-io/domino/lib/htmlelts.js +1499 -0
  650. package/node_modules/@mixmark-io/domino/lib/impl.js +27 -0
  651. package/node_modules/@mixmark-io/domino/lib/index.d.ts +5 -0
  652. package/node_modules/@mixmark-io/domino/lib/index.js +80 -0
  653. package/node_modules/@mixmark-io/domino/lib/select.js +933 -0
  654. package/node_modules/@mixmark-io/domino/lib/style_parser.js +106 -0
  655. package/node_modules/@mixmark-io/domino/lib/svg.js +59 -0
  656. package/node_modules/@mixmark-io/domino/lib/utils.js +85 -0
  657. package/node_modules/@mixmark-io/domino/lib/xmlnames.js +91 -0
  658. package/node_modules/@mixmark-io/domino/package.json +22 -0
  659. package/node_modules/@mixmark-io/domino/test/domino.js +1500 -0
  660. package/node_modules/@mixmark-io/domino/test/fixture/doc.html +13 -0
  661. package/node_modules/@mixmark-io/domino/test/fixture/jquery-1.9.1.js +9597 -0
  662. package/node_modules/@mixmark-io/domino/test/fixture/jquery-2.2.0.js +9831 -0
  663. package/node_modules/@mixmark-io/domino/test/html5lib-tests.json +80692 -0
  664. package/node_modules/@mixmark-io/domino/test/index.js +2 -0
  665. package/node_modules/@mixmark-io/domino/test/parsing.js +66 -0
  666. package/node_modules/@mixmark-io/domino/test/tools/update-entities.js +90 -0
  667. package/node_modules/@mixmark-io/domino/test/tools/update-html5lib-tests.js +355 -0
  668. package/node_modules/@mixmark-io/domino/test/w3c/README.md +13 -0
  669. package/node_modules/@mixmark-io/domino/test/w3c/harness/DomTestCase.js +438 -0
  670. package/node_modules/@mixmark-io/domino/test/w3c/harness/index.js +95 -0
  671. package/node_modules/@mixmark-io/domino/test/w3c/index.js +12 -0
  672. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentgetdoctypenodtd.js +110 -0
  673. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi.js +143 -0
  674. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi1.js +140 -0
  675. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/.cvsignore +0 -0
  676. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_nodtdstaff.html +10 -0
  677. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_staff.html +48 -0
  678. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/staff.dtd +17 -0
  679. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddata.js +124 -0
  680. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddatagetdata.js +123 -0
  681. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatabegining.js +122 -0
  682. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataend.js +123 -0
  683. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataexceedslength.js +125 -0
  684. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatagetlengthanddata.js +132 -0
  685. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatamiddle.js +123 -0
  686. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetdata.js +124 -0
  687. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetlength.js +119 -0
  688. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedatacountnegative.js +131 -0
  689. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetgreater.js +131 -0
  690. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetnegative.js +130 -0
  691. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetgreater.js +130 -0
  692. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetnegative.js +129 -0
  693. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedatacountnegative.js +132 -0
  694. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetgreater.js +131 -0
  695. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetnegative.js +131 -0
  696. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringcountnegative.js +131 -0
  697. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringnegativeoffset.js +130 -0
  698. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater.js +131 -0
  699. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatabeginning.js +122 -0
  700. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdataend.js +123 -0
  701. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatamiddle.js +123 -0
  702. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatabegining.js +122 -0
  703. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataend.js +123 -0
  704. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofarg.js +124 -0
  705. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofdata.js +122 -0
  706. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatamiddle.js +123 -0
  707. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasetnodevalue.js +122 -0
  708. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringexceedsvalue.js +120 -0
  709. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringvalue.js +119 -0
  710. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_commentgetcomment.js +144 -0
  711. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatecomment.js +120 -0
  712. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatedocumentfragment.js +126 -0
  713. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelement.js +121 -0
  714. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelementcasesensitive.js +132 -0
  715. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatetextnode.js +120 -0
  716. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetdoctype.js +149 -0
  717. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamelength.js +110 -0
  718. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnametotallength.js +221 -0
  719. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamevalue.js +120 -0
  720. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetimplementation.js +126 -0
  721. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetrootnode.js +123 -0
  722. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement.js +124 -0
  723. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement1.js +117 -0
  724. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenoversion.js +126 -0
  725. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenull.js +129 -0
  726. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturexml.js +125 -0
  727. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementaddnewattribute.js +117 -0
  728. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementchangeattributevalue.js +119 -0
  729. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagname.js +112 -0
  730. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnameaccessnodelist.js +144 -0
  731. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamenomatch.js +110 -0
  732. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamespecialvalue.js +134 -0
  733. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgettagname.js +123 -0
  734. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception.js +125 -0
  735. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception1.js +119 -0
  736. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementnormalize.js +126 -0
  737. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementremoveattribute.js +113 -0
  738. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveallattributes.js +144 -0
  739. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveattrvalue.js +113 -0
  740. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrievetagname.js +118 -0
  741. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiesremovenameditem1.js +133 -0
  742. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiessetnameditem1.js +144 -0
  743. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapchildnoderange.js +141 -0
  744. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapnumberofnodes.js +127 -0
  745. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchild.js +123 -0
  746. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildchildexists.js +160 -0
  747. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchilddocfragment.js +158 -0
  748. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildgetnodename.js +123 -0
  749. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnewchilddiffdocument.js +145 -0
  750. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnodeancestor.js +132 -0
  751. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeattributenodeattribute.js +120 -0
  752. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodes.js +149 -0
  753. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesappendchild.js +159 -0
  754. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesempty.js +123 -0
  755. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecloneattributescopied.js +149 -0
  756. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonefalsenocopytext.js +122 -0
  757. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonegetparentnull.js +117 -0
  758. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodefalse.js +126 -0
  759. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodetrue.js +145 -0
  760. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonetruecopytext.js +121 -0
  761. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodeattributes.js +135 -0
  762. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodename.js +134 -0
  763. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodetype.js +133 -0
  764. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodevalue.js +133 -0
  765. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodename.js +114 -0
  766. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodetype.js +114 -0
  767. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodevalue.js +120 -0
  768. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodeattribute.js +111 -0
  769. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodename.js +111 -0
  770. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodetype.js +110 -0
  771. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodevalue.js +112 -0
  772. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodeattributes.js +145 -0
  773. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodename.js +125 -0
  774. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodetype.js +112 -0
  775. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodevalue.js +109 -0
  776. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchild.js +130 -0
  777. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchildnull.js +117 -0
  778. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchild.js +117 -0
  779. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchildnull.js +118 -0
  780. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsibling.js +117 -0
  781. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsiblingnull.js +124 -0
  782. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocument.js +129 -0
  783. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocumentnull.js +115 -0
  784. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussibling.js +117 -0
  785. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussiblingnull.js +124 -0
  786. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodes.js +113 -0
  787. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodesfalse.js +117 -0
  788. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbefore.js +153 -0
  789. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforedocfragment.js +141 -0
  790. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchilddiffdocument.js +148 -0
  791. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchildexists.js +151 -0
  792. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodeancestor.js +135 -0
  793. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodename.js +126 -0
  794. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnonexistent.js +133 -0
  795. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnull.js +131 -0
  796. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexequalzero.js +135 -0
  797. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlength.js +129 -0
  798. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlengthofemptylist.js +122 -0
  799. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexnotzero.js +133 -0
  800. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnfirstitem.js +129 -0
  801. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnlastitem.js +133 -0
  802. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelisttraverselist.js +149 -0
  803. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnode.js +117 -0
  804. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnodenull.js +114 -0
  805. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechild.js +123 -0
  806. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildgetnodename.js +128 -0
  807. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildnode.js +160 -0
  808. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildoldchildnonexistent.js +129 -0
  809. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechild.js +127 -0
  810. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchilddiffdocument.js +148 -0
  811. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchildexists.js +155 -0
  812. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodeancestor.js +135 -0
  813. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodename.js +126 -0
  814. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildoldchildnonexistent.js +131 -0
  815. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodeattribute.js +118 -0
  816. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodename.js +113 -0
  817. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodetype.js +124 -0
  818. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodevalue.js +118 -0
  819. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue01.js +114 -0
  820. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue02.js +114 -0
  821. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue04.js +132 -0
  822. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue05.js +114 -0
  823. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue06.js +112 -0
  824. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue07.js +134 -0
  825. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue08.js +134 -0
  826. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationsremovenameditem1.js +133 -0
  827. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationssetnameditem1.js +144 -0
  828. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerrnegativeoffset.js +130 -0
  829. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerroffsetoutofbounds.js +131 -0
  830. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textparseintolistofelements.js +169 -0
  831. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextfour.js +122 -0
  832. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextone.js +126 -0
  833. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextthree.js +124 -0
  834. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittexttwo.js +123 -0
  835. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textwithnomarkup.js +122 -0
  836. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref.js +143 -0
  837. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref1.js +140 -0
  838. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild1.js +132 -0
  839. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild2.js +127 -0
  840. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild3.js +138 -0
  841. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild4.js +152 -0
  842. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild5.js +141 -0
  843. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild6.js +127 -0
  844. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes1.js +124 -0
  845. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes2.js +130 -0
  846. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrclonenode1.js +132 -0
  847. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatedocumentfragment.js +138 -0
  848. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode.js +127 -0
  849. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode2.js +127 -0
  850. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attreffectivevalue.js +118 -0
  851. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrfirstchild.js +127 -0
  852. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue1.js +117 -0
  853. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue2.js +146 -0
  854. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrhaschildnodes.js +114 -0
  855. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore1.js +140 -0
  856. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore2.js +141 -0
  857. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore3.js +146 -0
  858. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore4.js +147 -0
  859. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore5.js +153 -0
  860. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore6.js +142 -0
  861. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore7.js +160 -0
  862. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrlastchild.js +127 -0
  863. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrname.js +123 -0
  864. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnextsiblingnull.js +118 -0
  865. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnormalize.js +133 -0
  866. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrparentnodenull.js +118 -0
  867. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrprevioussiblingnull.js +118 -0
  868. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild1.js +131 -0
  869. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild2.js +126 -0
  870. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild1.js +135 -0
  871. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild2.js +141 -0
  872. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue1.js +135 -0
  873. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue2.js +138 -0
  874. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvalue.js +121 -0
  875. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvaluechanged.js +123 -0
  876. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentcreateattribute.js +122 -0
  877. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute.js +124 -0
  878. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute1.js +117 -0
  879. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementassociatedattribute.js +119 -0
  880. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementcreatenewattribute.js +124 -0
  881. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenode.js +114 -0
  882. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenodenull.js +115 -0
  883. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetelementempty.js +123 -0
  884. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementinuseattributeerr.js +131 -0
  885. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnormalize2.js +129 -0
  886. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnotfounderr.js +130 -0
  887. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributeaftercreate.js +124 -0
  888. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributenode.js +119 -0
  889. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceattributewithself.js +117 -0
  890. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattribute.js +122 -0
  891. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattributegevalue.js +123 -0
  892. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementsetattributenodenull.js +120 -0
  893. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementwrongdocumenterr.js +147 -0
  894. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapgetnameditem.js +121 -0
  895. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapinuseattributeerr.js +139 -0
  896. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapnotfounderr.js +131 -0
  897. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapremovenameditem.js +124 -0
  898. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnattrnode.js +126 -0
  899. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnfirstitem.js +150 -0
  900. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnlastitem.js +152 -0
  901. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnnull.js +121 -0
  902. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditem.js +131 -0
  903. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemreturnvalue.js +132 -0
  904. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemthatexists.js +134 -0
  905. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemwithnewvalue.js +126 -0
  906. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapwrongdocumenterr.js +149 -0
  907. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeappendchildinvalidnodetype.js +130 -0
  908. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodename.js +115 -0
  909. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodetype.js +123 -0
  910. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodevalue.js +118 -0
  911. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeinsertbeforeinvalidnodetype.js +136 -0
  912. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodereplacechildinvalidnodetype.js +136 -0
  913. package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodevalue03.js +138 -0
  914. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement01.js +114 -0
  915. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement04.js +113 -0
  916. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement05.js +113 -0
  917. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement07.js +113 -0
  918. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement10.js +114 -0
  919. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement11.js +113 -0
  920. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement12.js +113 -0
  921. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement13.js +107 -0
  922. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement14.js +107 -0
  923. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement01.js +114 -0
  924. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement02.js +114 -0
  925. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement03.js +114 -0
  926. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement04.js +113 -0
  927. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement05.js +113 -0
  928. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement06.js +113 -0
  929. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement07.js +114 -0
  930. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement08.js +113 -0
  931. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement01.js +116 -0
  932. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement02.js +114 -0
  933. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement03.js +114 -0
  934. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement04.js +114 -0
  935. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement05.js +114 -0
  936. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement06.js +114 -0
  937. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement07.js +113 -0
  938. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement08.js +113 -0
  939. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument01.js +109 -0
  940. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument05.js +114 -0
  941. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument15.js +115 -0
  942. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument16.js +114 -0
  943. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument17.js +119 -0
  944. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument18.js +102 -0
  945. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument19.js +129 -0
  946. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument20.js +129 -0
  947. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument21.js +138 -0
  948. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement01.js +113 -0
  949. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement02.js +113 -0
  950. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement03.js +113 -0
  951. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement04.js +113 -0
  952. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement05.js +113 -0
  953. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement06.js +113 -0
  954. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement07.js +113 -0
  955. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement08.js +113 -0
  956. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement09.js +113 -0
  957. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement10.js +113 -0
  958. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement100.js +113 -0
  959. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement101.js +113 -0
  960. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement102.js +113 -0
  961. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement103.js +113 -0
  962. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement104.js +113 -0
  963. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement105.js +113 -0
  964. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement106.js +113 -0
  965. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement107.js +113 -0
  966. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement108.js +113 -0
  967. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement109.js +113 -0
  968. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement11.js +113 -0
  969. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement110.js +113 -0
  970. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement111.js +113 -0
  971. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement112.js +113 -0
  972. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement113.js +113 -0
  973. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement114.js +113 -0
  974. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement115.js +113 -0
  975. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement116.js +113 -0
  976. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement117.js +113 -0
  977. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement118.js +113 -0
  978. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement119.js +113 -0
  979. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement12.js +113 -0
  980. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement120.js +113 -0
  981. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement121.js +113 -0
  982. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement122.js +113 -0
  983. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement123.js +113 -0
  984. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement124.js +113 -0
  985. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement125.js +113 -0
  986. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement126.js +113 -0
  987. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement127.js +113 -0
  988. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement128.js +113 -0
  989. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement129.js +113 -0
  990. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement13.js +113 -0
  991. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement130.js +113 -0
  992. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement131.js +113 -0
  993. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement132.js +113 -0
  994. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement133.js +113 -0
  995. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement134.js +113 -0
  996. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement135.js +113 -0
  997. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement136.js +113 -0
  998. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement137.js +113 -0
  999. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement138.js +113 -0
  1000. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement139.js +113 -0
  1001. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement14.js +113 -0
  1002. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement140.js +113 -0
  1003. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement141.js +113 -0
  1004. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement142.js +113 -0
  1005. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement143.js +113 -0
  1006. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement144.js +113 -0
  1007. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement145.js +113 -0
  1008. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement15.js +113 -0
  1009. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement16.js +113 -0
  1010. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement17.js +113 -0
  1011. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement18.js +113 -0
  1012. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement19.js +113 -0
  1013. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement20.js +113 -0
  1014. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement21.js +113 -0
  1015. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement22.js +113 -0
  1016. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement23.js +113 -0
  1017. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement24.js +113 -0
  1018. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement25.js +113 -0
  1019. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement26.js +113 -0
  1020. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement27.js +113 -0
  1021. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement28.js +113 -0
  1022. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement29.js +113 -0
  1023. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement30.js +113 -0
  1024. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement31.js +113 -0
  1025. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement32.js +113 -0
  1026. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement33.js +113 -0
  1027. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement34.js +113 -0
  1028. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement35.js +113 -0
  1029. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement36.js +113 -0
  1030. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement37.js +113 -0
  1031. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement38.js +113 -0
  1032. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement39.js +113 -0
  1033. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement40.js +113 -0
  1034. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement41.js +113 -0
  1035. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement42.js +113 -0
  1036. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement43.js +113 -0
  1037. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement44.js +113 -0
  1038. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement45.js +113 -0
  1039. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement46.js +113 -0
  1040. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement47.js +113 -0
  1041. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement48.js +113 -0
  1042. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement49.js +113 -0
  1043. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement50.js +113 -0
  1044. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement51.js +113 -0
  1045. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement52.js +113 -0
  1046. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement53.js +113 -0
  1047. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement54.js +113 -0
  1048. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement55.js +113 -0
  1049. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement56.js +113 -0
  1050. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement57.js +113 -0
  1051. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement58.js +113 -0
  1052. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement59.js +113 -0
  1053. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement60.js +113 -0
  1054. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement61.js +113 -0
  1055. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement62.js +113 -0
  1056. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement63.js +113 -0
  1057. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement64.js +113 -0
  1058. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement65.js +113 -0
  1059. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement66.js +113 -0
  1060. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement67.js +113 -0
  1061. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement68.js +113 -0
  1062. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement69.js +113 -0
  1063. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement70.js +113 -0
  1064. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement71.js +113 -0
  1065. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement72.js +113 -0
  1066. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement73.js +113 -0
  1067. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement74.js +113 -0
  1068. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement75.js +113 -0
  1069. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement76.js +113 -0
  1070. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement77.js +113 -0
  1071. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement78.js +113 -0
  1072. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement79.js +113 -0
  1073. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement80.js +113 -0
  1074. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement81.js +113 -0
  1075. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement82.js +113 -0
  1076. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement83.js +113 -0
  1077. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement84.js +113 -0
  1078. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement85.js +113 -0
  1079. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement86.js +113 -0
  1080. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement87.js +113 -0
  1081. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement88.js +113 -0
  1082. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement89.js +113 -0
  1083. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement90.js +113 -0
  1084. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement91.js +113 -0
  1085. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement92.js +113 -0
  1086. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement93.js +113 -0
  1087. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement94.js +113 -0
  1088. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement95.js +113 -0
  1089. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement96.js +113 -0
  1090. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement97.js +113 -0
  1091. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement98.js +113 -0
  1092. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement99.js +113 -0
  1093. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement01.js +116 -0
  1094. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement02.js +114 -0
  1095. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement03.js +113 -0
  1096. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement04.js +114 -0
  1097. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement05.js +113 -0
  1098. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement06.js +113 -0
  1099. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement07.js +113 -0
  1100. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement08.js +113 -0
  1101. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement03.js +114 -0
  1102. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement07.js +115 -0
  1103. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement09.js +114 -0
  1104. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement10.js +114 -0
  1105. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement05.js +125 -0
  1106. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement06.js +128 -0
  1107. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement07.js +113 -0
  1108. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement09.js +113 -0
  1109. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement11.js +128 -0
  1110. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement12.js +127 -0
  1111. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement01.js +115 -0
  1112. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement02.js +115 -0
  1113. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement03.js +116 -0
  1114. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement04.js +115 -0
  1115. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement05.js +115 -0
  1116. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement07.js +115 -0
  1117. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement08.js +115 -0
  1118. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement09.js +114 -0
  1119. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement10.js +115 -0
  1120. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement11.js +115 -0
  1121. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement12.js +115 -0
  1122. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement13.js +130 -0
  1123. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement14.js +115 -0
  1124. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement15.js +115 -0
  1125. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement16.js +114 -0
  1126. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement18.js +115 -0
  1127. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement21.js +114 -0
  1128. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLIElement02.js +113 -0
  1129. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement01.js +109 -0
  1130. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement02.js +114 -0
  1131. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement03.js +114 -0
  1132. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement04.js +115 -0
  1133. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement01.js +113 -0
  1134. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement03.js +113 -0
  1135. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement04.js +113 -0
  1136. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement05.js +113 -0
  1137. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement06.js +113 -0
  1138. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement08.js +113 -0
  1139. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMapElement02.js +113 -0
  1140. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement01.js +113 -0
  1141. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement02.js +113 -0
  1142. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement03.js +113 -0
  1143. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement04.js +113 -0
  1144. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement01.js +114 -0
  1145. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement02.js +113 -0
  1146. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement03.js +114 -0
  1147. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement04.js +113 -0
  1148. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement02.js +113 -0
  1149. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement03.js +113 -0
  1150. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement01.js +116 -0
  1151. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement08.js +114 -0
  1152. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement10.js +115 -0
  1153. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement11.js +129 -0
  1154. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement13.js +115 -0
  1155. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement14.js +115 -0
  1156. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement15.js +114 -0
  1157. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement16.js +129 -0
  1158. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement17.js +114 -0
  1159. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement18.js +115 -0
  1160. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement19.js +114 -0
  1161. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement01.js +114 -0
  1162. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement02.js +113 -0
  1163. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement01.js +117 -0
  1164. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement02.js +115 -0
  1165. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement03.js +115 -0
  1166. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement06.js +115 -0
  1167. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement07.js +115 -0
  1168. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement08.js +115 -0
  1169. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLParamElement02.js +113 -0
  1170. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement01.js +114 -0
  1171. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement02.js +115 -0
  1172. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement01.js +113 -0
  1173. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement02.js +114 -0
  1174. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement03.js +114 -0
  1175. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement04.js +113 -0
  1176. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement05.js +113 -0
  1177. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement06.js +109 -0
  1178. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement07.js +109 -0
  1179. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement03.js +118 -0
  1180. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement06.js +117 -0
  1181. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement07.js +115 -0
  1182. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement08.js +134 -0
  1183. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement09.js +115 -0
  1184. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement10.js +115 -0
  1185. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement11.js +115 -0
  1186. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement12.js +114 -0
  1187. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement13.js +115 -0
  1188. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement01.js +113 -0
  1189. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement02.js +113 -0
  1190. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement03.js +113 -0
  1191. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement15.js +115 -0
  1192. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement16.js +115 -0
  1193. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement23.js +115 -0
  1194. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement24.js +115 -0
  1195. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement25.js +114 -0
  1196. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement07.js +115 -0
  1197. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement08.js +115 -0
  1198. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement02.js +115 -0
  1199. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement04.js +115 -0
  1200. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement06.js +115 -0
  1201. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement07.js +132 -0
  1202. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement12.js +114 -0
  1203. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableRowElement05.js +117 -0
  1204. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement13.js +117 -0
  1205. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement14.js +117 -0
  1206. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement15.js +117 -0
  1207. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement02.js +117 -0
  1208. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement03.js +115 -0
  1209. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement04.js +115 -0
  1210. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement05.js +114 -0
  1211. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement06.js +115 -0
  1212. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement07.js +115 -0
  1213. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement08.js +114 -0
  1214. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement09.js +114 -0
  1215. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement10.js +115 -0
  1216. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTitleElement01.js +113 -0
  1217. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor01.js +112 -0
  1218. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor04.js +112 -0
  1219. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor05.js +112 -0
  1220. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area01.js +111 -0
  1221. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area02.js +111 -0
  1222. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area03.js +111 -0
  1223. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area04.js +111 -0
  1224. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button01.js +111 -0
  1225. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button02.js +115 -0
  1226. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button03.js +115 -0
  1227. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button04.js +115 -0
  1228. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button05.js +112 -0
  1229. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button06.js +112 -0
  1230. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button07.js +112 -0
  1231. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button08.js +112 -0
  1232. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button09.js +112 -0
  1233. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/doc01.js +106 -0
  1234. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/.cvsignore +6 -0
  1235. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/HTMLDocument04.html +36 -0
  1236. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor.html +12 -0
  1237. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor2.html +13 -0
  1238. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet.html +12 -0
  1239. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet2.html +12 -0
  1240. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area.html +14 -0
  1241. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area2.html +15 -0
  1242. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base.html +11 -0
  1243. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base2.html +15 -0
  1244. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/basefont.html +12 -0
  1245. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/body.html +10 -0
  1246. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/br.html +12 -0
  1247. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/button.html +21 -0
  1248. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/collection.html +79 -0
  1249. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/directory.html +14 -0
  1250. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/div.html +10 -0
  1251. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/dl.html +15 -0
  1252. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/document.html +36 -0
  1253. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/element.html +81 -0
  1254. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/fieldset.html +23 -0
  1255. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/font.html +10 -0
  1256. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form.html +17 -0
  1257. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form2.html +17 -0
  1258. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form3.html +17 -0
  1259. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frame.html +14 -0
  1260. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frameset.html +14 -0
  1261. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/head.html +11 -0
  1262. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/heading.html +16 -0
  1263. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/hr.html +11 -0
  1264. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/html.html +12 -0
  1265. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/iframe.html +10 -0
  1266. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/img.html +13 -0
  1267. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/input.html +60 -0
  1268. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/isindex.html +14 -0
  1269. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/label.html +21 -0
  1270. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/legend.html +22 -0
  1271. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/li.html +23 -0
  1272. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link.html +15 -0
  1273. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link2.html +15 -0
  1274. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/map.html +16 -0
  1275. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/menu.html +15 -0
  1276. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/meta.html +13 -0
  1277. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/mod.html +15 -0
  1278. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object.html +18 -0
  1279. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object2.html +17 -0
  1280. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/olist.html +32 -0
  1281. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/optgroup.html +25 -0
  1282. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/option.html +36 -0
  1283. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/paragraph.html +13 -0
  1284. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/param.html +14 -0
  1285. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/pre.html +17 -0
  1286. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/quote.html +16 -0
  1287. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/script.html +11 -0
  1288. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/select.html +44 -0
  1289. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/style.html +12 -0
  1290. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table.html +78 -0
  1291. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table1.html +12 -0
  1292. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecaption.html +25 -0
  1293. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecell.html +23 -0
  1294. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecol.html +35 -0
  1295. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablerow.html +59 -0
  1296. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablesection.html +62 -0
  1297. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/textarea.html +26 -0
  1298. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/title.html +13 -0
  1299. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/ulist.html +36 -0
  1300. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/hasFeature01.js +96 -0
  1301. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument02.js +111 -0
  1302. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument03.js +111 -0
  1303. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument04.js +110 -0
  1304. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument07.js +113 -0
  1305. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument09.js +114 -0
  1306. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument10.js +113 -0
  1307. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument12.js +109 -0
  1308. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement01.js +117 -0
  1309. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement09.js +107 -0
  1310. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement10.js +107 -0
  1311. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement19.js +107 -0
  1312. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement20.js +107 -0
  1313. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement22.js +108 -0
  1314. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement01.js +115 -0
  1315. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement02.js +115 -0
  1316. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement04.js +114 -0
  1317. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement05.js +114 -0
  1318. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement14.js +107 -0
  1319. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement15.js +107 -0
  1320. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement16.js +115 -0
  1321. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement17.js +115 -0
  1322. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement18.js +133 -0
  1323. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement19.js +137 -0
  1324. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement08.js +129 -0
  1325. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement09.js +132 -0
  1326. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement19.js +123 -0
  1327. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement20.js +122 -0
  1328. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement21.js +139 -0
  1329. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement22.js +123 -0
  1330. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement23.js +122 -0
  1331. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement24.js +139 -0
  1332. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement25.js +121 -0
  1333. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement26.js +125 -0
  1334. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement27.js +119 -0
  1335. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement28.js +133 -0
  1336. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement29.js +137 -0
  1337. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement30.js +144 -0
  1338. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement31.js +138 -0
  1339. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement32.js +125 -0
  1340. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement33.js +124 -0
  1341. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableRowElement01.js +117 -0
  1342. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement13.js +107 -0
  1343. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement14.js +107 -0
  1344. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement15.js +107 -0
  1345. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object01.js +112 -0
  1346. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object06.js +113 -0
  1347. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object07.js +111 -0
  1348. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object08.js +126 -0
  1349. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object10.js +112 -0
  1350. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object11.js +112 -0
  1351. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object12.js +111 -0
  1352. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object13.js +126 -0
  1353. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object14.js +111 -0
  1354. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement02.js +114 -0
  1355. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement03.js +114 -0
  1356. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement06.js +113 -0
  1357. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement08.js +113 -0
  1358. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement09.js +113 -0
  1359. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement01.js +114 -0
  1360. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement02.js +114 -0
  1361. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement03.js +113 -0
  1362. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement04.js +113 -0
  1363. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement05.js +113 -0
  1364. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement06.js +113 -0
  1365. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement07.js +126 -0
  1366. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement08.js +113 -0
  1367. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement09.js +127 -0
  1368. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement10.js +113 -0
  1369. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement11.js +114 -0
  1370. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBRElement01.js +113 -0
  1371. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement01.js +113 -0
  1372. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement02.js +113 -0
  1373. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement03.js +125 -0
  1374. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement01.js +113 -0
  1375. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement02.js +114 -0
  1376. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement03.js +113 -0
  1377. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement04.js +114 -0
  1378. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement05.js +113 -0
  1379. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement06.js +114 -0
  1380. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection01.js +121 -0
  1381. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection02.js +121 -0
  1382. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection03.js +121 -0
  1383. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection04.js +133 -0
  1384. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection05.js +118 -0
  1385. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection06.js +122 -0
  1386. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection07.js +121 -0
  1387. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection08.js +121 -0
  1388. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection09.js +118 -0
  1389. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection10.js +123 -0
  1390. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection11.js +123 -0
  1391. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection12.js +121 -0
  1392. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDirectoryElement01.js +114 -0
  1393. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDivElement01.js +113 -0
  1394. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDlistElement01.js +114 -0
  1395. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument08.js +114 -0
  1396. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument11.js +114 -0
  1397. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument13.js +109 -0
  1398. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument14.js +110 -0
  1399. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement01.js +113 -0
  1400. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement02.js +114 -0
  1401. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement03.js +113 -0
  1402. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFormElement02.js +115 -0
  1403. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement01.js +116 -0
  1404. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement02.js +115 -0
  1405. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement03.js +114 -0
  1406. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement04.js +114 -0
  1407. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement05.js +115 -0
  1408. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement06.js +115 -0
  1409. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement07.js +115 -0
  1410. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement08.js +114 -0
  1411. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement01.js +115 -0
  1412. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement02.js +115 -0
  1413. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement01.js +113 -0
  1414. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement02.js +114 -0
  1415. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement03.js +113 -0
  1416. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement04.js +113 -0
  1417. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadElement01.js +113 -0
  1418. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement01.js +113 -0
  1419. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement02.js +113 -0
  1420. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement03.js +113 -0
  1421. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement04.js +113 -0
  1422. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement05.js +113 -0
  1423. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement06.js +113 -0
  1424. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHtmlElement01.js +124 -0
  1425. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement01.js +115 -0
  1426. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement02.js +116 -0
  1427. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement04.js +115 -0
  1428. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement05.js +114 -0
  1429. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement06.js +114 -0
  1430. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement08.js +115 -0
  1431. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement01.js +113 -0
  1432. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement02.js +114 -0
  1433. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement03.js +114 -0
  1434. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement04.js +113 -0
  1435. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement08.js +114 -0
  1436. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement10.js +113 -0
  1437. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement14.js +115 -0
  1438. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement06.js +115 -0
  1439. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement17.js +114 -0
  1440. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement01.js +122 -0
  1441. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement02.js +119 -0
  1442. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement03.js +114 -0
  1443. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLIElement01.js +113 -0
  1444. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement01.js +117 -0
  1445. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement02.js +114 -0
  1446. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement03.js +114 -0
  1447. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement04.js +113 -0
  1448. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement02.js +114 -0
  1449. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement07.js +113 -0
  1450. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement09.js +113 -0
  1451. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMapElement01.js +116 -0
  1452. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMenuElement01.js +114 -0
  1453. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOListElement01.js +114 -0
  1454. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement02.js +114 -0
  1455. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement03.js +115 -0
  1456. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement04.js +114 -0
  1457. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement05.js +114 -0
  1458. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement06.js +115 -0
  1459. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement07.js +115 -0
  1460. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement09.js +115 -0
  1461. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement12.js +115 -0
  1462. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement04.js +114 -0
  1463. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement05.js +115 -0
  1464. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement09.js +114 -0
  1465. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParagraphElement01.js +113 -0
  1466. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement01.js +113 -0
  1467. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement03.js +114 -0
  1468. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement04.js +114 -0
  1469. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLPreElement01.js +113 -0
  1470. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCaptionElement01.js +114 -0
  1471. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement01.js +114 -0
  1472. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement02.js +114 -0
  1473. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement03.js +114 -0
  1474. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement04.js +114 -0
  1475. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement05.js +115 -0
  1476. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement06.js +115 -0
  1477. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement07.js +115 -0
  1478. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement08.js +115 -0
  1479. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement09.js +115 -0
  1480. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement10.js +115 -0
  1481. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement11.js +115 -0
  1482. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement12.js +115 -0
  1483. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement13.js +115 -0
  1484. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement14.js +115 -0
  1485. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement17.js +115 -0
  1486. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement18.js +115 -0
  1487. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement19.js +114 -0
  1488. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement20.js +114 -0
  1489. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement21.js +114 -0
  1490. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement22.js +114 -0
  1491. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement26.js +114 -0
  1492. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement27.js +114 -0
  1493. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement28.js +114 -0
  1494. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement29.js +114 -0
  1495. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement30.js +114 -0
  1496. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement01.js +115 -0
  1497. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement02.js +115 -0
  1498. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement03.js +115 -0
  1499. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement04.js +115 -0
  1500. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement05.js +114 -0
  1501. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement06.js +114 -0
  1502. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement09.js +115 -0
  1503. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement10.js +115 -0
  1504. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement11.js +114 -0
  1505. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement12.js +114 -0
  1506. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement01.js +117 -0
  1507. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement03.js +117 -0
  1508. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement05.js +117 -0
  1509. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement10.js +115 -0
  1510. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement11.js +114 -0
  1511. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement13.js +115 -0
  1512. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement14.js +115 -0
  1513. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement15.js +114 -0
  1514. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement16.js +114 -0
  1515. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement17.js +115 -0
  1516. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement18.js +114 -0
  1517. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement02.js +115 -0
  1518. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement03.js +115 -0
  1519. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement04.js +115 -0
  1520. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement06.js +115 -0
  1521. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement07.js +114 -0
  1522. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement08.js +114 -0
  1523. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement09.js +114 -0
  1524. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement10.js +115 -0
  1525. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement11.js +144 -0
  1526. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement12.js +143 -0
  1527. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement13.js +144 -0
  1528. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement14.js +144 -0
  1529. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement01.js +115 -0
  1530. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement02.js +115 -0
  1531. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement03.js +115 -0
  1532. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement04.js +115 -0
  1533. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement05.js +115 -0
  1534. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement06.js +115 -0
  1535. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement07.js +114 -0
  1536. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement08.js +114 -0
  1537. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement09.js +114 -0
  1538. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement10.js +115 -0
  1539. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement11.js +115 -0
  1540. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement12.js +115 -0
  1541. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement16.js +126 -0
  1542. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement17.js +126 -0
  1543. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement18.js +126 -0
  1544. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement19.js +127 -0
  1545. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement20.js +127 -0
  1546. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement21.js +128 -0
  1547. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement22.js +125 -0
  1548. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement23.js +125 -0
  1549. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement24.js +125 -0
  1550. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement01.js +115 -0
  1551. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement11.js +115 -0
  1552. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement12.js +115 -0
  1553. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement01.js +114 -0
  1554. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement02.js +113 -0
  1555. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor02.js +112 -0
  1556. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor03.js +112 -0
  1557. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor06.js +112 -0
  1558. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/basefont01.js +111 -0
  1559. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/body01.js +112 -0
  1560. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/dlist01.js +111 -0
  1561. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object02.js +112 -0
  1562. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object03.js +112 -0
  1563. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object04.js +112 -0
  1564. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object05.js +112 -0
  1565. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object09.js +112 -0
  1566. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object15.js +112 -0
  1567. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table02.js +115 -0
  1568. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table03.js +115 -0
  1569. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table04.js +115 -0
  1570. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table06.js +115 -0
  1571. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table07.js +118 -0
  1572. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table08.js +115 -0
  1573. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table09.js +115 -0
  1574. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table10.js +115 -0
  1575. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table12.js +115 -0
  1576. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table15.js +118 -0
  1577. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table17.js +115 -0
  1578. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table18.js +112 -0
  1579. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table19.js +113 -0
  1580. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table20.js +112 -0
  1581. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table21.js +112 -0
  1582. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table22.js +112 -0
  1583. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table23.js +112 -0
  1584. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table24.js +112 -0
  1585. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table26.js +111 -0
  1586. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table27.js +112 -0
  1587. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table29.js +112 -0
  1588. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table30.js +112 -0
  1589. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table31.js +112 -0
  1590. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table32.js +112 -0
  1591. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table33.js +112 -0
  1592. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table35.js +112 -0
  1593. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table36.js +112 -0
  1594. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table37.js +111 -0
  1595. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table38.js +112 -0
  1596. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table39.js +112 -0
  1597. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table40.js +112 -0
  1598. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table41.js +112 -0
  1599. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table42.js +112 -0
  1600. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table43.js +112 -0
  1601. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table44.js +112 -0
  1602. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table45.js +112 -0
  1603. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table46.js +112 -0
  1604. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table47.js +112 -0
  1605. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table48.js +112 -0
  1606. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table49.js +112 -0
  1607. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table50.js +112 -0
  1608. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table52.js +112 -0
  1609. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table53.js +112 -0
  1610. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table01.js +112 -0
  1611. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table25.js +112 -0
  1612. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table28.js +112 -0
  1613. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table34.js +112 -0
  1614. package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table51.js +112 -0
  1615. package/node_modules/@mixmark-io/domino/test/web-platform-blocklist.json +4688 -0
  1616. package/node_modules/@mixmark-io/domino/test/web-platform-tests.js +353 -0
  1617. package/node_modules/@mixmark-io/domino/test/xss.js +361 -0
  1618. package/node_modules/@mozilla/readability/.eslintrc.js +213 -0
  1619. package/node_modules/@mozilla/readability/CHANGELOG.md +79 -0
  1620. package/node_modules/@mozilla/readability/CODE_OF_CONDUCT.md +15 -0
  1621. package/node_modules/@mozilla/readability/CONTRIBUTING.md +74 -0
  1622. package/node_modules/@mozilla/readability/JSDOMParser.js +1197 -0
  1623. package/node_modules/@mozilla/readability/LICENSE.md +13 -0
  1624. package/node_modules/@mozilla/readability/README.md +127 -0
  1625. package/node_modules/@mozilla/readability/Readability-readerable.js +108 -0
  1626. package/node_modules/@mozilla/readability/Readability.js +2314 -0
  1627. package/node_modules/@mozilla/readability/SECURITY.md +8 -0
  1628. package/node_modules/@mozilla/readability/index.d.ts +64 -0
  1629. package/node_modules/@mozilla/readability/index.js +8 -0
  1630. package/node_modules/@mozilla/readability/package.json +37 -0
  1631. package/node_modules/boolbase/README.md +10 -0
  1632. package/node_modules/boolbase/index.js +8 -0
  1633. package/node_modules/boolbase/package.json +23 -0
  1634. package/node_modules/css-select/LICENSE +11 -0
  1635. package/node_modules/css-select/README.md +264 -0
  1636. package/node_modules/css-select/lib/attributes.d.ts +7 -0
  1637. package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
  1638. package/node_modules/css-select/lib/attributes.js +236 -0
  1639. package/node_modules/css-select/lib/attributes.js.map +1 -0
  1640. package/node_modules/css-select/lib/compile.d.ts +13 -0
  1641. package/node_modules/css-select/lib/compile.d.ts.map +1 -0
  1642. package/node_modules/css-select/lib/compile.js +151 -0
  1643. package/node_modules/css-select/lib/compile.js.map +1 -0
  1644. package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
  1645. package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
  1646. package/node_modules/css-select/lib/esm/attributes.js +222 -0
  1647. package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
  1648. package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
  1649. package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
  1650. package/node_modules/css-select/lib/esm/compile.js +115 -0
  1651. package/node_modules/css-select/lib/esm/compile.js.map +1 -0
  1652. package/node_modules/css-select/lib/esm/general.d.ts +3 -0
  1653. package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
  1654. package/node_modules/css-select/lib/esm/general.js +144 -0
  1655. package/node_modules/css-select/lib/esm/general.js.map +1 -0
  1656. package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
  1657. package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
  1658. package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
  1659. package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
  1660. package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
  1661. package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
  1662. package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
  1663. package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
  1664. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
  1665. package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
  1666. package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
  1667. package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
  1668. package/node_modules/css-select/lib/esm/index.d.ts +50 -0
  1669. package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
  1670. package/node_modules/css-select/lib/esm/index.js +115 -0
  1671. package/node_modules/css-select/lib/esm/index.js.map +1 -0
  1672. package/node_modules/css-select/lib/esm/package.json +1 -0
  1673. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
  1674. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
  1675. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  1676. package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
  1677. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
  1678. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
  1679. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  1680. package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
  1681. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
  1682. package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
  1683. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  1684. package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
  1685. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
  1686. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
  1687. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  1688. package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
  1689. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
  1690. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
  1691. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  1692. package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
  1693. package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
  1694. package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
  1695. package/node_modules/css-select/lib/esm/sort.js +79 -0
  1696. package/node_modules/css-select/lib/esm/sort.js.map +1 -0
  1697. package/node_modules/css-select/lib/esm/types.d.ts +167 -0
  1698. package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
  1699. package/node_modules/css-select/lib/esm/types.js +2 -0
  1700. package/node_modules/css-select/lib/esm/types.js.map +1 -0
  1701. package/node_modules/css-select/lib/general.d.ts +3 -0
  1702. package/node_modules/css-select/lib/general.d.ts.map +1 -0
  1703. package/node_modules/css-select/lib/general.js +148 -0
  1704. package/node_modules/css-select/lib/general.js.map +1 -0
  1705. package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
  1706. package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
  1707. package/node_modules/css-select/lib/helpers/cache.js +45 -0
  1708. package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
  1709. package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
  1710. package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
  1711. package/node_modules/css-select/lib/helpers/querying.js +111 -0
  1712. package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
  1713. package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
  1714. package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
  1715. package/node_modules/css-select/lib/helpers/selectors.js +111 -0
  1716. package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
  1717. package/node_modules/css-select/lib/index.d.ts +50 -0
  1718. package/node_modules/css-select/lib/index.d.ts.map +1 -0
  1719. package/node_modules/css-select/lib/index.js +154 -0
  1720. package/node_modules/css-select/lib/index.js.map +1 -0
  1721. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
  1722. package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
  1723. package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
  1724. package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
  1725. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
  1726. package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
  1727. package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
  1728. package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
  1729. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
  1730. package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
  1731. package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
  1732. package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
  1733. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
  1734. package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
  1735. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
  1736. package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
  1737. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
  1738. package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
  1739. package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
  1740. package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
  1741. package/node_modules/css-select/lib/sort.d.ts +12 -0
  1742. package/node_modules/css-select/lib/sort.d.ts.map +1 -0
  1743. package/node_modules/css-select/lib/sort.js +84 -0
  1744. package/node_modules/css-select/lib/sort.js.map +1 -0
  1745. package/node_modules/css-select/lib/types.d.ts +167 -0
  1746. package/node_modules/css-select/lib/types.d.ts.map +1 -0
  1747. package/node_modules/css-select/lib/types.js +3 -0
  1748. package/node_modules/css-select/lib/types.js.map +1 -0
  1749. package/node_modules/css-select/package.json +81 -0
  1750. package/node_modules/css-what/LICENSE +11 -0
  1751. package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
  1752. package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
  1753. package/node_modules/css-what/lib/commonjs/index.js +23 -0
  1754. package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
  1755. package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
  1756. package/node_modules/css-what/lib/commonjs/parse.js +425 -0
  1757. package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
  1758. package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
  1759. package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
  1760. package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
  1761. package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
  1762. package/node_modules/css-what/lib/commonjs/types.js +42 -0
  1763. package/node_modules/css-what/lib/es/index.d.ts +4 -0
  1764. package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
  1765. package/node_modules/css-what/lib/es/index.js +3 -0
  1766. package/node_modules/css-what/lib/es/parse.d.ts +20 -0
  1767. package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
  1768. package/node_modules/css-what/lib/es/parse.js +420 -0
  1769. package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
  1770. package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
  1771. package/node_modules/css-what/lib/es/stringify.js +126 -0
  1772. package/node_modules/css-what/lib/es/types.d.ts +70 -0
  1773. package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
  1774. package/node_modules/css-what/lib/es/types.js +39 -0
  1775. package/node_modules/css-what/package.json +59 -0
  1776. package/node_modules/css-what/readme.md +69 -0
  1777. package/node_modules/cssom/LICENSE.txt +20 -0
  1778. package/node_modules/cssom/README.mdown +67 -0
  1779. package/node_modules/cssom/lib/CSSConditionRule.js +25 -0
  1780. package/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
  1781. package/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
  1782. package/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
  1783. package/node_modules/cssom/lib/CSSHostRule.js +37 -0
  1784. package/node_modules/cssom/lib/CSSImportRule.js +132 -0
  1785. package/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
  1786. package/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
  1787. package/node_modules/cssom/lib/CSSMediaRule.js +53 -0
  1788. package/node_modules/cssom/lib/CSSOM.js +3 -0
  1789. package/node_modules/cssom/lib/CSSRule.js +43 -0
  1790. package/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
  1791. package/node_modules/cssom/lib/CSSStyleRule.js +190 -0
  1792. package/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
  1793. package/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
  1794. package/node_modules/cssom/lib/CSSValue.js +43 -0
  1795. package/node_modules/cssom/lib/CSSValueExpression.js +344 -0
  1796. package/node_modules/cssom/lib/MatcherList.js +62 -0
  1797. package/node_modules/cssom/lib/MediaList.js +61 -0
  1798. package/node_modules/cssom/lib/StyleSheet.js +17 -0
  1799. package/node_modules/cssom/lib/clone.js +74 -0
  1800. package/node_modules/cssom/lib/index.js +23 -0
  1801. package/node_modules/cssom/lib/parse.js +465 -0
  1802. package/node_modules/cssom/package.json +18 -0
  1803. package/node_modules/dom-serializer/LICENSE +11 -0
  1804. package/node_modules/dom-serializer/README.md +109 -0
  1805. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
  1806. package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
  1807. package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  1808. package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
  1809. package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
  1810. package/node_modules/dom-serializer/lib/esm/index.js +190 -0
  1811. package/node_modules/dom-serializer/lib/esm/package.json +1 -0
  1812. package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
  1813. package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
  1814. package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
  1815. package/node_modules/dom-serializer/lib/index.d.ts +52 -0
  1816. package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
  1817. package/node_modules/dom-serializer/lib/index.js +229 -0
  1818. package/node_modules/dom-serializer/package.json +69 -0
  1819. package/node_modules/domelementtype/LICENSE +11 -0
  1820. package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
  1821. package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
  1822. package/node_modules/domelementtype/lib/esm/index.js +51 -0
  1823. package/node_modules/domelementtype/lib/esm/package.json +1 -0
  1824. package/node_modules/domelementtype/lib/index.d.ts +48 -0
  1825. package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
  1826. package/node_modules/domelementtype/lib/index.js +55 -0
  1827. package/node_modules/domelementtype/package.json +54 -0
  1828. package/node_modules/domelementtype/readme.md +1 -0
  1829. package/node_modules/domhandler/LICENSE +11 -0
  1830. package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
  1831. package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
  1832. package/node_modules/domhandler/lib/esm/index.js +146 -0
  1833. package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
  1834. package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
  1835. package/node_modules/domhandler/lib/esm/node.js +338 -0
  1836. package/node_modules/domhandler/lib/esm/package.json +1 -0
  1837. package/node_modules/domhandler/lib/index.d.ts +76 -0
  1838. package/node_modules/domhandler/lib/index.d.ts.map +1 -0
  1839. package/node_modules/domhandler/lib/index.js +165 -0
  1840. package/node_modules/domhandler/lib/node.d.ts +245 -0
  1841. package/node_modules/domhandler/lib/node.d.ts.map +1 -0
  1842. package/node_modules/domhandler/lib/node.js +474 -0
  1843. package/node_modules/domhandler/package.json +73 -0
  1844. package/node_modules/domhandler/readme.md +92 -0
  1845. package/node_modules/domutils/LICENSE +11 -0
  1846. package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
  1847. package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
  1848. package/node_modules/domutils/lib/esm/feeds.js +183 -0
  1849. package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
  1850. package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
  1851. package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
  1852. package/node_modules/domutils/lib/esm/helpers.js +136 -0
  1853. package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
  1854. package/node_modules/domutils/lib/esm/index.d.ts +10 -0
  1855. package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
  1856. package/node_modules/domutils/lib/esm/index.js +10 -0
  1857. package/node_modules/domutils/lib/esm/index.js.map +1 -0
  1858. package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
  1859. package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
  1860. package/node_modules/domutils/lib/esm/legacy.js +152 -0
  1861. package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
  1862. package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
  1863. package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
  1864. package/node_modules/domutils/lib/esm/manipulation.js +134 -0
  1865. package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
  1866. package/node_modules/domutils/lib/esm/package.json +1 -0
  1867. package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
  1868. package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
  1869. package/node_modules/domutils/lib/esm/querying.js +142 -0
  1870. package/node_modules/domutils/lib/esm/querying.js.map +1 -0
  1871. package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
  1872. package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
  1873. package/node_modules/domutils/lib/esm/stringify.js +81 -0
  1874. package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
  1875. package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
  1876. package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
  1877. package/node_modules/domutils/lib/esm/traversal.js +112 -0
  1878. package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
  1879. package/node_modules/domutils/lib/feeds.d.ts +71 -0
  1880. package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
  1881. package/node_modules/domutils/lib/feeds.js +190 -0
  1882. package/node_modules/domutils/lib/feeds.js.map +1 -0
  1883. package/node_modules/domutils/lib/helpers.d.ts +59 -0
  1884. package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
  1885. package/node_modules/domutils/lib/helpers.js +142 -0
  1886. package/node_modules/domutils/lib/helpers.js.map +1 -0
  1887. package/node_modules/domutils/lib/index.d.ts +10 -0
  1888. package/node_modules/domutils/lib/index.d.ts.map +1 -0
  1889. package/node_modules/domutils/lib/index.js +33 -0
  1890. package/node_modules/domutils/lib/index.js.map +1 -0
  1891. package/node_modules/domutils/lib/legacy.d.ts +79 -0
  1892. package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
  1893. package/node_modules/domutils/lib/legacy.js +168 -0
  1894. package/node_modules/domutils/lib/legacy.js.map +1 -0
  1895. package/node_modules/domutils/lib/manipulation.d.ts +49 -0
  1896. package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
  1897. package/node_modules/domutils/lib/manipulation.js +142 -0
  1898. package/node_modules/domutils/lib/manipulation.js.map +1 -0
  1899. package/node_modules/domutils/lib/querying.d.ts +64 -0
  1900. package/node_modules/domutils/lib/querying.d.ts.map +1 -0
  1901. package/node_modules/domutils/lib/querying.js +155 -0
  1902. package/node_modules/domutils/lib/querying.js.map +1 -0
  1903. package/node_modules/domutils/lib/stringify.d.ts +46 -0
  1904. package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
  1905. package/node_modules/domutils/lib/stringify.js +91 -0
  1906. package/node_modules/domutils/lib/stringify.js.map +1 -0
  1907. package/node_modules/domutils/lib/traversal.d.ts +67 -0
  1908. package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
  1909. package/node_modules/domutils/lib/traversal.js +125 -0
  1910. package/node_modules/domutils/lib/traversal.js.map +1 -0
  1911. package/node_modules/domutils/package.json +79 -0
  1912. package/node_modules/domutils/readme.md +31 -0
  1913. package/node_modules/entities/LICENSE +11 -0
  1914. package/node_modules/entities/lib/decode.d.ts +211 -0
  1915. package/node_modules/entities/lib/decode.d.ts.map +1 -0
  1916. package/node_modules/entities/lib/decode.js +536 -0
  1917. package/node_modules/entities/lib/decode.js.map +1 -0
  1918. package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
  1919. package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  1920. package/node_modules/entities/lib/decode_codepoint.js +76 -0
  1921. package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
  1922. package/node_modules/entities/lib/encode.d.ts +22 -0
  1923. package/node_modules/entities/lib/encode.d.ts.map +1 -0
  1924. package/node_modules/entities/lib/encode.js +77 -0
  1925. package/node_modules/entities/lib/encode.js.map +1 -0
  1926. package/node_modules/entities/lib/escape.d.ts +43 -0
  1927. package/node_modules/entities/lib/escape.d.ts.map +1 -0
  1928. package/node_modules/entities/lib/escape.js +122 -0
  1929. package/node_modules/entities/lib/escape.js.map +1 -0
  1930. package/node_modules/entities/lib/esm/decode.d.ts +211 -0
  1931. package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
  1932. package/node_modules/entities/lib/esm/decode.js +496 -0
  1933. package/node_modules/entities/lib/esm/decode.js.map +1 -0
  1934. package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
  1935. package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
  1936. package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
  1937. package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
  1938. package/node_modules/entities/lib/esm/encode.d.ts +22 -0
  1939. package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
  1940. package/node_modules/entities/lib/esm/encode.js +69 -0
  1941. package/node_modules/entities/lib/esm/encode.js.map +1 -0
  1942. package/node_modules/entities/lib/esm/escape.d.ts +43 -0
  1943. package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
  1944. package/node_modules/entities/lib/esm/escape.js +116 -0
  1945. package/node_modules/entities/lib/esm/escape.js.map +1 -0
  1946. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
  1947. package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
  1948. package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  1949. package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
  1950. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
  1951. package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
  1952. package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  1953. package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
  1954. package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
  1955. package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
  1956. package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
  1957. package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
  1958. package/node_modules/entities/lib/esm/index.d.ts +96 -0
  1959. package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
  1960. package/node_modules/entities/lib/esm/index.js +99 -0
  1961. package/node_modules/entities/lib/esm/index.js.map +1 -0
  1962. package/node_modules/entities/lib/esm/package.json +1 -0
  1963. package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  1964. package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  1965. package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
  1966. package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
  1967. package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  1968. package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  1969. package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
  1970. package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
  1971. package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
  1972. package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
  1973. package/node_modules/entities/lib/generated/encode-html.js +12 -0
  1974. package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
  1975. package/node_modules/entities/lib/index.d.ts +96 -0
  1976. package/node_modules/entities/lib/index.d.ts.map +1 -0
  1977. package/node_modules/entities/lib/index.js +126 -0
  1978. package/node_modules/entities/lib/index.js.map +1 -0
  1979. package/node_modules/entities/package.json +90 -0
  1980. package/node_modules/entities/readme.md +122 -0
  1981. package/node_modules/html-escaper/LICENSE.txt +19 -0
  1982. package/node_modules/html-escaper/README.md +110 -0
  1983. package/node_modules/html-escaper/cjs/index.js +74 -0
  1984. package/node_modules/html-escaper/cjs/package.json +1 -0
  1985. package/node_modules/html-escaper/esm/index.js +71 -0
  1986. package/node_modules/html-escaper/index.js +81 -0
  1987. package/node_modules/html-escaper/min.js +1 -0
  1988. package/node_modules/html-escaper/package.json +47 -0
  1989. package/node_modules/html-escaper/test/index.js +23 -0
  1990. package/node_modules/html-escaper/test/package.json +1 -0
  1991. package/node_modules/htmlparser2/LICENSE +18 -0
  1992. package/node_modules/htmlparser2/README.md +171 -0
  1993. package/node_modules/htmlparser2/lib/Parser.d.ts +198 -0
  1994. package/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
  1995. package/node_modules/htmlparser2/lib/Parser.js +519 -0
  1996. package/node_modules/htmlparser2/lib/Parser.js.map +1 -0
  1997. package/node_modules/htmlparser2/lib/Tokenizer.d.ts +126 -0
  1998. package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
  1999. package/node_modules/htmlparser2/lib/Tokenizer.js +791 -0
  2000. package/node_modules/htmlparser2/lib/Tokenizer.js.map +1 -0
  2001. package/node_modules/htmlparser2/lib/WritableStream.d.ts +17 -0
  2002. package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
  2003. package/node_modules/htmlparser2/lib/WritableStream.js +54 -0
  2004. package/node_modules/htmlparser2/lib/WritableStream.js.map +1 -0
  2005. package/node_modules/htmlparser2/lib/esm/Parser.d.ts +198 -0
  2006. package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +1 -0
  2007. package/node_modules/htmlparser2/lib/esm/Parser.js +490 -0
  2008. package/node_modules/htmlparser2/lib/esm/Parser.js.map +1 -0
  2009. package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +126 -0
  2010. package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +1 -0
  2011. package/node_modules/htmlparser2/lib/esm/Tokenizer.js +784 -0
  2012. package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +1 -0
  2013. package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +17 -0
  2014. package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +1 -0
  2015. package/node_modules/htmlparser2/lib/esm/WritableStream.js +32 -0
  2016. package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +1 -0
  2017. package/node_modules/htmlparser2/lib/esm/index.d.ts +54 -0
  2018. package/node_modules/htmlparser2/lib/esm/index.d.ts.map +1 -0
  2019. package/node_modules/htmlparser2/lib/esm/index.js +74 -0
  2020. package/node_modules/htmlparser2/lib/esm/index.js.map +1 -0
  2021. package/node_modules/htmlparser2/lib/esm/package.json +1 -0
  2022. package/node_modules/htmlparser2/lib/index.d.ts +54 -0
  2023. package/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
  2024. package/node_modules/htmlparser2/lib/index.js +114 -0
  2025. package/node_modules/htmlparser2/lib/index.js.map +1 -0
  2026. package/node_modules/htmlparser2/package.json +97 -0
  2027. package/node_modules/linkedom/.github/workflows/node.js.yml +31 -0
  2028. package/node_modules/linkedom/LICENSE +15 -0
  2029. package/node_modules/linkedom/README.md +307 -0
  2030. package/node_modules/linkedom/cjs/cached.js +153 -0
  2031. package/node_modules/linkedom/cjs/dom/parser.js +41 -0
  2032. package/node_modules/linkedom/cjs/dom/string-map.js +47 -0
  2033. package/node_modules/linkedom/cjs/dom/token-list.js +103 -0
  2034. package/node_modules/linkedom/cjs/html/anchor-element.js +35 -0
  2035. package/node_modules/linkedom/cjs/html/area-element.js +12 -0
  2036. package/node_modules/linkedom/cjs/html/audio-element.js +12 -0
  2037. package/node_modules/linkedom/cjs/html/base-element.js +12 -0
  2038. package/node_modules/linkedom/cjs/html/body-element.js +12 -0
  2039. package/node_modules/linkedom/cjs/html/br-element.js +12 -0
  2040. package/node_modules/linkedom/cjs/html/button-element.js +31 -0
  2041. package/node_modules/linkedom/cjs/html/canvas-element.js +53 -0
  2042. package/node_modules/linkedom/cjs/html/d-list-element.js +12 -0
  2043. package/node_modules/linkedom/cjs/html/data-element.js +12 -0
  2044. package/node_modules/linkedom/cjs/html/data-list-element.js +12 -0
  2045. package/node_modules/linkedom/cjs/html/details-element.js +12 -0
  2046. package/node_modules/linkedom/cjs/html/directory-element.js +12 -0
  2047. package/node_modules/linkedom/cjs/html/div-element.js +12 -0
  2048. package/node_modules/linkedom/cjs/html/document.js +105 -0
  2049. package/node_modules/linkedom/cjs/html/element.js +321 -0
  2050. package/node_modules/linkedom/cjs/html/embed-element.js +12 -0
  2051. package/node_modules/linkedom/cjs/html/field-set-element.js +12 -0
  2052. package/node_modules/linkedom/cjs/html/font-element.js +12 -0
  2053. package/node_modules/linkedom/cjs/html/form-element.js +12 -0
  2054. package/node_modules/linkedom/cjs/html/frame-element.js +12 -0
  2055. package/node_modules/linkedom/cjs/html/frame-set-element.js +12 -0
  2056. package/node_modules/linkedom/cjs/html/head-element.js +12 -0
  2057. package/node_modules/linkedom/cjs/html/heading-element.js +19 -0
  2058. package/node_modules/linkedom/cjs/html/hr-element.js +12 -0
  2059. package/node_modules/linkedom/cjs/html/html-element.js +12 -0
  2060. package/node_modules/linkedom/cjs/html/i-frame-element.js +43 -0
  2061. package/node_modules/linkedom/cjs/html/image-element.js +43 -0
  2062. package/node_modules/linkedom/cjs/html/input-element.js +40 -0
  2063. package/node_modules/linkedom/cjs/html/label-element.js +12 -0
  2064. package/node_modules/linkedom/cjs/html/legend-element.js +12 -0
  2065. package/node_modules/linkedom/cjs/html/li-element.js +12 -0
  2066. package/node_modules/linkedom/cjs/html/link-element.js +41 -0
  2067. package/node_modules/linkedom/cjs/html/map-element.js +12 -0
  2068. package/node_modules/linkedom/cjs/html/marquee-element.js +12 -0
  2069. package/node_modules/linkedom/cjs/html/media-element.js +12 -0
  2070. package/node_modules/linkedom/cjs/html/menu-element.js +12 -0
  2071. package/node_modules/linkedom/cjs/html/meta-element.js +36 -0
  2072. package/node_modules/linkedom/cjs/html/meter-element.js +12 -0
  2073. package/node_modules/linkedom/cjs/html/mod-element.js +12 -0
  2074. package/node_modules/linkedom/cjs/html/o-list-element.js +12 -0
  2075. package/node_modules/linkedom/cjs/html/object-element.js +12 -0
  2076. package/node_modules/linkedom/cjs/html/opt-group-element.js +12 -0
  2077. package/node_modules/linkedom/cjs/html/option-element.js +32 -0
  2078. package/node_modules/linkedom/cjs/html/output-element.js +12 -0
  2079. package/node_modules/linkedom/cjs/html/paragraph-element.js +12 -0
  2080. package/node_modules/linkedom/cjs/html/param-element.js +12 -0
  2081. package/node_modules/linkedom/cjs/html/picture-element.js +12 -0
  2082. package/node_modules/linkedom/cjs/html/pre-element.js +12 -0
  2083. package/node_modules/linkedom/cjs/html/progress-element.js +12 -0
  2084. package/node_modules/linkedom/cjs/html/quote-element.js +12 -0
  2085. package/node_modules/linkedom/cjs/html/script-element.js +80 -0
  2086. package/node_modules/linkedom/cjs/html/select-element.js +45 -0
  2087. package/node_modules/linkedom/cjs/html/slot-element.js +62 -0
  2088. package/node_modules/linkedom/cjs/html/source-element.js +34 -0
  2089. package/node_modules/linkedom/cjs/html/span-element.js +12 -0
  2090. package/node_modules/linkedom/cjs/html/style-element.js +53 -0
  2091. package/node_modules/linkedom/cjs/html/table-caption-element.js +12 -0
  2092. package/node_modules/linkedom/cjs/html/table-cell-element.js +12 -0
  2093. package/node_modules/linkedom/cjs/html/table-element.js +12 -0
  2094. package/node_modules/linkedom/cjs/html/table-row-element.js +12 -0
  2095. package/node_modules/linkedom/cjs/html/template-element.js +31 -0
  2096. package/node_modules/linkedom/cjs/html/text-area-element.js +37 -0
  2097. package/node_modules/linkedom/cjs/html/text-element.js +16 -0
  2098. package/node_modules/linkedom/cjs/html/time-element.js +12 -0
  2099. package/node_modules/linkedom/cjs/html/title-element.js +19 -0
  2100. package/node_modules/linkedom/cjs/html/track-element.js +12 -0
  2101. package/node_modules/linkedom/cjs/html/u-list-element.js +12 -0
  2102. package/node_modules/linkedom/cjs/html/unknown-element.js +12 -0
  2103. package/node_modules/linkedom/cjs/html/video-element.js +12 -0
  2104. package/node_modules/linkedom/cjs/index.js +48 -0
  2105. package/node_modules/linkedom/cjs/interface/attr.js +59 -0
  2106. package/node_modules/linkedom/cjs/interface/cdata-section.js +22 -0
  2107. package/node_modules/linkedom/cjs/interface/character-data.js +86 -0
  2108. package/node_modules/linkedom/cjs/interface/comment.js +22 -0
  2109. package/node_modules/linkedom/cjs/interface/css-style-declaration.js +130 -0
  2110. package/node_modules/linkedom/cjs/interface/custom-element-registry.js +212 -0
  2111. package/node_modules/linkedom/cjs/interface/custom-event.js +21 -0
  2112. package/node_modules/linkedom/cjs/interface/document-fragment.js +13 -0
  2113. package/node_modules/linkedom/cjs/interface/document-type.js +43 -0
  2114. package/node_modules/linkedom/cjs/interface/document.js +290 -0
  2115. package/node_modules/linkedom/cjs/interface/element.js +513 -0
  2116. package/node_modules/linkedom/cjs/interface/event-target.js +89 -0
  2117. package/node_modules/linkedom/cjs/interface/event.js +65 -0
  2118. package/node_modules/linkedom/cjs/interface/html-collection.js +4 -0
  2119. package/node_modules/linkedom/cjs/interface/image.js +23 -0
  2120. package/node_modules/linkedom/cjs/interface/input-event.js +24 -0
  2121. package/node_modules/linkedom/cjs/interface/mutation-observer.js +176 -0
  2122. package/node_modules/linkedom/cjs/interface/named-node-map.js +44 -0
  2123. package/node_modules/linkedom/cjs/interface/node-filter.js +17 -0
  2124. package/node_modules/linkedom/cjs/interface/node-list.js +10 -0
  2125. package/node_modules/linkedom/cjs/interface/node.js +206 -0
  2126. package/node_modules/linkedom/cjs/interface/range.js +131 -0
  2127. package/node_modules/linkedom/cjs/interface/shadow-root.js +22 -0
  2128. package/node_modules/linkedom/cjs/interface/text.js +44 -0
  2129. package/node_modules/linkedom/cjs/interface/tree-walker.js +60 -0
  2130. package/node_modules/linkedom/cjs/mixin/child-node.js +67 -0
  2131. package/node_modules/linkedom/cjs/mixin/inner-html.js +39 -0
  2132. package/node_modules/linkedom/cjs/mixin/non-document-type-child-node.js +23 -0
  2133. package/node_modules/linkedom/cjs/mixin/non-element-parent-node.js +44 -0
  2134. package/node_modules/linkedom/cjs/mixin/parent-node.js +295 -0
  2135. package/node_modules/linkedom/cjs/package.json +1 -0
  2136. package/node_modules/linkedom/cjs/shared/attributes.js +111 -0
  2137. package/node_modules/linkedom/cjs/shared/cache.js +33 -0
  2138. package/node_modules/linkedom/cjs/shared/constants.js +56 -0
  2139. package/node_modules/linkedom/cjs/shared/facades.js +91 -0
  2140. package/node_modules/linkedom/cjs/shared/html-classes.js +210 -0
  2141. package/node_modules/linkedom/cjs/shared/jsdon.js +79 -0
  2142. package/node_modules/linkedom/cjs/shared/matches.js +121 -0
  2143. package/node_modules/linkedom/cjs/shared/mime.js +33 -0
  2144. package/node_modules/linkedom/cjs/shared/node.js +53 -0
  2145. package/node_modules/linkedom/cjs/shared/object.js +18 -0
  2146. package/node_modules/linkedom/cjs/shared/parse-from-string.js +125 -0
  2147. package/node_modules/linkedom/cjs/shared/parse-json.js +134 -0
  2148. package/node_modules/linkedom/cjs/shared/register-html-class.js +11 -0
  2149. package/node_modules/linkedom/cjs/shared/shadow-roots.js +3 -0
  2150. package/node_modules/linkedom/cjs/shared/symbols.js +88 -0
  2151. package/node_modules/linkedom/cjs/shared/text-escaper.js +24 -0
  2152. package/node_modules/linkedom/cjs/shared/utils.js +49 -0
  2153. package/node_modules/linkedom/cjs/svg/document.js +14 -0
  2154. package/node_modules/linkedom/cjs/svg/element.js +60 -0
  2155. package/node_modules/linkedom/cjs/xml/document.js +14 -0
  2156. package/node_modules/linkedom/commonjs/canvas-shim.cjs +16 -0
  2157. package/node_modules/linkedom/commonjs/canvas.cjs +7 -0
  2158. package/node_modules/linkedom/commonjs/perf_hooks.cjs +9 -0
  2159. package/node_modules/linkedom/esm/cached.js +151 -0
  2160. package/node_modules/linkedom/esm/dom/parser.js +39 -0
  2161. package/node_modules/linkedom/esm/dom/string-map.js +45 -0
  2162. package/node_modules/linkedom/esm/dom/token-list.js +101 -0
  2163. package/node_modules/linkedom/esm/html/anchor-element.js +34 -0
  2164. package/node_modules/linkedom/esm/html/area-element.js +10 -0
  2165. package/node_modules/linkedom/esm/html/audio-element.js +10 -0
  2166. package/node_modules/linkedom/esm/html/base-element.js +10 -0
  2167. package/node_modules/linkedom/esm/html/body-element.js +10 -0
  2168. package/node_modules/linkedom/esm/html/br-element.js +10 -0
  2169. package/node_modules/linkedom/esm/html/button-element.js +30 -0
  2170. package/node_modules/linkedom/esm/html/canvas-element.js +52 -0
  2171. package/node_modules/linkedom/esm/html/d-list-element.js +10 -0
  2172. package/node_modules/linkedom/esm/html/data-element.js +10 -0
  2173. package/node_modules/linkedom/esm/html/data-list-element.js +10 -0
  2174. package/node_modules/linkedom/esm/html/details-element.js +10 -0
  2175. package/node_modules/linkedom/esm/html/directory-element.js +10 -0
  2176. package/node_modules/linkedom/esm/html/div-element.js +10 -0
  2177. package/node_modules/linkedom/esm/html/document.js +103 -0
  2178. package/node_modules/linkedom/esm/html/element.js +319 -0
  2179. package/node_modules/linkedom/esm/html/embed-element.js +10 -0
  2180. package/node_modules/linkedom/esm/html/field-set-element.js +10 -0
  2181. package/node_modules/linkedom/esm/html/font-element.js +10 -0
  2182. package/node_modules/linkedom/esm/html/form-element.js +10 -0
  2183. package/node_modules/linkedom/esm/html/frame-element.js +10 -0
  2184. package/node_modules/linkedom/esm/html/frame-set-element.js +10 -0
  2185. package/node_modules/linkedom/esm/html/head-element.js +10 -0
  2186. package/node_modules/linkedom/esm/html/heading-element.js +18 -0
  2187. package/node_modules/linkedom/esm/html/hr-element.js +10 -0
  2188. package/node_modules/linkedom/esm/html/html-element.js +10 -0
  2189. package/node_modules/linkedom/esm/html/i-frame-element.js +42 -0
  2190. package/node_modules/linkedom/esm/html/image-element.js +42 -0
  2191. package/node_modules/linkedom/esm/html/input-element.js +39 -0
  2192. package/node_modules/linkedom/esm/html/label-element.js +10 -0
  2193. package/node_modules/linkedom/esm/html/legend-element.js +10 -0
  2194. package/node_modules/linkedom/esm/html/li-element.js +10 -0
  2195. package/node_modules/linkedom/esm/html/link-element.js +40 -0
  2196. package/node_modules/linkedom/esm/html/map-element.js +10 -0
  2197. package/node_modules/linkedom/esm/html/marquee-element.js +10 -0
  2198. package/node_modules/linkedom/esm/html/media-element.js +10 -0
  2199. package/node_modules/linkedom/esm/html/menu-element.js +10 -0
  2200. package/node_modules/linkedom/esm/html/meta-element.js +34 -0
  2201. package/node_modules/linkedom/esm/html/meter-element.js +10 -0
  2202. package/node_modules/linkedom/esm/html/mod-element.js +10 -0
  2203. package/node_modules/linkedom/esm/html/o-list-element.js +10 -0
  2204. package/node_modules/linkedom/esm/html/object-element.js +10 -0
  2205. package/node_modules/linkedom/esm/html/opt-group-element.js +10 -0
  2206. package/node_modules/linkedom/esm/html/option-element.js +31 -0
  2207. package/node_modules/linkedom/esm/html/output-element.js +10 -0
  2208. package/node_modules/linkedom/esm/html/paragraph-element.js +10 -0
  2209. package/node_modules/linkedom/esm/html/param-element.js +10 -0
  2210. package/node_modules/linkedom/esm/html/picture-element.js +10 -0
  2211. package/node_modules/linkedom/esm/html/pre-element.js +10 -0
  2212. package/node_modules/linkedom/esm/html/progress-element.js +10 -0
  2213. package/node_modules/linkedom/esm/html/quote-element.js +10 -0
  2214. package/node_modules/linkedom/esm/html/script-element.js +79 -0
  2215. package/node_modules/linkedom/esm/html/select-element.js +44 -0
  2216. package/node_modules/linkedom/esm/html/slot-element.js +61 -0
  2217. package/node_modules/linkedom/esm/html/source-element.js +33 -0
  2218. package/node_modules/linkedom/esm/html/span-element.js +10 -0
  2219. package/node_modules/linkedom/esm/html/style-element.js +52 -0
  2220. package/node_modules/linkedom/esm/html/table-caption-element.js +10 -0
  2221. package/node_modules/linkedom/esm/html/table-cell-element.js +10 -0
  2222. package/node_modules/linkedom/esm/html/table-element.js +10 -0
  2223. package/node_modules/linkedom/esm/html/table-row-element.js +10 -0
  2224. package/node_modules/linkedom/esm/html/template-element.js +30 -0
  2225. package/node_modules/linkedom/esm/html/text-area-element.js +36 -0
  2226. package/node_modules/linkedom/esm/html/text-element.js +14 -0
  2227. package/node_modules/linkedom/esm/html/time-element.js +10 -0
  2228. package/node_modules/linkedom/esm/html/title-element.js +18 -0
  2229. package/node_modules/linkedom/esm/html/track-element.js +10 -0
  2230. package/node_modules/linkedom/esm/html/u-list-element.js +10 -0
  2231. package/node_modules/linkedom/esm/html/unknown-element.js +10 -0
  2232. package/node_modules/linkedom/esm/html/video-element.js +10 -0
  2233. package/node_modules/linkedom/esm/index.js +28 -0
  2234. package/node_modules/linkedom/esm/interface/attr.js +57 -0
  2235. package/node_modules/linkedom/esm/interface/cdata-section.js +20 -0
  2236. package/node_modules/linkedom/esm/interface/character-data.js +84 -0
  2237. package/node_modules/linkedom/esm/interface/comment.js +20 -0
  2238. package/node_modules/linkedom/esm/interface/css-style-declaration.js +128 -0
  2239. package/node_modules/linkedom/esm/interface/custom-element-registry.js +205 -0
  2240. package/node_modules/linkedom/esm/interface/custom-event.js +19 -0
  2241. package/node_modules/linkedom/esm/interface/document-fragment.js +11 -0
  2242. package/node_modules/linkedom/esm/interface/document-type.js +41 -0
  2243. package/node_modules/linkedom/esm/interface/document.js +289 -0
  2244. package/node_modules/linkedom/esm/interface/element.js +514 -0
  2245. package/node_modules/linkedom/esm/interface/event-target.js +88 -0
  2246. package/node_modules/linkedom/esm/interface/event.js +64 -0
  2247. package/node_modules/linkedom/esm/interface/html-collection.js +3 -0
  2248. package/node_modules/linkedom/esm/interface/image.js +21 -0
  2249. package/node_modules/linkedom/esm/interface/input-event.js +22 -0
  2250. package/node_modules/linkedom/esm/interface/mutation-observer.js +172 -0
  2251. package/node_modules/linkedom/esm/interface/named-node-map.js +42 -0
  2252. package/node_modules/linkedom/esm/interface/node-filter.js +15 -0
  2253. package/node_modules/linkedom/esm/interface/node-list.js +8 -0
  2254. package/node_modules/linkedom/esm/interface/node.js +204 -0
  2255. package/node_modules/linkedom/esm/interface/range.js +129 -0
  2256. package/node_modules/linkedom/esm/interface/shadow-root.js +20 -0
  2257. package/node_modules/linkedom/esm/interface/text.js +42 -0
  2258. package/node_modules/linkedom/esm/interface/tree-walker.js +58 -0
  2259. package/node_modules/linkedom/esm/mixin/child-node.js +62 -0
  2260. package/node_modules/linkedom/esm/mixin/inner-html.js +36 -0
  2261. package/node_modules/linkedom/esm/mixin/non-document-type-child-node.js +20 -0
  2262. package/node_modules/linkedom/esm/mixin/non-element-parent-node.js +42 -0
  2263. package/node_modules/linkedom/esm/mixin/parent-node.js +293 -0
  2264. package/node_modules/linkedom/esm/shared/attributes.js +104 -0
  2265. package/node_modules/linkedom/esm/shared/cache.js +26 -0
  2266. package/node_modules/linkedom/esm/shared/constants.js +33 -0
  2267. package/node_modules/linkedom/esm/shared/facades.js +77 -0
  2268. package/node_modules/linkedom/esm/shared/html-classes.js +210 -0
  2269. package/node_modules/linkedom/esm/shared/jsdon.js +73 -0
  2270. package/node_modules/linkedom/esm/shared/matches.js +118 -0
  2271. package/node_modules/linkedom/esm/shared/mime.js +31 -0
  2272. package/node_modules/linkedom/esm/shared/node.js +48 -0
  2273. package/node_modules/linkedom/esm/shared/object.js +19 -0
  2274. package/node_modules/linkedom/esm/shared/parse-from-string.js +122 -0
  2275. package/node_modules/linkedom/esm/shared/parse-json.js +131 -0
  2276. package/node_modules/linkedom/esm/shared/register-html-class.js +8 -0
  2277. package/node_modules/linkedom/esm/shared/shadow-roots.js +1 -0
  2278. package/node_modules/linkedom/esm/shared/symbols.js +65 -0
  2279. package/node_modules/linkedom/esm/shared/text-escaper.js +22 -0
  2280. package/node_modules/linkedom/esm/shared/utils.js +40 -0
  2281. package/node_modules/linkedom/esm/svg/document.js +12 -0
  2282. package/node_modules/linkedom/esm/svg/element.js +58 -0
  2283. package/node_modules/linkedom/esm/xml/document.js +12 -0
  2284. package/node_modules/linkedom/package.json +84 -0
  2285. package/node_modules/linkedom/tsconfig.json +13 -0
  2286. package/node_modules/linkedom/types/commonjs/canvas-shim.d.cts +9 -0
  2287. package/node_modules/linkedom/types/commonjs/canvas.d.cts +2 -0
  2288. package/node_modules/linkedom/types/commonjs/perf_hooks.d.cts +1 -0
  2289. package/node_modules/linkedom/types/dom/parser.d.ts +24 -0
  2290. package/node_modules/linkedom/types/dom/string-map.d.ts +9 -0
  2291. package/node_modules/linkedom/types/dom/token-list.d.ts +32 -0
  2292. package/node_modules/linkedom/types/esm/dom/parser.d.ts +24 -0
  2293. package/node_modules/linkedom/types/esm/dom/string-map.d.ts +9 -0
  2294. package/node_modules/linkedom/types/esm/dom/token-list.d.ts +36 -0
  2295. package/node_modules/linkedom/types/esm/html/anchor-element.d.ts +14 -0
  2296. package/node_modules/linkedom/types/esm/html/area-element.d.ts +6 -0
  2297. package/node_modules/linkedom/types/esm/html/audio-element.d.ts +6 -0
  2298. package/node_modules/linkedom/types/esm/html/base-element.d.ts +6 -0
  2299. package/node_modules/linkedom/types/esm/html/body-element.d.ts +6 -0
  2300. package/node_modules/linkedom/types/esm/html/br-element.d.ts +6 -0
  2301. package/node_modules/linkedom/types/esm/html/button-element.d.ts +12 -0
  2302. package/node_modules/linkedom/types/esm/html/canvas-element.d.ts +14 -0
  2303. package/node_modules/linkedom/types/esm/html/d-list-element.d.ts +6 -0
  2304. package/node_modules/linkedom/types/esm/html/data-element.d.ts +6 -0
  2305. package/node_modules/linkedom/types/esm/html/data-list-element.d.ts +6 -0
  2306. package/node_modules/linkedom/types/esm/html/details-element.d.ts +6 -0
  2307. package/node_modules/linkedom/types/esm/html/directory-element.d.ts +6 -0
  2308. package/node_modules/linkedom/types/esm/html/div-element.d.ts +6 -0
  2309. package/node_modules/linkedom/types/esm/html/document.d.ts +23 -0
  2310. package/node_modules/linkedom/types/esm/html/element.d.ts +168 -0
  2311. package/node_modules/linkedom/types/esm/html/embed-element.d.ts +6 -0
  2312. package/node_modules/linkedom/types/esm/html/field-set-element.d.ts +6 -0
  2313. package/node_modules/linkedom/types/esm/html/font-element.d.ts +6 -0
  2314. package/node_modules/linkedom/types/esm/html/form-element.d.ts +6 -0
  2315. package/node_modules/linkedom/types/esm/html/frame-element.d.ts +6 -0
  2316. package/node_modules/linkedom/types/esm/html/frame-set-element.d.ts +6 -0
  2317. package/node_modules/linkedom/types/esm/html/head-element.d.ts +6 -0
  2318. package/node_modules/linkedom/types/esm/html/heading-element.d.ts +6 -0
  2319. package/node_modules/linkedom/types/esm/html/hr-element.d.ts +6 -0
  2320. package/node_modules/linkedom/types/esm/html/html-element.d.ts +6 -0
  2321. package/node_modules/linkedom/types/esm/html/i-frame-element.d.ts +20 -0
  2322. package/node_modules/linkedom/types/esm/html/image-element.d.ts +18 -0
  2323. package/node_modules/linkedom/types/esm/html/input-element.d.ts +18 -0
  2324. package/node_modules/linkedom/types/esm/html/label-element.d.ts +6 -0
  2325. package/node_modules/linkedom/types/esm/html/legend-element.d.ts +6 -0
  2326. package/node_modules/linkedom/types/esm/html/li-element.d.ts +6 -0
  2327. package/node_modules/linkedom/types/esm/html/link-element.d.ts +18 -0
  2328. package/node_modules/linkedom/types/esm/html/map-element.d.ts +6 -0
  2329. package/node_modules/linkedom/types/esm/html/marquee-element.d.ts +6 -0
  2330. package/node_modules/linkedom/types/esm/html/media-element.d.ts +6 -0
  2331. package/node_modules/linkedom/types/esm/html/menu-element.d.ts +6 -0
  2332. package/node_modules/linkedom/types/esm/html/meta-element.d.ts +16 -0
  2333. package/node_modules/linkedom/types/esm/html/meter-element.d.ts +6 -0
  2334. package/node_modules/linkedom/types/esm/html/mod-element.d.ts +6 -0
  2335. package/node_modules/linkedom/types/esm/html/o-list-element.d.ts +6 -0
  2336. package/node_modules/linkedom/types/esm/html/object-element.d.ts +6 -0
  2337. package/node_modules/linkedom/types/esm/html/opt-group-element.d.ts +6 -0
  2338. package/node_modules/linkedom/types/esm/html/option-element.d.ts +10 -0
  2339. package/node_modules/linkedom/types/esm/html/output-element.d.ts +6 -0
  2340. package/node_modules/linkedom/types/esm/html/paragraph-element.d.ts +6 -0
  2341. package/node_modules/linkedom/types/esm/html/param-element.d.ts +6 -0
  2342. package/node_modules/linkedom/types/esm/html/picture-element.d.ts +6 -0
  2343. package/node_modules/linkedom/types/esm/html/pre-element.d.ts +6 -0
  2344. package/node_modules/linkedom/types/esm/html/progress-element.d.ts +6 -0
  2345. package/node_modules/linkedom/types/esm/html/quote-element.d.ts +6 -0
  2346. package/node_modules/linkedom/types/esm/html/script-element.d.ts +22 -0
  2347. package/node_modules/linkedom/types/esm/html/select-element.d.ts +13 -0
  2348. package/node_modules/linkedom/types/esm/html/slot-element.d.ts +11 -0
  2349. package/node_modules/linkedom/types/esm/html/source-element.d.ts +14 -0
  2350. package/node_modules/linkedom/types/esm/html/span-element.d.ts +6 -0
  2351. package/node_modules/linkedom/types/esm/html/style-element.d.ts +11 -0
  2352. package/node_modules/linkedom/types/esm/html/table-caption-element.d.ts +6 -0
  2353. package/node_modules/linkedom/types/esm/html/table-cell-element.d.ts +6 -0
  2354. package/node_modules/linkedom/types/esm/html/table-element.d.ts +6 -0
  2355. package/node_modules/linkedom/types/esm/html/table-row-element.d.ts +6 -0
  2356. package/node_modules/linkedom/types/esm/html/template-element.d.ts +10 -0
  2357. package/node_modules/linkedom/types/esm/html/text-area-element.d.ts +16 -0
  2358. package/node_modules/linkedom/types/esm/html/text-element.d.ts +4 -0
  2359. package/node_modules/linkedom/types/esm/html/time-element.d.ts +6 -0
  2360. package/node_modules/linkedom/types/esm/html/title-element.d.ts +6 -0
  2361. package/node_modules/linkedom/types/esm/html/track-element.d.ts +6 -0
  2362. package/node_modules/linkedom/types/esm/html/u-list-element.d.ts +6 -0
  2363. package/node_modules/linkedom/types/esm/html/unknown-element.d.ts +6 -0
  2364. package/node_modules/linkedom/types/esm/html/video-element.d.ts +6 -0
  2365. package/node_modules/linkedom/types/esm/index.d.ts +13 -0
  2366. package/node_modules/linkedom/types/esm/interface/attr.d.ts +17 -0
  2367. package/node_modules/linkedom/types/esm/interface/cdata-section.d.ts +8 -0
  2368. package/node_modules/linkedom/types/esm/interface/character-data.d.ts +26 -0
  2369. package/node_modules/linkedom/types/esm/interface/comment.d.ts +8 -0
  2370. package/node_modules/linkedom/types/esm/interface/css-style-declaration.d.ts +19 -0
  2371. package/node_modules/linkedom/types/esm/interface/custom-element-registry.d.ts +54 -0
  2372. package/node_modules/linkedom/types/esm/interface/custom-event.d.ts +7 -0
  2373. package/node_modules/linkedom/types/esm/interface/document-fragment.d.ts +7 -0
  2374. package/node_modules/linkedom/types/esm/interface/document-type.d.ts +12 -0
  2375. package/node_modules/linkedom/types/esm/interface/document.d.ts +71 -0
  2376. package/node_modules/linkedom/types/esm/interface/element.d.ts +81 -0
  2377. package/node_modules/linkedom/types/esm/interface/event-target.d.ts +13 -0
  2378. package/node_modules/linkedom/types/esm/interface/event.d.ts +32 -0
  2379. package/node_modules/linkedom/types/esm/interface/image.d.ts +214 -0
  2380. package/node_modules/linkedom/types/esm/interface/input-event.d.ts +11 -0
  2381. package/node_modules/linkedom/types/esm/interface/mutation-observer.d.ts +40 -0
  2382. package/node_modules/linkedom/types/esm/interface/named-node-map.d.ts +14 -0
  2383. package/node_modules/linkedom/types/esm/interface/node-filter.d.ts +7 -0
  2384. package/node_modules/linkedom/types/esm/interface/node-list.d.ts +9 -0
  2385. package/node_modules/linkedom/types/esm/interface/node.d.ts +86 -0
  2386. package/node_modules/linkedom/types/esm/interface/range.d.ts +23 -0
  2387. package/node_modules/linkedom/types/esm/interface/shadow-root.d.ts +10 -0
  2388. package/node_modules/linkedom/types/esm/interface/text.d.ts +9 -0
  2389. package/node_modules/linkedom/types/esm/interface/tree-walker.d.ts +15 -0
  2390. package/node_modules/linkedom/types/esm/mixin/child-node.d.ts +4 -0
  2391. package/node_modules/linkedom/types/esm/mixin/inner-html.d.ts +2 -0
  2392. package/node_modules/linkedom/types/esm/mixin/non-document-type-child-node.d.ts +2 -0
  2393. package/node_modules/linkedom/types/esm/mixin/non-element-parent-node.d.ts +6 -0
  2394. package/node_modules/linkedom/types/esm/mixin/parent-node.d.ts +57 -0
  2395. package/node_modules/linkedom/types/esm/shared/attributes.d.ts +15 -0
  2396. package/node_modules/linkedom/types/esm/shared/constants.d.ts +22 -0
  2397. package/node_modules/linkedom/types/esm/shared/facades.d.ts +25 -0
  2398. package/node_modules/linkedom/types/esm/shared/html-classes.d.ts +139 -0
  2399. package/node_modules/linkedom/types/esm/shared/jsdon.d.ts +9 -0
  2400. package/node_modules/linkedom/types/esm/shared/matches.d.ts +2 -0
  2401. package/node_modules/linkedom/types/esm/shared/mime.d.ts +35 -0
  2402. package/node_modules/linkedom/types/esm/shared/node.d.ts +12 -0
  2403. package/node_modules/linkedom/types/esm/shared/object.d.ts +25 -0
  2404. package/node_modules/linkedom/types/esm/shared/parse-from-string.d.ts +2 -0
  2405. package/node_modules/linkedom/types/esm/shared/parse-json.d.ts +7 -0
  2406. package/node_modules/linkedom/types/esm/shared/register-html-class.d.ts +2 -0
  2407. package/node_modules/linkedom/types/esm/shared/shadow-roots.d.ts +1 -0
  2408. package/node_modules/linkedom/types/esm/shared/symbols.d.ts +22 -0
  2409. package/node_modules/linkedom/types/esm/shared/text-escaper.d.ts +1 -0
  2410. package/node_modules/linkedom/types/esm/shared/utils.d.ts +15 -0
  2411. package/node_modules/linkedom/types/esm/svg/document.d.ts +7 -0
  2412. package/node_modules/linkedom/types/esm/svg/element.d.ts +8 -0
  2413. package/node_modules/linkedom/types/esm/xml/document.d.ts +7 -0
  2414. package/node_modules/linkedom/types/html/anchor-element.d.ts +14 -0
  2415. package/node_modules/linkedom/types/html/area-element.d.ts +6 -0
  2416. package/node_modules/linkedom/types/html/audio-element.d.ts +6 -0
  2417. package/node_modules/linkedom/types/html/base-element.d.ts +6 -0
  2418. package/node_modules/linkedom/types/html/body-element.d.ts +6 -0
  2419. package/node_modules/linkedom/types/html/br-element.d.ts +6 -0
  2420. package/node_modules/linkedom/types/html/button-element.d.ts +12 -0
  2421. package/node_modules/linkedom/types/html/canvas-element.d.ts +14 -0
  2422. package/node_modules/linkedom/types/html/d-list-element.d.ts +6 -0
  2423. package/node_modules/linkedom/types/html/data-element.d.ts +6 -0
  2424. package/node_modules/linkedom/types/html/data-list-element.d.ts +6 -0
  2425. package/node_modules/linkedom/types/html/details-element.d.ts +6 -0
  2426. package/node_modules/linkedom/types/html/directory-element.d.ts +6 -0
  2427. package/node_modules/linkedom/types/html/div-element.d.ts +6 -0
  2428. package/node_modules/linkedom/types/html/document.d.ts +22 -0
  2429. package/node_modules/linkedom/types/html/element.d.ts +168 -0
  2430. package/node_modules/linkedom/types/html/embed-element.d.ts +6 -0
  2431. package/node_modules/linkedom/types/html/field-set-element.d.ts +6 -0
  2432. package/node_modules/linkedom/types/html/font-element.d.ts +6 -0
  2433. package/node_modules/linkedom/types/html/form-element.d.ts +6 -0
  2434. package/node_modules/linkedom/types/html/frame-element.d.ts +6 -0
  2435. package/node_modules/linkedom/types/html/frame-set-element.d.ts +6 -0
  2436. package/node_modules/linkedom/types/html/head-element.d.ts +6 -0
  2437. package/node_modules/linkedom/types/html/heading-element.d.ts +6 -0
  2438. package/node_modules/linkedom/types/html/hr-element.d.ts +6 -0
  2439. package/node_modules/linkedom/types/html/html-element.d.ts +6 -0
  2440. package/node_modules/linkedom/types/html/i-frame-element.d.ts +6 -0
  2441. package/node_modules/linkedom/types/html/image-element.d.ts +18 -0
  2442. package/node_modules/linkedom/types/html/input-element.d.ts +16 -0
  2443. package/node_modules/linkedom/types/html/label-element.d.ts +6 -0
  2444. package/node_modules/linkedom/types/html/legend-element.d.ts +6 -0
  2445. package/node_modules/linkedom/types/html/li-element.d.ts +6 -0
  2446. package/node_modules/linkedom/types/html/link-element.d.ts +18 -0
  2447. package/node_modules/linkedom/types/html/map-element.d.ts +6 -0
  2448. package/node_modules/linkedom/types/html/marquee-element.d.ts +6 -0
  2449. package/node_modules/linkedom/types/html/media-element.d.ts +6 -0
  2450. package/node_modules/linkedom/types/html/menu-element.d.ts +6 -0
  2451. package/node_modules/linkedom/types/html/meta-element.d.ts +6 -0
  2452. package/node_modules/linkedom/types/html/meter-element.d.ts +6 -0
  2453. package/node_modules/linkedom/types/html/mod-element.d.ts +6 -0
  2454. package/node_modules/linkedom/types/html/o-list-element.d.ts +6 -0
  2455. package/node_modules/linkedom/types/html/object-element.d.ts +6 -0
  2456. package/node_modules/linkedom/types/html/opt-group-element.d.ts +6 -0
  2457. package/node_modules/linkedom/types/html/option-element.d.ts +6 -0
  2458. package/node_modules/linkedom/types/html/output-element.d.ts +6 -0
  2459. package/node_modules/linkedom/types/html/paragraph-element.d.ts +6 -0
  2460. package/node_modules/linkedom/types/html/param-element.d.ts +6 -0
  2461. package/node_modules/linkedom/types/html/picture-element.d.ts +6 -0
  2462. package/node_modules/linkedom/types/html/pre-element.d.ts +6 -0
  2463. package/node_modules/linkedom/types/html/progress-element.d.ts +6 -0
  2464. package/node_modules/linkedom/types/html/quote-element.d.ts +6 -0
  2465. package/node_modules/linkedom/types/html/script-element.d.ts +6 -0
  2466. package/node_modules/linkedom/types/html/select-element.d.ts +12 -0
  2467. package/node_modules/linkedom/types/html/slot-element.d.ts +6 -0
  2468. package/node_modules/linkedom/types/html/source-element.d.ts +14 -0
  2469. package/node_modules/linkedom/types/html/span-element.d.ts +6 -0
  2470. package/node_modules/linkedom/types/html/style-element.d.ts +9 -0
  2471. package/node_modules/linkedom/types/html/table-caption-element.d.ts +6 -0
  2472. package/node_modules/linkedom/types/html/table-cell-element.d.ts +6 -0
  2473. package/node_modules/linkedom/types/html/table-element.d.ts +6 -0
  2474. package/node_modules/linkedom/types/html/table-row-element.d.ts +6 -0
  2475. package/node_modules/linkedom/types/html/template-element.d.ts +10 -0
  2476. package/node_modules/linkedom/types/html/text-area-element.d.ts +16 -0
  2477. package/node_modules/linkedom/types/html/text-element.d.ts +3 -0
  2478. package/node_modules/linkedom/types/html/time-element.d.ts +6 -0
  2479. package/node_modules/linkedom/types/html/title-element.d.ts +6 -0
  2480. package/node_modules/linkedom/types/html/track-element.d.ts +6 -0
  2481. package/node_modules/linkedom/types/html/u-list-element.d.ts +6 -0
  2482. package/node_modules/linkedom/types/html/unknown-element.d.ts +6 -0
  2483. package/node_modules/linkedom/types/html/video-element.d.ts +6 -0
  2484. package/node_modules/linkedom/types/index.d.ts +12 -0
  2485. package/node_modules/linkedom/types/interface/attr.d.ts +16 -0
  2486. package/node_modules/linkedom/types/interface/character-data.d.ts +22 -0
  2487. package/node_modules/linkedom/types/interface/comment.d.ts +7 -0
  2488. package/node_modules/linkedom/types/interface/css-style-declaration.d.ts +10 -0
  2489. package/node_modules/linkedom/types/interface/custom-element-registry.d.ts +54 -0
  2490. package/node_modules/linkedom/types/interface/custom-event.d.ts +37 -0
  2491. package/node_modules/linkedom/types/interface/document-fragment.d.ts +7 -0
  2492. package/node_modules/linkedom/types/interface/document-type.d.ts +11 -0
  2493. package/node_modules/linkedom/types/interface/document.d.ts +60 -0
  2494. package/node_modules/linkedom/types/interface/element.d.ts +72 -0
  2495. package/node_modules/linkedom/types/interface/event-target.d.ts +13 -0
  2496. package/node_modules/linkedom/types/interface/event.d.ts +32 -0
  2497. package/node_modules/linkedom/types/interface/image.d.ts +199 -0
  2498. package/node_modules/linkedom/types/interface/input-event.d.ts +11 -0
  2499. package/node_modules/linkedom/types/interface/mutation-observer.d.ts +40 -0
  2500. package/node_modules/linkedom/types/interface/named-node-map.d.ts +14 -0
  2501. package/node_modules/linkedom/types/interface/node-list.d.ts +9 -0
  2502. package/node_modules/linkedom/types/interface/node.d.ts +78 -0
  2503. package/node_modules/linkedom/types/interface/range.d.ts +22 -0
  2504. package/node_modules/linkedom/types/interface/shadow-root.d.ts +9 -0
  2505. package/node_modules/linkedom/types/interface/text.d.ts +8 -0
  2506. package/node_modules/linkedom/types/interface/tree-walker.d.ts +15 -0
  2507. package/node_modules/linkedom/types/mixin/child-node.d.ts +4 -0
  2508. package/node_modules/linkedom/types/mixin/inner-html.d.ts +2 -0
  2509. package/node_modules/linkedom/types/mixin/non-document-type-child-node.d.ts +2 -0
  2510. package/node_modules/linkedom/types/mixin/non-element-parent-node.d.ts +5 -0
  2511. package/node_modules/linkedom/types/mixin/parent-node.d.ts +47 -0
  2512. package/node_modules/linkedom/types/shared/attributes.d.ts +21 -0
  2513. package/node_modules/linkedom/types/shared/cache.d.ts +7 -0
  2514. package/node_modules/linkedom/types/shared/constants.d.ts +19 -0
  2515. package/node_modules/linkedom/types/shared/facades.d.ts +23 -0
  2516. package/node_modules/linkedom/types/shared/html-classes.d.ts +139 -0
  2517. package/node_modules/linkedom/types/shared/jsdon.d.ts +9 -0
  2518. package/node_modules/linkedom/types/shared/matches.d.ts +2 -0
  2519. package/node_modules/linkedom/types/shared/mime.d.ts +35 -0
  2520. package/node_modules/linkedom/types/shared/node.d.ts +12 -0
  2521. package/node_modules/linkedom/types/shared/object.d.ts +25 -0
  2522. package/node_modules/linkedom/types/shared/parse-from-string.d.ts +2 -0
  2523. package/node_modules/linkedom/types/shared/parse-json.d.ts +7 -0
  2524. package/node_modules/linkedom/types/shared/register-html-class.d.ts +2 -0
  2525. package/node_modules/linkedom/types/shared/symbols.d.ts +20 -0
  2526. package/node_modules/linkedom/types/shared/text-escaper.d.ts +1 -0
  2527. package/node_modules/linkedom/types/shared/utils.d.ts +15 -0
  2528. package/node_modules/linkedom/types/svg/document.d.ts +7 -0
  2529. package/node_modules/linkedom/types/svg/element.d.ts +8 -0
  2530. package/node_modules/linkedom/types/xml/document.d.ts +7 -0
  2531. package/node_modules/linkedom/worker.js +12526 -0
  2532. package/node_modules/nth-check/LICENSE +11 -0
  2533. package/node_modules/nth-check/README.md +136 -0
  2534. package/node_modules/nth-check/lib/compile.d.ts +55 -0
  2535. package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
  2536. package/node_modules/nth-check/lib/compile.js +121 -0
  2537. package/node_modules/nth-check/lib/compile.js.map +1 -0
  2538. package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
  2539. package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
  2540. package/node_modules/nth-check/lib/esm/compile.js +113 -0
  2541. package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
  2542. package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
  2543. package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
  2544. package/node_modules/nth-check/lib/esm/index.js +63 -0
  2545. package/node_modules/nth-check/lib/esm/index.js.map +1 -0
  2546. package/node_modules/nth-check/lib/esm/package.json +1 -0
  2547. package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
  2548. package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
  2549. package/node_modules/nth-check/lib/esm/parse.js +73 -0
  2550. package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
  2551. package/node_modules/nth-check/lib/index.d.ts +59 -0
  2552. package/node_modules/nth-check/lib/index.d.ts.map +1 -0
  2553. package/node_modules/nth-check/lib/index.js +70 -0
  2554. package/node_modules/nth-check/lib/index.js.map +1 -0
  2555. package/node_modules/nth-check/lib/parse.d.ts +9 -0
  2556. package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
  2557. package/node_modules/nth-check/lib/parse.js +77 -0
  2558. package/node_modules/nth-check/lib/parse.js.map +1 -0
  2559. package/node_modules/nth-check/package.json +78 -0
  2560. package/node_modules/p-limit/index.d.ts +81 -0
  2561. package/node_modules/p-limit/index.js +104 -0
  2562. package/node_modules/p-limit/license +9 -0
  2563. package/node_modules/p-limit/package.json +58 -0
  2564. package/node_modules/p-limit/readme.md +129 -0
  2565. package/node_modules/pi-web-access/CHANGELOG.md +387 -0
  2566. package/node_modules/pi-web-access/LICENSE +21 -0
  2567. package/node_modules/pi-web-access/README.md +352 -0
  2568. package/node_modules/pi-web-access/activity.ts +101 -0
  2569. package/node_modules/pi-web-access/banner.png +0 -0
  2570. package/node_modules/pi-web-access/chrome-cookies.ts +322 -0
  2571. package/node_modules/pi-web-access/code-search.ts +107 -0
  2572. package/node_modules/pi-web-access/curator-page.ts +3359 -0
  2573. package/node_modules/pi-web-access/curator-server.ts +605 -0
  2574. package/node_modules/pi-web-access/exa.ts +520 -0
  2575. package/node_modules/pi-web-access/extract.ts +641 -0
  2576. package/node_modules/pi-web-access/gemini-api.ts +112 -0
  2577. package/node_modules/pi-web-access/gemini-search.ts +361 -0
  2578. package/node_modules/pi-web-access/gemini-url-context.ts +126 -0
  2579. package/node_modules/pi-web-access/gemini-web-config.ts +52 -0
  2580. package/node_modules/pi-web-access/gemini-web.ts +396 -0
  2581. package/node_modules/pi-web-access/github-api.ts +196 -0
  2582. package/node_modules/pi-web-access/github-extract.ts +634 -0
  2583. package/node_modules/pi-web-access/index.ts +2346 -0
  2584. package/node_modules/pi-web-access/package.json +45 -0
  2585. package/node_modules/pi-web-access/pdf-extract.ts +192 -0
  2586. package/node_modules/pi-web-access/perplexity.ts +195 -0
  2587. package/node_modules/pi-web-access/pi-web-fetch-demo.mp4 +0 -0
  2588. package/node_modules/pi-web-access/rsc-extract.ts +338 -0
  2589. package/node_modules/pi-web-access/skills/librarian/SKILL.md +195 -0
  2590. package/node_modules/pi-web-access/storage.ts +72 -0
  2591. package/node_modules/pi-web-access/summary-review.ts +276 -0
  2592. package/node_modules/pi-web-access/test/gemini-web-cookie-opt-in.test.mjs +41 -0
  2593. package/node_modules/pi-web-access/test/pdf-extract.test.mjs +95 -0
  2594. package/node_modules/pi-web-access/utils.ts +44 -0
  2595. package/node_modules/pi-web-access/video-extract.ts +378 -0
  2596. package/node_modules/pi-web-access/youtube-extract.ts +310 -0
  2597. package/node_modules/turndown/LICENSE +21 -0
  2598. package/node_modules/turndown/README.md +234 -0
  2599. package/node_modules/turndown/dist/turndown.js +800 -0
  2600. package/node_modules/turndown/lib/turndown.browser.cjs.js +797 -0
  2601. package/node_modules/turndown/lib/turndown.browser.es.js +795 -0
  2602. package/node_modules/turndown/lib/turndown.browser.umd.js +803 -0
  2603. package/node_modules/turndown/lib/turndown.cjs.js +774 -0
  2604. package/node_modules/turndown/lib/turndown.es.js +772 -0
  2605. package/node_modules/turndown/lib/turndown.umd.js +780 -0
  2606. package/node_modules/turndown/package.json +59 -0
  2607. package/node_modules/uhyphen/LICENSE +15 -0
  2608. package/node_modules/uhyphen/README.md +13 -0
  2609. package/node_modules/uhyphen/cjs/index.js +3 -0
  2610. package/node_modules/uhyphen/cjs/package.json +1 -0
  2611. package/node_modules/uhyphen/es.js +1 -0
  2612. package/node_modules/uhyphen/esm/index.js +2 -0
  2613. package/node_modules/uhyphen/index.js +14 -0
  2614. package/node_modules/uhyphen/min.js +1 -0
  2615. package/node_modules/uhyphen/package.json +52 -0
  2616. package/node_modules/unpdf/LICENSE +21 -0
  2617. package/node_modules/unpdf/README.md +365 -0
  2618. package/node_modules/unpdf/dist/index.cjs +429 -0
  2619. package/node_modules/unpdf/dist/index.d.cts +182 -0
  2620. package/node_modules/unpdf/dist/index.d.mts +182 -0
  2621. package/node_modules/unpdf/dist/index.d.ts +182 -0
  2622. package/node_modules/unpdf/dist/index.mjs +416 -0
  2623. package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
  2624. package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
  2625. package/node_modules/unpdf/dist/pdfjs.mjs +107 -0
  2626. package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +274 -0
  2627. package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
  2628. package/node_modules/unpdf/dist/types/src/display/api.d.ts +1619 -0
  2629. package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
  2630. package/node_modules/unpdf/dist/types/src/display/binary_data_factory.d.ts +26 -0
  2631. package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +210 -0
  2632. package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +216 -0
  2633. package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +29 -0
  2634. package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
  2635. package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +281 -0
  2636. package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +22 -0
  2637. package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
  2638. package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +227 -0
  2639. package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
  2640. package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +59 -0
  2641. package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +117 -0
  2642. package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
  2643. package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
  2644. package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
  2645. package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
  2646. package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
  2647. package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
  2648. package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +578 -0
  2649. package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
  2650. package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
  2651. package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
  2652. package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
  2653. package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
  2654. package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
  2655. package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +484 -0
  2656. package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +7 -0
  2657. package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
  2658. package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +66 -0
  2659. package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
  2660. package/node_modules/unpdf/dist/types/src/display/network.d.ts +20 -0
  2661. package/node_modules/unpdf/dist/types/src/display/network_stream.d.ts +2 -0
  2662. package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
  2663. package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +4 -0
  2664. package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +18 -0
  2665. package/node_modules/unpdf/dist/types/src/display/obj_bin_transform_display.d.ts +67 -0
  2666. package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
  2667. package/node_modules/unpdf/dist/types/src/display/pages_mapper.d.ts +72 -0
  2668. package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +80 -0
  2669. package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
  2670. package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
  2671. package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +91 -0
  2672. package/node_modules/unpdf/dist/types/src/display/text_layer_images.d.ts +10 -0
  2673. package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
  2674. package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +11 -0
  2675. package/node_modules/unpdf/dist/types/src/display/webgpu_mesh.d.ts +3 -0
  2676. package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
  2677. package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
  2678. package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
  2679. package/node_modules/unpdf/dist/types/src/pdf.d.ts +67 -0
  2680. package/node_modules/unpdf/dist/types/src/shared/base_pdf_stream.d.ts +121 -0
  2681. package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
  2682. package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
  2683. package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
  2684. package/node_modules/unpdf/dist/types/src/shared/obj_bin_transform_utils.d.ts +26 -0
  2685. package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
  2686. package/node_modules/unpdf/dist/types/src/shared/util.d.ts +424 -0
  2687. package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +64 -0
  2688. package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
  2689. package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
  2690. package/node_modules/unpdf/dist/types/web/autolinker.d.ts +29 -0
  2691. package/node_modules/unpdf/dist/types/web/base_download_manager.d.ts +24 -0
  2692. package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
  2693. package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
  2694. package/node_modules/unpdf/dist/types/web/download_manager.d.ts +4 -0
  2695. package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +22 -0
  2696. package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
  2697. package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
  2698. package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +18 -0
  2699. package/node_modules/unpdf/dist/types/web/l10n.d.ts +31 -0
  2700. package/node_modules/unpdf/dist/types/web/menu.d.ts +11 -0
  2701. package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +132 -0
  2702. package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
  2703. package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
  2704. package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +142 -0
  2705. package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +27 -0
  2706. package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +249 -0
  2707. package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +50 -0
  2708. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
  2709. package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
  2710. package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
  2711. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +108 -0
  2712. package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +161 -0
  2713. package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
  2714. package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +619 -0
  2715. package/node_modules/unpdf/dist/types/web/renderable_view.d.ts +33 -0
  2716. package/node_modules/unpdf/dist/types/web/sidebar.d.ts +65 -0
  2717. package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
  2718. package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
  2719. package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
  2720. package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +70 -0
  2721. package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +265 -0
  2722. package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
  2723. package/node_modules/unpdf/package.json +97 -0
  2724. package/node_modules/yocto-queue/index.d.ts +75 -0
  2725. package/node_modules/yocto-queue/index.js +90 -0
  2726. package/node_modules/yocto-queue/license +9 -0
  2727. package/node_modules/yocto-queue/package.json +48 -0
  2728. package/node_modules/yocto-queue/readme.md +80 -0
  2729. package/package.json +103 -0
  2730. package/resources/skills/ab-test-analysis/SKILL.md +82 -0
  2731. package/resources/skills/agent-feed-publish/SKILL.md +63 -0
  2732. package/resources/skills/analyze-feature-requests/SKILL.md +49 -0
  2733. package/resources/skills/ansoff-matrix/SKILL.md +166 -0
  2734. package/resources/skills/awaken/SKILL.md +203 -0
  2735. package/resources/skills/beachhead-segment/SKILL.md +145 -0
  2736. package/resources/skills/brainstorm-experiments-existing/SKILL.md +51 -0
  2737. package/resources/skills/brainstorm-experiments-new/SKILL.md +45 -0
  2738. package/resources/skills/brainstorm-ideas-existing/SKILL.md +54 -0
  2739. package/resources/skills/brainstorm-ideas-new/SKILL.md +46 -0
  2740. package/resources/skills/brainstorm-okrs/SKILL.md +80 -0
  2741. package/resources/skills/brave-search/SKILL.md +85 -0
  2742. package/resources/skills/brave-search/content.js +86 -0
  2743. package/resources/skills/brave-search/package-lock.json +621 -0
  2744. package/resources/skills/brave-search/package.json +14 -0
  2745. package/resources/skills/brave-search/search.js +199 -0
  2746. package/resources/skills/browser-tools/SKILL.md +202 -0
  2747. package/resources/skills/browser-tools/browser-content.js +103 -0
  2748. package/resources/skills/browser-tools/browser-cookies.js +35 -0
  2749. package/resources/skills/browser-tools/browser-eval.js +53 -0
  2750. package/resources/skills/browser-tools/browser-hn-scraper.js +108 -0
  2751. package/resources/skills/browser-tools/browser-nav.js +44 -0
  2752. package/resources/skills/browser-tools/browser-pick.js +162 -0
  2753. package/resources/skills/browser-tools/browser-screenshot.js +34 -0
  2754. package/resources/skills/browser-tools/browser-start.js +86 -0
  2755. package/resources/skills/browser-tools/package-lock.json +2556 -0
  2756. package/resources/skills/browser-tools/package.json +19 -0
  2757. package/resources/skills/business-model/SKILL.md +133 -0
  2758. package/resources/skills/cohort-analysis/SKILL.md +114 -0
  2759. package/resources/skills/competitive-battlecard/SKILL.md +77 -0
  2760. package/resources/skills/competitor-analysis/SKILL.md +110 -0
  2761. package/resources/skills/create-prd/SKILL.md +86 -0
  2762. package/resources/skills/customer-journey-map/SKILL.md +65 -0
  2763. package/resources/skills/daily-brief/SKILL.md +321 -0
  2764. package/resources/skills/daily-brief/assets/rss-feeds.json +652 -0
  2765. package/resources/skills/daily-brief/scripts/rss_digest.py +339 -0
  2766. package/resources/skills/daily-brief/scripts/run_last30days.sh +115 -0
  2767. package/resources/skills/daily-brief/scripts/submit_brief.sh +48 -0
  2768. package/resources/skills/daily-brief/vendor/last30days/SKILL.md +1709 -0
  2769. package/resources/skills/daily-brief/vendor/last30days/agents/openai.yaml +8 -0
  2770. package/resources/skills/daily-brief/vendor/last30days/references/save-html-brief.md +90 -0
  2771. package/resources/skills/daily-brief/vendor/last30days/scripts/briefing.py +264 -0
  2772. package/resources/skills/daily-brief/vendor/last30days/scripts/build-skill.sh +39 -0
  2773. package/resources/skills/daily-brief/vendor/last30days/scripts/compare.sh +61 -0
  2774. package/resources/skills/daily-brief/vendor/last30days/scripts/evaluate_search_quality.py +554 -0
  2775. package/resources/skills/daily-brief/vendor/last30days/scripts/last30days.py +1036 -0
  2776. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/__init__.py +1 -0
  2777. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/bird_x.py +505 -0
  2778. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/bluesky.py +329 -0
  2779. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/categories.py +283 -0
  2780. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/chrome_cookies.py +322 -0
  2781. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/cluster.py +271 -0
  2782. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/competitors.py +199 -0
  2783. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/cookie_extract.py +403 -0
  2784. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/dates.py +120 -0
  2785. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/dedupe.py +130 -0
  2786. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/digg.py +414 -0
  2787. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/entity_extract.py +127 -0
  2788. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/env.py +744 -0
  2789. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/fanout.py +85 -0
  2790. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/fusion.py +207 -0
  2791. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/github.py +921 -0
  2792. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/grounding.py +324 -0
  2793. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/hackernews.py +338 -0
  2794. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/html_render.py +674 -0
  2795. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/http.py +261 -0
  2796. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/instagram.py +543 -0
  2797. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/log.py +28 -0
  2798. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/normalize.py +552 -0
  2799. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/perplexity.py +164 -0
  2800. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/pinterest.py +163 -0
  2801. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/pipeline.py +1132 -0
  2802. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/planner.py +714 -0
  2803. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/polymarket.py +786 -0
  2804. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/preflight.py +119 -0
  2805. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/providers.py +483 -0
  2806. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/quality_nudge.py +333 -0
  2807. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/query.py +117 -0
  2808. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit.py +713 -0
  2809. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit_enrich.py +322 -0
  2810. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit_public.py +388 -0
  2811. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/relevance.py +168 -0
  2812. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/render.py +1779 -0
  2813. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/rerank.py +425 -0
  2814. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/resolve.py +345 -0
  2815. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/safari_cookies.py +193 -0
  2816. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/schema.py +319 -0
  2817. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/setup_wizard.py +536 -0
  2818. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/signals.py +253 -0
  2819. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/skill_meta.py +33 -0
  2820. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/snippet.py +51 -0
  2821. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/subproc.py +94 -0
  2822. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/threads.py +205 -0
  2823. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/tiktok.py +618 -0
  2824. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/truthsocial.py +168 -0
  2825. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/ui.py +616 -0
  2826. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/LICENSE +21 -0
  2827. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/bird-search.mjs +147 -0
  2828. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/cookies.js +220 -0
  2829. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/features.json +17 -0
  2830. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/paginate-cursor.js +37 -0
  2831. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/query-ids.json +20 -0
  2832. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/runtime-features.js +151 -0
  2833. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/runtime-query-ids.js +264 -0
  2834. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-base.js +129 -0
  2835. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-constants.js +50 -0
  2836. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-features.js +347 -0
  2837. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-search.js +157 -0
  2838. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-types.js +2 -0
  2839. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-utils.js +511 -0
  2840. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/package.json +13 -0
  2841. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xai_x.py +236 -0
  2842. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xiaohongshu_api.py +162 -0
  2843. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xquik.py +227 -0
  2844. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xurl_x.py +172 -0
  2845. package/resources/skills/daily-brief/vendor/last30days/scripts/lib/youtube_yt.py +1035 -0
  2846. package/resources/skills/daily-brief/vendor/last30days/scripts/setup-keychain.sh +122 -0
  2847. package/resources/skills/daily-brief/vendor/last30days/scripts/store.py +991 -0
  2848. package/resources/skills/daily-brief/vendor/last30days/scripts/test-v1-vs-v2.sh +220 -0
  2849. package/resources/skills/daily-brief/vendor/last30days/scripts/test_device_auth.py +128 -0
  2850. package/resources/skills/daily-brief/vendor/last30days/scripts/verify_v3.py +195 -0
  2851. package/resources/skills/daily-brief/vendor/last30days/scripts/watchlist.py +293 -0
  2852. package/resources/skills/draft-nda/SKILL.md +160 -0
  2853. package/resources/skills/dummy-dataset/SKILL.md +114 -0
  2854. package/resources/skills/find-skills/SKILL.md +142 -0
  2855. package/resources/skills/grammar-check/SKILL.md +209 -0
  2856. package/resources/skills/growth-loops/SKILL.md +125 -0
  2857. package/resources/skills/gtm-motions/SKILL.md +155 -0
  2858. package/resources/skills/gtm-strategy/SKILL.md +94 -0
  2859. package/resources/skills/ideal-customer-profile/SKILL.md +164 -0
  2860. package/resources/skills/identify-assumptions-existing/SKILL.md +44 -0
  2861. package/resources/skills/identify-assumptions-new/SKILL.md +52 -0
  2862. package/resources/skills/interview-script/SKILL.md +105 -0
  2863. package/resources/skills/job-stories/SKILL.md +74 -0
  2864. package/resources/skills/lean-canvas/SKILL.md +121 -0
  2865. package/resources/skills/market-segments/SKILL.md +80 -0
  2866. package/resources/skills/market-sizing/SKILL.md +90 -0
  2867. package/resources/skills/marketing-ideas/SKILL.md +44 -0
  2868. package/resources/skills/metrics-dashboard/SKILL.md +94 -0
  2869. package/resources/skills/monetization-strategy/SKILL.md +150 -0
  2870. package/resources/skills/north-star-metric/SKILL.md +74 -0
  2871. package/resources/skills/opportunity-solution-tree/SKILL.md +64 -0
  2872. package/resources/skills/outcome-roadmap/SKILL.md +68 -0
  2873. package/resources/skills/pestle-analysis/SKILL.md +124 -0
  2874. package/resources/skills/pi-skills-source/LICENSE +21 -0
  2875. package/resources/skills/pi-skills-source/README.md +119 -0
  2876. package/resources/skills/pm-skills-source/LICENSE +21 -0
  2877. package/resources/skills/porters-five-forces/SKILL.md +212 -0
  2878. package/resources/skills/positioning-ideas/SKILL.md +61 -0
  2879. package/resources/skills/pre-mortem/SKILL.md +93 -0
  2880. package/resources/skills/pricing-strategy/SKILL.md +85 -0
  2881. package/resources/skills/prioritization-frameworks/SKILL.md +75 -0
  2882. package/resources/skills/prioritize-assumptions/SKILL.md +48 -0
  2883. package/resources/skills/prioritize-features/SKILL.md +52 -0
  2884. package/resources/skills/privacy-policy/SKILL.md +238 -0
  2885. package/resources/skills/product-name/SKILL.md +47 -0
  2886. package/resources/skills/product-setup/SKILL.md +143 -0
  2887. package/resources/skills/product-strategy/SKILL.md +111 -0
  2888. package/resources/skills/product-vision/SKILL.md +52 -0
  2889. package/resources/skills/release-notes/SKILL.md +63 -0
  2890. package/resources/skills/retro/SKILL.md +76 -0
  2891. package/resources/skills/review-resume/SKILL.md +221 -0
  2892. package/resources/skills/sentiment-analysis/SKILL.md +83 -0
  2893. package/resources/skills/skill-creator/LICENSE.txt +202 -0
  2894. package/resources/skills/skill-creator/SKILL.md +485 -0
  2895. package/resources/skills/skill-creator/agents/analyzer.md +274 -0
  2896. package/resources/skills/skill-creator/agents/comparator.md +202 -0
  2897. package/resources/skills/skill-creator/agents/grader.md +223 -0
  2898. package/resources/skills/skill-creator/assets/eval_review.html +146 -0
  2899. package/resources/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  2900. package/resources/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  2901. package/resources/skills/skill-creator/references/schemas.md +430 -0
  2902. package/resources/skills/skill-creator/scripts/__init__.py +0 -0
  2903. package/resources/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  2904. package/resources/skills/skill-creator/scripts/generate_report.py +326 -0
  2905. package/resources/skills/skill-creator/scripts/improve_description.py +247 -0
  2906. package/resources/skills/skill-creator/scripts/package_skill.py +136 -0
  2907. package/resources/skills/skill-creator/scripts/quick_validate.py +103 -0
  2908. package/resources/skills/skill-creator/scripts/run_eval.py +310 -0
  2909. package/resources/skills/skill-creator/scripts/run_loop.py +328 -0
  2910. package/resources/skills/skill-creator/scripts/utils.py +47 -0
  2911. package/resources/skills/sprint-plan/SKILL.md +67 -0
  2912. package/resources/skills/sql-queries/SKILL.md +87 -0
  2913. package/resources/skills/stakeholder-map/SKILL.md +51 -0
  2914. package/resources/skills/startup-canvas/SKILL.md +138 -0
  2915. package/resources/skills/summarize-interview/SKILL.md +53 -0
  2916. package/resources/skills/summarize-meeting/SKILL.md +81 -0
  2917. package/resources/skills/swot-analysis/SKILL.md +96 -0
  2918. package/resources/skills/test-scenarios/SKILL.md +86 -0
  2919. package/resources/skills/user-personas/SKILL.md +69 -0
  2920. package/resources/skills/user-segmentation/SKILL.md +88 -0
  2921. package/resources/skills/user-stories/SKILL.md +74 -0
  2922. package/resources/skills/value-prop-statements/SKILL.md +51 -0
  2923. package/resources/skills/value-proposition/SKILL.md +108 -0
  2924. package/resources/skills/wwas/SKILL.md +69 -0
  2925. package/src/autopm/action-proposals.js +534 -0
  2926. package/src/autopm/bootstrap.js +280 -0
  2927. package/src/autopm/cli.js +93 -0
  2928. package/src/autopm/command-tui.js +293 -0
  2929. package/src/autopm/context-commands.js +813 -0
  2930. package/src/autopm/context-connectors.js +629 -0
  2931. package/src/autopm/dashboard.js +757 -0
  2932. package/src/autopm/extension-runtime/bootstrap-guide.js +107 -0
  2933. package/src/autopm/extension-runtime/command-menus.js +42 -0
  2934. package/src/autopm/extension-runtime/contracts.js +191 -0
  2935. package/src/autopm/extension-runtime/dashboard-ui.js +306 -0
  2936. package/src/autopm/extension-runtime/loop-runtime.js +276 -0
  2937. package/src/autopm/extension-runtime/registry.js +23 -0
  2938. package/src/autopm/extension-runtime/runtime.js +2625 -0
  2939. package/src/autopm/extension.js +76 -0
  2940. package/src/autopm/heartbeat/cadence.js +237 -0
  2941. package/src/autopm/heartbeat/contracts.js +387 -0
  2942. package/src/autopm/heartbeat/file.js +538 -0
  2943. package/src/autopm/heartbeat/runner.js +640 -0
  2944. package/src/autopm/heartbeat/session-transcript.js +282 -0
  2945. package/src/autopm/heartbeat/state.js +514 -0
  2946. package/src/autopm/heartbeat/tasks.js +550 -0
  2947. package/src/autopm/heartbeat-commands.js +712 -0
  2948. package/src/autopm/heartbeat-tui.js +395 -0
  2949. package/src/autopm/loader-env.js +430 -0
  2950. package/src/autopm/loader.js +184 -0
  2951. package/src/autopm/loop-commands.js +924 -0
  2952. package/src/autopm/loop-tui.js +840 -0
  2953. package/src/autopm/memory/accepted-memory.js +715 -0
  2954. package/src/autopm/memory/candidates.js +305 -0
  2955. package/src/autopm/memory/canonicalize.js +697 -0
  2956. package/src/autopm/memory/chunk-store.js +259 -0
  2957. package/src/autopm/memory/chunker.js +464 -0
  2958. package/src/autopm/memory/contracts.js +493 -0
  2959. package/src/autopm/memory/doctor.js +427 -0
  2960. package/src/autopm/memory/entities.js +216 -0
  2961. package/src/autopm/memory/get.js +854 -0
  2962. package/src/autopm/memory/ingest.js +737 -0
  2963. package/src/autopm/memory/jobs.js +791 -0
  2964. package/src/autopm/memory/operations.js +931 -0
  2965. package/src/autopm/memory/paths.js +187 -0
  2966. package/src/autopm/memory/product-context-memory.js +285 -0
  2967. package/src/autopm/memory/projection.js +152 -0
  2968. package/src/autopm/memory/recall.js +678 -0
  2969. package/src/autopm/memory/redaction.js +322 -0
  2970. package/src/autopm/memory/registry.js +419 -0
  2971. package/src/autopm/memory/runtime.js +496 -0
  2972. package/src/autopm/memory/scheduler.js +507 -0
  2973. package/src/autopm/memory/scorer.js +408 -0
  2974. package/src/autopm/memory/search.js +652 -0
  2975. package/src/autopm/memory/source-store.js +270 -0
  2976. package/src/autopm/memory/status.js +334 -0
  2977. package/src/autopm/memory/store.js +675 -0
  2978. package/src/autopm/memory/summary-global.js +1050 -0
  2979. package/src/autopm/memory/summary-source.js +898 -0
  2980. package/src/autopm/memory/summary-topic.js +1087 -0
  2981. package/src/autopm/memory/tools.js +448 -0
  2982. package/src/autopm/memory/tree.js +816 -0
  2983. package/src/autopm/memory/wiki.js +226 -0
  2984. package/src/autopm/memory/worker.js +484 -0
  2985. package/src/autopm/memory-commands.js +1079 -0
  2986. package/src/autopm/modules/bootstrap/register.js +6 -0
  2987. package/src/autopm/modules/context/register.js +6 -0
  2988. package/src/autopm/modules/heartbeat/register.js +6 -0
  2989. package/src/autopm/modules/loop/register.js +6 -0
  2990. package/src/autopm/modules/memory/register.js +6 -0
  2991. package/src/autopm/modules/product-setup/register.js +7 -0
  2992. package/src/autopm/modules/venture/register.js +6 -0
  2993. package/src/autopm/native-commands.js +505 -0
  2994. package/src/autopm/objective-commands.js +372 -0
  2995. package/src/autopm/objective.js +444 -0
  2996. package/src/autopm/opportunities/briefs.js +58 -0
  2997. package/src/autopm/opportunities/contracts.js +20 -0
  2998. package/src/autopm/opportunities/schemas.js +35 -0
  2999. package/src/autopm/opportunities-commands.js +859 -0
  3000. package/src/autopm/plan-commands.js +344 -0
  3001. package/src/autopm/plan-proposals.js +907 -0
  3002. package/src/autopm/pm-skills.js +139 -0
  3003. package/src/autopm/product-context.js +745 -0
  3004. package/src/autopm/product-setup-documents.js +340 -0
  3005. package/src/autopm/resource-ownership.js +507 -0
  3006. package/src/autopm/runtime-context.js +432 -0
  3007. package/src/autopm/scheduler/contracts.js +298 -0
  3008. package/src/autopm/scheduler/runner.js +288 -0
  3009. package/src/autopm/scheduler/schedule.js +746 -0
  3010. package/src/autopm/scheduler/store.js +352 -0
  3011. package/src/autopm/ship-commands.js +413 -0
  3012. package/src/autopm/ship-readiness.js +851 -0
  3013. package/src/autopm/standalone-contract.js +146 -0
  3014. package/src/autopm/system-context.js +379 -0
  3015. package/src/autopm/system-prompt-files.js +382 -0
  3016. package/src/autopm/triage-commands.js +533 -0
  3017. package/src/autopm/venture-commands.js +1707 -0
  3018. package/src/venture-signal/collector.js +718 -0
  3019. package/src/venture-signal/contracts.js +482 -0
  3020. package/src/venture-signal/default-sources.js +316 -0
  3021. package/src/venture-signal/freshness.js +342 -0
  3022. package/src/venture-signal/normalizer.js +1439 -0
  3023. package/src/venture-signal/pm-writer.js +984 -0
  3024. package/src/venture-signal/policy.js +730 -0
  3025. package/src/venture-signal/runner.js +1685 -0
  3026. package/src/venture-signal/schemas.js +2188 -0
  3027. package/src/venture-signal/signal-analyst.js +722 -0
  3028. package/src/venture-signal/skeptic.js +724 -0
  3029. package/src/venture-signal/source-adapters.js +483 -0
  3030. package/src/venture-signal/taxonomy.js +880 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agent-session.d.ts","sourceRoot":"","sources":["../../src/core/agent-session.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,OAAO,KAAK,EACX,KAAK,EACL,UAAU,EACV,YAAY,EACZ,UAAU,EACV,SAAS,EACT,aAAa,EACb,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAoB,YAAY,EAAW,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAczG,OAAO,EAAE,KAAK,UAAU,EAA6B,MAAM,oBAAoB,CAAC;AAChF,OAAO,EACN,KAAK,gBAAgB,EAQrB,MAAM,uBAAuB,CAAC;AAI/B,OAAO,EACN,KAAK,YAAY,EACjB,KAAK,8BAA8B,EACnC,KAAK,sBAAsB,EAC3B,eAAe,EACf,KAAK,kBAAkB,EACvB,KAAK,WAAW,EAIhB,KAAK,sBAAsB,EAG3B,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,cAAc,EAInB,KAAK,QAAQ,EAKb,MAAM,uBAAuB,CAAC;AAE/B,OAAO,KAAK,EAAwB,aAAa,EAAE,MAAM,eAAe,CAAC;AACzE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAwB,KAAK,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAClF,OAAO,KAAK,EAA0B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACnF,OAAO,KAAK,EAAE,kBAAkB,EAAmB,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEhG,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAI7D,OAAO,EAAE,KAAK,cAAc,EAA6B,MAAM,iBAAiB,CAAC;AAQjF,6CAA6C;AAC7C,MAAM,WAAW,gBAAgB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,gBAAgB,GAAG,IAAI,CASrE;AAED,8DAA8D;AAC9D,MAAM,MAAM,iBAAiB,GAC1B,UAAU,GACV;IACA,IAAI,EAAE,cAAc,CAAC;IACrB,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5B,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;CAC3B,GACD;IAAE,IAAI,EAAE,kBAAkB,CAAC;IAAC,MAAM,EAAE,QAAQ,GAAG,WAAW,GAAG,UAAU,CAAA;CAAE,GACzE;IAAE,IAAI,EAAE,sBAAsB,CAAC;IAAC,IAAI,EAAE,MAAM,GAAG,SAAS,CAAA;CAAE,GAC1D;IAAE,IAAI,EAAE,wBAAwB,CAAC;IAAC,KAAK,EAAE,aAAa,CAAA;CAAE,GACxD;IACA,IAAI,EAAE,gBAAgB,CAAC;IACvB,MAAM,EAAE,QAAQ,GAAG,WAAW,GAAG,UAAU,CAAC;IAC5C,MAAM,EAAE,gBAAgB,GAAG,SAAS,CAAC;IACrC,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACrB,GACD;IAAE,IAAI,EAAE,kBAAkB,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GACzG;IAAE,IAAI,EAAE,gBAAgB,CAAC;IAAC,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAEtF,iDAAiD;AACjD,MAAM,MAAM,yBAAyB,GAAG,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;AAM3E,MAAM,WAAW,kBAAkB;IAClC,KAAK,EAAE,KAAK,CAAC;IACb,cAAc,EAAE,cAAc,CAAC;IAC/B,eAAe,EAAE,eAAe,CAAC;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,+DAA+D;IAC/D,YAAY,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAAC,aAAa,CAAC,EAAE,aAAa,CAAA;KAAE,CAAC,CAAC;IAC3E,gFAAgF;IAChF,cAAc,EAAE,cAAc,CAAC;IAC/B,qDAAqD;IACrD,WAAW,CAAC,EAAE,cAAc,EAAE,CAAC;IAC/B,gEAAgE;IAChE,aAAa,EAAE,aAAa,CAAC;IAC7B,6EAA6E;IAC7E,sBAAsB,CAAC,EAAE,MAAM,EAAE,CAAC;IAClC,0FAA0F;IAC1F,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IAC9C,sEAAsE;IACtE,kBAAkB,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,eAAe,CAAA;KAAE,CAAC;IACnD,iFAAiF;IACjF,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;CACtC;AAED,MAAM,WAAW,iBAAiB;IACjC,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,qBAAqB,CAAC,EAAE,8BAA8B,CAAC;IACvD,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,OAAO,CAAC,EAAE,sBAAsB,CAAC;CACjC;AAED,wCAAwC;AACxC,MAAM,WAAW,aAAa;IAC7B,oEAAoE;IACpE,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,wBAAwB;IACxB,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC;IACxB,iHAAiH;IACjH,iBAAiB,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IACzC,qFAAqF;IACrF,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,0FAA0F;IAC1F,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;CAC7C;AAED,+BAA+B;AAC/B,MAAM,WAAW,gBAAgB;IAChC,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IAClB,aAAa,EAAE,aAAa,CAAC;IAC7B,6EAA6E;IAC7E,QAAQ,EAAE,OAAO,CAAC;CAClB;AAED,8CAA8C;AAC9C,MAAM,WAAW,YAAY;IAC5B,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE;QACP,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;QACf,SAAS,EAAE,MAAM,CAAC;QAClB,UAAU,EAAE,MAAM,CAAC;QACnB,KAAK,EAAE,MAAM,CAAC;KACd,CAAC;IACF,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,YAAY,CAAC;CAC5B;AAkBD,qBAAa,YAAY;IACxB,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC;IACtB,QAAQ,CAAC,cAAc,EAAE,cAAc,CAAC;IACxC,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAE1C,OAAO,CAAC,aAAa,CAA8D;IAGnF,OAAO,CAAC,iBAAiB,CAAC,CAAa;IACvC,OAAO,CAAC,eAAe,CAAmC;IAC1D,OAAO,CAAC,gBAAgB,CAAoC;IAE5D,+EAA+E;IAC/E,OAAO,CAAC,iBAAiB,CAAgB;IACzC,gFAAgF;IAChF,OAAO,CAAC,iBAAiB,CAAgB;IACzC,sFAAsF;IACtF,OAAO,CAAC,wBAAwB,CAAuB;IAGvD,OAAO,CAAC,0BAA0B,CAA0C;IAC5E,OAAO,CAAC,8BAA8B,CAA0C;IAChF,OAAO,CAAC,0BAA0B,CAAS;IAG3C,OAAO,CAAC,6BAA6B,CAA0C;IAG/E,OAAO,CAAC,qBAAqB,CAA0C;IACvE,OAAO,CAAC,aAAa,CAAK;IAC1B,OAAO,CAAC,aAAa,CAAwC;IAC7D,OAAO,CAAC,aAAa,CAAuC;IAG5D,OAAO,CAAC,oBAAoB,CAA0C;IACtE,OAAO,CAAC,oBAAoB,CAA8B;IAG1D,OAAO,CAAC,gBAAgB,CAAmB;IAC3C,OAAO,CAAC,UAAU,CAAK;IAEvB,OAAO,CAAC,eAAe,CAAiB;IACxC,OAAO,CAAC,YAAY,CAAmB;IACvC,OAAO,CAAC,oBAAoB,CAA0C;IACtE,OAAO,CAAC,IAAI,CAAS;IACrB,OAAO,CAAC,mBAAmB,CAAC,CAAgC;IAC5D,OAAO,CAAC,uBAAuB,CAAC,CAAW;IAC3C,OAAO,CAAC,iBAAiB,CAAC,CAAc;IACxC,OAAO,CAAC,kBAAkB,CAAC,CAA4B;IACvD,OAAO,CAAC,kBAAkB,CAAoB;IAC9C,OAAO,CAAC,mBAAmB,CAAC,CAAqB;IACjD,OAAO,CAAC,+BAA+B,CAAC,CAAiC;IACzE,OAAO,CAAC,yBAAyB,CAAC,CAAkB;IACpD,OAAO,CAAC,uBAAuB,CAAC,CAAyB;IACzD,OAAO,CAAC,2BAA2B,CAAC,CAAa;IAGjD,OAAO,CAAC,cAAc,CAAgB;IAGtC,OAAO,CAAC,aAAa,CAAqC;IAC1D,OAAO,CAAC,gBAAgB,CAA+C;IACvE,OAAO,CAAC,mBAAmB,CAAkC;IAC7D,OAAO,CAAC,qBAAqB,CAAoC;IAGjE,OAAO,CAAC,iBAAiB,CAAM;IAC/B,OAAO,CAAC,wBAAwB,CAA4B;IAE5D,YAAY,MAAM,EAAE,kBAAkB,EAwBrC;IAED,gEAAgE;IAChE,IAAI,aAAa,IAAI,aAAa,CAEjC;YAEa,uBAAuB;YA0BvB,yBAAyB;IAYvC;;;;;;;OAOG;IACH,OAAO,CAAC,sBAAsB;IAwD9B,qCAAqC;IACrC,OAAO,CAAC,KAAK;IAMb,OAAO,CAAC,gBAAgB;IASxB,OAAO,CAAC,qBAAqB,CAA2C;IAExE,4EAA4E;IAC5E,OAAO,CAAC,iBAAiB,CAevB;IAEF,OAAO,CAAC,8BAA8B;IAoBtC,OAAO,CAAC,4BAA4B;YAUtB,kBAAkB;IAwFhC,wCAAwC;IACxC,OAAO,CAAC,aAAa;IAQrB,0CAA0C;IAC1C,OAAO,CAAC,mBAAmB;IAQ3B,8EAA8E;IAC9E,OAAO,CAAC,yBAAyB;IAWjC,OAAO,CAAC,sBAAsB;YAiBhB,mBAAmB;IAyEjC;;;;OAIG;IACH,SAAS,CAAC,QAAQ,EAAE,yBAAyB,GAAG,MAAM,IAAI,CAUzD;IAED;;;;OAIG;IACH,OAAO,CAAC,oBAAoB;IAO5B;;;OAGG;IACH,OAAO,CAAC,iBAAiB;IAKzB;;;OAGG;IACH,OAAO,IAAI,IAAI,CAOd;IAMD,uBAAuB;IACvB,IAAI,KAAK,IAAI,UAAU,CAEtB;IAED,2DAA2D;IAC3D,IAAI,KAAK,IAAI,KAAK,CAAC,GAAG,CAAC,GAAG,SAAS,CAElC;IAED,6BAA6B;IAC7B,IAAI,aAAa,IAAI,aAAa,CAEjC;IAED,sDAAsD;IACtD,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED,sFAAsF;IACtF,IAAI,YAAY,IAAI,MAAM,CAEzB;IAED,gDAAgD;IAChD,IAAI,YAAY,IAAI,MAAM,CAEzB;IAED;;;OAGG;IACH,kBAAkB,IAAI,MAAM,EAAE,CAE7B;IAED;;OAEG;IACH,WAAW,IAAI,QAAQ,EAAE,CAOxB;IAED,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS,CAE1D;IAED;;;;;OAKG;IACH,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,IAAI,CAe9C;IAED,sEAAsE;IACtE,IAAI,YAAY,IAAI,OAAO,CAM1B;IAED,oEAAoE;IACpE,IAAI,QAAQ,IAAI,YAAY,EAAE,CAE7B;IAED,4BAA4B;IAC5B,IAAI,YAAY,IAAI,KAAK,GAAG,eAAe,CAE1C;IAED,6BAA6B;IAC7B,IAAI,YAAY,IAAI,KAAK,GAAG,eAAe,CAE1C;IAED,uEAAuE;IACvE,IAAI,WAAW,IAAI,MAAM,GAAG,SAAS,CAEpC;IAED,yBAAyB;IACzB,IAAI,SAAS,IAAI,MAAM,CAEtB;IAED,2CAA2C;IAC3C,IAAI,WAAW,IAAI,MAAM,GAAG,SAAS,CAEpC;IAED,qDAAqD;IACrD,IAAI,YAAY,IAAI,aAAa,CAAC;QAAE,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAAC,aAAa,CAAC,EAAE,aAAa,CAAA;KAAE,CAAC,CAEtF;IAED,uCAAuC;IACvC,eAAe,CAAC,YAAY,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAAC,aAAa,CAAC,EAAE,aAAa,CAAA;KAAE,CAAC,GAAG,IAAI,CAE/F;IAED,kCAAkC;IAClC,IAAI,eAAe,IAAI,aAAa,CAAC,cAAc,CAAC,CAEnD;IAED,OAAO,CAAC,uBAAuB;IAS/B,OAAO,CAAC,0BAA0B;IAelC,OAAO,CAAC,oBAAoB;IAwC5B;;;;;;;;OAQG;IACG,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAgJjE;YAKa,2BAA2B;IA0BzC;;;;OAIG;IACH,OAAO,CAAC,mBAAmB;IA0B3B;;;;;;;OAOG;IACG,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAWhE;IAED;;;;;;OAMG;IACG,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAWnE;YAKa,WAAW;YAiBX,cAAc;IAc5B;;OAEG;IACH,OAAO,CAAC,wBAAwB;IAYhC;;;;;;;;;;;OAWG;IACG,iBAAiB,CAAC,CAAC,GAAG,OAAO,EAClC,OAAO,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,YAAY,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC,EACjF,OAAO,CAAC,EAAE;QAAE,WAAW,CAAC,EAAE,OAAO,CAAC;QAAC,SAAS,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,UAAU,CAAA;KAAE,GAChF,OAAO,CAAC,IAAI,CAAC,CA8Bf;IAED;;;;;;OAMG;IACG,eAAe,CACpB,OAAO,EAAE,MAAM,GAAG,CAAC,WAAW,GAAG,YAAY,CAAC,EAAE,EAChD,OAAO,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,OAAO,GAAG,UAAU,CAAA;KAAE,GAC5C,OAAO,CAAC,IAAI,CAAC,CA4Bf;IAED;;;;OAIG;IACH,UAAU,IAAI;QAAE,QAAQ,EAAE,MAAM,EAAE,CAAC;QAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;KAAE,CAQvD;IAED,wEAAwE;IACxE,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,gDAAgD;IAChD,mBAAmB,IAAI,SAAS,MAAM,EAAE,CAEvC;IAED,iDAAiD;IACjD,mBAAmB,IAAI,SAAS,MAAM,EAAE,CAEvC;IAED,IAAI,cAAc,IAAI,cAAc,CAEnC;IAED;;OAEG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAI3B;YAMa,gBAAgB;IAc9B;;;;OAIG;IACG,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAe/C;IAED;;;;;OAKG;IACG,UAAU,CAAC,SAAS,GAAE,SAAS,GAAG,UAAsB,GAAG,OAAO,CAAC,gBAAgB,GAAG,SAAS,CAAC,CAKrG;YAEa,iBAAiB;YA6BjB,oBAAoB;IA6BlC;;;;OAIG;IACH,gBAAgB,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI,CAsB3C;IAED;;;OAGG;IACH,kBAAkB,IAAI,aAAa,GAAG,SAAS,CAU9C;IAED;;;OAGG;IACH,0BAA0B,IAAI,aAAa,EAAE,CAG5C;IAED;;OAEG;IACH,gBAAgB,IAAI,OAAO,CAE1B;IAED,OAAO,CAAC,+BAA+B;IAUvC,OAAO,CAAC,mBAAmB;IAQ3B;;;OAGG;IACH,eAAe,CAAC,IAAI,EAAE,KAAK,GAAG,eAAe,GAAG,IAAI,CAGnD;IAED;;;OAGG;IACH,eAAe,CAAC,IAAI,EAAE,KAAK,GAAG,eAAe,GAAG,IAAI,CAGnD;IAMD;;;;OAIG;IACG,OAAO,CAAC,kBAAkB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAiIpE;IAED;;OAEG;IACH,eAAe,IAAI,IAAI,CAGtB;IAED;;OAEG;IACH,kBAAkB,IAAI,IAAI,CAEzB;YAaa,gBAAgB;YAmFhB,kBAAkB;IAsLhC;;OAEG;IACH,wBAAwB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAE/C;IAED,yCAAyC;IACzC,IAAI,qBAAqB,IAAI,OAAO,CAEnC;IAEK,cAAc,CAAC,QAAQ,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAiB/D;YAEa,6BAA6B;IAyB3C,OAAO,CAAC,2BAA2B;IAmBnC,OAAO,CAAC,uBAAuB;IAS/B,OAAO,CAAC,uBAAuB;IAU/B,OAAO,CAAC,gCAAgC;IAcxC,OAAO,CAAC,kBAAkB;IA2G1B,OAAO,CAAC,oBAAoB;IA2F5B,OAAO,CAAC,aAAa;IAsDf,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC,CAqB5B;IAMD;;;OAGG;IACH,OAAO,CAAC,iBAAiB;YAkBX,qBAAqB;IA4EnC;;OAEG;IACH,UAAU,IAAI,IAAI,CAIjB;YAMa,YAAY;IAS1B,kDAAkD;IAClD,IAAI,UAAU,IAAI,OAAO,CAExB;IAED,oCAAoC;IACpC,IAAI,gBAAgB,IAAI,OAAO,CAE9B;IAED;;OAEG;IACH,mBAAmB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAE1C;IAMD;;;;;;;OAOG;IACG,WAAW,CAChB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,EACjC,OAAO,CAAC,EAAE;QAAE,kBAAkB,CAAC,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,cAAc,CAAA;KAAE,GACrE,OAAO,CAAC,UAAU,CAAC,CAwBrB;IAED;;;OAGG;IACH,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE;QAAE,kBAAkB,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI,CAwBtG;IAED;;OAEG;IACH,SAAS,IAAI,IAAI,CAEhB;IAED,kDAAkD;IAClD,IAAI,aAAa,IAAI,OAAO,CAE3B;IAED,oEAAoE;IACpE,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED;;;OAGG;IACH,OAAO,CAAC,yBAAyB;IAkBjC;;OAEG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAGjC;IAMD;;;;;;;;;;OAUG;IACG,YAAY,CACjB,QAAQ,EAAE,MAAM,EAChB,OAAO,GAAE;QAAE,SAAS,CAAC,EAAE,OAAO,CAAC;QAAC,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAO,GAC/G,OAAO,CAAC;QAAE,UAAU,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,OAAO,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAC;QAAC,YAAY,CAAC,EAAE,kBAAkB,CAAA;KAAE,CAAC,CAqL5G;IAED;;OAEG;IACH,yBAAyB,IAAI,KAAK,CAAC;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAepE;IAED,OAAO,CAAC,uBAAuB;IAW/B;;OAEG;IACH,eAAe,IAAI,YAAY,CA2C9B;IAED,eAAe,IAAI,YAAY,GAAG,SAAS,CA4C1C;IAED;;;;OAIG;IACG,YAAY,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAevD;IAED;;;;;OAKG;IACH,aAAa,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CA4BzC;IAMD;;;;OAIG;IACH,oBAAoB,IAAI,MAAM,GAAG,SAAS,CAsBzC;IAMD,4BAA4B,IAAI,sBAAsB,CAQrD;IAED;;OAEG;IACH,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAE/C;IAED;;OAEG;IACH,IAAI,eAAe,IAAI,eAAe,CAErC;CACD","sourcesContent":["/**\n * AgentSession - Core abstraction for agent lifecycle and session management.\n *\n * This class is shared between all run modes (interactive, print, rpc).\n * It encapsulates:\n * - Agent state access\n * - Event subscription with automatic session persistence\n * - Model and thinking level management\n * - Compaction (manual and auto)\n * - Bash execution\n * - Session switching and branching\n *\n * Modes use this class and add their own I/O layer on top.\n */\n\nimport { existsSync, mkdirSync, readFileSync, writeFileSync } from \"node:fs\";\nimport { basename, dirname, resolve } from \"node:path\";\nimport type {\n\tAgent,\n\tAgentEvent,\n\tAgentMessage,\n\tAgentState,\n\tAgentTool,\n\tThinkingLevel,\n} from \"@earendil-works/pi-agent-core\";\nimport type { AssistantMessage, ImageContent, Message, Model, TextContent } from \"@earendil-works/pi-ai\";\nimport {\n\tclampThinkingLevel,\n\tcleanupSessionResources,\n\tgetSupportedThinkingLevels,\n\tisContextOverflow,\n\tmodelsAreEqual,\n\tresetApiProviders,\n\tstreamSimple,\n} from \"@earendil-works/pi-ai\";\nimport { theme } from \"../modes/interactive/theme/theme.js\";\nimport { stripFrontmatter } from \"../utils/frontmatter.js\";\nimport { sleep } from \"../utils/sleep.js\";\nimport { formatNoApiKeyFoundMessage, formatNoModelSelectedMessage } from \"./auth-guidance.js\";\nimport { type BashResult, executeBashWithOperations } from \"./bash-executor.js\";\nimport {\n\ttype CompactionResult,\n\tcalculateContextTokens,\n\tcollectEntriesForBranchSummary,\n\tcompact,\n\testimateContextTokens,\n\tgenerateBranchSummary,\n\tprepareCompaction,\n\tshouldCompact,\n} from \"./compaction/index.js\";\nimport { DEFAULT_THINKING_LEVEL } from \"./defaults.js\";\nimport { exportSessionToHtml, type ToolHtmlRenderer } from \"./export-html/index.js\";\nimport { createToolHtmlRenderer } from \"./export-html/tool-renderer.js\";\nimport {\n\ttype ContextUsage,\n\ttype ExtensionCommandContextActions,\n\ttype ExtensionErrorListener,\n\tExtensionRunner,\n\ttype ExtensionUIContext,\n\ttype InputSource,\n\ttype MessageEndEvent,\n\ttype MessageStartEvent,\n\ttype MessageUpdateEvent,\n\ttype ReplacedSessionContext,\n\ttype SessionBeforeCompactResult,\n\ttype SessionBeforeTreeResult,\n\ttype SessionStartEvent,\n\ttype ShutdownHandler,\n\ttype ToolDefinition,\n\ttype ToolExecutionEndEvent,\n\ttype ToolExecutionStartEvent,\n\ttype ToolExecutionUpdateEvent,\n\ttype ToolInfo,\n\ttype TreePreparation,\n\ttype TurnEndEvent,\n\ttype TurnStartEvent,\n\twrapRegisteredTools,\n} from \"./extensions/index.js\";\nimport { emitSessionShutdownEvent } from \"./extensions/runner.js\";\nimport type { BashExecutionMessage, CustomMessage } from \"./messages.js\";\nimport type { ModelRegistry } from \"./model-registry.js\";\nimport { expandPromptTemplate, type PromptTemplate } from \"./prompt-templates.js\";\nimport type { ResourceExtensionPaths, ResourceLoader } from \"./resource-loader.js\";\nimport type { BranchSummaryEntry, CompactionEntry, SessionManager } from \"./session-manager.js\";\nimport { CURRENT_SESSION_VERSION, getLatestCompactionEntry, type SessionHeader } from \"./session-manager.js\";\nimport type { SettingsManager } from \"./settings-manager.js\";\nimport type { SlashCommandInfo } from \"./slash-commands.js\";\nimport { createSyntheticSourceInfo, type SourceInfo } from \"./source-info.js\";\nimport { type BuildSystemPromptOptions, buildSystemPrompt } from \"./system-prompt.js\";\nimport { type BashOperations, createLocalBashOperations } from \"./tools/bash.js\";\nimport { createAllToolDefinitions } from \"./tools/index.js\";\nimport { createToolDefinitionFromAgentTool } from \"./tools/tool-definition-wrapper.js\";\n\n// ============================================================================\n// Skill Block Parsing\n// ============================================================================\n\n/** Parsed skill block from a user message */\nexport interface ParsedSkillBlock {\n\tname: string;\n\tlocation: string;\n\tcontent: string;\n\tuserMessage: string | undefined;\n}\n\n/**\n * Parse a skill block from message text.\n * Returns null if the text doesn't contain a skill block.\n */\nexport function parseSkillBlock(text: string): ParsedSkillBlock | null {\n\tconst match = text.match(/^<skill name=\"([^\"]+)\" location=\"([^\"]+)\">\\n([\\s\\S]*?)\\n<\\/skill>(?:\\n\\n([\\s\\S]+))?$/);\n\tif (!match) return null;\n\treturn {\n\t\tname: match[1],\n\t\tlocation: match[2],\n\t\tcontent: match[3],\n\t\tuserMessage: match[4]?.trim() || undefined,\n\t};\n}\n\n/** Session-specific events that extend the core AgentEvent */\nexport type AgentSessionEvent =\n\t| AgentEvent\n\t| {\n\t\t\ttype: \"queue_update\";\n\t\t\tsteering: readonly string[];\n\t\t\tfollowUp: readonly string[];\n\t }\n\t| { type: \"compaction_start\"; reason: \"manual\" | \"threshold\" | \"overflow\" }\n\t| { type: \"session_info_changed\"; name: string | undefined }\n\t| { type: \"thinking_level_changed\"; level: ThinkingLevel }\n\t| {\n\t\t\ttype: \"compaction_end\";\n\t\t\treason: \"manual\" | \"threshold\" | \"overflow\";\n\t\t\tresult: CompactionResult | undefined;\n\t\t\taborted: boolean;\n\t\t\twillRetry: boolean;\n\t\t\terrorMessage?: string;\n\t }\n\t| { type: \"auto_retry_start\"; attempt: number; maxAttempts: number; delayMs: number; errorMessage: string }\n\t| { type: \"auto_retry_end\"; success: boolean; attempt: number; finalError?: string };\n\n/** Listener function for agent session events */\nexport type AgentSessionEventListener = (event: AgentSessionEvent) => void;\n\n// ============================================================================\n// Types\n// ============================================================================\n\nexport interface AgentSessionConfig {\n\tagent: Agent;\n\tsessionManager: SessionManager;\n\tsettingsManager: SettingsManager;\n\tcwd: string;\n\t/** Models to cycle through with Ctrl+P (from --models flag) */\n\tscopedModels?: Array<{ model: Model<any>; thinkingLevel?: ThinkingLevel }>;\n\t/** Resource loader for skills, prompts, themes, context files, system prompt */\n\tresourceLoader: ResourceLoader;\n\t/** SDK custom tools registered outside extensions */\n\tcustomTools?: ToolDefinition[];\n\t/** Model registry for API key resolution and model discovery */\n\tmodelRegistry: ModelRegistry;\n\t/** Initial active built-in tool names. Default: [read, bash, edit, write] */\n\tinitialActiveToolNames?: string[];\n\t/** Optional allowlist of tool names. When provided, only these tool names are exposed. */\n\tallowedToolNames?: string[];\n\t/**\n\t * Override base tools (useful for custom runtimes).\n\t *\n\t * These are synthesized into minimal ToolDefinitions internally so AgentSession can keep\n\t * a definition-first registry even when callers provide plain AgentTool instances.\n\t */\n\tbaseToolsOverride?: Record<string, AgentTool>;\n\t/** Mutable ref used by Agent to access the current ExtensionRunner */\n\textensionRunnerRef?: { current?: ExtensionRunner };\n\t/** Session start event metadata emitted when extensions bind to this runtime. */\n\tsessionStartEvent?: SessionStartEvent;\n}\n\nexport interface ExtensionBindings {\n\tuiContext?: ExtensionUIContext;\n\tcommandContextActions?: ExtensionCommandContextActions;\n\tshutdownHandler?: ShutdownHandler;\n\tonError?: ExtensionErrorListener;\n}\n\n/** Options for AgentSession.prompt() */\nexport interface PromptOptions {\n\t/** Whether to expand file-based prompt templates (default: true) */\n\texpandPromptTemplates?: boolean;\n\t/** Image attachments */\n\timages?: ImageContent[];\n\t/** When streaming, how to queue the message: \"steer\" (interrupt) or \"followUp\" (wait). Required if streaming. */\n\tstreamingBehavior?: \"steer\" | \"followUp\";\n\t/** Source of input for extension input event handlers. Defaults to \"interactive\". */\n\tsource?: InputSource;\n\t/** Internal hook used by RPC mode to observe prompt preflight acceptance or rejection. */\n\tpreflightResult?: (success: boolean) => void;\n}\n\n/** Result from cycleModel() */\nexport interface ModelCycleResult {\n\tmodel: Model<any>;\n\tthinkingLevel: ThinkingLevel;\n\t/** Whether cycling through scoped models (--models flag) or all available */\n\tisScoped: boolean;\n}\n\n/** Session statistics for /session command */\nexport interface SessionStats {\n\tsessionFile: string | undefined;\n\tsessionId: string;\n\tuserMessages: number;\n\tassistantMessages: number;\n\ttoolCalls: number;\n\ttoolResults: number;\n\ttotalMessages: number;\n\ttokens: {\n\t\tinput: number;\n\t\toutput: number;\n\t\tcacheRead: number;\n\t\tcacheWrite: number;\n\t\ttotal: number;\n\t};\n\tcost: number;\n\tcontextUsage?: ContextUsage;\n}\n\ninterface ToolDefinitionEntry {\n\tdefinition: ToolDefinition;\n\tsourceInfo: SourceInfo;\n}\n\n// ============================================================================\n// Constants\n// ============================================================================\n\n/** Standard thinking levels */\nconst THINKING_LEVELS: ThinkingLevel[] = [\"off\", \"minimal\", \"low\", \"medium\", \"high\"];\n\n// ============================================================================\n// AgentSession Class\n// ============================================================================\n\nexport class AgentSession {\n\treadonly agent: Agent;\n\treadonly sessionManager: SessionManager;\n\treadonly settingsManager: SettingsManager;\n\n\tprivate _scopedModels: Array<{ model: Model<any>; thinkingLevel?: ThinkingLevel }>;\n\n\t// Event subscription state\n\tprivate _unsubscribeAgent?: () => void;\n\tprivate _eventListeners: AgentSessionEventListener[] = [];\n\tprivate _agentEventQueue: Promise<void> = Promise.resolve();\n\n\t/** Tracks pending steering messages for UI display. Removed when delivered. */\n\tprivate _steeringMessages: string[] = [];\n\t/** Tracks pending follow-up messages for UI display. Removed when delivered. */\n\tprivate _followUpMessages: string[] = [];\n\t/** Messages queued to be included with the next user prompt as context (\"asides\"). */\n\tprivate _pendingNextTurnMessages: CustomMessage[] = [];\n\n\t// Compaction state\n\tprivate _compactionAbortController: AbortController | undefined = undefined;\n\tprivate _autoCompactionAbortController: AbortController | undefined = undefined;\n\tprivate _overflowRecoveryAttempted = false;\n\n\t// Branch summarization state\n\tprivate _branchSummaryAbortController: AbortController | undefined = undefined;\n\n\t// Retry state\n\tprivate _retryAbortController: AbortController | undefined = undefined;\n\tprivate _retryAttempt = 0;\n\tprivate _retryPromise: Promise<void> | undefined = undefined;\n\tprivate _retryResolve: (() => void) | undefined = undefined;\n\n\t// Bash execution state\n\tprivate _bashAbortController: AbortController | undefined = undefined;\n\tprivate _pendingBashMessages: BashExecutionMessage[] = [];\n\n\t// Extension system\n\tprivate _extensionRunner!: ExtensionRunner;\n\tprivate _turnIndex = 0;\n\n\tprivate _resourceLoader: ResourceLoader;\n\tprivate _customTools: ToolDefinition[];\n\tprivate _baseToolDefinitions: Map<string, ToolDefinition> = new Map();\n\tprivate _cwd: string;\n\tprivate _extensionRunnerRef?: { current?: ExtensionRunner };\n\tprivate _initialActiveToolNames?: string[];\n\tprivate _allowedToolNames?: Set<string>;\n\tprivate _baseToolsOverride?: Record<string, AgentTool>;\n\tprivate _sessionStartEvent: SessionStartEvent;\n\tprivate _extensionUIContext?: ExtensionUIContext;\n\tprivate _extensionCommandContextActions?: ExtensionCommandContextActions;\n\tprivate _extensionShutdownHandler?: ShutdownHandler;\n\tprivate _extensionErrorListener?: ExtensionErrorListener;\n\tprivate _extensionErrorUnsubscriber?: () => void;\n\n\t// Model registry for API key resolution\n\tprivate _modelRegistry: ModelRegistry;\n\n\t// Tool registry for extension getTools/setTools\n\tprivate _toolRegistry: Map<string, AgentTool> = new Map();\n\tprivate _toolDefinitions: Map<string, ToolDefinitionEntry> = new Map();\n\tprivate _toolPromptSnippets: Map<string, string> = new Map();\n\tprivate _toolPromptGuidelines: Map<string, string[]> = new Map();\n\n\t// Base system prompt (without extension appends) - used to apply fresh appends each turn\n\tprivate _baseSystemPrompt = \"\";\n\tprivate _baseSystemPromptOptions!: BuildSystemPromptOptions;\n\n\tconstructor(config: AgentSessionConfig) {\n\t\tthis.agent = config.agent;\n\t\tthis.sessionManager = config.sessionManager;\n\t\tthis.settingsManager = config.settingsManager;\n\t\tthis._scopedModels = config.scopedModels ?? [];\n\t\tthis._resourceLoader = config.resourceLoader;\n\t\tthis._customTools = config.customTools ?? [];\n\t\tthis._cwd = config.cwd;\n\t\tthis._modelRegistry = config.modelRegistry;\n\t\tthis._extensionRunnerRef = config.extensionRunnerRef;\n\t\tthis._initialActiveToolNames = config.initialActiveToolNames;\n\t\tthis._allowedToolNames = config.allowedToolNames ? new Set(config.allowedToolNames) : undefined;\n\t\tthis._baseToolsOverride = config.baseToolsOverride;\n\t\tthis._sessionStartEvent = config.sessionStartEvent ?? { type: \"session_start\", reason: \"startup\" };\n\n\t\t// Always subscribe to agent events for internal handling\n\t\t// (session persistence, extensions, auto-compaction, retry logic)\n\t\tthis._unsubscribeAgent = this.agent.subscribe(this._handleAgentEvent);\n\t\tthis._installAgentToolHooks();\n\n\t\tthis._buildRuntime({\n\t\t\tactiveToolNames: this._initialActiveToolNames,\n\t\t\tincludeAllExtensionTools: true,\n\t\t});\n\t}\n\n\t/** Model registry for API key resolution and model discovery */\n\tget modelRegistry(): ModelRegistry {\n\t\treturn this._modelRegistry;\n\t}\n\n\tprivate async _getRequiredRequestAuth(model: Model<any>): Promise<{\n\t\tapiKey: string;\n\t\theaders?: Record<string, string>;\n\t}> {\n\t\tconst result = await this._modelRegistry.getApiKeyAndHeaders(model);\n\t\tif (!result.ok) {\n\t\t\tif (result.error.startsWith(\"No API key found\")) {\n\t\t\t\tthrow new Error(formatNoApiKeyFoundMessage(model.provider));\n\t\t\t}\n\t\t\tthrow new Error(result.error);\n\t\t}\n\t\tif (result.apiKey) {\n\t\t\treturn { apiKey: result.apiKey, headers: result.headers };\n\t\t}\n\n\t\tconst isOAuth = this._modelRegistry.isUsingOAuth(model);\n\t\tif (isOAuth) {\n\t\t\tthrow new Error(\n\t\t\t\t`Authentication failed for \"${model.provider}\". ` +\n\t\t\t\t\t`Credentials may have expired or network is unavailable. ` +\n\t\t\t\t\t`Run '/login ${model.provider}' to re-authenticate.`,\n\t\t\t);\n\t\t}\n\t\tthrow new Error(formatNoApiKeyFoundMessage(model.provider));\n\t}\n\n\tprivate async _getCompactionRequestAuth(model: Model<any>): Promise<{\n\t\tapiKey?: string;\n\t\theaders?: Record<string, string>;\n\t}> {\n\t\tif (this.agent.streamFn === streamSimple) {\n\t\t\treturn this._getRequiredRequestAuth(model);\n\t\t}\n\n\t\tconst result = await this._modelRegistry.getApiKeyAndHeaders(model);\n\t\treturn result.ok ? { apiKey: result.apiKey, headers: result.headers } : {};\n\t}\n\n\t/**\n\t * Install tool hooks once on the Agent instance.\n\t *\n\t * The callbacks read `this._extensionRunner` at execution time, so extension reload swaps in the\n\t * new runner without reinstalling hooks. Extension-specific tool wrappers are still used to adapt\n\t * registered tool execution to the extension context. Tool call and tool result interception now\n\t * happens here instead of in wrappers.\n\t */\n\tprivate _installAgentToolHooks(): void {\n\t\tthis.agent.beforeToolCall = async ({ toolCall, args }) => {\n\t\t\tconst runner = this._extensionRunner;\n\t\t\tif (!runner.hasHandlers(\"tool_call\")) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\tawait this._agentEventQueue;\n\n\t\t\ttry {\n\t\t\t\treturn await runner.emitToolCall({\n\t\t\t\t\ttype: \"tool_call\",\n\t\t\t\t\ttoolName: toolCall.name,\n\t\t\t\t\ttoolCallId: toolCall.id,\n\t\t\t\t\tinput: args as Record<string, unknown>,\n\t\t\t\t});\n\t\t\t} catch (err) {\n\t\t\t\tif (err instanceof Error) {\n\t\t\t\t\tthrow err;\n\t\t\t\t}\n\t\t\t\tthrow new Error(`Extension failed, blocking execution: ${String(err)}`);\n\t\t\t}\n\t\t};\n\n\t\tthis.agent.afterToolCall = async ({ toolCall, args, result, isError }) => {\n\t\t\tconst runner = this._extensionRunner;\n\t\t\tif (!runner.hasHandlers(\"tool_result\")) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\tconst hookResult = await runner.emitToolResult({\n\t\t\t\ttype: \"tool_result\",\n\t\t\t\ttoolName: toolCall.name,\n\t\t\t\ttoolCallId: toolCall.id,\n\t\t\t\tinput: args as Record<string, unknown>,\n\t\t\t\tcontent: result.content,\n\t\t\t\tdetails: result.details,\n\t\t\t\tisError,\n\t\t\t});\n\n\t\t\tif (!hookResult) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\tcontent: hookResult.content,\n\t\t\t\tdetails: hookResult.details,\n\t\t\t\tisError: hookResult.isError ?? isError,\n\t\t\t};\n\t\t};\n\t}\n\n\t// =========================================================================\n\t// Event Subscription\n\t// =========================================================================\n\n\t/** Emit an event to all listeners */\n\tprivate _emit(event: AgentSessionEvent): void {\n\t\tfor (const l of this._eventListeners) {\n\t\t\tl(event);\n\t\t}\n\t}\n\n\tprivate _emitQueueUpdate(): void {\n\t\tthis._emit({\n\t\t\ttype: \"queue_update\",\n\t\t\tsteering: [...this._steeringMessages],\n\t\t\tfollowUp: [...this._followUpMessages],\n\t\t});\n\t}\n\n\t// Track last assistant message for auto-compaction check\n\tprivate _lastAssistantMessage: AssistantMessage | undefined = undefined;\n\n\t/** Internal handler for agent events - shared by subscribe and reconnect */\n\tprivate _handleAgentEvent = (event: AgentEvent): void => {\n\t\t// Create retry promise synchronously before queueing async processing.\n\t\t// Agent.emit() calls this handler synchronously, and prompt() calls waitForRetry()\n\t\t// as soon as agent.prompt() resolves. If _retryPromise is created only inside\n\t\t// _processAgentEvent, slow earlier queued events can delay agent_end processing\n\t\t// and waitForRetry() can miss the in-flight retry.\n\t\tthis._createRetryPromiseForAgentEnd(event);\n\n\t\tthis._agentEventQueue = this._agentEventQueue.then(\n\t\t\t() => this._processAgentEvent(event),\n\t\t\t() => this._processAgentEvent(event),\n\t\t);\n\n\t\t// Keep queue alive if an event handler fails\n\t\tthis._agentEventQueue.catch(() => {});\n\t};\n\n\tprivate _createRetryPromiseForAgentEnd(event: AgentEvent): void {\n\t\tif (event.type !== \"agent_end\" || this._retryPromise) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst settings = this.settingsManager.getRetrySettings();\n\t\tif (!settings.enabled) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst lastAssistant = this._findLastAssistantInMessages(event.messages);\n\t\tif (!lastAssistant || !this._isRetryableError(lastAssistant)) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._retryPromise = new Promise((resolve) => {\n\t\t\tthis._retryResolve = resolve;\n\t\t});\n\t}\n\n\tprivate _findLastAssistantInMessages(messages: AgentMessage[]): AssistantMessage | undefined {\n\t\tfor (let i = messages.length - 1; i >= 0; i--) {\n\t\t\tconst message = messages[i];\n\t\t\tif (message.role === \"assistant\") {\n\t\t\t\treturn message as AssistantMessage;\n\t\t\t}\n\t\t}\n\t\treturn undefined;\n\t}\n\n\tprivate async _processAgentEvent(event: AgentEvent): Promise<void> {\n\t\t// When a user message starts, check if it's from either queue and remove it BEFORE emitting\n\t\t// This ensures the UI sees the updated queue state\n\t\tif (event.type === \"message_start\" && event.message.role === \"user\") {\n\t\t\tthis._overflowRecoveryAttempted = false;\n\t\t\tconst messageText = this._getUserMessageText(event.message);\n\t\t\tif (messageText) {\n\t\t\t\t// Check steering queue first\n\t\t\t\tconst steeringIndex = this._steeringMessages.indexOf(messageText);\n\t\t\t\tif (steeringIndex !== -1) {\n\t\t\t\t\tthis._steeringMessages.splice(steeringIndex, 1);\n\t\t\t\t\tthis._emitQueueUpdate();\n\t\t\t\t} else {\n\t\t\t\t\t// Check follow-up queue\n\t\t\t\t\tconst followUpIndex = this._followUpMessages.indexOf(messageText);\n\t\t\t\t\tif (followUpIndex !== -1) {\n\t\t\t\t\t\tthis._followUpMessages.splice(followUpIndex, 1);\n\t\t\t\t\t\tthis._emitQueueUpdate();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Emit to extensions first\n\t\tawait this._emitExtensionEvent(event);\n\n\t\t// Notify all listeners\n\t\tthis._emit(event);\n\n\t\t// Handle session persistence\n\t\tif (event.type === \"message_end\") {\n\t\t\t// Check if this is a custom message from extensions\n\t\t\tif (event.message.role === \"custom\") {\n\t\t\t\t// Persist as CustomMessageEntry\n\t\t\t\tthis.sessionManager.appendCustomMessageEntry(\n\t\t\t\t\tevent.message.customType,\n\t\t\t\t\tevent.message.content,\n\t\t\t\t\tevent.message.display,\n\t\t\t\t\tevent.message.details,\n\t\t\t\t);\n\t\t\t} else if (\n\t\t\t\tevent.message.role === \"user\" ||\n\t\t\t\tevent.message.role === \"assistant\" ||\n\t\t\t\tevent.message.role === \"toolResult\"\n\t\t\t) {\n\t\t\t\t// Regular LLM message - persist as SessionMessageEntry\n\t\t\t\tthis.sessionManager.appendMessage(event.message);\n\t\t\t}\n\t\t\t// Other message types (bashExecution, compactionSummary, branchSummary) are persisted elsewhere\n\n\t\t\t// Track assistant message for auto-compaction (checked on agent_end)\n\t\t\tif (event.message.role === \"assistant\") {\n\t\t\t\tthis._lastAssistantMessage = event.message;\n\n\t\t\t\tconst assistantMsg = event.message as AssistantMessage;\n\t\t\t\tif (assistantMsg.stopReason !== \"error\") {\n\t\t\t\t\tthis._overflowRecoveryAttempted = false;\n\t\t\t\t}\n\n\t\t\t\t// Reset retry counter immediately on successful assistant response\n\t\t\t\t// This prevents accumulation across multiple LLM calls within a turn\n\t\t\t\tif (assistantMsg.stopReason !== \"error\" && this._retryAttempt > 0) {\n\t\t\t\t\tthis._emit({\n\t\t\t\t\t\ttype: \"auto_retry_end\",\n\t\t\t\t\t\tsuccess: true,\n\t\t\t\t\t\tattempt: this._retryAttempt,\n\t\t\t\t\t});\n\t\t\t\t\tthis._retryAttempt = 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Check auto-retry and auto-compaction after agent completes\n\t\tif (event.type === \"agent_end\" && this._lastAssistantMessage) {\n\t\t\tconst msg = this._lastAssistantMessage;\n\t\t\tthis._lastAssistantMessage = undefined;\n\n\t\t\t// Check for retryable errors first (overloaded, rate limit, server errors)\n\t\t\tif (this._isRetryableError(msg)) {\n\t\t\t\tconst didRetry = await this._handleRetryableError(msg);\n\t\t\t\tif (didRetry) return; // Retry was initiated, don't proceed to compaction\n\t\t\t}\n\n\t\t\tthis._resolveRetry();\n\t\t\tawait this._checkCompaction(msg);\n\t\t}\n\t}\n\n\t/** Resolve the pending retry promise */\n\tprivate _resolveRetry(): void {\n\t\tif (this._retryResolve) {\n\t\t\tthis._retryResolve();\n\t\t\tthis._retryResolve = undefined;\n\t\t\tthis._retryPromise = undefined;\n\t\t}\n\t}\n\n\t/** Extract text content from a message */\n\tprivate _getUserMessageText(message: Message): string {\n\t\tif (message.role !== \"user\") return \"\";\n\t\tconst content = message.content;\n\t\tif (typeof content === \"string\") return content;\n\t\tconst textBlocks = content.filter((c) => c.type === \"text\");\n\t\treturn textBlocks.map((c) => (c as TextContent).text).join(\"\");\n\t}\n\n\t/** Find the last assistant message in agent state (including aborted ones) */\n\tprivate _findLastAssistantMessage(): AssistantMessage | undefined {\n\t\tconst messages = this.agent.state.messages;\n\t\tfor (let i = messages.length - 1; i >= 0; i--) {\n\t\t\tconst msg = messages[i];\n\t\t\tif (msg.role === \"assistant\") {\n\t\t\t\treturn msg as AssistantMessage;\n\t\t\t}\n\t\t}\n\t\treturn undefined;\n\t}\n\n\tprivate _replaceMessageInPlace(target: AgentMessage, replacement: AgentMessage): void {\n\t\t// Agent-core stores the finalized message object in its state before emitting message_end.\n\t\t// SessionManager persistence happens later in _processAgentEvent() with event.message.\n\t\t// Mutating this object in place keeps agent state, later turn/agent events, listeners,\n\t\t// and the eventual SessionManager.appendMessage(event.message) persistence in sync.\n\t\tif (target === replacement) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst targetRecord = target as unknown as Record<string, unknown>;\n\t\tfor (const key of Object.keys(targetRecord)) {\n\t\t\tdelete targetRecord[key];\n\t\t}\n\t\tObject.assign(targetRecord, replacement);\n\t}\n\n\t/** Emit extension events based on agent events */\n\tprivate async _emitExtensionEvent(event: AgentEvent): Promise<void> {\n\t\tif (event.type === \"agent_start\") {\n\t\t\tthis._turnIndex = 0;\n\t\t\tawait this._extensionRunner.emit({ type: \"agent_start\" });\n\t\t} else if (event.type === \"agent_end\") {\n\t\t\tawait this._extensionRunner.emit({ type: \"agent_end\", messages: event.messages });\n\t\t} else if (event.type === \"turn_start\") {\n\t\t\tconst extensionEvent: TurnStartEvent = {\n\t\t\t\ttype: \"turn_start\",\n\t\t\t\tturnIndex: this._turnIndex,\n\t\t\t\ttimestamp: Date.now(),\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t} else if (event.type === \"turn_end\") {\n\t\t\tconst extensionEvent: TurnEndEvent = {\n\t\t\t\ttype: \"turn_end\",\n\t\t\t\tturnIndex: this._turnIndex,\n\t\t\t\tmessage: event.message,\n\t\t\t\ttoolResults: event.toolResults,\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t\tthis._turnIndex++;\n\t\t} else if (event.type === \"message_start\") {\n\t\t\tconst extensionEvent: MessageStartEvent = {\n\t\t\t\ttype: \"message_start\",\n\t\t\t\tmessage: event.message,\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t} else if (event.type === \"message_update\") {\n\t\t\tconst extensionEvent: MessageUpdateEvent = {\n\t\t\t\ttype: \"message_update\",\n\t\t\t\tmessage: event.message,\n\t\t\t\tassistantMessageEvent: event.assistantMessageEvent,\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t} else if (event.type === \"message_end\") {\n\t\t\tconst extensionEvent: MessageEndEvent = {\n\t\t\t\ttype: \"message_end\",\n\t\t\t\tmessage: event.message,\n\t\t\t};\n\t\t\tconst replacement = await this._extensionRunner.emitMessageEnd(extensionEvent);\n\t\t\tif (replacement) {\n\t\t\t\tthis._replaceMessageInPlace(event.message, replacement);\n\t\t\t}\n\t\t} else if (event.type === \"tool_execution_start\") {\n\t\t\tconst extensionEvent: ToolExecutionStartEvent = {\n\t\t\t\ttype: \"tool_execution_start\",\n\t\t\t\ttoolCallId: event.toolCallId,\n\t\t\t\ttoolName: event.toolName,\n\t\t\t\targs: event.args,\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t} else if (event.type === \"tool_execution_update\") {\n\t\t\tconst extensionEvent: ToolExecutionUpdateEvent = {\n\t\t\t\ttype: \"tool_execution_update\",\n\t\t\t\ttoolCallId: event.toolCallId,\n\t\t\t\ttoolName: event.toolName,\n\t\t\t\targs: event.args,\n\t\t\t\tpartialResult: event.partialResult,\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t} else if (event.type === \"tool_execution_end\") {\n\t\t\tconst extensionEvent: ToolExecutionEndEvent = {\n\t\t\t\ttype: \"tool_execution_end\",\n\t\t\t\ttoolCallId: event.toolCallId,\n\t\t\t\ttoolName: event.toolName,\n\t\t\t\tresult: event.result,\n\t\t\t\tisError: event.isError,\n\t\t\t};\n\t\t\tawait this._extensionRunner.emit(extensionEvent);\n\t\t}\n\t}\n\n\t/**\n\t * Subscribe to agent events.\n\t * Session persistence is handled internally (saves messages on message_end).\n\t * Multiple listeners can be added. Returns unsubscribe function for this listener.\n\t */\n\tsubscribe(listener: AgentSessionEventListener): () => void {\n\t\tthis._eventListeners.push(listener);\n\n\t\t// Return unsubscribe function for this specific listener\n\t\treturn () => {\n\t\t\tconst index = this._eventListeners.indexOf(listener);\n\t\t\tif (index !== -1) {\n\t\t\t\tthis._eventListeners.splice(index, 1);\n\t\t\t}\n\t\t};\n\t}\n\n\t/**\n\t * Temporarily disconnect from agent events.\n\t * User listeners are preserved and will receive events again after resubscribe().\n\t * Used internally during operations that need to pause event processing.\n\t */\n\tprivate _disconnectFromAgent(): void {\n\t\tif (this._unsubscribeAgent) {\n\t\t\tthis._unsubscribeAgent();\n\t\t\tthis._unsubscribeAgent = undefined;\n\t\t}\n\t}\n\n\t/**\n\t * Reconnect to agent events after _disconnectFromAgent().\n\t * Preserves all existing listeners.\n\t */\n\tprivate _reconnectToAgent(): void {\n\t\tif (this._unsubscribeAgent) return; // Already connected\n\t\tthis._unsubscribeAgent = this.agent.subscribe(this._handleAgentEvent);\n\t}\n\n\t/**\n\t * Remove all listeners and disconnect from agent.\n\t * Call this when completely done with the session.\n\t */\n\tdispose(): void {\n\t\tthis._extensionRunner.invalidate(\n\t\t\t\"This extension ctx is stale after session replacement or reload. Do not use a captured pi or command ctx after ctx.newSession(), ctx.fork(), ctx.switchSession(), or ctx.reload(). For newSession, fork, and switchSession, move post-replacement work into withSession and use the ctx passed to withSession. For reload, do not use the old ctx after await ctx.reload().\",\n\t\t);\n\t\tthis._disconnectFromAgent();\n\t\tthis._eventListeners = [];\n\t\tcleanupSessionResources(this.sessionId);\n\t}\n\n\t// =========================================================================\n\t// Read-only State Access\n\t// =========================================================================\n\n\t/** Full agent state */\n\tget state(): AgentState {\n\t\treturn this.agent.state;\n\t}\n\n\t/** Current model (may be undefined if not yet selected) */\n\tget model(): Model<any> | undefined {\n\t\treturn this.agent.state.model;\n\t}\n\n\t/** Current thinking level */\n\tget thinkingLevel(): ThinkingLevel {\n\t\treturn this.agent.state.thinkingLevel;\n\t}\n\n\t/** Whether agent is currently streaming a response */\n\tget isStreaming(): boolean {\n\t\treturn this.agent.state.isStreaming;\n\t}\n\n\t/** Current effective system prompt (includes any per-turn extension modifications) */\n\tget systemPrompt(): string {\n\t\treturn this.agent.state.systemPrompt;\n\t}\n\n\t/** Current retry attempt (0 if not retrying) */\n\tget retryAttempt(): number {\n\t\treturn this._retryAttempt;\n\t}\n\n\t/**\n\t * Get the names of currently active tools.\n\t * Returns the names of tools currently set on the agent.\n\t */\n\tgetActiveToolNames(): string[] {\n\t\treturn this.agent.state.tools.map((t) => t.name);\n\t}\n\n\t/**\n\t * Get all configured tools with name, description, parameter schema, and source metadata.\n\t */\n\tgetAllTools(): ToolInfo[] {\n\t\treturn Array.from(this._toolDefinitions.values()).map(({ definition, sourceInfo }) => ({\n\t\t\tname: definition.name,\n\t\t\tdescription: definition.description,\n\t\t\tparameters: definition.parameters,\n\t\t\tsourceInfo,\n\t\t}));\n\t}\n\n\tgetToolDefinition(name: string): ToolDefinition | undefined {\n\t\treturn this._toolDefinitions.get(name)?.definition;\n\t}\n\n\t/**\n\t * Set active tools by name.\n\t * Only tools in the registry can be enabled. Unknown tool names are ignored.\n\t * Also rebuilds the system prompt to reflect the new tool set.\n\t * Changes take effect on the next agent turn.\n\t */\n\tsetActiveToolsByName(toolNames: string[]): void {\n\t\tconst tools: AgentTool[] = [];\n\t\tconst validToolNames: string[] = [];\n\t\tfor (const name of toolNames) {\n\t\t\tconst tool = this._toolRegistry.get(name);\n\t\t\tif (tool) {\n\t\t\t\ttools.push(tool);\n\t\t\t\tvalidToolNames.push(name);\n\t\t\t}\n\t\t}\n\t\tthis.agent.state.tools = tools;\n\n\t\t// Rebuild base system prompt with new tool set\n\t\tthis._baseSystemPrompt = this._rebuildSystemPrompt(validToolNames);\n\t\tthis.agent.state.systemPrompt = this._baseSystemPrompt;\n\t}\n\n\t/** Whether compaction or branch summarization is currently running */\n\tget isCompacting(): boolean {\n\t\treturn (\n\t\t\tthis._autoCompactionAbortController !== undefined ||\n\t\t\tthis._compactionAbortController !== undefined ||\n\t\t\tthis._branchSummaryAbortController !== undefined\n\t\t);\n\t}\n\n\t/** All messages including custom types like BashExecutionMessage */\n\tget messages(): AgentMessage[] {\n\t\treturn this.agent.state.messages;\n\t}\n\n\t/** Current steering mode */\n\tget steeringMode(): \"all\" | \"one-at-a-time\" {\n\t\treturn this.agent.steeringMode;\n\t}\n\n\t/** Current follow-up mode */\n\tget followUpMode(): \"all\" | \"one-at-a-time\" {\n\t\treturn this.agent.followUpMode;\n\t}\n\n\t/** Current session file path, or undefined if sessions are disabled */\n\tget sessionFile(): string | undefined {\n\t\treturn this.sessionManager.getSessionFile();\n\t}\n\n\t/** Current session ID */\n\tget sessionId(): string {\n\t\treturn this.sessionManager.getSessionId();\n\t}\n\n\t/** Current session display name, if set */\n\tget sessionName(): string | undefined {\n\t\treturn this.sessionManager.getSessionName();\n\t}\n\n\t/** Scoped models for cycling (from --models flag) */\n\tget scopedModels(): ReadonlyArray<{ model: Model<any>; thinkingLevel?: ThinkingLevel }> {\n\t\treturn this._scopedModels;\n\t}\n\n\t/** Update scoped models for cycling */\n\tsetScopedModels(scopedModels: Array<{ model: Model<any>; thinkingLevel?: ThinkingLevel }>): void {\n\t\tthis._scopedModels = scopedModels;\n\t}\n\n\t/** File-based prompt templates */\n\tget promptTemplates(): ReadonlyArray<PromptTemplate> {\n\t\treturn this._resourceLoader.getPrompts().prompts;\n\t}\n\n\tprivate _normalizePromptSnippet(text: string | undefined): string | undefined {\n\t\tif (!text) return undefined;\n\t\tconst oneLine = text\n\t\t\t.replace(/[\\r\\n]+/g, \" \")\n\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t.trim();\n\t\treturn oneLine.length > 0 ? oneLine : undefined;\n\t}\n\n\tprivate _normalizePromptGuidelines(guidelines: string[] | undefined): string[] {\n\t\tif (!guidelines || guidelines.length === 0) {\n\t\t\treturn [];\n\t\t}\n\n\t\tconst unique = new Set<string>();\n\t\tfor (const guideline of guidelines) {\n\t\t\tconst normalized = guideline.trim();\n\t\t\tif (normalized.length > 0) {\n\t\t\t\tunique.add(normalized);\n\t\t\t}\n\t\t}\n\t\treturn Array.from(unique);\n\t}\n\n\tprivate _rebuildSystemPrompt(toolNames: string[]): string {\n\t\tconst validToolNames = toolNames.filter((name) => this._toolRegistry.has(name));\n\t\tconst toolSnippets: Record<string, string> = {};\n\t\tconst promptGuidelines: string[] = [];\n\t\tfor (const name of validToolNames) {\n\t\t\tconst snippet = this._toolPromptSnippets.get(name);\n\t\t\tif (snippet) {\n\t\t\t\ttoolSnippets[name] = snippet;\n\t\t\t}\n\n\t\t\tconst toolGuidelines = this._toolPromptGuidelines.get(name);\n\t\t\tif (toolGuidelines) {\n\t\t\t\tpromptGuidelines.push(...toolGuidelines);\n\t\t\t}\n\t\t}\n\n\t\tconst loaderSystemPrompt = this._resourceLoader.getSystemPrompt();\n\t\tconst loaderAppendSystemPrompt = this._resourceLoader.getAppendSystemPrompt();\n\t\tconst appendSystemPrompt =\n\t\t\tloaderAppendSystemPrompt.length > 0 ? loaderAppendSystemPrompt.join(\"\\n\\n\") : undefined;\n\t\tconst loadedSkills = this._resourceLoader.getSkills().skills;\n\t\tconst loadedContextFiles = this._resourceLoader.getAgentsFiles().agentsFiles;\n\n\t\tthis._baseSystemPromptOptions = {\n\t\t\tcwd: this._cwd,\n\t\t\tskills: loadedSkills,\n\t\t\tcontextFiles: loadedContextFiles,\n\t\t\tcustomPrompt: loaderSystemPrompt,\n\t\t\tappendSystemPrompt,\n\t\t\tselectedTools: validToolNames,\n\t\t\ttoolSnippets,\n\t\t\tpromptGuidelines,\n\t\t};\n\t\treturn buildSystemPrompt(this._baseSystemPromptOptions);\n\t}\n\n\t// =========================================================================\n\t// Prompting\n\t// =========================================================================\n\n\t/**\n\t * Send a prompt to the agent.\n\t * - Handles extension commands (registered via pi.registerCommand) immediately, even during streaming\n\t * - Expands file-based prompt templates by default\n\t * - During streaming, queues via steer() or followUp() based on streamingBehavior option\n\t * - Validates model and API key before sending (when not streaming)\n\t * @throws Error if streaming and no streamingBehavior specified\n\t * @throws Error if no model selected or no API key available (when not streaming)\n\t */\n\tasync prompt(text: string, options?: PromptOptions): Promise<void> {\n\t\tconst expandPromptTemplates = options?.expandPromptTemplates ?? true;\n\t\tconst preflightResult = options?.preflightResult;\n\t\tlet messages: AgentMessage[] | undefined;\n\n\t\ttry {\n\t\t\t// Handle extension commands first (execute immediately, even during streaming)\n\t\t\t// Extension commands manage their own LLM interaction via pi.sendMessage()\n\t\t\tif (expandPromptTemplates && text.startsWith(\"/\")) {\n\t\t\t\tconst handled = await this._tryExecuteExtensionCommand(text);\n\t\t\t\tif (handled) {\n\t\t\t\t\t// Extension command executed, no prompt to send\n\t\t\t\t\tpreflightResult?.(true);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Emit input event for extension interception (before skill/template expansion)\n\t\t\tlet currentText = text;\n\t\t\tlet currentImages = options?.images;\n\t\t\tif (this._extensionRunner.hasHandlers(\"input\")) {\n\t\t\t\tconst inputResult = await this._extensionRunner.emitInput(\n\t\t\t\t\tcurrentText,\n\t\t\t\t\tcurrentImages,\n\t\t\t\t\toptions?.source ?? \"interactive\",\n\t\t\t\t);\n\t\t\t\tif (inputResult.action === \"handled\") {\n\t\t\t\t\tpreflightResult?.(true);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (inputResult.action === \"transform\") {\n\t\t\t\t\tcurrentText = inputResult.text;\n\t\t\t\t\tcurrentImages = inputResult.images ?? currentImages;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Expand skill commands (/skill:name args) and prompt templates (/template args)\n\t\t\tlet expandedText = currentText;\n\t\t\tif (expandPromptTemplates) {\n\t\t\t\texpandedText = this._expandSkillCommand(expandedText);\n\t\t\t\texpandedText = expandPromptTemplate(expandedText, [...this.promptTemplates]);\n\t\t\t}\n\n\t\t\t// If streaming, queue via steer() or followUp() based on option\n\t\t\tif (this.isStreaming) {\n\t\t\t\tif (!options?.streamingBehavior) {\n\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\"Agent is already processing. Specify streamingBehavior ('steer' or 'followUp') to queue the message.\",\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tif (options.streamingBehavior === \"followUp\") {\n\t\t\t\t\tawait this._queueFollowUp(expandedText, currentImages);\n\t\t\t\t} else {\n\t\t\t\t\tawait this._queueSteer(expandedText, currentImages);\n\t\t\t\t}\n\t\t\t\tpreflightResult?.(true);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Flush any pending bash messages before the new prompt\n\t\t\tthis._flushPendingBashMessages();\n\n\t\t\t// Validate model\n\t\t\tif (!this.model) {\n\t\t\t\tthrow new Error(formatNoModelSelectedMessage());\n\t\t\t}\n\n\t\t\tif (!this._modelRegistry.hasConfiguredAuth(this.model)) {\n\t\t\t\tconst isOAuth = this._modelRegistry.isUsingOAuth(this.model);\n\t\t\t\tif (isOAuth) {\n\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t`Authentication failed for \"${this.model.provider}\". ` +\n\t\t\t\t\t\t\t`Credentials may have expired or network is unavailable. ` +\n\t\t\t\t\t\t\t`Run '/login ${this.model.provider}' to re-authenticate.`,\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tthrow new Error(formatNoApiKeyFoundMessage(this.model.provider));\n\t\t\t}\n\n\t\t\t// Check if we need to compact before sending (catches aborted responses)\n\t\t\tconst lastAssistant = this._findLastAssistantMessage();\n\t\t\tif (lastAssistant) {\n\t\t\t\tawait this._checkCompaction(lastAssistant, false);\n\t\t\t}\n\n\t\t\t// Build messages array (custom message if any, then user message)\n\t\t\tmessages = [];\n\n\t\t\t// Add user message\n\t\t\tconst userContent: (TextContent | ImageContent)[] = [{ type: \"text\", text: expandedText }];\n\t\t\tif (currentImages) {\n\t\t\t\tuserContent.push(...currentImages);\n\t\t\t}\n\t\t\tmessages.push({\n\t\t\t\trole: \"user\",\n\t\t\t\tcontent: userContent,\n\t\t\t\ttimestamp: Date.now(),\n\t\t\t});\n\n\t\t\t// Inject any pending \"nextTurn\" messages as context alongside the user message\n\t\t\tfor (const msg of this._pendingNextTurnMessages) {\n\t\t\t\tmessages.push(msg);\n\t\t\t}\n\t\t\tthis._pendingNextTurnMessages = [];\n\n\t\t\t// Emit before_agent_start extension event\n\t\t\tconst result = await this._extensionRunner.emitBeforeAgentStart(\n\t\t\t\texpandedText,\n\t\t\t\tcurrentImages,\n\t\t\t\tthis._baseSystemPrompt,\n\t\t\t\tthis._baseSystemPromptOptions,\n\t\t\t);\n\t\t\t// Add all custom messages from extensions\n\t\t\tif (result?.messages) {\n\t\t\t\tfor (const msg of result.messages) {\n\t\t\t\t\tmessages.push({\n\t\t\t\t\t\trole: \"custom\",\n\t\t\t\t\t\tcustomType: msg.customType,\n\t\t\t\t\t\tcontent: msg.content,\n\t\t\t\t\t\tdisplay: msg.display,\n\t\t\t\t\t\tdetails: msg.details,\n\t\t\t\t\t\ttimestamp: Date.now(),\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Apply extension-modified system prompt, or reset to base\n\t\t\tif (result?.systemPrompt) {\n\t\t\t\tthis.agent.state.systemPrompt = result.systemPrompt;\n\t\t\t} else {\n\t\t\t\t// Ensure we're using the base prompt (in case previous turn had modifications)\n\t\t\t\tthis.agent.state.systemPrompt = this._baseSystemPrompt;\n\t\t\t}\n\t\t} catch (error) {\n\t\t\tpreflightResult?.(false);\n\t\t\tthrow error;\n\t\t}\n\n\t\tif (!messages) {\n\t\t\treturn;\n\t\t}\n\n\t\tpreflightResult?.(true);\n\t\tawait this.agent.prompt(messages);\n\t\tawait this.waitForRetry();\n\t}\n\n\t/**\n\t * Try to execute an extension command. Returns true if command was found and executed.\n\t */\n\tprivate async _tryExecuteExtensionCommand(text: string): Promise<boolean> {\n\t\t// Parse command name and args\n\t\tconst spaceIndex = text.indexOf(\" \");\n\t\tconst commandName = spaceIndex === -1 ? text.slice(1) : text.slice(1, spaceIndex);\n\t\tconst args = spaceIndex === -1 ? \"\" : text.slice(spaceIndex + 1);\n\n\t\tconst command = this._extensionRunner.getCommand(commandName);\n\t\tif (!command) return false;\n\n\t\t// Get command context from extension runner (includes session control methods)\n\t\tconst ctx = this._extensionRunner.createCommandContext();\n\n\t\ttry {\n\t\t\tawait command.handler(args, ctx);\n\t\t\treturn true;\n\t\t} catch (err) {\n\t\t\t// Emit error via extension runner\n\t\t\tthis._extensionRunner.emitError({\n\t\t\t\textensionPath: `command:${commandName}`,\n\t\t\t\tevent: \"command\",\n\t\t\t\terror: err instanceof Error ? err.message : String(err),\n\t\t\t});\n\t\t\treturn true;\n\t\t}\n\t}\n\n\t/**\n\t * Expand skill commands (/skill:name args) to their full content.\n\t * Returns the expanded text, or the original text if not a skill command or skill not found.\n\t * Emits errors via extension runner if file read fails.\n\t */\n\tprivate _expandSkillCommand(text: string): string {\n\t\tif (!text.startsWith(\"/skill:\")) return text;\n\n\t\tconst spaceIndex = text.indexOf(\" \");\n\t\tconst skillName = spaceIndex === -1 ? text.slice(7) : text.slice(7, spaceIndex);\n\t\tconst args = spaceIndex === -1 ? \"\" : text.slice(spaceIndex + 1).trim();\n\n\t\tconst skill = this.resourceLoader.getSkills().skills.find((s) => s.name === skillName);\n\t\tif (!skill) return text; // Unknown skill, pass through\n\n\t\ttry {\n\t\t\tconst content = readFileSync(skill.filePath, \"utf-8\");\n\t\t\tconst body = stripFrontmatter(content).trim();\n\t\t\tconst skillBlock = `<skill name=\"${skill.name}\" location=\"${skill.filePath}\">\\nReferences are relative to ${skill.baseDir}.\\n\\n${body}\\n</skill>`;\n\t\t\treturn args ? `${skillBlock}\\n\\n${args}` : skillBlock;\n\t\t} catch (err) {\n\t\t\t// Emit error like extension commands do\n\t\t\tthis._extensionRunner.emitError({\n\t\t\t\textensionPath: skill.filePath,\n\t\t\t\tevent: \"skill_expansion\",\n\t\t\t\terror: err instanceof Error ? err.message : String(err),\n\t\t\t});\n\t\t\treturn text; // Return original on error\n\t\t}\n\t}\n\n\t/**\n\t * Queue a steering message while the agent is running.\n\t * Delivered after the current assistant turn finishes executing its tool calls,\n\t * before the next LLM call.\n\t * Expands skill commands and prompt templates. Errors on extension commands.\n\t * @param images Optional image attachments to include with the message\n\t * @throws Error if text is an extension command\n\t */\n\tasync steer(text: string, images?: ImageContent[]): Promise<void> {\n\t\t// Check for extension commands (cannot be queued)\n\t\tif (text.startsWith(\"/\")) {\n\t\t\tthis._throwIfExtensionCommand(text);\n\t\t}\n\n\t\t// Expand skill commands and prompt templates\n\t\tlet expandedText = this._expandSkillCommand(text);\n\t\texpandedText = expandPromptTemplate(expandedText, [...this.promptTemplates]);\n\n\t\tawait this._queueSteer(expandedText, images);\n\t}\n\n\t/**\n\t * Queue a follow-up message to be processed after the agent finishes.\n\t * Delivered only when agent has no more tool calls or steering messages.\n\t * Expands skill commands and prompt templates. Errors on extension commands.\n\t * @param images Optional image attachments to include with the message\n\t * @throws Error if text is an extension command\n\t */\n\tasync followUp(text: string, images?: ImageContent[]): Promise<void> {\n\t\t// Check for extension commands (cannot be queued)\n\t\tif (text.startsWith(\"/\")) {\n\t\t\tthis._throwIfExtensionCommand(text);\n\t\t}\n\n\t\t// Expand skill commands and prompt templates\n\t\tlet expandedText = this._expandSkillCommand(text);\n\t\texpandedText = expandPromptTemplate(expandedText, [...this.promptTemplates]);\n\n\t\tawait this._queueFollowUp(expandedText, images);\n\t}\n\n\t/**\n\t * Internal: Queue a steering message (already expanded, no extension command check).\n\t */\n\tprivate async _queueSteer(text: string, images?: ImageContent[]): Promise<void> {\n\t\tthis._steeringMessages.push(text);\n\t\tthis._emitQueueUpdate();\n\t\tconst content: (TextContent | ImageContent)[] = [{ type: \"text\", text }];\n\t\tif (images) {\n\t\t\tcontent.push(...images);\n\t\t}\n\t\tthis.agent.steer({\n\t\t\trole: \"user\",\n\t\t\tcontent,\n\t\t\ttimestamp: Date.now(),\n\t\t});\n\t}\n\n\t/**\n\t * Internal: Queue a follow-up message (already expanded, no extension command check).\n\t */\n\tprivate async _queueFollowUp(text: string, images?: ImageContent[]): Promise<void> {\n\t\tthis._followUpMessages.push(text);\n\t\tthis._emitQueueUpdate();\n\t\tconst content: (TextContent | ImageContent)[] = [{ type: \"text\", text }];\n\t\tif (images) {\n\t\t\tcontent.push(...images);\n\t\t}\n\t\tthis.agent.followUp({\n\t\t\trole: \"user\",\n\t\t\tcontent,\n\t\t\ttimestamp: Date.now(),\n\t\t});\n\t}\n\n\t/**\n\t * Throw an error if the text is an extension command.\n\t */\n\tprivate _throwIfExtensionCommand(text: string): void {\n\t\tconst spaceIndex = text.indexOf(\" \");\n\t\tconst commandName = spaceIndex === -1 ? text.slice(1) : text.slice(1, spaceIndex);\n\t\tconst command = this._extensionRunner.getCommand(commandName);\n\n\t\tif (command) {\n\t\t\tthrow new Error(\n\t\t\t\t`Extension command \"/${commandName}\" cannot be queued. Use prompt() or execute the command when not streaming.`,\n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * Send a custom message to the session. Creates a CustomMessageEntry.\n\t *\n\t * Handles three cases:\n\t * - Streaming: queues message, processed when loop pulls from queue\n\t * - Not streaming + triggerTurn: appends to state/session, starts new turn\n\t * - Not streaming + no trigger: appends to state/session, no turn\n\t *\n\t * @param message Custom message with customType, content, display, details\n\t * @param options.triggerTurn If true and not streaming, triggers a new LLM turn\n\t * @param options.deliverAs Delivery mode: \"steer\", \"followUp\", or \"nextTurn\"\n\t */\n\tasync sendCustomMessage<T = unknown>(\n\t\tmessage: Pick<CustomMessage<T>, \"customType\" | \"content\" | \"display\" | \"details\">,\n\t\toptions?: { triggerTurn?: boolean; deliverAs?: \"steer\" | \"followUp\" | \"nextTurn\" },\n\t): Promise<void> {\n\t\tconst appMessage = {\n\t\t\trole: \"custom\" as const,\n\t\t\tcustomType: message.customType,\n\t\t\tcontent: message.content,\n\t\t\tdisplay: message.display,\n\t\t\tdetails: message.details,\n\t\t\ttimestamp: Date.now(),\n\t\t} satisfies CustomMessage<T>;\n\t\tif (options?.deliverAs === \"nextTurn\") {\n\t\t\tthis._pendingNextTurnMessages.push(appMessage);\n\t\t} else if (this.isStreaming) {\n\t\t\tif (options?.deliverAs === \"followUp\") {\n\t\t\t\tthis.agent.followUp(appMessage);\n\t\t\t} else {\n\t\t\t\tthis.agent.steer(appMessage);\n\t\t\t}\n\t\t} else if (options?.triggerTurn) {\n\t\t\tawait this.agent.prompt(appMessage);\n\t\t} else {\n\t\t\tthis.agent.state.messages.push(appMessage);\n\t\t\tthis.sessionManager.appendCustomMessageEntry(\n\t\t\t\tmessage.customType,\n\t\t\t\tmessage.content,\n\t\t\t\tmessage.display,\n\t\t\t\tmessage.details,\n\t\t\t);\n\t\t\tthis._emit({ type: \"message_start\", message: appMessage });\n\t\t\tthis._emit({ type: \"message_end\", message: appMessage });\n\t\t}\n\t}\n\n\t/**\n\t * Send a user message to the agent. Always triggers a turn.\n\t * When the agent is streaming, use deliverAs to specify how to queue the message.\n\t *\n\t * @param content User message content (string or content array)\n\t * @param options.deliverAs Delivery mode when streaming: \"steer\" or \"followUp\"\n\t */\n\tasync sendUserMessage(\n\t\tcontent: string | (TextContent | ImageContent)[],\n\t\toptions?: { deliverAs?: \"steer\" | \"followUp\" },\n\t): Promise<void> {\n\t\t// Normalize content to text string + optional images\n\t\tlet text: string;\n\t\tlet images: ImageContent[] | undefined;\n\n\t\tif (typeof content === \"string\") {\n\t\t\ttext = content;\n\t\t} else {\n\t\t\tconst textParts: string[] = [];\n\t\t\timages = [];\n\t\t\tfor (const part of content) {\n\t\t\t\tif (part.type === \"text\") {\n\t\t\t\t\ttextParts.push(part.text);\n\t\t\t\t} else {\n\t\t\t\t\timages.push(part);\n\t\t\t\t}\n\t\t\t}\n\t\t\ttext = textParts.join(\"\\n\");\n\t\t\tif (images.length === 0) images = undefined;\n\t\t}\n\n\t\t// Use prompt() with expandPromptTemplates: false to skip command handling and template expansion\n\t\tawait this.prompt(text, {\n\t\t\texpandPromptTemplates: false,\n\t\t\tstreamingBehavior: options?.deliverAs,\n\t\t\timages,\n\t\t\tsource: \"extension\",\n\t\t});\n\t}\n\n\t/**\n\t * Clear all queued messages and return them.\n\t * Useful for restoring to editor when user aborts.\n\t * @returns Object with steering and followUp arrays\n\t */\n\tclearQueue(): { steering: string[]; followUp: string[] } {\n\t\tconst steering = [...this._steeringMessages];\n\t\tconst followUp = [...this._followUpMessages];\n\t\tthis._steeringMessages = [];\n\t\tthis._followUpMessages = [];\n\t\tthis.agent.clearAllQueues();\n\t\tthis._emitQueueUpdate();\n\t\treturn { steering, followUp };\n\t}\n\n\t/** Number of pending messages (includes both steering and follow-up) */\n\tget pendingMessageCount(): number {\n\t\treturn this._steeringMessages.length + this._followUpMessages.length;\n\t}\n\n\t/** Get pending steering messages (read-only) */\n\tgetSteeringMessages(): readonly string[] {\n\t\treturn this._steeringMessages;\n\t}\n\n\t/** Get pending follow-up messages (read-only) */\n\tgetFollowUpMessages(): readonly string[] {\n\t\treturn this._followUpMessages;\n\t}\n\n\tget resourceLoader(): ResourceLoader {\n\t\treturn this._resourceLoader;\n\t}\n\n\t/**\n\t * Abort current operation and wait for agent to become idle.\n\t */\n\tasync abort(): Promise<void> {\n\t\tthis.abortRetry();\n\t\tthis.agent.abort();\n\t\tawait this.agent.waitForIdle();\n\t}\n\n\t// =========================================================================\n\t// Model Management\n\t// =========================================================================\n\n\tprivate async _emitModelSelect(\n\t\tnextModel: Model<any>,\n\t\tpreviousModel: Model<any> | undefined,\n\t\tsource: \"set\" | \"cycle\" | \"restore\",\n\t): Promise<void> {\n\t\tif (modelsAreEqual(previousModel, nextModel)) return;\n\t\tawait this._extensionRunner.emit({\n\t\t\ttype: \"model_select\",\n\t\t\tmodel: nextModel,\n\t\t\tpreviousModel,\n\t\t\tsource,\n\t\t});\n\t}\n\n\t/**\n\t * Set model directly.\n\t * Validates that auth is configured, saves to session and settings.\n\t * @throws Error if no auth is configured for the model\n\t */\n\tasync setModel(model: Model<any>): Promise<void> {\n\t\tif (!this._modelRegistry.hasConfiguredAuth(model)) {\n\t\t\tthrow new Error(`No API key for ${model.provider}/${model.id}`);\n\t\t}\n\n\t\tconst previousModel = this.model;\n\t\tconst thinkingLevel = this._getThinkingLevelForModelSwitch();\n\t\tthis.agent.state.model = model;\n\t\tthis.sessionManager.appendModelChange(model.provider, model.id);\n\t\tthis.settingsManager.setDefaultModelAndProvider(model.provider, model.id);\n\n\t\t// Re-clamp thinking level for new model's capabilities\n\t\tthis.setThinkingLevel(thinkingLevel);\n\n\t\tawait this._emitModelSelect(model, previousModel, \"set\");\n\t}\n\n\t/**\n\t * Cycle to next/previous model.\n\t * Uses scoped models (from --models flag) if available, otherwise all available models.\n\t * @param direction - \"forward\" (default) or \"backward\"\n\t * @returns The new model info, or undefined if only one model available\n\t */\n\tasync cycleModel(direction: \"forward\" | \"backward\" = \"forward\"): Promise<ModelCycleResult | undefined> {\n\t\tif (this._scopedModels.length > 0) {\n\t\t\treturn this._cycleScopedModel(direction);\n\t\t}\n\t\treturn this._cycleAvailableModel(direction);\n\t}\n\n\tprivate async _cycleScopedModel(direction: \"forward\" | \"backward\"): Promise<ModelCycleResult | undefined> {\n\t\tconst scopedModels = this._scopedModels.filter((scoped) => this._modelRegistry.hasConfiguredAuth(scoped.model));\n\t\tif (scopedModels.length <= 1) return undefined;\n\n\t\tconst currentModel = this.model;\n\t\tlet currentIndex = scopedModels.findIndex((sm) => modelsAreEqual(sm.model, currentModel));\n\n\t\tif (currentIndex === -1) currentIndex = 0;\n\t\tconst len = scopedModels.length;\n\t\tconst nextIndex = direction === \"forward\" ? (currentIndex + 1) % len : (currentIndex - 1 + len) % len;\n\t\tconst next = scopedModels[nextIndex];\n\t\tconst thinkingLevel = this._getThinkingLevelForModelSwitch(next.thinkingLevel);\n\n\t\t// Apply model\n\t\tthis.agent.state.model = next.model;\n\t\tthis.sessionManager.appendModelChange(next.model.provider, next.model.id);\n\t\tthis.settingsManager.setDefaultModelAndProvider(next.model.provider, next.model.id);\n\n\t\t// Apply thinking level.\n\t\t// - Explicit scoped model thinking level overrides current session level\n\t\t// - Undefined scoped model thinking level inherits the current session preference\n\t\t// setThinkingLevel clamps to model capabilities.\n\t\tthis.setThinkingLevel(thinkingLevel);\n\n\t\tawait this._emitModelSelect(next.model, currentModel, \"cycle\");\n\n\t\treturn { model: next.model, thinkingLevel: this.thinkingLevel, isScoped: true };\n\t}\n\n\tprivate async _cycleAvailableModel(direction: \"forward\" | \"backward\"): Promise<ModelCycleResult | undefined> {\n\t\tconst availableModels = await this._modelRegistry.getAvailable();\n\t\tif (availableModels.length <= 1) return undefined;\n\n\t\tconst currentModel = this.model;\n\t\tlet currentIndex = availableModels.findIndex((m) => modelsAreEqual(m, currentModel));\n\n\t\tif (currentIndex === -1) currentIndex = 0;\n\t\tconst len = availableModels.length;\n\t\tconst nextIndex = direction === \"forward\" ? (currentIndex + 1) % len : (currentIndex - 1 + len) % len;\n\t\tconst nextModel = availableModels[nextIndex];\n\n\t\tconst thinkingLevel = this._getThinkingLevelForModelSwitch();\n\t\tthis.agent.state.model = nextModel;\n\t\tthis.sessionManager.appendModelChange(nextModel.provider, nextModel.id);\n\t\tthis.settingsManager.setDefaultModelAndProvider(nextModel.provider, nextModel.id);\n\n\t\t// Re-clamp thinking level for new model's capabilities\n\t\tthis.setThinkingLevel(thinkingLevel);\n\n\t\tawait this._emitModelSelect(nextModel, currentModel, \"cycle\");\n\n\t\treturn { model: nextModel, thinkingLevel: this.thinkingLevel, isScoped: false };\n\t}\n\n\t// =========================================================================\n\t// Thinking Level Management\n\t// =========================================================================\n\n\t/**\n\t * Set thinking level.\n\t * Clamps to model capabilities based on available thinking levels.\n\t * Saves to session and settings only if the level actually changes.\n\t */\n\tsetThinkingLevel(level: ThinkingLevel): void {\n\t\tconst availableLevels = this.getAvailableThinkingLevels();\n\t\tconst effectiveLevel = availableLevels.includes(level) ? level : this._clampThinkingLevel(level, availableLevels);\n\n\t\t// Only persist if actually changing\n\t\tconst previousLevel = this.agent.state.thinkingLevel;\n\t\tconst isChanging = effectiveLevel !== previousLevel;\n\n\t\tthis.agent.state.thinkingLevel = effectiveLevel;\n\n\t\tif (isChanging) {\n\t\t\tthis.sessionManager.appendThinkingLevelChange(effectiveLevel);\n\t\t\tif (this.supportsThinking() || effectiveLevel !== \"off\") {\n\t\t\t\tthis.settingsManager.setDefaultThinkingLevel(effectiveLevel);\n\t\t\t}\n\t\t\tthis._emit({ type: \"thinking_level_changed\", level: effectiveLevel });\n\t\t\tvoid this._extensionRunner.emit({\n\t\t\t\ttype: \"thinking_level_select\",\n\t\t\t\tlevel: effectiveLevel,\n\t\t\t\tpreviousLevel,\n\t\t\t});\n\t\t}\n\t}\n\n\t/**\n\t * Cycle to next thinking level.\n\t * @returns New level, or undefined if model doesn't support thinking\n\t */\n\tcycleThinkingLevel(): ThinkingLevel | undefined {\n\t\tif (!this.supportsThinking()) return undefined;\n\n\t\tconst levels = this.getAvailableThinkingLevels();\n\t\tconst currentIndex = levels.indexOf(this.thinkingLevel);\n\t\tconst nextIndex = (currentIndex + 1) % levels.length;\n\t\tconst nextLevel = levels[nextIndex];\n\n\t\tthis.setThinkingLevel(nextLevel);\n\t\treturn nextLevel;\n\t}\n\n\t/**\n\t * Get available thinking levels for current model.\n\t * The provider will clamp to what the specific model supports internally.\n\t */\n\tgetAvailableThinkingLevels(): ThinkingLevel[] {\n\t\tif (!this.model) return THINKING_LEVELS;\n\t\treturn getSupportedThinkingLevels(this.model) as ThinkingLevel[];\n\t}\n\n\t/**\n\t * Check if current model supports thinking/reasoning.\n\t */\n\tsupportsThinking(): boolean {\n\t\treturn !!this.model?.reasoning;\n\t}\n\n\tprivate _getThinkingLevelForModelSwitch(explicitLevel?: ThinkingLevel): ThinkingLevel {\n\t\tif (explicitLevel !== undefined) {\n\t\t\treturn explicitLevel;\n\t\t}\n\t\tif (!this.supportsThinking()) {\n\t\t\treturn this.settingsManager.getDefaultThinkingLevel() ?? DEFAULT_THINKING_LEVEL;\n\t\t}\n\t\treturn this.thinkingLevel;\n\t}\n\n\tprivate _clampThinkingLevel(level: ThinkingLevel, _availableLevels: ThinkingLevel[]): ThinkingLevel {\n\t\treturn this.model ? (clampThinkingLevel(this.model, level) as ThinkingLevel) : \"off\";\n\t}\n\n\t// =========================================================================\n\t// Queue Mode Management\n\t// =========================================================================\n\n\t/**\n\t * Set steering message mode.\n\t * Saves to settings.\n\t */\n\tsetSteeringMode(mode: \"all\" | \"one-at-a-time\"): void {\n\t\tthis.agent.steeringMode = mode;\n\t\tthis.settingsManager.setSteeringMode(mode);\n\t}\n\n\t/**\n\t * Set follow-up message mode.\n\t * Saves to settings.\n\t */\n\tsetFollowUpMode(mode: \"all\" | \"one-at-a-time\"): void {\n\t\tthis.agent.followUpMode = mode;\n\t\tthis.settingsManager.setFollowUpMode(mode);\n\t}\n\n\t// =========================================================================\n\t// Compaction\n\t// =========================================================================\n\n\t/**\n\t * Manually compact the session context.\n\t * Aborts current agent operation first.\n\t * @param customInstructions Optional instructions for the compaction summary\n\t */\n\tasync compact(customInstructions?: string): Promise<CompactionResult> {\n\t\tthis._disconnectFromAgent();\n\t\tawait this.abort();\n\t\tthis._compactionAbortController = new AbortController();\n\t\tthis._emit({ type: \"compaction_start\", reason: \"manual\" });\n\n\t\ttry {\n\t\t\tif (!this.model) {\n\t\t\t\tthrow new Error(formatNoModelSelectedMessage());\n\t\t\t}\n\n\t\t\tconst { apiKey, headers } = await this._getCompactionRequestAuth(this.model);\n\n\t\t\tconst pathEntries = this.sessionManager.getBranch();\n\t\t\tconst settings = this.settingsManager.getCompactionSettings();\n\n\t\t\tconst preparation = prepareCompaction(pathEntries, settings);\n\t\t\tif (!preparation) {\n\t\t\t\t// Check why we can't compact\n\t\t\t\tconst lastEntry = pathEntries[pathEntries.length - 1];\n\t\t\t\tif (lastEntry?.type === \"compaction\") {\n\t\t\t\t\tthrow new Error(\"Already compacted\");\n\t\t\t\t}\n\t\t\t\tthrow new Error(\"Nothing to compact (session too small)\");\n\t\t\t}\n\n\t\t\tlet extensionCompaction: CompactionResult | undefined;\n\t\t\tlet fromExtension = false;\n\n\t\t\tif (this._extensionRunner.hasHandlers(\"session_before_compact\")) {\n\t\t\t\tconst result = (await this._extensionRunner.emit({\n\t\t\t\t\ttype: \"session_before_compact\",\n\t\t\t\t\tpreparation,\n\t\t\t\t\tbranchEntries: pathEntries,\n\t\t\t\t\tcustomInstructions,\n\t\t\t\t\tsignal: this._compactionAbortController.signal,\n\t\t\t\t})) as SessionBeforeCompactResult | undefined;\n\n\t\t\t\tif (result?.cancel) {\n\t\t\t\t\tthrow new Error(\"Compaction cancelled\");\n\t\t\t\t}\n\n\t\t\t\tif (result?.compaction) {\n\t\t\t\t\textensionCompaction = result.compaction;\n\t\t\t\t\tfromExtension = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlet summary: string;\n\t\t\tlet firstKeptEntryId: string;\n\t\t\tlet tokensBefore: number;\n\t\t\tlet details: unknown;\n\n\t\t\tif (extensionCompaction) {\n\t\t\t\t// Extension provided compaction content\n\t\t\t\tsummary = extensionCompaction.summary;\n\t\t\t\tfirstKeptEntryId = extensionCompaction.firstKeptEntryId;\n\t\t\t\ttokensBefore = extensionCompaction.tokensBefore;\n\t\t\t\tdetails = extensionCompaction.details;\n\t\t\t} else {\n\t\t\t\t// Generate compaction result\n\t\t\t\tconst result = await compact(\n\t\t\t\t\tpreparation,\n\t\t\t\t\tthis.model,\n\t\t\t\t\tapiKey,\n\t\t\t\t\theaders,\n\t\t\t\t\tcustomInstructions,\n\t\t\t\t\tthis._compactionAbortController.signal,\n\t\t\t\t\tthis.thinkingLevel,\n\t\t\t\t\tthis.agent.streamFn,\n\t\t\t\t);\n\t\t\t\tsummary = result.summary;\n\t\t\t\tfirstKeptEntryId = result.firstKeptEntryId;\n\t\t\t\ttokensBefore = result.tokensBefore;\n\t\t\t\tdetails = result.details;\n\t\t\t}\n\n\t\t\tif (this._compactionAbortController.signal.aborted) {\n\t\t\t\tthrow new Error(\"Compaction cancelled\");\n\t\t\t}\n\n\t\t\tthis.sessionManager.appendCompaction(summary, firstKeptEntryId, tokensBefore, details, fromExtension);\n\t\t\tconst newEntries = this.sessionManager.getEntries();\n\t\t\tconst sessionContext = this.sessionManager.buildSessionContext();\n\t\t\tthis.agent.state.messages = sessionContext.messages;\n\n\t\t\t// Get the saved compaction entry for the extension event\n\t\t\tconst savedCompactionEntry = newEntries.find((e) => e.type === \"compaction\" && e.summary === summary) as\n\t\t\t\t| CompactionEntry\n\t\t\t\t| undefined;\n\n\t\t\tif (this._extensionRunner && savedCompactionEntry) {\n\t\t\t\tawait this._extensionRunner.emit({\n\t\t\t\t\ttype: \"session_compact\",\n\t\t\t\t\tcompactionEntry: savedCompactionEntry,\n\t\t\t\t\tfromExtension,\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tconst compactionResult = {\n\t\t\t\tsummary,\n\t\t\t\tfirstKeptEntryId,\n\t\t\t\ttokensBefore,\n\t\t\t\tdetails,\n\t\t\t};\n\t\t\tthis._emit({\n\t\t\t\ttype: \"compaction_end\",\n\t\t\t\treason: \"manual\",\n\t\t\t\tresult: compactionResult,\n\t\t\t\taborted: false,\n\t\t\t\twillRetry: false,\n\t\t\t});\n\t\t\treturn compactionResult;\n\t\t} catch (error) {\n\t\t\tconst message = error instanceof Error ? error.message : String(error);\n\t\t\tconst aborted = message === \"Compaction cancelled\" || (error instanceof Error && error.name === \"AbortError\");\n\t\t\tthis._emit({\n\t\t\t\ttype: \"compaction_end\",\n\t\t\t\treason: \"manual\",\n\t\t\t\tresult: undefined,\n\t\t\t\taborted,\n\t\t\t\twillRetry: false,\n\t\t\t\terrorMessage: aborted ? undefined : `Compaction failed: ${message}`,\n\t\t\t});\n\t\t\tthrow error;\n\t\t} finally {\n\t\t\tthis._compactionAbortController = undefined;\n\t\t\tthis._reconnectToAgent();\n\t\t}\n\t}\n\n\t/**\n\t * Cancel in-progress compaction (manual or auto).\n\t */\n\tabortCompaction(): void {\n\t\tthis._compactionAbortController?.abort();\n\t\tthis._autoCompactionAbortController?.abort();\n\t}\n\n\t/**\n\t * Cancel in-progress branch summarization.\n\t */\n\tabortBranchSummary(): void {\n\t\tthis._branchSummaryAbortController?.abort();\n\t}\n\n\t/**\n\t * Check if compaction is needed and run it.\n\t * Called after agent_end and before prompt submission.\n\t *\n\t * Two cases:\n\t * 1. Overflow: LLM returned context overflow error, remove error message from agent state, compact, auto-retry\n\t * 2. Threshold: Context over threshold, compact, NO auto-retry (user continues manually)\n\t *\n\t * @param assistantMessage The assistant message to check\n\t * @param skipAbortedCheck If false, include aborted messages (for pre-prompt check). Default: true\n\t */\n\tprivate async _checkCompaction(assistantMessage: AssistantMessage, skipAbortedCheck = true): Promise<void> {\n\t\tconst settings = this.settingsManager.getCompactionSettings();\n\t\tif (!settings.enabled) return;\n\n\t\t// Skip if message was aborted (user cancelled) - unless skipAbortedCheck is false\n\t\tif (skipAbortedCheck && assistantMessage.stopReason === \"aborted\") return;\n\n\t\tconst contextWindow = this.model?.contextWindow ?? 0;\n\n\t\t// Skip overflow check if the message came from a different model.\n\t\t// This handles the case where user switched from a smaller-context model (e.g. opus)\n\t\t// to a larger-context model (e.g. codex) - the overflow error from the old model\n\t\t// shouldn't trigger compaction for the new model.\n\t\tconst sameModel =\n\t\t\tthis.model && assistantMessage.provider === this.model.provider && assistantMessage.model === this.model.id;\n\n\t\t// Skip compaction checks if this assistant message is older than the latest\n\t\t// compaction boundary. This prevents a stale pre-compaction usage/error\n\t\t// from retriggering compaction on the first prompt after compaction.\n\t\tconst compactionEntry = getLatestCompactionEntry(this.sessionManager.getBranch());\n\t\tconst assistantIsFromBeforeCompaction =\n\t\t\tcompactionEntry !== null && assistantMessage.timestamp <= new Date(compactionEntry.timestamp).getTime();\n\t\tif (assistantIsFromBeforeCompaction) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Case 1: Overflow - LLM returned context overflow error\n\t\tif (sameModel && isContextOverflow(assistantMessage, contextWindow)) {\n\t\t\tif (this._overflowRecoveryAttempted) {\n\t\t\t\tthis._emit({\n\t\t\t\t\ttype: \"compaction_end\",\n\t\t\t\t\treason: \"overflow\",\n\t\t\t\t\tresult: undefined,\n\t\t\t\t\taborted: false,\n\t\t\t\t\twillRetry: false,\n\t\t\t\t\terrorMessage:\n\t\t\t\t\t\t\"Context overflow recovery failed after one compact-and-retry attempt. Try reducing context or switching to a larger-context model.\",\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis._overflowRecoveryAttempted = true;\n\t\t\t// Remove the error message from agent state (it IS saved to session for history,\n\t\t\t// but we don't want it in context for the retry)\n\t\t\tconst messages = this.agent.state.messages;\n\t\t\tif (messages.length > 0 && messages[messages.length - 1].role === \"assistant\") {\n\t\t\t\tthis.agent.state.messages = messages.slice(0, -1);\n\t\t\t}\n\t\t\tawait this._runAutoCompaction(\"overflow\", true);\n\t\t\treturn;\n\t\t}\n\n\t\t// Case 2: Threshold - context is getting large\n\t\t// For error messages (no usage data), estimate from last successful response.\n\t\t// This ensures sessions that hit persistent API errors (e.g. 529) can still compact.\n\t\tlet contextTokens: number;\n\t\tif (assistantMessage.stopReason === \"error\") {\n\t\t\tconst messages = this.agent.state.messages;\n\t\t\tconst estimate = estimateContextTokens(messages);\n\t\t\tif (estimate.lastUsageIndex === null) return; // No usage data at all\n\t\t\t// Verify the usage source is post-compaction. Kept pre-compaction messages\n\t\t\t// have stale usage reflecting the old (larger) context and would falsely\n\t\t\t// trigger compaction right after one just finished.\n\t\t\tconst usageMsg = messages[estimate.lastUsageIndex];\n\t\t\tif (\n\t\t\t\tcompactionEntry &&\n\t\t\t\tusageMsg.role === \"assistant\" &&\n\t\t\t\t(usageMsg as AssistantMessage).timestamp <= new Date(compactionEntry.timestamp).getTime()\n\t\t\t) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tcontextTokens = estimate.tokens;\n\t\t} else {\n\t\t\tcontextTokens = calculateContextTokens(assistantMessage.usage);\n\t\t}\n\t\tif (shouldCompact(contextTokens, contextWindow, settings)) {\n\t\t\tawait this._runAutoCompaction(\"threshold\", false);\n\t\t}\n\t}\n\n\t/**\n\t * Internal: Run auto-compaction with events.\n\t */\n\tprivate async _runAutoCompaction(reason: \"overflow\" | \"threshold\", willRetry: boolean): Promise<void> {\n\t\tconst settings = this.settingsManager.getCompactionSettings();\n\n\t\tthis._emit({ type: \"compaction_start\", reason });\n\t\tthis._autoCompactionAbortController = new AbortController();\n\n\t\ttry {\n\t\t\tif (!this.model) {\n\t\t\t\tthis._emit({\n\t\t\t\t\ttype: \"compaction_end\",\n\t\t\t\t\treason,\n\t\t\t\t\tresult: undefined,\n\t\t\t\t\taborted: false,\n\t\t\t\t\twillRetry: false,\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlet apiKey: string | undefined;\n\t\t\tlet headers: Record<string, string> | undefined;\n\t\t\tif (this.agent.streamFn === streamSimple) {\n\t\t\t\tconst authResult = await this._modelRegistry.getApiKeyAndHeaders(this.model);\n\t\t\t\tif (!authResult.ok || !authResult.apiKey) {\n\t\t\t\t\tthis._emit({\n\t\t\t\t\t\ttype: \"compaction_end\",\n\t\t\t\t\t\treason,\n\t\t\t\t\t\tresult: undefined,\n\t\t\t\t\t\taborted: false,\n\t\t\t\t\t\twillRetry: false,\n\t\t\t\t\t});\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tapiKey = authResult.apiKey;\n\t\t\t\theaders = authResult.headers;\n\t\t\t} else {\n\t\t\t\t({ apiKey, headers } = await this._getCompactionRequestAuth(this.model));\n\t\t\t}\n\n\t\t\tconst pathEntries = this.sessionManager.getBranch();\n\n\t\t\tconst preparation = prepareCompaction(pathEntries, settings);\n\t\t\tif (!preparation) {\n\t\t\t\tthis._emit({\n\t\t\t\t\ttype: \"compaction_end\",\n\t\t\t\t\treason,\n\t\t\t\t\tresult: undefined,\n\t\t\t\t\taborted: false,\n\t\t\t\t\twillRetry: false,\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlet extensionCompaction: CompactionResult | undefined;\n\t\t\tlet fromExtension = false;\n\n\t\t\tif (this._extensionRunner.hasHandlers(\"session_before_compact\")) {\n\t\t\t\tconst extensionResult = (await this._extensionRunner.emit({\n\t\t\t\t\ttype: \"session_before_compact\",\n\t\t\t\t\tpreparation,\n\t\t\t\t\tbranchEntries: pathEntries,\n\t\t\t\t\tcustomInstructions: undefined,\n\t\t\t\t\tsignal: this._autoCompactionAbortController.signal,\n\t\t\t\t})) as SessionBeforeCompactResult | undefined;\n\n\t\t\t\tif (extensionResult?.cancel) {\n\t\t\t\t\tthis._emit({\n\t\t\t\t\t\ttype: \"compaction_end\",\n\t\t\t\t\t\treason,\n\t\t\t\t\t\tresult: undefined,\n\t\t\t\t\t\taborted: true,\n\t\t\t\t\t\twillRetry: false,\n\t\t\t\t\t});\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (extensionResult?.compaction) {\n\t\t\t\t\textensionCompaction = extensionResult.compaction;\n\t\t\t\t\tfromExtension = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlet summary: string;\n\t\t\tlet firstKeptEntryId: string;\n\t\t\tlet tokensBefore: number;\n\t\t\tlet details: unknown;\n\n\t\t\tif (extensionCompaction) {\n\t\t\t\t// Extension provided compaction content\n\t\t\t\tsummary = extensionCompaction.summary;\n\t\t\t\tfirstKeptEntryId = extensionCompaction.firstKeptEntryId;\n\t\t\t\ttokensBefore = extensionCompaction.tokensBefore;\n\t\t\t\tdetails = extensionCompaction.details;\n\t\t\t} else {\n\t\t\t\t// Generate compaction result\n\t\t\t\tconst compactResult = await compact(\n\t\t\t\t\tpreparation,\n\t\t\t\t\tthis.model,\n\t\t\t\t\tapiKey,\n\t\t\t\t\theaders,\n\t\t\t\t\tundefined,\n\t\t\t\t\tthis._autoCompactionAbortController.signal,\n\t\t\t\t\tthis.thinkingLevel,\n\t\t\t\t\tthis.agent.streamFn,\n\t\t\t\t);\n\t\t\t\tsummary = compactResult.summary;\n\t\t\t\tfirstKeptEntryId = compactResult.firstKeptEntryId;\n\t\t\t\ttokensBefore = compactResult.tokensBefore;\n\t\t\t\tdetails = compactResult.details;\n\t\t\t}\n\n\t\t\tif (this._autoCompactionAbortController.signal.aborted) {\n\t\t\t\tthis._emit({\n\t\t\t\t\ttype: \"compaction_end\",\n\t\t\t\t\treason,\n\t\t\t\t\tresult: undefined,\n\t\t\t\t\taborted: true,\n\t\t\t\t\twillRetry: false,\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis.sessionManager.appendCompaction(summary, firstKeptEntryId, tokensBefore, details, fromExtension);\n\t\t\tconst newEntries = this.sessionManager.getEntries();\n\t\t\tconst sessionContext = this.sessionManager.buildSessionContext();\n\t\t\tthis.agent.state.messages = sessionContext.messages;\n\n\t\t\t// Get the saved compaction entry for the extension event\n\t\t\tconst savedCompactionEntry = newEntries.find((e) => e.type === \"compaction\" && e.summary === summary) as\n\t\t\t\t| CompactionEntry\n\t\t\t\t| undefined;\n\n\t\t\tif (this._extensionRunner && savedCompactionEntry) {\n\t\t\t\tawait this._extensionRunner.emit({\n\t\t\t\t\ttype: \"session_compact\",\n\t\t\t\t\tcompactionEntry: savedCompactionEntry,\n\t\t\t\t\tfromExtension,\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tconst result: CompactionResult = {\n\t\t\t\tsummary,\n\t\t\t\tfirstKeptEntryId,\n\t\t\t\ttokensBefore,\n\t\t\t\tdetails,\n\t\t\t};\n\t\t\tthis._emit({ type: \"compaction_end\", reason, result, aborted: false, willRetry });\n\n\t\t\tif (willRetry) {\n\t\t\t\tconst messages = this.agent.state.messages;\n\t\t\t\tconst lastMsg = messages[messages.length - 1];\n\t\t\t\tif (lastMsg?.role === \"assistant\" && (lastMsg as AssistantMessage).stopReason === \"error\") {\n\t\t\t\t\tthis.agent.state.messages = messages.slice(0, -1);\n\t\t\t\t}\n\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tthis.agent.continue().catch(() => {});\n\t\t\t\t}, 100);\n\t\t\t} else if (this.agent.hasQueuedMessages()) {\n\t\t\t\t// Auto-compaction can complete while follow-up/steering/custom messages are waiting.\n\t\t\t\t// Kick the loop so queued messages are actually delivered.\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tthis.agent.continue().catch(() => {});\n\t\t\t\t}, 100);\n\t\t\t}\n\t\t} catch (error) {\n\t\t\tconst errorMessage = error instanceof Error ? error.message : \"compaction failed\";\n\t\t\tthis._emit({\n\t\t\t\ttype: \"compaction_end\",\n\t\t\t\treason,\n\t\t\t\tresult: undefined,\n\t\t\t\taborted: false,\n\t\t\t\twillRetry: false,\n\t\t\t\terrorMessage:\n\t\t\t\t\treason === \"overflow\"\n\t\t\t\t\t\t? `Context overflow recovery failed: ${errorMessage}`\n\t\t\t\t\t\t: `Auto-compaction failed: ${errorMessage}`,\n\t\t\t});\n\t\t} finally {\n\t\t\tthis._autoCompactionAbortController = undefined;\n\t\t}\n\t}\n\n\t/**\n\t * Toggle auto-compaction setting.\n\t */\n\tsetAutoCompactionEnabled(enabled: boolean): void {\n\t\tthis.settingsManager.setCompactionEnabled(enabled);\n\t}\n\n\t/** Whether auto-compaction is enabled */\n\tget autoCompactionEnabled(): boolean {\n\t\treturn this.settingsManager.getCompactionEnabled();\n\t}\n\n\tasync bindExtensions(bindings: ExtensionBindings): Promise<void> {\n\t\tif (bindings.uiContext !== undefined) {\n\t\t\tthis._extensionUIContext = bindings.uiContext;\n\t\t}\n\t\tif (bindings.commandContextActions !== undefined) {\n\t\t\tthis._extensionCommandContextActions = bindings.commandContextActions;\n\t\t}\n\t\tif (bindings.shutdownHandler !== undefined) {\n\t\t\tthis._extensionShutdownHandler = bindings.shutdownHandler;\n\t\t}\n\t\tif (bindings.onError !== undefined) {\n\t\t\tthis._extensionErrorListener = bindings.onError;\n\t\t}\n\n\t\tthis._applyExtensionBindings(this._extensionRunner);\n\t\tawait this._extensionRunner.emit(this._sessionStartEvent);\n\t\tawait this.extendResourcesFromExtensions(this._sessionStartEvent.reason === \"reload\" ? \"reload\" : \"startup\");\n\t}\n\n\tprivate async extendResourcesFromExtensions(reason: \"startup\" | \"reload\"): Promise<void> {\n\t\tif (!this._extensionRunner.hasHandlers(\"resources_discover\")) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { skillPaths, promptPaths, themePaths } = await this._extensionRunner.emitResourcesDiscover(\n\t\t\tthis._cwd,\n\t\t\treason,\n\t\t);\n\n\t\tif (skillPaths.length === 0 && promptPaths.length === 0 && themePaths.length === 0) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst extensionPaths: ResourceExtensionPaths = {\n\t\t\tskillPaths: this.buildExtensionResourcePaths(skillPaths),\n\t\t\tpromptPaths: this.buildExtensionResourcePaths(promptPaths),\n\t\t\tthemePaths: this.buildExtensionResourcePaths(themePaths),\n\t\t};\n\n\t\tthis._resourceLoader.extendResources(extensionPaths);\n\t\tthis._baseSystemPrompt = this._rebuildSystemPrompt(this.getActiveToolNames());\n\t\tthis.agent.state.systemPrompt = this._baseSystemPrompt;\n\t}\n\n\tprivate buildExtensionResourcePaths(entries: Array<{ path: string; extensionPath: string }>): Array<{\n\t\tpath: string;\n\t\tmetadata: { source: string; scope: \"temporary\"; origin: \"top-level\"; baseDir?: string };\n\t}> {\n\t\treturn entries.map((entry) => {\n\t\t\tconst source = this.getExtensionSourceLabel(entry.extensionPath);\n\t\t\tconst baseDir = entry.extensionPath.startsWith(\"<\") ? undefined : dirname(entry.extensionPath);\n\t\t\treturn {\n\t\t\t\tpath: entry.path,\n\t\t\t\tmetadata: {\n\t\t\t\t\tsource,\n\t\t\t\t\tscope: \"temporary\",\n\t\t\t\t\torigin: \"top-level\",\n\t\t\t\t\tbaseDir,\n\t\t\t\t},\n\t\t\t};\n\t\t});\n\t}\n\n\tprivate getExtensionSourceLabel(extensionPath: string): string {\n\t\tif (extensionPath.startsWith(\"<\")) {\n\t\t\treturn `extension:${extensionPath.replace(/[<>]/g, \"\")}`;\n\t\t}\n\t\tconst base = basename(extensionPath);\n\t\tconst name = base.replace(/\\.(ts|js)$/, \"\");\n\t\treturn `extension:${name}`;\n\t}\n\n\tprivate _applyExtensionBindings(runner: ExtensionRunner): void {\n\t\trunner.setUIContext(this._extensionUIContext);\n\t\trunner.bindCommandContext(this._extensionCommandContextActions);\n\n\t\tthis._extensionErrorUnsubscriber?.();\n\t\tthis._extensionErrorUnsubscriber = this._extensionErrorListener\n\t\t\t? runner.onError(this._extensionErrorListener)\n\t\t\t: undefined;\n\t}\n\n\tprivate _refreshCurrentModelFromRegistry(): void {\n\t\tconst currentModel = this.model;\n\t\tif (!currentModel) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst refreshedModel = this._modelRegistry.find(currentModel.provider, currentModel.id);\n\t\tif (!refreshedModel || refreshedModel === currentModel) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.agent.state.model = refreshedModel;\n\t}\n\n\tprivate _bindExtensionCore(runner: ExtensionRunner): void {\n\t\tconst getCommands = (): SlashCommandInfo[] => {\n\t\t\tconst extensionCommands: SlashCommandInfo[] = runner.getRegisteredCommands().map((command) => ({\n\t\t\t\tname: command.invocationName,\n\t\t\t\tdescription: command.description,\n\t\t\t\tsource: \"extension\",\n\t\t\t\tsourceInfo: command.sourceInfo,\n\t\t\t}));\n\n\t\t\tconst templates: SlashCommandInfo[] = this.promptTemplates.map((template) => ({\n\t\t\t\tname: template.name,\n\t\t\t\tdescription: template.description,\n\t\t\t\tsource: \"prompt\",\n\t\t\t\tsourceInfo: template.sourceInfo,\n\t\t\t}));\n\n\t\t\tconst skills: SlashCommandInfo[] = this._resourceLoader.getSkills().skills.map((skill) => ({\n\t\t\t\tname: `skill:${skill.name}`,\n\t\t\t\tdescription: skill.description,\n\t\t\t\tsource: \"skill\",\n\t\t\t\tsourceInfo: skill.sourceInfo,\n\t\t\t}));\n\n\t\t\treturn [...extensionCommands, ...templates, ...skills];\n\t\t};\n\n\t\trunner.bindCore(\n\t\t\t{\n\t\t\t\tsendMessage: (message, options) => {\n\t\t\t\t\tthis.sendCustomMessage(message, options).catch((err) => {\n\t\t\t\t\t\trunner.emitError({\n\t\t\t\t\t\t\textensionPath: \"<runtime>\",\n\t\t\t\t\t\t\tevent: \"send_message\",\n\t\t\t\t\t\t\terror: err instanceof Error ? err.message : String(err),\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t},\n\t\t\t\tsendUserMessage: (content, options) => {\n\t\t\t\t\tthis.sendUserMessage(content, options).catch((err) => {\n\t\t\t\t\t\trunner.emitError({\n\t\t\t\t\t\t\textensionPath: \"<runtime>\",\n\t\t\t\t\t\t\tevent: \"send_user_message\",\n\t\t\t\t\t\t\terror: err instanceof Error ? err.message : String(err),\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t},\n\t\t\t\tappendEntry: (customType, data) => {\n\t\t\t\t\tthis.sessionManager.appendCustomEntry(customType, data);\n\t\t\t\t},\n\t\t\t\tsetSessionName: (name) => {\n\t\t\t\t\tthis.setSessionName(name);\n\t\t\t\t},\n\t\t\t\tgetSessionName: () => {\n\t\t\t\t\treturn this.sessionManager.getSessionName();\n\t\t\t\t},\n\t\t\t\tsetLabel: (entryId, label) => {\n\t\t\t\t\tthis.sessionManager.appendLabelChange(entryId, label);\n\t\t\t\t},\n\t\t\t\tgetActiveTools: () => this.getActiveToolNames(),\n\t\t\t\tgetAllTools: () => this.getAllTools(),\n\t\t\t\tsetActiveTools: (toolNames) => this.setActiveToolsByName(toolNames),\n\t\t\t\trefreshTools: () => this._refreshToolRegistry(),\n\t\t\t\tgetCommands,\n\t\t\t\tsetModel: async (model) => {\n\t\t\t\t\tif (!this.modelRegistry.hasConfiguredAuth(model)) return false;\n\t\t\t\t\tawait this.setModel(model);\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\t\t\t\tgetThinkingLevel: () => this.thinkingLevel,\n\t\t\t\tsetThinkingLevel: (level) => this.setThinkingLevel(level),\n\t\t\t},\n\t\t\t{\n\t\t\t\tgetModel: () => this.model,\n\t\t\t\tisIdle: () => !this.isStreaming,\n\t\t\t\tgetSignal: () => this.agent.signal,\n\t\t\t\tabort: () => this.abort(),\n\t\t\t\thasPendingMessages: () => this.pendingMessageCount > 0,\n\t\t\t\tshutdown: () => {\n\t\t\t\t\tthis._extensionShutdownHandler?.();\n\t\t\t\t},\n\t\t\t\tgetContextUsage: () => this.getContextUsage(),\n\t\t\t\tcompact: (options) => {\n\t\t\t\t\tvoid (async () => {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tconst result = await this.compact(options?.customInstructions);\n\t\t\t\t\t\t\toptions?.onComplete?.(result);\n\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\tconst err = error instanceof Error ? error : new Error(String(error));\n\t\t\t\t\t\t\toptions?.onError?.(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t})();\n\t\t\t\t},\n\t\t\t\tgetSystemPrompt: () => this.systemPrompt,\n\t\t\t},\n\t\t\t{\n\t\t\t\tregisterProvider: (name, config) => {\n\t\t\t\t\tthis._modelRegistry.registerProvider(name, config);\n\t\t\t\t\tthis._refreshCurrentModelFromRegistry();\n\t\t\t\t},\n\t\t\t\tunregisterProvider: (name) => {\n\t\t\t\t\tthis._modelRegistry.unregisterProvider(name);\n\t\t\t\t\tthis._refreshCurrentModelFromRegistry();\n\t\t\t\t},\n\t\t\t},\n\t\t);\n\t}\n\n\tprivate _refreshToolRegistry(options?: { activeToolNames?: string[]; includeAllExtensionTools?: boolean }): void {\n\t\tconst previousRegistryNames = new Set(this._toolRegistry.keys());\n\t\tconst previousActiveToolNames = this.getActiveToolNames();\n\t\tconst allowedToolNames = this._allowedToolNames;\n\t\tconst isAllowedTool = (name: string): boolean => !allowedToolNames || allowedToolNames.has(name);\n\n\t\tconst registeredTools = this._extensionRunner.getAllRegisteredTools();\n\t\tconst allCustomTools = [\n\t\t\t...registeredTools,\n\t\t\t...this._customTools.map((definition) => ({\n\t\t\t\tdefinition,\n\t\t\t\tsourceInfo: createSyntheticSourceInfo(`<sdk:${definition.name}>`, { source: \"sdk\" }),\n\t\t\t})),\n\t\t].filter((tool) => isAllowedTool(tool.definition.name));\n\t\tconst definitionRegistry = new Map<string, ToolDefinitionEntry>(\n\t\t\tArray.from(this._baseToolDefinitions.entries())\n\t\t\t\t.filter(([name]) => isAllowedTool(name))\n\t\t\t\t.map(([name, definition]) => [\n\t\t\t\t\tname,\n\t\t\t\t\t{\n\t\t\t\t\t\tdefinition,\n\t\t\t\t\t\tsourceInfo: createSyntheticSourceInfo(`<builtin:${name}>`, { source: \"builtin\" }),\n\t\t\t\t\t},\n\t\t\t\t]),\n\t\t);\n\t\tfor (const tool of allCustomTools) {\n\t\t\tdefinitionRegistry.set(tool.definition.name, {\n\t\t\t\tdefinition: tool.definition,\n\t\t\t\tsourceInfo: tool.sourceInfo,\n\t\t\t});\n\t\t}\n\t\tthis._toolDefinitions = definitionRegistry;\n\t\tthis._toolPromptSnippets = new Map(\n\t\t\tArray.from(definitionRegistry.values())\n\t\t\t\t.map(({ definition }) => {\n\t\t\t\t\tconst snippet = this._normalizePromptSnippet(definition.promptSnippet);\n\t\t\t\t\treturn snippet ? ([definition.name, snippet] as const) : undefined;\n\t\t\t\t})\n\t\t\t\t.filter((entry): entry is readonly [string, string] => entry !== undefined),\n\t\t);\n\t\tthis._toolPromptGuidelines = new Map(\n\t\t\tArray.from(definitionRegistry.values())\n\t\t\t\t.map(({ definition }) => {\n\t\t\t\t\tconst guidelines = this._normalizePromptGuidelines(definition.promptGuidelines);\n\t\t\t\t\treturn guidelines.length > 0 ? ([definition.name, guidelines] as const) : undefined;\n\t\t\t\t})\n\t\t\t\t.filter((entry): entry is readonly [string, string[]] => entry !== undefined),\n\t\t);\n\t\tconst runner = this._extensionRunner;\n\t\tconst wrappedExtensionTools = wrapRegisteredTools(allCustomTools, runner);\n\t\tconst wrappedBuiltInTools = wrapRegisteredTools(\n\t\t\tArray.from(this._baseToolDefinitions.values())\n\t\t\t\t.filter((definition) => isAllowedTool(definition.name))\n\t\t\t\t.map((definition) => ({\n\t\t\t\t\tdefinition,\n\t\t\t\t\tsourceInfo: createSyntheticSourceInfo(`<builtin:${definition.name}>`, { source: \"builtin\" }),\n\t\t\t\t})),\n\t\t\trunner,\n\t\t);\n\n\t\tconst toolRegistry = new Map(wrappedBuiltInTools.map((tool) => [tool.name, tool]));\n\t\tfor (const tool of wrappedExtensionTools as AgentTool[]) {\n\t\t\ttoolRegistry.set(tool.name, tool);\n\t\t}\n\t\tthis._toolRegistry = toolRegistry;\n\n\t\tconst nextActiveToolNames = (\n\t\t\toptions?.activeToolNames ? [...options.activeToolNames] : [...previousActiveToolNames]\n\t\t).filter((name) => isAllowedTool(name));\n\n\t\tif (allowedToolNames) {\n\t\t\tfor (const toolName of this._toolRegistry.keys()) {\n\t\t\t\tif (allowedToolNames.has(toolName)) {\n\t\t\t\t\tnextActiveToolNames.push(toolName);\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (options?.includeAllExtensionTools) {\n\t\t\tfor (const tool of wrappedExtensionTools) {\n\t\t\t\tnextActiveToolNames.push(tool.name);\n\t\t\t}\n\t\t} else if (!options?.activeToolNames) {\n\t\t\tfor (const toolName of this._toolRegistry.keys()) {\n\t\t\t\tif (!previousRegistryNames.has(toolName)) {\n\t\t\t\t\tnextActiveToolNames.push(toolName);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.setActiveToolsByName([...new Set(nextActiveToolNames)]);\n\t}\n\n\tprivate _buildRuntime(options: {\n\t\tactiveToolNames?: string[];\n\t\tflagValues?: Map<string, boolean | string>;\n\t\tincludeAllExtensionTools?: boolean;\n\t}): void {\n\t\tconst autoResizeImages = this.settingsManager.getImageAutoResize();\n\t\tconst shellCommandPrefix = this.settingsManager.getShellCommandPrefix();\n\t\tconst shellPath = this.settingsManager.getShellPath();\n\t\tconst baseToolDefinitions = this._baseToolsOverride\n\t\t\t? Object.fromEntries(\n\t\t\t\t\tObject.entries(this._baseToolsOverride).map(([name, tool]) => [\n\t\t\t\t\t\tname,\n\t\t\t\t\t\tcreateToolDefinitionFromAgentTool(tool),\n\t\t\t\t\t]),\n\t\t\t\t)\n\t\t\t: createAllToolDefinitions(this._cwd, {\n\t\t\t\t\tread: { autoResizeImages },\n\t\t\t\t\tbash: { commandPrefix: shellCommandPrefix, shellPath },\n\t\t\t\t});\n\n\t\tthis._baseToolDefinitions = new Map(\n\t\t\tObject.entries(baseToolDefinitions).map(([name, tool]) => [name, tool as ToolDefinition]),\n\t\t);\n\n\t\tconst extensionsResult = this._resourceLoader.getExtensions();\n\t\tif (options.flagValues) {\n\t\t\tfor (const [name, value] of options.flagValues) {\n\t\t\t\textensionsResult.runtime.flagValues.set(name, value);\n\t\t\t}\n\t\t}\n\n\t\tthis._extensionRunner = new ExtensionRunner(\n\t\t\textensionsResult.extensions,\n\t\t\textensionsResult.runtime,\n\t\t\tthis._cwd,\n\t\t\tthis.sessionManager,\n\t\t\tthis._modelRegistry,\n\t\t);\n\t\tif (this._extensionRunnerRef) {\n\t\t\tthis._extensionRunnerRef.current = this._extensionRunner;\n\t\t}\n\t\tthis._bindExtensionCore(this._extensionRunner);\n\t\tthis._applyExtensionBindings(this._extensionRunner);\n\n\t\tconst defaultActiveToolNames = this._baseToolsOverride\n\t\t\t? Object.keys(this._baseToolsOverride)\n\t\t\t: [\"read\", \"bash\", \"edit\", \"write\"];\n\t\tconst baseActiveToolNames = options.activeToolNames ?? defaultActiveToolNames;\n\t\tthis._refreshToolRegistry({\n\t\t\tactiveToolNames: baseActiveToolNames,\n\t\t\tincludeAllExtensionTools: options.includeAllExtensionTools,\n\t\t});\n\t}\n\n\tasync reload(): Promise<void> {\n\t\tconst previousFlagValues = this._extensionRunner.getFlagValues();\n\t\tawait emitSessionShutdownEvent(this._extensionRunner, { type: \"session_shutdown\", reason: \"reload\" });\n\t\tawait this.settingsManager.reload();\n\t\tresetApiProviders();\n\t\tawait this._resourceLoader.reload();\n\t\tthis._buildRuntime({\n\t\t\tactiveToolNames: this.getActiveToolNames(),\n\t\t\tflagValues: previousFlagValues,\n\t\t\tincludeAllExtensionTools: true,\n\t\t});\n\n\t\tconst hasBindings =\n\t\t\tthis._extensionUIContext ||\n\t\t\tthis._extensionCommandContextActions ||\n\t\t\tthis._extensionShutdownHandler ||\n\t\t\tthis._extensionErrorListener;\n\t\tif (hasBindings) {\n\t\t\tawait this._extensionRunner.emit({ type: \"session_start\", reason: \"reload\" });\n\t\t\tawait this.extendResourcesFromExtensions(\"reload\");\n\t\t}\n\t}\n\n\t// =========================================================================\n\t// Auto-Retry\n\t// =========================================================================\n\n\t/**\n\t * Check if an error is retryable (overloaded, rate limit, server errors).\n\t * Context overflow errors are NOT retryable (handled by compaction instead).\n\t */\n\tprivate _isRetryableError(message: AssistantMessage): boolean {\n\t\tif (message.stopReason !== \"error\" || !message.errorMessage) return false;\n\n\t\t// Context overflow is handled by compaction, not retry\n\t\tconst contextWindow = this.model?.contextWindow ?? 0;\n\t\tif (isContextOverflow(message, contextWindow)) return false;\n\n\t\tconst err = message.errorMessage;\n\t\t// Match: overloaded_error, provider returned error, rate limit, 429, 500, 502, 503, 504, service unavailable, network/connection errors (including connection lost), WebSocket transport closes/errors, fetch failed, premature stream endings, HTTP/2 closed before response, terminated, retry delay exceeded\n\t\treturn /overloaded|provider.?returned.?error|rate.?limit|too many requests|429|500|502|503|504|service.?unavailable|server.?error|internal.?error|network.?error|connection.?error|connection.?refused|connection.?lost|websocket.?closed|websocket.?error|other side closed|fetch failed|upstream.?connect|reset before headers|socket hang up|ended without|stream ended before message_stop|http2 request did not get a response|timed? out|timeout|terminated|retry delay/i.test(\n\t\t\terr,\n\t\t);\n\t}\n\n\t/**\n\t * Handle retryable errors with exponential backoff.\n\t * @returns true if retry was initiated, false if max retries exceeded or disabled\n\t */\n\tprivate async _handleRetryableError(message: AssistantMessage): Promise<boolean> {\n\t\tconst settings = this.settingsManager.getRetrySettings();\n\t\tif (!settings.enabled) {\n\t\t\tthis._resolveRetry();\n\t\t\treturn false;\n\t\t}\n\n\t\t// Retry promise is created synchronously in _handleAgentEvent for agent_end.\n\t\t// Keep a defensive fallback here in case a future refactor bypasses that path.\n\t\tif (!this._retryPromise) {\n\t\t\tthis._retryPromise = new Promise((resolve) => {\n\t\t\t\tthis._retryResolve = resolve;\n\t\t\t});\n\t\t}\n\n\t\tthis._retryAttempt++;\n\n\t\tif (this._retryAttempt > settings.maxRetries) {\n\t\t\t// Max retries exceeded, emit final failure and reset\n\t\t\tthis._emit({\n\t\t\t\ttype: \"auto_retry_end\",\n\t\t\t\tsuccess: false,\n\t\t\t\tattempt: this._retryAttempt - 1,\n\t\t\t\tfinalError: message.errorMessage,\n\t\t\t});\n\t\t\tthis._retryAttempt = 0;\n\t\t\tthis._resolveRetry(); // Resolve so waitForRetry() completes\n\t\t\treturn false;\n\t\t}\n\n\t\tconst delayMs = settings.baseDelayMs * 2 ** (this._retryAttempt - 1);\n\n\t\tthis._emit({\n\t\t\ttype: \"auto_retry_start\",\n\t\t\tattempt: this._retryAttempt,\n\t\t\tmaxAttempts: settings.maxRetries,\n\t\t\tdelayMs,\n\t\t\terrorMessage: message.errorMessage || \"Unknown error\",\n\t\t});\n\n\t\t// Remove error message from agent state (keep in session for history)\n\t\tconst messages = this.agent.state.messages;\n\t\tif (messages.length > 0 && messages[messages.length - 1].role === \"assistant\") {\n\t\t\tthis.agent.state.messages = messages.slice(0, -1);\n\t\t}\n\n\t\t// Wait with exponential backoff (abortable)\n\t\tthis._retryAbortController = new AbortController();\n\t\ttry {\n\t\t\tawait sleep(delayMs, this._retryAbortController.signal);\n\t\t} catch {\n\t\t\t// Aborted during sleep - emit end event so UI can clean up\n\t\t\tconst attempt = this._retryAttempt;\n\t\t\tthis._retryAttempt = 0;\n\t\t\tthis._retryAbortController = undefined;\n\t\t\tthis._emit({\n\t\t\t\ttype: \"auto_retry_end\",\n\t\t\t\tsuccess: false,\n\t\t\t\tattempt,\n\t\t\t\tfinalError: \"Retry cancelled\",\n\t\t\t});\n\t\t\tthis._resolveRetry();\n\t\t\treturn false;\n\t\t}\n\t\tthis._retryAbortController = undefined;\n\n\t\t// Retry via continue() - use setTimeout to break out of event handler chain\n\t\tsetTimeout(() => {\n\t\t\tthis.agent.continue().catch(() => {\n\t\t\t\t// Retry failed - will be caught by next agent_end\n\t\t\t});\n\t\t}, 0);\n\n\t\treturn true;\n\t}\n\n\t/**\n\t * Cancel in-progress retry.\n\t */\n\tabortRetry(): void {\n\t\tthis._retryAbortController?.abort();\n\t\t// Note: _retryAttempt is reset in the catch block of _autoRetry\n\t\tthis._resolveRetry();\n\t}\n\n\t/**\n\t * Wait for any in-progress retry to complete.\n\t * Returns immediately if no retry is in progress.\n\t */\n\tprivate async waitForRetry(): Promise<void> {\n\t\tif (!this._retryPromise) {\n\t\t\treturn;\n\t\t}\n\n\t\tawait this._retryPromise;\n\t\tawait this.agent.waitForIdle();\n\t}\n\n\t/** Whether auto-retry is currently in progress */\n\tget isRetrying(): boolean {\n\t\treturn this._retryPromise !== undefined;\n\t}\n\n\t/** Whether auto-retry is enabled */\n\tget autoRetryEnabled(): boolean {\n\t\treturn this.settingsManager.getRetryEnabled();\n\t}\n\n\t/**\n\t * Toggle auto-retry setting.\n\t */\n\tsetAutoRetryEnabled(enabled: boolean): void {\n\t\tthis.settingsManager.setRetryEnabled(enabled);\n\t}\n\n\t// =========================================================================\n\t// Bash Execution\n\t// =========================================================================\n\n\t/**\n\t * Execute a bash command.\n\t * Adds result to agent context and session.\n\t * @param command The bash command to execute\n\t * @param onChunk Optional streaming callback for output\n\t * @param options.excludeFromContext If true, command output won't be sent to LLM (!! prefix)\n\t * @param options.operations Custom BashOperations for remote execution\n\t */\n\tasync executeBash(\n\t\tcommand: string,\n\t\tonChunk?: (chunk: string) => void,\n\t\toptions?: { excludeFromContext?: boolean; operations?: BashOperations },\n\t): Promise<BashResult> {\n\t\tthis._bashAbortController = new AbortController();\n\n\t\t// Apply command prefix if configured (e.g., \"shopt -s expand_aliases\" for alias support)\n\t\tconst prefix = this.settingsManager.getShellCommandPrefix();\n\t\tconst shellPath = this.settingsManager.getShellPath();\n\t\tconst resolvedCommand = prefix ? `${prefix}\\n${command}` : command;\n\n\t\ttry {\n\t\t\tconst result = await executeBashWithOperations(\n\t\t\t\tresolvedCommand,\n\t\t\t\tthis.sessionManager.getCwd(),\n\t\t\t\toptions?.operations ?? createLocalBashOperations({ shellPath }),\n\t\t\t\t{\n\t\t\t\t\tonChunk,\n\t\t\t\t\tsignal: this._bashAbortController.signal,\n\t\t\t\t},\n\t\t\t);\n\n\t\t\tthis.recordBashResult(command, result, options);\n\t\t\treturn result;\n\t\t} finally {\n\t\t\tthis._bashAbortController = undefined;\n\t\t}\n\t}\n\n\t/**\n\t * Record a bash execution result in session history.\n\t * Used by executeBash and by extensions that handle bash execution themselves.\n\t */\n\trecordBashResult(command: string, result: BashResult, options?: { excludeFromContext?: boolean }): void {\n\t\tconst bashMessage: BashExecutionMessage = {\n\t\t\trole: \"bashExecution\",\n\t\t\tcommand,\n\t\t\toutput: result.output,\n\t\t\texitCode: result.exitCode,\n\t\t\tcancelled: result.cancelled,\n\t\t\ttruncated: result.truncated,\n\t\t\tfullOutputPath: result.fullOutputPath,\n\t\t\ttimestamp: Date.now(),\n\t\t\texcludeFromContext: options?.excludeFromContext,\n\t\t};\n\n\t\t// If agent is streaming, defer adding to avoid breaking tool_use/tool_result ordering\n\t\tif (this.isStreaming) {\n\t\t\t// Queue for later - will be flushed on agent_end\n\t\t\tthis._pendingBashMessages.push(bashMessage);\n\t\t} else {\n\t\t\t// Add to agent state immediately\n\t\t\tthis.agent.state.messages.push(bashMessage);\n\n\t\t\t// Save to session\n\t\t\tthis.sessionManager.appendMessage(bashMessage);\n\t\t}\n\t}\n\n\t/**\n\t * Cancel running bash command.\n\t */\n\tabortBash(): void {\n\t\tthis._bashAbortController?.abort();\n\t}\n\n\t/** Whether a bash command is currently running */\n\tget isBashRunning(): boolean {\n\t\treturn this._bashAbortController !== undefined;\n\t}\n\n\t/** Whether there are pending bash messages waiting to be flushed */\n\tget hasPendingBashMessages(): boolean {\n\t\treturn this._pendingBashMessages.length > 0;\n\t}\n\n\t/**\n\t * Flush pending bash messages to agent state and session.\n\t * Called after agent turn completes to maintain proper message ordering.\n\t */\n\tprivate _flushPendingBashMessages(): void {\n\t\tif (this._pendingBashMessages.length === 0) return;\n\n\t\tfor (const bashMessage of this._pendingBashMessages) {\n\t\t\t// Add to agent state\n\t\t\tthis.agent.state.messages.push(bashMessage);\n\n\t\t\t// Save to session\n\t\t\tthis.sessionManager.appendMessage(bashMessage);\n\t\t}\n\n\t\tthis._pendingBashMessages = [];\n\t}\n\n\t// =========================================================================\n\t// Session Management\n\t// =========================================================================\n\n\t/**\n\t * Set a display name for the current session.\n\t */\n\tsetSessionName(name: string): void {\n\t\tthis.sessionManager.appendSessionInfo(name);\n\t\tthis._emit({ type: \"session_info_changed\", name: this.sessionManager.getSessionName() });\n\t}\n\n\t// =========================================================================\n\t// Tree Navigation\n\t// =========================================================================\n\n\t/**\n\t * Navigate to a different node in the session tree.\n\t * Unlike fork() which creates a new session file, this stays in the same file.\n\t *\n\t * @param targetId The entry ID to navigate to\n\t * @param options.summarize Whether user wants to summarize abandoned branch\n\t * @param options.customInstructions Custom instructions for summarizer\n\t * @param options.replaceInstructions If true, customInstructions replaces the default prompt\n\t * @param options.label Label to attach to the branch summary entry\n\t * @returns Result with editorText (if user message) and cancelled status\n\t */\n\tasync navigateTree(\n\t\ttargetId: string,\n\t\toptions: { summarize?: boolean; customInstructions?: string; replaceInstructions?: boolean; label?: string } = {},\n\t): Promise<{ editorText?: string; cancelled: boolean; aborted?: boolean; summaryEntry?: BranchSummaryEntry }> {\n\t\tconst oldLeafId = this.sessionManager.getLeafId();\n\n\t\t// No-op if already at target\n\t\tif (targetId === oldLeafId) {\n\t\t\treturn { cancelled: false };\n\t\t}\n\n\t\t// Model required for summarization\n\t\tif (options.summarize && !this.model) {\n\t\t\tthrow new Error(\"No model available for summarization\");\n\t\t}\n\n\t\tconst targetEntry = this.sessionManager.getEntry(targetId);\n\t\tif (!targetEntry) {\n\t\t\tthrow new Error(`Entry ${targetId} not found`);\n\t\t}\n\n\t\t// Collect entries to summarize (from old leaf to common ancestor)\n\t\tconst { entries: entriesToSummarize, commonAncestorId } = collectEntriesForBranchSummary(\n\t\t\tthis.sessionManager,\n\t\t\toldLeafId,\n\t\t\ttargetId,\n\t\t);\n\n\t\t// Prepare event data - mutable so extensions can override\n\t\tlet customInstructions = options.customInstructions;\n\t\tlet replaceInstructions = options.replaceInstructions;\n\t\tlet label = options.label;\n\n\t\tconst preparation: TreePreparation = {\n\t\t\ttargetId,\n\t\t\toldLeafId,\n\t\t\tcommonAncestorId,\n\t\t\tentriesToSummarize,\n\t\t\tuserWantsSummary: options.summarize ?? false,\n\t\t\tcustomInstructions,\n\t\t\treplaceInstructions,\n\t\t\tlabel,\n\t\t};\n\n\t\t// Set up abort controller for summarization\n\t\tthis._branchSummaryAbortController = new AbortController();\n\n\t\ttry {\n\t\t\tlet extensionSummary: { summary: string; details?: unknown } | undefined;\n\t\t\tlet fromExtension = false;\n\n\t\t\t// Emit session_before_tree event\n\t\t\tif (this._extensionRunner.hasHandlers(\"session_before_tree\")) {\n\t\t\t\tconst result = (await this._extensionRunner.emit({\n\t\t\t\t\ttype: \"session_before_tree\",\n\t\t\t\t\tpreparation,\n\t\t\t\t\tsignal: this._branchSummaryAbortController.signal,\n\t\t\t\t})) as SessionBeforeTreeResult | undefined;\n\n\t\t\t\tif (result?.cancel) {\n\t\t\t\t\treturn { cancelled: true };\n\t\t\t\t}\n\n\t\t\t\tif (result?.summary && options.summarize) {\n\t\t\t\t\textensionSummary = result.summary;\n\t\t\t\t\tfromExtension = true;\n\t\t\t\t}\n\n\t\t\t\t// Allow extensions to override instructions and label\n\t\t\t\tif (result?.customInstructions !== undefined) {\n\t\t\t\t\tcustomInstructions = result.customInstructions;\n\t\t\t\t}\n\t\t\t\tif (result?.replaceInstructions !== undefined) {\n\t\t\t\t\treplaceInstructions = result.replaceInstructions;\n\t\t\t\t}\n\t\t\t\tif (result?.label !== undefined) {\n\t\t\t\t\tlabel = result.label;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Run default summarizer if needed\n\t\t\tlet summaryText: string | undefined;\n\t\t\tlet summaryDetails: unknown;\n\t\t\tif (options.summarize && entriesToSummarize.length > 0 && !extensionSummary) {\n\t\t\t\tconst model = this.model!;\n\t\t\t\tconst { apiKey, headers } = await this._getRequiredRequestAuth(model);\n\t\t\t\tconst branchSummarySettings = this.settingsManager.getBranchSummarySettings();\n\t\t\t\tconst result = await generateBranchSummary(entriesToSummarize, {\n\t\t\t\t\tmodel,\n\t\t\t\t\tapiKey,\n\t\t\t\t\theaders,\n\t\t\t\t\tsignal: this._branchSummaryAbortController.signal,\n\t\t\t\t\tcustomInstructions,\n\t\t\t\t\treplaceInstructions,\n\t\t\t\t\treserveTokens: branchSummarySettings.reserveTokens,\n\t\t\t\t});\n\t\t\t\tif (result.aborted) {\n\t\t\t\t\treturn { cancelled: true, aborted: true };\n\t\t\t\t}\n\t\t\t\tif (result.error) {\n\t\t\t\t\tthrow new Error(result.error);\n\t\t\t\t}\n\t\t\t\tsummaryText = result.summary;\n\t\t\t\tsummaryDetails = {\n\t\t\t\t\treadFiles: result.readFiles || [],\n\t\t\t\t\tmodifiedFiles: result.modifiedFiles || [],\n\t\t\t\t};\n\t\t\t} else if (extensionSummary) {\n\t\t\t\tsummaryText = extensionSummary.summary;\n\t\t\t\tsummaryDetails = extensionSummary.details;\n\t\t\t}\n\n\t\t\t// Determine the new leaf position based on target type\n\t\t\tlet newLeafId: string | null;\n\t\t\tlet editorText: string | undefined;\n\n\t\t\tif (targetEntry.type === \"message\" && targetEntry.message.role === \"user\") {\n\t\t\t\t// User message: leaf = parent (null if root), text goes to editor\n\t\t\t\tnewLeafId = targetEntry.parentId;\n\t\t\t\teditorText = this._extractUserMessageText(targetEntry.message.content);\n\t\t\t} else if (targetEntry.type === \"custom_message\") {\n\t\t\t\t// Custom message: leaf = parent (null if root), text goes to editor\n\t\t\t\tnewLeafId = targetEntry.parentId;\n\t\t\t\teditorText =\n\t\t\t\t\ttypeof targetEntry.content === \"string\"\n\t\t\t\t\t\t? targetEntry.content\n\t\t\t\t\t\t: targetEntry.content\n\t\t\t\t\t\t\t\t.filter((c): c is { type: \"text\"; text: string } => c.type === \"text\")\n\t\t\t\t\t\t\t\t.map((c) => c.text)\n\t\t\t\t\t\t\t\t.join(\"\");\n\t\t\t} else {\n\t\t\t\t// Non-user message: leaf = selected node\n\t\t\t\tnewLeafId = targetId;\n\t\t\t}\n\n\t\t\t// Switch leaf (with or without summary)\n\t\t\t// Summary is attached at the navigation target position (newLeafId), not the old branch\n\t\t\tlet summaryEntry: BranchSummaryEntry | undefined;\n\t\t\tif (summaryText) {\n\t\t\t\t// Create summary at target position (can be null for root)\n\t\t\t\tconst summaryId = this.sessionManager.branchWithSummary(\n\t\t\t\t\tnewLeafId,\n\t\t\t\t\tsummaryText,\n\t\t\t\t\tsummaryDetails,\n\t\t\t\t\tfromExtension,\n\t\t\t\t);\n\t\t\t\tsummaryEntry = this.sessionManager.getEntry(summaryId) as BranchSummaryEntry;\n\n\t\t\t\t// Attach label to the summary entry\n\t\t\t\tif (label) {\n\t\t\t\t\tthis.sessionManager.appendLabelChange(summaryId, label);\n\t\t\t\t}\n\t\t\t} else if (newLeafId === null) {\n\t\t\t\t// No summary, navigating to root - reset leaf\n\t\t\t\tthis.sessionManager.resetLeaf();\n\t\t\t} else {\n\t\t\t\t// No summary, navigating to non-root\n\t\t\t\tthis.sessionManager.branch(newLeafId);\n\t\t\t}\n\n\t\t\t// Attach label to target entry when not summarizing (no summary entry to label)\n\t\t\tif (label && !summaryText) {\n\t\t\t\tthis.sessionManager.appendLabelChange(targetId, label);\n\t\t\t}\n\n\t\t\t// Update agent state\n\t\t\tconst sessionContext = this.sessionManager.buildSessionContext();\n\t\t\tthis.agent.state.messages = sessionContext.messages;\n\n\t\t\t// Emit session_tree event\n\t\t\tawait this._extensionRunner.emit({\n\t\t\t\ttype: \"session_tree\",\n\t\t\t\tnewLeafId: this.sessionManager.getLeafId(),\n\t\t\t\toldLeafId,\n\t\t\t\tsummaryEntry,\n\t\t\t\tfromExtension: summaryText ? fromExtension : undefined,\n\t\t\t});\n\n\t\t\t// Emit to custom tools\n\n\t\t\treturn { editorText, cancelled: false, summaryEntry };\n\t\t} finally {\n\t\t\tthis._branchSummaryAbortController = undefined;\n\t\t}\n\t}\n\n\t/**\n\t * Get all user messages from session for fork selector.\n\t */\n\tgetUserMessagesForForking(): Array<{ entryId: string; text: string }> {\n\t\tconst entries = this.sessionManager.getEntries();\n\t\tconst result: Array<{ entryId: string; text: string }> = [];\n\n\t\tfor (const entry of entries) {\n\t\t\tif (entry.type !== \"message\") continue;\n\t\t\tif (entry.message.role !== \"user\") continue;\n\n\t\t\tconst text = this._extractUserMessageText(entry.message.content);\n\t\t\tif (text) {\n\t\t\t\tresult.push({ entryId: entry.id, text });\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tprivate _extractUserMessageText(content: string | Array<{ type: string; text?: string }>): string {\n\t\tif (typeof content === \"string\") return content;\n\t\tif (Array.isArray(content)) {\n\t\t\treturn content\n\t\t\t\t.filter((c): c is { type: \"text\"; text: string } => c.type === \"text\")\n\t\t\t\t.map((c) => c.text)\n\t\t\t\t.join(\"\");\n\t\t}\n\t\treturn \"\";\n\t}\n\n\t/**\n\t * Get session statistics.\n\t */\n\tgetSessionStats(): SessionStats {\n\t\tconst state = this.state;\n\t\tconst userMessages = state.messages.filter((m) => m.role === \"user\").length;\n\t\tconst assistantMessages = state.messages.filter((m) => m.role === \"assistant\").length;\n\t\tconst toolResults = state.messages.filter((m) => m.role === \"toolResult\").length;\n\n\t\tlet toolCalls = 0;\n\t\tlet totalInput = 0;\n\t\tlet totalOutput = 0;\n\t\tlet totalCacheRead = 0;\n\t\tlet totalCacheWrite = 0;\n\t\tlet totalCost = 0;\n\n\t\tfor (const message of state.messages) {\n\t\t\tif (message.role === \"assistant\") {\n\t\t\t\tconst assistantMsg = message as AssistantMessage;\n\t\t\t\ttoolCalls += assistantMsg.content.filter((c) => c.type === \"toolCall\").length;\n\t\t\t\ttotalInput += assistantMsg.usage.input;\n\t\t\t\ttotalOutput += assistantMsg.usage.output;\n\t\t\t\ttotalCacheRead += assistantMsg.usage.cacheRead;\n\t\t\t\ttotalCacheWrite += assistantMsg.usage.cacheWrite;\n\t\t\t\ttotalCost += assistantMsg.usage.cost.total;\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\tsessionFile: this.sessionFile,\n\t\t\tsessionId: this.sessionId,\n\t\t\tuserMessages,\n\t\t\tassistantMessages,\n\t\t\ttoolCalls,\n\t\t\ttoolResults,\n\t\t\ttotalMessages: state.messages.length,\n\t\t\ttokens: {\n\t\t\t\tinput: totalInput,\n\t\t\t\toutput: totalOutput,\n\t\t\t\tcacheRead: totalCacheRead,\n\t\t\t\tcacheWrite: totalCacheWrite,\n\t\t\t\ttotal: totalInput + totalOutput + totalCacheRead + totalCacheWrite,\n\t\t\t},\n\t\t\tcost: totalCost,\n\t\t\tcontextUsage: this.getContextUsage(),\n\t\t};\n\t}\n\n\tgetContextUsage(): ContextUsage | undefined {\n\t\tconst model = this.model;\n\t\tif (!model) return undefined;\n\n\t\tconst contextWindow = model.contextWindow ?? 0;\n\t\tif (contextWindow <= 0) return undefined;\n\n\t\t// After compaction, the last assistant usage reflects pre-compaction context size.\n\t\t// We can only trust usage from an assistant that responded after the latest compaction.\n\t\t// If no such assistant exists, context token count is unknown until the next LLM response.\n\t\tconst branchEntries = this.sessionManager.getBranch();\n\t\tconst latestCompaction = getLatestCompactionEntry(branchEntries);\n\n\t\tif (latestCompaction) {\n\t\t\t// Check if there's a valid assistant usage after the compaction boundary\n\t\t\tconst compactionIndex = branchEntries.lastIndexOf(latestCompaction);\n\t\t\tlet hasPostCompactionUsage = false;\n\t\t\tfor (let i = branchEntries.length - 1; i > compactionIndex; i--) {\n\t\t\t\tconst entry = branchEntries[i];\n\t\t\t\tif (entry.type === \"message\" && entry.message.role === \"assistant\") {\n\t\t\t\t\tconst assistant = entry.message;\n\t\t\t\t\tif (assistant.stopReason !== \"aborted\" && assistant.stopReason !== \"error\") {\n\t\t\t\t\t\tconst contextTokens = calculateContextTokens(assistant.usage);\n\t\t\t\t\t\tif (contextTokens > 0) {\n\t\t\t\t\t\t\thasPostCompactionUsage = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!hasPostCompactionUsage) {\n\t\t\t\treturn { tokens: null, contextWindow, percent: null };\n\t\t\t}\n\t\t}\n\n\t\tconst estimate = estimateContextTokens(this.messages);\n\t\tconst percent = (estimate.tokens / contextWindow) * 100;\n\n\t\treturn {\n\t\t\ttokens: estimate.tokens,\n\t\t\tcontextWindow,\n\t\t\tpercent,\n\t\t};\n\t}\n\n\t/**\n\t * Export session to HTML.\n\t * @param outputPath Optional output path (defaults to session directory)\n\t * @returns Path to exported file\n\t */\n\tasync exportToHtml(outputPath?: string): Promise<string> {\n\t\tconst themeName = this.settingsManager.getTheme();\n\n\t\t// Create tool renderer if we have an extension runner (for custom tool HTML rendering)\n\t\tconst toolRenderer: ToolHtmlRenderer = createToolHtmlRenderer({\n\t\t\tgetToolDefinition: (name) => this.getToolDefinition(name),\n\t\t\ttheme,\n\t\t\tcwd: this.sessionManager.getCwd(),\n\t\t});\n\n\t\treturn await exportSessionToHtml(this.sessionManager, this.state, {\n\t\t\toutputPath,\n\t\t\tthemeName,\n\t\t\ttoolRenderer,\n\t\t});\n\t}\n\n\t/**\n\t * Export the current session branch to a JSONL file.\n\t * Writes the session header followed by all entries on the current branch path.\n\t * @param outputPath Target file path. If omitted, generates a timestamped file in cwd.\n\t * @returns The resolved output file path.\n\t */\n\texportToJsonl(outputPath?: string): string {\n\t\tconst filePath = resolve(outputPath ?? `session-${new Date().toISOString().replace(/[:.]/g, \"-\")}.jsonl`);\n\t\tconst dir = dirname(filePath);\n\t\tif (!existsSync(dir)) {\n\t\t\tmkdirSync(dir, { recursive: true });\n\t\t}\n\n\t\tconst header: SessionHeader = {\n\t\t\ttype: \"session\",\n\t\t\tversion: CURRENT_SESSION_VERSION,\n\t\t\tid: this.sessionManager.getSessionId(),\n\t\t\ttimestamp: new Date().toISOString(),\n\t\t\tcwd: this.sessionManager.getCwd(),\n\t\t};\n\n\t\tconst branchEntries = this.sessionManager.getBranch();\n\t\tconst lines = [JSON.stringify(header)];\n\n\t\t// Re-chain parentIds to form a linear sequence\n\t\tlet prevId: string | null = null;\n\t\tfor (const entry of branchEntries) {\n\t\t\tconst linear = { ...entry, parentId: prevId };\n\t\t\tlines.push(JSON.stringify(linear));\n\t\t\tprevId = entry.id;\n\t\t}\n\n\t\twriteFileSync(filePath, `${lines.join(\"\\n\")}\\n`);\n\t\treturn filePath;\n\t}\n\n\t// =========================================================================\n\t// Utilities\n\t// =========================================================================\n\n\t/**\n\t * Get text content of last assistant message.\n\t * Useful for /copy command.\n\t * @returns Text content, or undefined if no assistant message exists\n\t */\n\tgetLastAssistantText(): string | undefined {\n\t\tconst lastAssistant = this.messages\n\t\t\t.slice()\n\t\t\t.reverse()\n\t\t\t.find((m) => {\n\t\t\t\tif (m.role !== \"assistant\") return false;\n\t\t\t\tconst msg = m as AssistantMessage;\n\t\t\t\t// Skip aborted messages with no content\n\t\t\t\tif (msg.stopReason === \"aborted\" && msg.content.length === 0) return false;\n\t\t\t\treturn true;\n\t\t\t});\n\n\t\tif (!lastAssistant) return undefined;\n\n\t\tlet text = \"\";\n\t\tfor (const content of (lastAssistant as AssistantMessage).content) {\n\t\t\tif (content.type === \"text\") {\n\t\t\t\ttext += content.text;\n\t\t\t}\n\t\t}\n\n\t\treturn text.trim() || undefined;\n\t}\n\n\t// =========================================================================\n\t// Extension System\n\t// =========================================================================\n\n\tcreateReplacedSessionContext(): ReplacedSessionContext {\n\t\tconst context = Object.defineProperties(\n\t\t\t{},\n\t\t\tObject.getOwnPropertyDescriptors(this._extensionRunner.createCommandContext()),\n\t\t) as ReplacedSessionContext;\n\t\tcontext.sendMessage = (message, options) => this.sendCustomMessage(message, options);\n\t\tcontext.sendUserMessage = (content, options) => this.sendUserMessage(content, options);\n\t\treturn context;\n\t}\n\n\t/**\n\t * Check if extensions have handlers for a specific event type.\n\t */\n\thasExtensionHandlers(eventType: string): boolean {\n\t\treturn this._extensionRunner.hasHandlers(eventType);\n\t}\n\n\t/**\n\t * Get the extension runner (for setting UI context and error handlers).\n\t */\n\tget extensionRunner(): ExtensionRunner {\n\t\treturn this._extensionRunner;\n\t}\n}\n"]}