@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.
- package/README.md +149 -0
- package/bin/autopm +4 -0
- package/docs/autopm-bootstrap.md +327 -0
- package/docs/autopm-command-surface.md +73 -0
- package/docs/autopm-gsd-pi-architecture.md +125 -0
- package/docs/autopm-heartbeat.md +94 -0
- package/docs/autopm-local-workspace-contract.md +34 -0
- package/docs/autopm-memory-operator-guide.md +301 -0
- package/docs/autopm-memory-runtime-contract.md +81 -0
- package/docs/autopm-memory-tree.md +142 -0
- package/docs/autopm-memory-workspace-contract.md +172 -0
- package/docs/autopm-package.md +46 -0
- package/docs/autopm-pi-upgrade-runbook.md +58 -0
- package/docs/autopm-runtime-context.md +125 -0
- package/docs/autopm-runtime-dashboard.md +101 -0
- package/docs/opportunities-agentic-workflow-requirements.md +255 -0
- package/docs/product-setup.md +112 -0
- package/docs/venture-signal.md +437 -0
- package/extensions/autopm/extension-manifest.json +98 -0
- package/extensions/autopm/index.js +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.js +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.js +4 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.d.ts +13 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.js +32 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.d.ts +53 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.js +341 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.js +31 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.js +83 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.d.ts +18 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.js +22 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.js +98 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.js +35 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.js +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.d.ts +95 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.js +427 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.d.ts +117 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.js +300 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.d.ts +86 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.js +117 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.d.ts +596 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.js +2554 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.js +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.d.ts +141 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.js +441 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.d.ts +32 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.js +111 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.d.ts +88 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.js +243 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.d.ts +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.js +625 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.d.ts +7 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.js +7 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.d.ts +38 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.js +153 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.js +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.js +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.js +25 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.d.ts +29 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.js +75 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.d.ts +22 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.js +249 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.d.ts +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.js +224 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.css +1066 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.html +55 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.js +1834 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.d.ts +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.js +108 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/vendor/highlight.min.js +1213 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/vendor/marked.min.js +6 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.js +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.d.ts +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.js +498 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.d.ts +159 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.js +830 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.d.ts +1176 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.js +45 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.js +22 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.d.ts +52 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.js +310 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.js +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.d.ts +353 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.js +295 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.d.ts +77 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.js +123 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.d.ts +150 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.js +728 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.d.ts +110 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.js +495 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.d.ts +6 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.js +59 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.d.ts +203 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.js +2018 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.d.ts +52 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.js +252 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.js +126 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.d.ts +194 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.js +727 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.d.ts +107 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.js +282 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.d.ts +19 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.js +38 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.d.ts +333 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.js +1139 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.d.ts +261 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.js +782 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.d.ts +60 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.js +401 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.js +25 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.d.ts +18 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.js +19 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.d.ts +28 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.js +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.js +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.js +31 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.d.ts +68 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.js +364 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.d.ts +85 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.js +338 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.d.ts +49 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.js +310 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.d.ts +6 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.js +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.d.ts +35 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.js +298 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.d.ts +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.js +304 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.d.ts +40 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.js +112 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.d.ts +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.js +169 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.d.ts +50 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.js +178 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.js +81 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.d.ts +35 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.js +286 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.js +49 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.js +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.d.ts +70 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.js +205 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.js +213 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.d.ts +28 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.js +41 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.js +577 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.d.ts +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.js +281 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.js +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.js +333 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.js +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.d.ts +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.js +175 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.js +54 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bottom-anchor-spacer.js +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.js +506 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.js +140 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.js +133 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.js +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.js +40 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.js +119 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.js +83 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.js +133 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.d.ts +32 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +13 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.js +36 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.d.ts +46 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.js +160 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.js +278 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.js +165 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.js +290 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.d.ts +96 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.js +861 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.d.ts +67 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.js +375 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.d.ts +63 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.js +407 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.d.ts +89 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.js +1093 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.js +114 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.d.ts +10 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.js +29 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.d.ts +369 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.js +4662 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/dark.json +85 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/light.json +84 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme-schema.json +335 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.d.ts +81 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.js +1062 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.d.ts +28 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.js +131 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.d.ts +17 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.js +49 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.d.ts +224 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.js +410 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.js +601 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.d.ts +419 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.js +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.d.ts +4 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.js +476 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.js +52 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.js +87 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.js +88 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.d.ts +11 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.js +245 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.js +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.js +117 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.js +158 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.js +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.js +25 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.js +163 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.d.ts +7 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.js +40 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.js +39 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.d.ts +36 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.js +137 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.js +69 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.js +50 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.js +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.js +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.d.ts +30 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.js +190 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.js +17 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.js +118 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.js +328 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.js +77 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.js +77 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.js.map +1 -0
- package/node_modules/@mixmark-io/domino/.gitmodules +6 -0
- package/node_modules/@mixmark-io/domino/.mocharc.json +8 -0
- package/node_modules/@mixmark-io/domino/.nvmrc +1 -0
- package/node_modules/@mixmark-io/domino/.yarn/plugins/@yarnpkg/plugin-version.cjs +550 -0
- package/node_modules/@mixmark-io/domino/.yarn/versions/78b6ef77.yml +0 -0
- package/node_modules/@mixmark-io/domino/CHANGELOG.md +294 -0
- package/node_modules/@mixmark-io/domino/CONTRIBUTING.md +4 -0
- package/node_modules/@mixmark-io/domino/LICENSE +25 -0
- package/node_modules/@mixmark-io/domino/README.md +141 -0
- package/node_modules/@mixmark-io/domino/lib/CSSStyleDeclaration.js +234 -0
- package/node_modules/@mixmark-io/domino/lib/CharacterData.js +120 -0
- package/node_modules/@mixmark-io/domino/lib/ChildNode.js +119 -0
- package/node_modules/@mixmark-io/domino/lib/Comment.js +40 -0
- package/node_modules/@mixmark-io/domino/lib/ContainerNode.js +80 -0
- package/node_modules/@mixmark-io/domino/lib/CustomEvent.js +12 -0
- package/node_modules/@mixmark-io/domino/lib/DOMException.js +134 -0
- package/node_modules/@mixmark-io/domino/lib/DOMImplementation.js +94 -0
- package/node_modules/@mixmark-io/domino/lib/DOMTokenList.js +186 -0
- package/node_modules/@mixmark-io/domino/lib/Document.js +884 -0
- package/node_modules/@mixmark-io/domino/lib/DocumentFragment.js +71 -0
- package/node_modules/@mixmark-io/domino/lib/DocumentType.js +36 -0
- package/node_modules/@mixmark-io/domino/lib/Element.js +1228 -0
- package/node_modules/@mixmark-io/domino/lib/Event.js +66 -0
- package/node_modules/@mixmark-io/domino/lib/EventTarget.js +298 -0
- package/node_modules/@mixmark-io/domino/lib/FilteredElementList.js +92 -0
- package/node_modules/@mixmark-io/domino/lib/HTMLParser.js +7254 -0
- package/node_modules/@mixmark-io/domino/lib/Leaf.js +37 -0
- package/node_modules/@mixmark-io/domino/lib/LinkedList.js +44 -0
- package/node_modules/@mixmark-io/domino/lib/Location.js +56 -0
- package/node_modules/@mixmark-io/domino/lib/MouseEvent.js +52 -0
- package/node_modules/@mixmark-io/domino/lib/MutationConstants.js +9 -0
- package/node_modules/@mixmark-io/domino/lib/NamedNodeMap.js +41 -0
- package/node_modules/@mixmark-io/domino/lib/NavigatorID.js +17 -0
- package/node_modules/@mixmark-io/domino/lib/Node.js +764 -0
- package/node_modules/@mixmark-io/domino/lib/NodeFilter.js +24 -0
- package/node_modules/@mixmark-io/domino/lib/NodeIterator.js +217 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.es5.js +15 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.es6.js +12 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.js +13 -0
- package/node_modules/@mixmark-io/domino/lib/NodeTraversal.js +87 -0
- package/node_modules/@mixmark-io/domino/lib/NodeUtils.js +246 -0
- package/node_modules/@mixmark-io/domino/lib/NonDocumentTypeChildNode.js +26 -0
- package/node_modules/@mixmark-io/domino/lib/ProcessingInstruction.js +44 -0
- package/node_modules/@mixmark-io/domino/lib/Text.js +75 -0
- package/node_modules/@mixmark-io/domino/lib/TreeWalker.js +336 -0
- package/node_modules/@mixmark-io/domino/lib/UIEvent.js +19 -0
- package/node_modules/@mixmark-io/domino/lib/URL.js +194 -0
- package/node_modules/@mixmark-io/domino/lib/URLUtils.js +270 -0
- package/node_modules/@mixmark-io/domino/lib/Window.js +60 -0
- package/node_modules/@mixmark-io/domino/lib/WindowTimers.js +11 -0
- package/node_modules/@mixmark-io/domino/lib/attributes.js +152 -0
- package/node_modules/@mixmark-io/domino/lib/config.js +7 -0
- package/node_modules/@mixmark-io/domino/lib/defineElement.js +71 -0
- package/node_modules/@mixmark-io/domino/lib/events.js +7 -0
- package/node_modules/@mixmark-io/domino/lib/htmlelts.js +1499 -0
- package/node_modules/@mixmark-io/domino/lib/impl.js +27 -0
- package/node_modules/@mixmark-io/domino/lib/index.d.ts +5 -0
- package/node_modules/@mixmark-io/domino/lib/index.js +80 -0
- package/node_modules/@mixmark-io/domino/lib/select.js +933 -0
- package/node_modules/@mixmark-io/domino/lib/style_parser.js +106 -0
- package/node_modules/@mixmark-io/domino/lib/svg.js +59 -0
- package/node_modules/@mixmark-io/domino/lib/utils.js +85 -0
- package/node_modules/@mixmark-io/domino/lib/xmlnames.js +91 -0
- package/node_modules/@mixmark-io/domino/package.json +22 -0
- package/node_modules/@mixmark-io/domino/test/domino.js +1500 -0
- package/node_modules/@mixmark-io/domino/test/fixture/doc.html +13 -0
- package/node_modules/@mixmark-io/domino/test/fixture/jquery-1.9.1.js +9597 -0
- package/node_modules/@mixmark-io/domino/test/fixture/jquery-2.2.0.js +9831 -0
- package/node_modules/@mixmark-io/domino/test/html5lib-tests.json +80692 -0
- package/node_modules/@mixmark-io/domino/test/index.js +2 -0
- package/node_modules/@mixmark-io/domino/test/parsing.js +66 -0
- package/node_modules/@mixmark-io/domino/test/tools/update-entities.js +90 -0
- package/node_modules/@mixmark-io/domino/test/tools/update-html5lib-tests.js +355 -0
- package/node_modules/@mixmark-io/domino/test/w3c/README.md +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/harness/DomTestCase.js +438 -0
- package/node_modules/@mixmark-io/domino/test/w3c/harness/index.js +95 -0
- package/node_modules/@mixmark-io/domino/test/w3c/index.js +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentgetdoctypenodtd.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/.cvsignore +0 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_nodtdstaff.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_staff.html +48 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/staff.dtd +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddata.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddatagetdata.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatabegining.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataexceedslength.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatagetlengthanddata.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetdata.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetlength.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedatacountnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetnegative.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetgreater.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetnegative.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedatacountnegative.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringcountnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringnegativeoffset.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatabeginning.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatabegining.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofarg.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofdata.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasetnodevalue.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringexceedsvalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringvalue.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_commentgetcomment.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatecomment.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatedocumentfragment.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelement.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelementcasesensitive.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatetextnode.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetdoctype.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamelength.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnametotallength.js +221 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamevalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetimplementation.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetrootnode.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenoversion.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenull.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturexml.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementaddnewattribute.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementchangeattributevalue.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagname.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnameaccessnodelist.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamenomatch.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamespecialvalue.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgettagname.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception1.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementnormalize.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementremoveattribute.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveallattributes.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveattrvalue.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrievetagname.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiesremovenameditem1.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiessetnameditem1.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapchildnoderange.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapnumberofnodes.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchild.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildchildexists.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchilddocfragment.js +158 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildgetnodename.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnewchilddiffdocument.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnodeancestor.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeattributenodeattribute.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodes.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesappendchild.js +159 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesempty.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecloneattributescopied.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonefalsenocopytext.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonegetparentnull.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodefalse.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodetrue.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonetruecopytext.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodeattributes.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodename.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodetype.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodevalue.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodename.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodetype.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodevalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodeattribute.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodename.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodetype.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodevalue.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodeattributes.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodename.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodetype.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodevalue.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchild.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchildnull.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchild.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchildnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsibling.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsiblingnull.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocument.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocumentnull.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussibling.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussiblingnull.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodes.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodesfalse.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbefore.js +153 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforedocfragment.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchilddiffdocument.js +148 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchildexists.js +151 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodeancestor.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodename.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnonexistent.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnull.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexequalzero.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlength.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlengthofemptylist.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexnotzero.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnfirstitem.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnlastitem.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelisttraverselist.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnode.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnodenull.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechild.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildgetnodename.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildnode.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildoldchildnonexistent.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchilddiffdocument.js +148 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchildexists.js +155 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodeancestor.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodename.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildoldchildnonexistent.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodeattribute.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodename.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodetype.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue04.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue07.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue08.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationsremovenameditem1.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationssetnameditem1.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerrnegativeoffset.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerroffsetoutofbounds.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textparseintolistofelements.js +169 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextfour.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextone.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextthree.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittexttwo.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textwithnomarkup.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild1.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild2.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild3.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild4.js +152 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild5.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild6.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes1.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes2.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrclonenode1.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatedocumentfragment.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode2.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attreffectivevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrfirstchild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue2.js +146 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrhaschildnodes.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore2.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore3.js +146 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore4.js +147 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore5.js +153 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore6.js +142 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore7.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrlastchild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrname.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnextsiblingnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnormalize.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrparentnodenull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrprevioussiblingnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild1.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild2.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild1.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild2.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue1.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue2.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvalue.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvaluechanged.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentcreateattribute.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementassociatedattribute.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementcreatenewattribute.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenode.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenodenull.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetelementempty.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementinuseattributeerr.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnormalize2.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnotfounderr.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributeaftercreate.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributenode.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceattributewithself.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattribute.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattributegevalue.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementsetattributenodenull.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementwrongdocumenterr.js +147 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapgetnameditem.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapinuseattributeerr.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapnotfounderr.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapremovenameditem.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnattrnode.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnfirstitem.js +150 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnlastitem.js +152 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnnull.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditem.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemreturnvalue.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemthatexists.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemwithnewvalue.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapwrongdocumenterr.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeappendchildinvalidnodetype.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodename.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodetype.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeinsertbeforeinvalidnodetype.js +136 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodereplacechildinvalidnodetype.js +136 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodevalue03.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement10.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement11.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement12.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement13.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument01.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument17.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument18.js +102 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument19.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument20.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument21.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement100.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement101.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement102.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement103.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement104.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement105.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement106.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement107.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement108.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement109.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement11.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement110.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement111.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement112.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement113.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement114.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement115.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement116.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement117.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement118.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement119.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement12.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement120.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement121.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement122.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement123.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement124.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement125.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement126.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement127.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement128.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement129.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement13.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement130.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement131.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement132.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement133.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement134.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement135.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement136.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement137.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement138.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement139.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement14.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement140.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement141.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement142.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement143.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement144.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement145.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement15.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement16.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement17.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement18.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement19.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement20.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement21.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement22.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement23.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement24.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement25.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement26.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement27.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement28.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement29.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement30.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement31.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement32.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement33.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement34.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement35.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement36.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement37.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement38.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement39.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement40.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement41.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement42.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement43.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement44.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement45.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement46.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement47.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement48.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement49.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement50.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement51.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement52.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement53.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement54.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement55.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement56.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement57.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement58.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement59.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement60.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement61.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement62.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement63.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement64.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement65.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement66.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement67.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement68.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement69.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement70.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement71.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement72.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement73.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement74.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement75.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement76.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement77.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement78.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement79.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement80.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement81.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement82.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement83.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement84.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement85.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement86.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement87.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement88.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement89.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement90.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement91.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement92.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement93.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement94.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement95.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement96.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement97.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement98.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement99.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement10.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement05.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement06.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement11.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement12.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement03.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement13.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement21.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLIElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement01.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMapElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement11.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement15.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement16.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement17.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement19.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLParamElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement06.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement07.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement03.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement06.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement08.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement16.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement23.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement24.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement25.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement07.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableRowElement05.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement13.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement14.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement15.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement02.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTitleElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor04.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area02.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area03.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area04.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button07.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button08.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button09.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/doc01.js +106 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/.cvsignore +6 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/HTMLDocument04.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor2.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet2.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/basefont.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/body.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/br.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/button.html +21 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/collection.html +79 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/directory.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/div.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/dl.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/document.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/element.html +81 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/fieldset.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/font.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form2.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form3.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frame.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frameset.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/head.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/heading.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/hr.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/html.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/iframe.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/img.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/input.html +60 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/isindex.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/label.html +21 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/legend.html +22 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/li.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/map.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/menu.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/meta.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/mod.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object.html +18 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object2.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/olist.html +32 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/optgroup.html +25 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/option.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/paragraph.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/param.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/pre.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/quote.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/script.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/select.html +44 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/style.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table.html +78 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table1.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecaption.html +25 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecell.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecol.html +35 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablerow.html +59 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablesection.html +62 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/textarea.html +26 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/title.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/ulist.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/hasFeature01.js +96 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument02.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument03.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument04.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument12.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement09.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement10.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement19.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement20.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement22.js +108 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement15.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement16.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement18.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement19.js +137 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement08.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement09.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement19.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement20.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement21.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement22.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement23.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement24.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement25.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement26.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement27.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement28.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement29.js +137 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement30.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement31.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement32.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement33.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableRowElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement13.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement15.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object07.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object08.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object10.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object11.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object12.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object13.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object14.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement07.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement09.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBRElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement03.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection01.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection02.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection03.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection04.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection05.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection06.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection07.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection08.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection09.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection10.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection11.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection12.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDirectoryElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDivElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDlistElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument13.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument14.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFormElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHtmlElement01.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement02.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement17.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement01.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement02.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLIElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMapElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMenuElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOListElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParagraphElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLPreElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCaptionElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement19.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement20.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement21.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement22.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement26.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement27.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement28.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement29.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement30.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement03.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement05.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement15.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement18.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement11.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement12.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement13.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement14.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement16.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement17.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement18.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement19.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement20.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement21.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement22.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement23.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement24.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor02.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor03.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/basefont01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/body01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/dlist01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object02.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object03.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object04.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object09.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object15.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table07.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table15.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table18.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table19.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table20.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table21.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table22.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table23.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table24.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table26.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table27.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table29.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table30.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table31.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table32.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table33.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table35.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table36.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table37.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table38.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table39.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table40.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table41.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table42.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table43.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table44.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table45.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table46.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table47.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table48.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table49.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table50.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table52.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table53.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table25.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table28.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table34.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table51.js +112 -0
- package/node_modules/@mixmark-io/domino/test/web-platform-blocklist.json +4688 -0
- package/node_modules/@mixmark-io/domino/test/web-platform-tests.js +353 -0
- package/node_modules/@mixmark-io/domino/test/xss.js +361 -0
- package/node_modules/@mozilla/readability/.eslintrc.js +213 -0
- package/node_modules/@mozilla/readability/CHANGELOG.md +79 -0
- package/node_modules/@mozilla/readability/CODE_OF_CONDUCT.md +15 -0
- package/node_modules/@mozilla/readability/CONTRIBUTING.md +74 -0
- package/node_modules/@mozilla/readability/JSDOMParser.js +1197 -0
- package/node_modules/@mozilla/readability/LICENSE.md +13 -0
- package/node_modules/@mozilla/readability/README.md +127 -0
- package/node_modules/@mozilla/readability/Readability-readerable.js +108 -0
- package/node_modules/@mozilla/readability/Readability.js +2314 -0
- package/node_modules/@mozilla/readability/SECURITY.md +8 -0
- package/node_modules/@mozilla/readability/index.d.ts +64 -0
- package/node_modules/@mozilla/readability/index.js +8 -0
- package/node_modules/@mozilla/readability/package.json +37 -0
- package/node_modules/boolbase/README.md +10 -0
- package/node_modules/boolbase/index.js +8 -0
- package/node_modules/boolbase/package.json +23 -0
- package/node_modules/css-select/LICENSE +11 -0
- package/node_modules/css-select/README.md +264 -0
- package/node_modules/css-select/lib/attributes.d.ts +7 -0
- package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
- package/node_modules/css-select/lib/attributes.js +236 -0
- package/node_modules/css-select/lib/attributes.js.map +1 -0
- package/node_modules/css-select/lib/compile.d.ts +13 -0
- package/node_modules/css-select/lib/compile.d.ts.map +1 -0
- package/node_modules/css-select/lib/compile.js +151 -0
- package/node_modules/css-select/lib/compile.js.map +1 -0
- package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
- package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/attributes.js +222 -0
- package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
- package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
- package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/compile.js +115 -0
- package/node_modules/css-select/lib/esm/compile.js.map +1 -0
- package/node_modules/css-select/lib/esm/general.d.ts +3 -0
- package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/general.js +144 -0
- package/node_modules/css-select/lib/esm/general.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
- package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
- package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
- package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
- package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
- package/node_modules/css-select/lib/esm/index.d.ts +50 -0
- package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/index.js +115 -0
- package/node_modules/css-select/lib/esm/index.js.map +1 -0
- package/node_modules/css-select/lib/esm/package.json +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
- package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
- package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/sort.js +79 -0
- package/node_modules/css-select/lib/esm/sort.js.map +1 -0
- package/node_modules/css-select/lib/esm/types.d.ts +167 -0
- package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/types.js +2 -0
- package/node_modules/css-select/lib/esm/types.js.map +1 -0
- package/node_modules/css-select/lib/general.d.ts +3 -0
- package/node_modules/css-select/lib/general.d.ts.map +1 -0
- package/node_modules/css-select/lib/general.js +148 -0
- package/node_modules/css-select/lib/general.js.map +1 -0
- package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
- package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/cache.js +45 -0
- package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
- package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
- package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/querying.js +111 -0
- package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
- package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
- package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/selectors.js +111 -0
- package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
- package/node_modules/css-select/lib/index.d.ts +50 -0
- package/node_modules/css-select/lib/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/index.js +154 -0
- package/node_modules/css-select/lib/index.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
- package/node_modules/css-select/lib/sort.d.ts +12 -0
- package/node_modules/css-select/lib/sort.d.ts.map +1 -0
- package/node_modules/css-select/lib/sort.js +84 -0
- package/node_modules/css-select/lib/sort.js.map +1 -0
- package/node_modules/css-select/lib/types.d.ts +167 -0
- package/node_modules/css-select/lib/types.d.ts.map +1 -0
- package/node_modules/css-select/lib/types.js +3 -0
- package/node_modules/css-select/lib/types.js.map +1 -0
- package/node_modules/css-select/package.json +81 -0
- package/node_modules/css-what/LICENSE +11 -0
- package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
- package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/index.js +23 -0
- package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
- package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/parse.js +425 -0
- package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
- package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
- package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
- package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/types.js +42 -0
- package/node_modules/css-what/lib/es/index.d.ts +4 -0
- package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/index.js +3 -0
- package/node_modules/css-what/lib/es/parse.d.ts +20 -0
- package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/parse.js +420 -0
- package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
- package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/stringify.js +126 -0
- package/node_modules/css-what/lib/es/types.d.ts +70 -0
- package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/types.js +39 -0
- package/node_modules/css-what/package.json +59 -0
- package/node_modules/css-what/readme.md +69 -0
- package/node_modules/cssom/LICENSE.txt +20 -0
- package/node_modules/cssom/README.mdown +67 -0
- package/node_modules/cssom/lib/CSSConditionRule.js +25 -0
- package/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
- package/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules/cssom/lib/CSSMediaRule.js +53 -0
- package/node_modules/cssom/lib/CSSOM.js +3 -0
- package/node_modules/cssom/lib/CSSRule.js +43 -0
- package/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules/cssom/lib/CSSValue.js +43 -0
- package/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules/cssom/lib/MatcherList.js +62 -0
- package/node_modules/cssom/lib/MediaList.js +61 -0
- package/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/node_modules/cssom/lib/clone.js +74 -0
- package/node_modules/cssom/lib/index.js +23 -0
- package/node_modules/cssom/lib/parse.js +465 -0
- package/node_modules/cssom/package.json +18 -0
- package/node_modules/dom-serializer/LICENSE +11 -0
- package/node_modules/dom-serializer/README.md +109 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
- package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
- package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/esm/index.js +190 -0
- package/node_modules/dom-serializer/lib/esm/package.json +1 -0
- package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
- package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
- package/node_modules/dom-serializer/lib/index.d.ts +52 -0
- package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/index.js +229 -0
- package/node_modules/dom-serializer/package.json +69 -0
- package/node_modules/domelementtype/LICENSE +11 -0
- package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
- package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domelementtype/lib/esm/index.js +51 -0
- package/node_modules/domelementtype/lib/esm/package.json +1 -0
- package/node_modules/domelementtype/lib/index.d.ts +48 -0
- package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
- package/node_modules/domelementtype/lib/index.js +55 -0
- package/node_modules/domelementtype/package.json +54 -0
- package/node_modules/domelementtype/readme.md +1 -0
- package/node_modules/domhandler/LICENSE +11 -0
- package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
- package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domhandler/lib/esm/index.js +146 -0
- package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
- package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
- package/node_modules/domhandler/lib/esm/node.js +338 -0
- package/node_modules/domhandler/lib/esm/package.json +1 -0
- package/node_modules/domhandler/lib/index.d.ts +76 -0
- package/node_modules/domhandler/lib/index.d.ts.map +1 -0
- package/node_modules/domhandler/lib/index.js +165 -0
- package/node_modules/domhandler/lib/node.d.ts +245 -0
- package/node_modules/domhandler/lib/node.d.ts.map +1 -0
- package/node_modules/domhandler/lib/node.js +474 -0
- package/node_modules/domhandler/package.json +73 -0
- package/node_modules/domhandler/readme.md +92 -0
- package/node_modules/domutils/LICENSE +11 -0
- package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
- package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/feeds.js +183 -0
- package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
- package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
- package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/helpers.js +136 -0
- package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
- package/node_modules/domutils/lib/esm/index.d.ts +10 -0
- package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/index.js +10 -0
- package/node_modules/domutils/lib/esm/index.js.map +1 -0
- package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
- package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/legacy.js +152 -0
- package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
- package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
- package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/manipulation.js +134 -0
- package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
- package/node_modules/domutils/lib/esm/package.json +1 -0
- package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
- package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/querying.js +142 -0
- package/node_modules/domutils/lib/esm/querying.js.map +1 -0
- package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
- package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/stringify.js +81 -0
- package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
- package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
- package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/traversal.js +112 -0
- package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
- package/node_modules/domutils/lib/feeds.d.ts +71 -0
- package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
- package/node_modules/domutils/lib/feeds.js +190 -0
- package/node_modules/domutils/lib/feeds.js.map +1 -0
- package/node_modules/domutils/lib/helpers.d.ts +59 -0
- package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
- package/node_modules/domutils/lib/helpers.js +142 -0
- package/node_modules/domutils/lib/helpers.js.map +1 -0
- package/node_modules/domutils/lib/index.d.ts +10 -0
- package/node_modules/domutils/lib/index.d.ts.map +1 -0
- package/node_modules/domutils/lib/index.js +33 -0
- package/node_modules/domutils/lib/index.js.map +1 -0
- package/node_modules/domutils/lib/legacy.d.ts +79 -0
- package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
- package/node_modules/domutils/lib/legacy.js +168 -0
- package/node_modules/domutils/lib/legacy.js.map +1 -0
- package/node_modules/domutils/lib/manipulation.d.ts +49 -0
- package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
- package/node_modules/domutils/lib/manipulation.js +142 -0
- package/node_modules/domutils/lib/manipulation.js.map +1 -0
- package/node_modules/domutils/lib/querying.d.ts +64 -0
- package/node_modules/domutils/lib/querying.d.ts.map +1 -0
- package/node_modules/domutils/lib/querying.js +155 -0
- package/node_modules/domutils/lib/querying.js.map +1 -0
- package/node_modules/domutils/lib/stringify.d.ts +46 -0
- package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
- package/node_modules/domutils/lib/stringify.js +91 -0
- package/node_modules/domutils/lib/stringify.js.map +1 -0
- package/node_modules/domutils/lib/traversal.d.ts +67 -0
- package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
- package/node_modules/domutils/lib/traversal.js +125 -0
- package/node_modules/domutils/lib/traversal.js.map +1 -0
- package/node_modules/domutils/package.json +79 -0
- package/node_modules/domutils/readme.md +31 -0
- package/node_modules/entities/LICENSE +11 -0
- package/node_modules/entities/lib/decode.d.ts +211 -0
- package/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/node_modules/entities/lib/decode.js +536 -0
- package/node_modules/entities/lib/decode.js.map +1 -0
- package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
- package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/node_modules/entities/lib/decode_codepoint.js +76 -0
- package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
- package/node_modules/entities/lib/encode.d.ts +22 -0
- package/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/node_modules/entities/lib/encode.js +77 -0
- package/node_modules/entities/lib/encode.js.map +1 -0
- package/node_modules/entities/lib/escape.d.ts +43 -0
- package/node_modules/entities/lib/escape.d.ts.map +1 -0
- package/node_modules/entities/lib/escape.js +122 -0
- package/node_modules/entities/lib/escape.js.map +1 -0
- package/node_modules/entities/lib/esm/decode.d.ts +211 -0
- package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/decode.js +496 -0
- package/node_modules/entities/lib/esm/decode.js.map +1 -0
- package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
- package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
- package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
- package/node_modules/entities/lib/esm/encode.d.ts +22 -0
- package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/encode.js +69 -0
- package/node_modules/entities/lib/esm/encode.js.map +1 -0
- package/node_modules/entities/lib/esm/escape.d.ts +43 -0
- package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/escape.js +116 -0
- package/node_modules/entities/lib/esm/escape.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
- package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
- package/node_modules/entities/lib/esm/index.d.ts +96 -0
- package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/index.js +99 -0
- package/node_modules/entities/lib/esm/index.js.map +1 -0
- package/node_modules/entities/lib/esm/package.json +1 -0
- package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
- package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
- package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
- package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
- package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/encode-html.js +12 -0
- package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
- package/node_modules/entities/lib/index.d.ts +96 -0
- package/node_modules/entities/lib/index.d.ts.map +1 -0
- package/node_modules/entities/lib/index.js +126 -0
- package/node_modules/entities/lib/index.js.map +1 -0
- package/node_modules/entities/package.json +90 -0
- package/node_modules/entities/readme.md +122 -0
- package/node_modules/html-escaper/LICENSE.txt +19 -0
- package/node_modules/html-escaper/README.md +110 -0
- package/node_modules/html-escaper/cjs/index.js +74 -0
- package/node_modules/html-escaper/cjs/package.json +1 -0
- package/node_modules/html-escaper/esm/index.js +71 -0
- package/node_modules/html-escaper/index.js +81 -0
- package/node_modules/html-escaper/min.js +1 -0
- package/node_modules/html-escaper/package.json +47 -0
- package/node_modules/html-escaper/test/index.js +23 -0
- package/node_modules/html-escaper/test/package.json +1 -0
- package/node_modules/htmlparser2/LICENSE +18 -0
- package/node_modules/htmlparser2/README.md +171 -0
- package/node_modules/htmlparser2/lib/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/Parser.js +519 -0
- package/node_modules/htmlparser2/lib/Parser.js.map +1 -0
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/Tokenizer.js +791 -0
- package/node_modules/htmlparser2/lib/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/lib/WritableStream.d.ts +17 -0
- package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/WritableStream.js +54 -0
- package/node_modules/htmlparser2/lib/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Parser.js +490 -0
- package/node_modules/htmlparser2/lib/esm/Parser.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js +784 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +17 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.js +32 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/index.d.ts +54 -0
- package/node_modules/htmlparser2/lib/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/index.js +74 -0
- package/node_modules/htmlparser2/lib/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/package.json +1 -0
- package/node_modules/htmlparser2/lib/index.d.ts +54 -0
- package/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/index.js +114 -0
- package/node_modules/htmlparser2/lib/index.js.map +1 -0
- package/node_modules/htmlparser2/package.json +97 -0
- package/node_modules/linkedom/.github/workflows/node.js.yml +31 -0
- package/node_modules/linkedom/LICENSE +15 -0
- package/node_modules/linkedom/README.md +307 -0
- package/node_modules/linkedom/cjs/cached.js +153 -0
- package/node_modules/linkedom/cjs/dom/parser.js +41 -0
- package/node_modules/linkedom/cjs/dom/string-map.js +47 -0
- package/node_modules/linkedom/cjs/dom/token-list.js +103 -0
- package/node_modules/linkedom/cjs/html/anchor-element.js +35 -0
- package/node_modules/linkedom/cjs/html/area-element.js +12 -0
- package/node_modules/linkedom/cjs/html/audio-element.js +12 -0
- package/node_modules/linkedom/cjs/html/base-element.js +12 -0
- package/node_modules/linkedom/cjs/html/body-element.js +12 -0
- package/node_modules/linkedom/cjs/html/br-element.js +12 -0
- package/node_modules/linkedom/cjs/html/button-element.js +31 -0
- package/node_modules/linkedom/cjs/html/canvas-element.js +53 -0
- package/node_modules/linkedom/cjs/html/d-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/data-element.js +12 -0
- package/node_modules/linkedom/cjs/html/data-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/details-element.js +12 -0
- package/node_modules/linkedom/cjs/html/directory-element.js +12 -0
- package/node_modules/linkedom/cjs/html/div-element.js +12 -0
- package/node_modules/linkedom/cjs/html/document.js +105 -0
- package/node_modules/linkedom/cjs/html/element.js +321 -0
- package/node_modules/linkedom/cjs/html/embed-element.js +12 -0
- package/node_modules/linkedom/cjs/html/field-set-element.js +12 -0
- package/node_modules/linkedom/cjs/html/font-element.js +12 -0
- package/node_modules/linkedom/cjs/html/form-element.js +12 -0
- package/node_modules/linkedom/cjs/html/frame-element.js +12 -0
- package/node_modules/linkedom/cjs/html/frame-set-element.js +12 -0
- package/node_modules/linkedom/cjs/html/head-element.js +12 -0
- package/node_modules/linkedom/cjs/html/heading-element.js +19 -0
- package/node_modules/linkedom/cjs/html/hr-element.js +12 -0
- package/node_modules/linkedom/cjs/html/html-element.js +12 -0
- package/node_modules/linkedom/cjs/html/i-frame-element.js +43 -0
- package/node_modules/linkedom/cjs/html/image-element.js +43 -0
- package/node_modules/linkedom/cjs/html/input-element.js +40 -0
- package/node_modules/linkedom/cjs/html/label-element.js +12 -0
- package/node_modules/linkedom/cjs/html/legend-element.js +12 -0
- package/node_modules/linkedom/cjs/html/li-element.js +12 -0
- package/node_modules/linkedom/cjs/html/link-element.js +41 -0
- package/node_modules/linkedom/cjs/html/map-element.js +12 -0
- package/node_modules/linkedom/cjs/html/marquee-element.js +12 -0
- package/node_modules/linkedom/cjs/html/media-element.js +12 -0
- package/node_modules/linkedom/cjs/html/menu-element.js +12 -0
- package/node_modules/linkedom/cjs/html/meta-element.js +36 -0
- package/node_modules/linkedom/cjs/html/meter-element.js +12 -0
- package/node_modules/linkedom/cjs/html/mod-element.js +12 -0
- package/node_modules/linkedom/cjs/html/o-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/object-element.js +12 -0
- package/node_modules/linkedom/cjs/html/opt-group-element.js +12 -0
- package/node_modules/linkedom/cjs/html/option-element.js +32 -0
- package/node_modules/linkedom/cjs/html/output-element.js +12 -0
- package/node_modules/linkedom/cjs/html/paragraph-element.js +12 -0
- package/node_modules/linkedom/cjs/html/param-element.js +12 -0
- package/node_modules/linkedom/cjs/html/picture-element.js +12 -0
- package/node_modules/linkedom/cjs/html/pre-element.js +12 -0
- package/node_modules/linkedom/cjs/html/progress-element.js +12 -0
- package/node_modules/linkedom/cjs/html/quote-element.js +12 -0
- package/node_modules/linkedom/cjs/html/script-element.js +80 -0
- package/node_modules/linkedom/cjs/html/select-element.js +45 -0
- package/node_modules/linkedom/cjs/html/slot-element.js +62 -0
- package/node_modules/linkedom/cjs/html/source-element.js +34 -0
- package/node_modules/linkedom/cjs/html/span-element.js +12 -0
- package/node_modules/linkedom/cjs/html/style-element.js +53 -0
- package/node_modules/linkedom/cjs/html/table-caption-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-cell-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-row-element.js +12 -0
- package/node_modules/linkedom/cjs/html/template-element.js +31 -0
- package/node_modules/linkedom/cjs/html/text-area-element.js +37 -0
- package/node_modules/linkedom/cjs/html/text-element.js +16 -0
- package/node_modules/linkedom/cjs/html/time-element.js +12 -0
- package/node_modules/linkedom/cjs/html/title-element.js +19 -0
- package/node_modules/linkedom/cjs/html/track-element.js +12 -0
- package/node_modules/linkedom/cjs/html/u-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/unknown-element.js +12 -0
- package/node_modules/linkedom/cjs/html/video-element.js +12 -0
- package/node_modules/linkedom/cjs/index.js +48 -0
- package/node_modules/linkedom/cjs/interface/attr.js +59 -0
- package/node_modules/linkedom/cjs/interface/cdata-section.js +22 -0
- package/node_modules/linkedom/cjs/interface/character-data.js +86 -0
- package/node_modules/linkedom/cjs/interface/comment.js +22 -0
- package/node_modules/linkedom/cjs/interface/css-style-declaration.js +130 -0
- package/node_modules/linkedom/cjs/interface/custom-element-registry.js +212 -0
- package/node_modules/linkedom/cjs/interface/custom-event.js +21 -0
- package/node_modules/linkedom/cjs/interface/document-fragment.js +13 -0
- package/node_modules/linkedom/cjs/interface/document-type.js +43 -0
- package/node_modules/linkedom/cjs/interface/document.js +290 -0
- package/node_modules/linkedom/cjs/interface/element.js +513 -0
- package/node_modules/linkedom/cjs/interface/event-target.js +89 -0
- package/node_modules/linkedom/cjs/interface/event.js +65 -0
- package/node_modules/linkedom/cjs/interface/html-collection.js +4 -0
- package/node_modules/linkedom/cjs/interface/image.js +23 -0
- package/node_modules/linkedom/cjs/interface/input-event.js +24 -0
- package/node_modules/linkedom/cjs/interface/mutation-observer.js +176 -0
- package/node_modules/linkedom/cjs/interface/named-node-map.js +44 -0
- package/node_modules/linkedom/cjs/interface/node-filter.js +17 -0
- package/node_modules/linkedom/cjs/interface/node-list.js +10 -0
- package/node_modules/linkedom/cjs/interface/node.js +206 -0
- package/node_modules/linkedom/cjs/interface/range.js +131 -0
- package/node_modules/linkedom/cjs/interface/shadow-root.js +22 -0
- package/node_modules/linkedom/cjs/interface/text.js +44 -0
- package/node_modules/linkedom/cjs/interface/tree-walker.js +60 -0
- package/node_modules/linkedom/cjs/mixin/child-node.js +67 -0
- package/node_modules/linkedom/cjs/mixin/inner-html.js +39 -0
- package/node_modules/linkedom/cjs/mixin/non-document-type-child-node.js +23 -0
- package/node_modules/linkedom/cjs/mixin/non-element-parent-node.js +44 -0
- package/node_modules/linkedom/cjs/mixin/parent-node.js +295 -0
- package/node_modules/linkedom/cjs/package.json +1 -0
- package/node_modules/linkedom/cjs/shared/attributes.js +111 -0
- package/node_modules/linkedom/cjs/shared/cache.js +33 -0
- package/node_modules/linkedom/cjs/shared/constants.js +56 -0
- package/node_modules/linkedom/cjs/shared/facades.js +91 -0
- package/node_modules/linkedom/cjs/shared/html-classes.js +210 -0
- package/node_modules/linkedom/cjs/shared/jsdon.js +79 -0
- package/node_modules/linkedom/cjs/shared/matches.js +121 -0
- package/node_modules/linkedom/cjs/shared/mime.js +33 -0
- package/node_modules/linkedom/cjs/shared/node.js +53 -0
- package/node_modules/linkedom/cjs/shared/object.js +18 -0
- package/node_modules/linkedom/cjs/shared/parse-from-string.js +125 -0
- package/node_modules/linkedom/cjs/shared/parse-json.js +134 -0
- package/node_modules/linkedom/cjs/shared/register-html-class.js +11 -0
- package/node_modules/linkedom/cjs/shared/shadow-roots.js +3 -0
- package/node_modules/linkedom/cjs/shared/symbols.js +88 -0
- package/node_modules/linkedom/cjs/shared/text-escaper.js +24 -0
- package/node_modules/linkedom/cjs/shared/utils.js +49 -0
- package/node_modules/linkedom/cjs/svg/document.js +14 -0
- package/node_modules/linkedom/cjs/svg/element.js +60 -0
- package/node_modules/linkedom/cjs/xml/document.js +14 -0
- package/node_modules/linkedom/commonjs/canvas-shim.cjs +16 -0
- package/node_modules/linkedom/commonjs/canvas.cjs +7 -0
- package/node_modules/linkedom/commonjs/perf_hooks.cjs +9 -0
- package/node_modules/linkedom/esm/cached.js +151 -0
- package/node_modules/linkedom/esm/dom/parser.js +39 -0
- package/node_modules/linkedom/esm/dom/string-map.js +45 -0
- package/node_modules/linkedom/esm/dom/token-list.js +101 -0
- package/node_modules/linkedom/esm/html/anchor-element.js +34 -0
- package/node_modules/linkedom/esm/html/area-element.js +10 -0
- package/node_modules/linkedom/esm/html/audio-element.js +10 -0
- package/node_modules/linkedom/esm/html/base-element.js +10 -0
- package/node_modules/linkedom/esm/html/body-element.js +10 -0
- package/node_modules/linkedom/esm/html/br-element.js +10 -0
- package/node_modules/linkedom/esm/html/button-element.js +30 -0
- package/node_modules/linkedom/esm/html/canvas-element.js +52 -0
- package/node_modules/linkedom/esm/html/d-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/data-element.js +10 -0
- package/node_modules/linkedom/esm/html/data-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/details-element.js +10 -0
- package/node_modules/linkedom/esm/html/directory-element.js +10 -0
- package/node_modules/linkedom/esm/html/div-element.js +10 -0
- package/node_modules/linkedom/esm/html/document.js +103 -0
- package/node_modules/linkedom/esm/html/element.js +319 -0
- package/node_modules/linkedom/esm/html/embed-element.js +10 -0
- package/node_modules/linkedom/esm/html/field-set-element.js +10 -0
- package/node_modules/linkedom/esm/html/font-element.js +10 -0
- package/node_modules/linkedom/esm/html/form-element.js +10 -0
- package/node_modules/linkedom/esm/html/frame-element.js +10 -0
- package/node_modules/linkedom/esm/html/frame-set-element.js +10 -0
- package/node_modules/linkedom/esm/html/head-element.js +10 -0
- package/node_modules/linkedom/esm/html/heading-element.js +18 -0
- package/node_modules/linkedom/esm/html/hr-element.js +10 -0
- package/node_modules/linkedom/esm/html/html-element.js +10 -0
- package/node_modules/linkedom/esm/html/i-frame-element.js +42 -0
- package/node_modules/linkedom/esm/html/image-element.js +42 -0
- package/node_modules/linkedom/esm/html/input-element.js +39 -0
- package/node_modules/linkedom/esm/html/label-element.js +10 -0
- package/node_modules/linkedom/esm/html/legend-element.js +10 -0
- package/node_modules/linkedom/esm/html/li-element.js +10 -0
- package/node_modules/linkedom/esm/html/link-element.js +40 -0
- package/node_modules/linkedom/esm/html/map-element.js +10 -0
- package/node_modules/linkedom/esm/html/marquee-element.js +10 -0
- package/node_modules/linkedom/esm/html/media-element.js +10 -0
- package/node_modules/linkedom/esm/html/menu-element.js +10 -0
- package/node_modules/linkedom/esm/html/meta-element.js +34 -0
- package/node_modules/linkedom/esm/html/meter-element.js +10 -0
- package/node_modules/linkedom/esm/html/mod-element.js +10 -0
- package/node_modules/linkedom/esm/html/o-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/object-element.js +10 -0
- package/node_modules/linkedom/esm/html/opt-group-element.js +10 -0
- package/node_modules/linkedom/esm/html/option-element.js +31 -0
- package/node_modules/linkedom/esm/html/output-element.js +10 -0
- package/node_modules/linkedom/esm/html/paragraph-element.js +10 -0
- package/node_modules/linkedom/esm/html/param-element.js +10 -0
- package/node_modules/linkedom/esm/html/picture-element.js +10 -0
- package/node_modules/linkedom/esm/html/pre-element.js +10 -0
- package/node_modules/linkedom/esm/html/progress-element.js +10 -0
- package/node_modules/linkedom/esm/html/quote-element.js +10 -0
- package/node_modules/linkedom/esm/html/script-element.js +79 -0
- package/node_modules/linkedom/esm/html/select-element.js +44 -0
- package/node_modules/linkedom/esm/html/slot-element.js +61 -0
- package/node_modules/linkedom/esm/html/source-element.js +33 -0
- package/node_modules/linkedom/esm/html/span-element.js +10 -0
- package/node_modules/linkedom/esm/html/style-element.js +52 -0
- package/node_modules/linkedom/esm/html/table-caption-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-cell-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-row-element.js +10 -0
- package/node_modules/linkedom/esm/html/template-element.js +30 -0
- package/node_modules/linkedom/esm/html/text-area-element.js +36 -0
- package/node_modules/linkedom/esm/html/text-element.js +14 -0
- package/node_modules/linkedom/esm/html/time-element.js +10 -0
- package/node_modules/linkedom/esm/html/title-element.js +18 -0
- package/node_modules/linkedom/esm/html/track-element.js +10 -0
- package/node_modules/linkedom/esm/html/u-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/unknown-element.js +10 -0
- package/node_modules/linkedom/esm/html/video-element.js +10 -0
- package/node_modules/linkedom/esm/index.js +28 -0
- package/node_modules/linkedom/esm/interface/attr.js +57 -0
- package/node_modules/linkedom/esm/interface/cdata-section.js +20 -0
- package/node_modules/linkedom/esm/interface/character-data.js +84 -0
- package/node_modules/linkedom/esm/interface/comment.js +20 -0
- package/node_modules/linkedom/esm/interface/css-style-declaration.js +128 -0
- package/node_modules/linkedom/esm/interface/custom-element-registry.js +205 -0
- package/node_modules/linkedom/esm/interface/custom-event.js +19 -0
- package/node_modules/linkedom/esm/interface/document-fragment.js +11 -0
- package/node_modules/linkedom/esm/interface/document-type.js +41 -0
- package/node_modules/linkedom/esm/interface/document.js +289 -0
- package/node_modules/linkedom/esm/interface/element.js +514 -0
- package/node_modules/linkedom/esm/interface/event-target.js +88 -0
- package/node_modules/linkedom/esm/interface/event.js +64 -0
- package/node_modules/linkedom/esm/interface/html-collection.js +3 -0
- package/node_modules/linkedom/esm/interface/image.js +21 -0
- package/node_modules/linkedom/esm/interface/input-event.js +22 -0
- package/node_modules/linkedom/esm/interface/mutation-observer.js +172 -0
- package/node_modules/linkedom/esm/interface/named-node-map.js +42 -0
- package/node_modules/linkedom/esm/interface/node-filter.js +15 -0
- package/node_modules/linkedom/esm/interface/node-list.js +8 -0
- package/node_modules/linkedom/esm/interface/node.js +204 -0
- package/node_modules/linkedom/esm/interface/range.js +129 -0
- package/node_modules/linkedom/esm/interface/shadow-root.js +20 -0
- package/node_modules/linkedom/esm/interface/text.js +42 -0
- package/node_modules/linkedom/esm/interface/tree-walker.js +58 -0
- package/node_modules/linkedom/esm/mixin/child-node.js +62 -0
- package/node_modules/linkedom/esm/mixin/inner-html.js +36 -0
- package/node_modules/linkedom/esm/mixin/non-document-type-child-node.js +20 -0
- package/node_modules/linkedom/esm/mixin/non-element-parent-node.js +42 -0
- package/node_modules/linkedom/esm/mixin/parent-node.js +293 -0
- package/node_modules/linkedom/esm/shared/attributes.js +104 -0
- package/node_modules/linkedom/esm/shared/cache.js +26 -0
- package/node_modules/linkedom/esm/shared/constants.js +33 -0
- package/node_modules/linkedom/esm/shared/facades.js +77 -0
- package/node_modules/linkedom/esm/shared/html-classes.js +210 -0
- package/node_modules/linkedom/esm/shared/jsdon.js +73 -0
- package/node_modules/linkedom/esm/shared/matches.js +118 -0
- package/node_modules/linkedom/esm/shared/mime.js +31 -0
- package/node_modules/linkedom/esm/shared/node.js +48 -0
- package/node_modules/linkedom/esm/shared/object.js +19 -0
- package/node_modules/linkedom/esm/shared/parse-from-string.js +122 -0
- package/node_modules/linkedom/esm/shared/parse-json.js +131 -0
- package/node_modules/linkedom/esm/shared/register-html-class.js +8 -0
- package/node_modules/linkedom/esm/shared/shadow-roots.js +1 -0
- package/node_modules/linkedom/esm/shared/symbols.js +65 -0
- package/node_modules/linkedom/esm/shared/text-escaper.js +22 -0
- package/node_modules/linkedom/esm/shared/utils.js +40 -0
- package/node_modules/linkedom/esm/svg/document.js +12 -0
- package/node_modules/linkedom/esm/svg/element.js +58 -0
- package/node_modules/linkedom/esm/xml/document.js +12 -0
- package/node_modules/linkedom/package.json +84 -0
- package/node_modules/linkedom/tsconfig.json +13 -0
- package/node_modules/linkedom/types/commonjs/canvas-shim.d.cts +9 -0
- package/node_modules/linkedom/types/commonjs/canvas.d.cts +2 -0
- package/node_modules/linkedom/types/commonjs/perf_hooks.d.cts +1 -0
- package/node_modules/linkedom/types/dom/parser.d.ts +24 -0
- package/node_modules/linkedom/types/dom/string-map.d.ts +9 -0
- package/node_modules/linkedom/types/dom/token-list.d.ts +32 -0
- package/node_modules/linkedom/types/esm/dom/parser.d.ts +24 -0
- package/node_modules/linkedom/types/esm/dom/string-map.d.ts +9 -0
- package/node_modules/linkedom/types/esm/dom/token-list.d.ts +36 -0
- package/node_modules/linkedom/types/esm/html/anchor-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/area-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/audio-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/base-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/body-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/br-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/button-element.d.ts +12 -0
- package/node_modules/linkedom/types/esm/html/canvas-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/d-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/data-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/data-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/details-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/directory-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/div-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/document.d.ts +23 -0
- package/node_modules/linkedom/types/esm/html/element.d.ts +168 -0
- package/node_modules/linkedom/types/esm/html/embed-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/field-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/font-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/form-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/frame-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/head-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/heading-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/hr-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/html-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/i-frame-element.d.ts +20 -0
- package/node_modules/linkedom/types/esm/html/image-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/input-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/label-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/legend-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/li-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/link-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/map-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/marquee-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/media-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/menu-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/meta-element.d.ts +16 -0
- package/node_modules/linkedom/types/esm/html/meter-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/mod-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/o-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/object-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/opt-group-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/option-element.d.ts +10 -0
- package/node_modules/linkedom/types/esm/html/output-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/paragraph-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/param-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/picture-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/pre-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/progress-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/quote-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/script-element.d.ts +22 -0
- package/node_modules/linkedom/types/esm/html/select-element.d.ts +13 -0
- package/node_modules/linkedom/types/esm/html/slot-element.d.ts +11 -0
- package/node_modules/linkedom/types/esm/html/source-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/span-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/style-element.d.ts +11 -0
- package/node_modules/linkedom/types/esm/html/table-caption-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-cell-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-row-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/template-element.d.ts +10 -0
- package/node_modules/linkedom/types/esm/html/text-area-element.d.ts +16 -0
- package/node_modules/linkedom/types/esm/html/text-element.d.ts +4 -0
- package/node_modules/linkedom/types/esm/html/time-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/title-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/track-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/u-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/unknown-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/video-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/index.d.ts +13 -0
- package/node_modules/linkedom/types/esm/interface/attr.d.ts +17 -0
- package/node_modules/linkedom/types/esm/interface/cdata-section.d.ts +8 -0
- package/node_modules/linkedom/types/esm/interface/character-data.d.ts +26 -0
- package/node_modules/linkedom/types/esm/interface/comment.d.ts +8 -0
- package/node_modules/linkedom/types/esm/interface/css-style-declaration.d.ts +19 -0
- package/node_modules/linkedom/types/esm/interface/custom-element-registry.d.ts +54 -0
- package/node_modules/linkedom/types/esm/interface/custom-event.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/document-fragment.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/document-type.d.ts +12 -0
- package/node_modules/linkedom/types/esm/interface/document.d.ts +71 -0
- package/node_modules/linkedom/types/esm/interface/element.d.ts +81 -0
- package/node_modules/linkedom/types/esm/interface/event-target.d.ts +13 -0
- package/node_modules/linkedom/types/esm/interface/event.d.ts +32 -0
- package/node_modules/linkedom/types/esm/interface/image.d.ts +214 -0
- package/node_modules/linkedom/types/esm/interface/input-event.d.ts +11 -0
- package/node_modules/linkedom/types/esm/interface/mutation-observer.d.ts +40 -0
- package/node_modules/linkedom/types/esm/interface/named-node-map.d.ts +14 -0
- package/node_modules/linkedom/types/esm/interface/node-filter.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/node-list.d.ts +9 -0
- package/node_modules/linkedom/types/esm/interface/node.d.ts +86 -0
- package/node_modules/linkedom/types/esm/interface/range.d.ts +23 -0
- package/node_modules/linkedom/types/esm/interface/shadow-root.d.ts +10 -0
- package/node_modules/linkedom/types/esm/interface/text.d.ts +9 -0
- package/node_modules/linkedom/types/esm/interface/tree-walker.d.ts +15 -0
- package/node_modules/linkedom/types/esm/mixin/child-node.d.ts +4 -0
- package/node_modules/linkedom/types/esm/mixin/inner-html.d.ts +2 -0
- package/node_modules/linkedom/types/esm/mixin/non-document-type-child-node.d.ts +2 -0
- package/node_modules/linkedom/types/esm/mixin/non-element-parent-node.d.ts +6 -0
- package/node_modules/linkedom/types/esm/mixin/parent-node.d.ts +57 -0
- package/node_modules/linkedom/types/esm/shared/attributes.d.ts +15 -0
- package/node_modules/linkedom/types/esm/shared/constants.d.ts +22 -0
- package/node_modules/linkedom/types/esm/shared/facades.d.ts +25 -0
- package/node_modules/linkedom/types/esm/shared/html-classes.d.ts +139 -0
- package/node_modules/linkedom/types/esm/shared/jsdon.d.ts +9 -0
- package/node_modules/linkedom/types/esm/shared/matches.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/mime.d.ts +35 -0
- package/node_modules/linkedom/types/esm/shared/node.d.ts +12 -0
- package/node_modules/linkedom/types/esm/shared/object.d.ts +25 -0
- package/node_modules/linkedom/types/esm/shared/parse-from-string.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/parse-json.d.ts +7 -0
- package/node_modules/linkedom/types/esm/shared/register-html-class.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/shadow-roots.d.ts +1 -0
- package/node_modules/linkedom/types/esm/shared/symbols.d.ts +22 -0
- package/node_modules/linkedom/types/esm/shared/text-escaper.d.ts +1 -0
- package/node_modules/linkedom/types/esm/shared/utils.d.ts +15 -0
- package/node_modules/linkedom/types/esm/svg/document.d.ts +7 -0
- package/node_modules/linkedom/types/esm/svg/element.d.ts +8 -0
- package/node_modules/linkedom/types/esm/xml/document.d.ts +7 -0
- package/node_modules/linkedom/types/html/anchor-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/area-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/audio-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/base-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/body-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/br-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/button-element.d.ts +12 -0
- package/node_modules/linkedom/types/html/canvas-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/d-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/data-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/data-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/details-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/directory-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/div-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/document.d.ts +22 -0
- package/node_modules/linkedom/types/html/element.d.ts +168 -0
- package/node_modules/linkedom/types/html/embed-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/field-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/font-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/form-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/frame-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/head-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/heading-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/hr-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/html-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/i-frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/image-element.d.ts +18 -0
- package/node_modules/linkedom/types/html/input-element.d.ts +16 -0
- package/node_modules/linkedom/types/html/label-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/legend-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/li-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/link-element.d.ts +18 -0
- package/node_modules/linkedom/types/html/map-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/marquee-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/media-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/menu-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/meta-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/meter-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/mod-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/o-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/object-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/opt-group-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/option-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/output-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/paragraph-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/param-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/picture-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/pre-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/progress-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/quote-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/script-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/select-element.d.ts +12 -0
- package/node_modules/linkedom/types/html/slot-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/source-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/span-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/style-element.d.ts +9 -0
- package/node_modules/linkedom/types/html/table-caption-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-cell-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-row-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/template-element.d.ts +10 -0
- package/node_modules/linkedom/types/html/text-area-element.d.ts +16 -0
- package/node_modules/linkedom/types/html/text-element.d.ts +3 -0
- package/node_modules/linkedom/types/html/time-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/title-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/track-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/u-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/unknown-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/video-element.d.ts +6 -0
- package/node_modules/linkedom/types/index.d.ts +12 -0
- package/node_modules/linkedom/types/interface/attr.d.ts +16 -0
- package/node_modules/linkedom/types/interface/character-data.d.ts +22 -0
- package/node_modules/linkedom/types/interface/comment.d.ts +7 -0
- package/node_modules/linkedom/types/interface/css-style-declaration.d.ts +10 -0
- package/node_modules/linkedom/types/interface/custom-element-registry.d.ts +54 -0
- package/node_modules/linkedom/types/interface/custom-event.d.ts +37 -0
- package/node_modules/linkedom/types/interface/document-fragment.d.ts +7 -0
- package/node_modules/linkedom/types/interface/document-type.d.ts +11 -0
- package/node_modules/linkedom/types/interface/document.d.ts +60 -0
- package/node_modules/linkedom/types/interface/element.d.ts +72 -0
- package/node_modules/linkedom/types/interface/event-target.d.ts +13 -0
- package/node_modules/linkedom/types/interface/event.d.ts +32 -0
- package/node_modules/linkedom/types/interface/image.d.ts +199 -0
- package/node_modules/linkedom/types/interface/input-event.d.ts +11 -0
- package/node_modules/linkedom/types/interface/mutation-observer.d.ts +40 -0
- package/node_modules/linkedom/types/interface/named-node-map.d.ts +14 -0
- package/node_modules/linkedom/types/interface/node-list.d.ts +9 -0
- package/node_modules/linkedom/types/interface/node.d.ts +78 -0
- package/node_modules/linkedom/types/interface/range.d.ts +22 -0
- package/node_modules/linkedom/types/interface/shadow-root.d.ts +9 -0
- package/node_modules/linkedom/types/interface/text.d.ts +8 -0
- package/node_modules/linkedom/types/interface/tree-walker.d.ts +15 -0
- package/node_modules/linkedom/types/mixin/child-node.d.ts +4 -0
- package/node_modules/linkedom/types/mixin/inner-html.d.ts +2 -0
- package/node_modules/linkedom/types/mixin/non-document-type-child-node.d.ts +2 -0
- package/node_modules/linkedom/types/mixin/non-element-parent-node.d.ts +5 -0
- package/node_modules/linkedom/types/mixin/parent-node.d.ts +47 -0
- package/node_modules/linkedom/types/shared/attributes.d.ts +21 -0
- package/node_modules/linkedom/types/shared/cache.d.ts +7 -0
- package/node_modules/linkedom/types/shared/constants.d.ts +19 -0
- package/node_modules/linkedom/types/shared/facades.d.ts +23 -0
- package/node_modules/linkedom/types/shared/html-classes.d.ts +139 -0
- package/node_modules/linkedom/types/shared/jsdon.d.ts +9 -0
- package/node_modules/linkedom/types/shared/matches.d.ts +2 -0
- package/node_modules/linkedom/types/shared/mime.d.ts +35 -0
- package/node_modules/linkedom/types/shared/node.d.ts +12 -0
- package/node_modules/linkedom/types/shared/object.d.ts +25 -0
- package/node_modules/linkedom/types/shared/parse-from-string.d.ts +2 -0
- package/node_modules/linkedom/types/shared/parse-json.d.ts +7 -0
- package/node_modules/linkedom/types/shared/register-html-class.d.ts +2 -0
- package/node_modules/linkedom/types/shared/symbols.d.ts +20 -0
- package/node_modules/linkedom/types/shared/text-escaper.d.ts +1 -0
- package/node_modules/linkedom/types/shared/utils.d.ts +15 -0
- package/node_modules/linkedom/types/svg/document.d.ts +7 -0
- package/node_modules/linkedom/types/svg/element.d.ts +8 -0
- package/node_modules/linkedom/types/xml/document.d.ts +7 -0
- package/node_modules/linkedom/worker.js +12526 -0
- package/node_modules/nth-check/LICENSE +11 -0
- package/node_modules/nth-check/README.md +136 -0
- package/node_modules/nth-check/lib/compile.d.ts +55 -0
- package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
- package/node_modules/nth-check/lib/compile.js +121 -0
- package/node_modules/nth-check/lib/compile.js.map +1 -0
- package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
- package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/compile.js +113 -0
- package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
- package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
- package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/index.js +63 -0
- package/node_modules/nth-check/lib/esm/index.js.map +1 -0
- package/node_modules/nth-check/lib/esm/package.json +1 -0
- package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
- package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/parse.js +73 -0
- package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
- package/node_modules/nth-check/lib/index.d.ts +59 -0
- package/node_modules/nth-check/lib/index.d.ts.map +1 -0
- package/node_modules/nth-check/lib/index.js +70 -0
- package/node_modules/nth-check/lib/index.js.map +1 -0
- package/node_modules/nth-check/lib/parse.d.ts +9 -0
- package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
- package/node_modules/nth-check/lib/parse.js +77 -0
- package/node_modules/nth-check/lib/parse.js.map +1 -0
- package/node_modules/nth-check/package.json +78 -0
- package/node_modules/p-limit/index.d.ts +81 -0
- package/node_modules/p-limit/index.js +104 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +58 -0
- package/node_modules/p-limit/readme.md +129 -0
- package/node_modules/pi-web-access/CHANGELOG.md +387 -0
- package/node_modules/pi-web-access/LICENSE +21 -0
- package/node_modules/pi-web-access/README.md +352 -0
- package/node_modules/pi-web-access/activity.ts +101 -0
- package/node_modules/pi-web-access/banner.png +0 -0
- package/node_modules/pi-web-access/chrome-cookies.ts +322 -0
- package/node_modules/pi-web-access/code-search.ts +107 -0
- package/node_modules/pi-web-access/curator-page.ts +3359 -0
- package/node_modules/pi-web-access/curator-server.ts +605 -0
- package/node_modules/pi-web-access/exa.ts +520 -0
- package/node_modules/pi-web-access/extract.ts +641 -0
- package/node_modules/pi-web-access/gemini-api.ts +112 -0
- package/node_modules/pi-web-access/gemini-search.ts +361 -0
- package/node_modules/pi-web-access/gemini-url-context.ts +126 -0
- package/node_modules/pi-web-access/gemini-web-config.ts +52 -0
- package/node_modules/pi-web-access/gemini-web.ts +396 -0
- package/node_modules/pi-web-access/github-api.ts +196 -0
- package/node_modules/pi-web-access/github-extract.ts +634 -0
- package/node_modules/pi-web-access/index.ts +2346 -0
- package/node_modules/pi-web-access/package.json +45 -0
- package/node_modules/pi-web-access/pdf-extract.ts +192 -0
- package/node_modules/pi-web-access/perplexity.ts +195 -0
- package/node_modules/pi-web-access/pi-web-fetch-demo.mp4 +0 -0
- package/node_modules/pi-web-access/rsc-extract.ts +338 -0
- package/node_modules/pi-web-access/skills/librarian/SKILL.md +195 -0
- package/node_modules/pi-web-access/storage.ts +72 -0
- package/node_modules/pi-web-access/summary-review.ts +276 -0
- package/node_modules/pi-web-access/test/gemini-web-cookie-opt-in.test.mjs +41 -0
- package/node_modules/pi-web-access/test/pdf-extract.test.mjs +95 -0
- package/node_modules/pi-web-access/utils.ts +44 -0
- package/node_modules/pi-web-access/video-extract.ts +378 -0
- package/node_modules/pi-web-access/youtube-extract.ts +310 -0
- package/node_modules/turndown/LICENSE +21 -0
- package/node_modules/turndown/README.md +234 -0
- package/node_modules/turndown/dist/turndown.js +800 -0
- package/node_modules/turndown/lib/turndown.browser.cjs.js +797 -0
- package/node_modules/turndown/lib/turndown.browser.es.js +795 -0
- package/node_modules/turndown/lib/turndown.browser.umd.js +803 -0
- package/node_modules/turndown/lib/turndown.cjs.js +774 -0
- package/node_modules/turndown/lib/turndown.es.js +772 -0
- package/node_modules/turndown/lib/turndown.umd.js +780 -0
- package/node_modules/turndown/package.json +59 -0
- package/node_modules/uhyphen/LICENSE +15 -0
- package/node_modules/uhyphen/README.md +13 -0
- package/node_modules/uhyphen/cjs/index.js +3 -0
- package/node_modules/uhyphen/cjs/package.json +1 -0
- package/node_modules/uhyphen/es.js +1 -0
- package/node_modules/uhyphen/esm/index.js +2 -0
- package/node_modules/uhyphen/index.js +14 -0
- package/node_modules/uhyphen/min.js +1 -0
- package/node_modules/uhyphen/package.json +52 -0
- package/node_modules/unpdf/LICENSE +21 -0
- package/node_modules/unpdf/README.md +365 -0
- package/node_modules/unpdf/dist/index.cjs +429 -0
- package/node_modules/unpdf/dist/index.d.cts +182 -0
- package/node_modules/unpdf/dist/index.d.mts +182 -0
- package/node_modules/unpdf/dist/index.d.ts +182 -0
- package/node_modules/unpdf/dist/index.mjs +416 -0
- package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
- package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
- package/node_modules/unpdf/dist/pdfjs.mjs +107 -0
- package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +274 -0
- package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
- package/node_modules/unpdf/dist/types/src/display/api.d.ts +1619 -0
- package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
- package/node_modules/unpdf/dist/types/src/display/binary_data_factory.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +210 -0
- package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +216 -0
- package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +29 -0
- package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +281 -0
- package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +22 -0
- package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
- package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +227 -0
- package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
- package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +59 -0
- package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +117 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
- package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +578 -0
- package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
- package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
- package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
- package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
- package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
- package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +484 -0
- package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
- package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +66 -0
- package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
- package/node_modules/unpdf/dist/types/src/display/network.d.ts +20 -0
- package/node_modules/unpdf/dist/types/src/display/network_stream.d.ts +2 -0
- package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
- package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +4 -0
- package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/obj_bin_transform_display.d.ts +67 -0
- package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/pages_mapper.d.ts +72 -0
- package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +80 -0
- package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
- package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
- package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +91 -0
- package/node_modules/unpdf/dist/types/src/display/text_layer_images.d.ts +10 -0
- package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +11 -0
- package/node_modules/unpdf/dist/types/src/display/webgpu_mesh.d.ts +3 -0
- package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
- package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
- package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
- package/node_modules/unpdf/dist/types/src/pdf.d.ts +67 -0
- package/node_modules/unpdf/dist/types/src/shared/base_pdf_stream.d.ts +121 -0
- package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
- package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
- package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/shared/obj_bin_transform_utils.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/shared/util.d.ts +424 -0
- package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +64 -0
- package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
- package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
- package/node_modules/unpdf/dist/types/web/autolinker.d.ts +29 -0
- package/node_modules/unpdf/dist/types/web/base_download_manager.d.ts +24 -0
- package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
- package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
- package/node_modules/unpdf/dist/types/web/download_manager.d.ts +4 -0
- package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +22 -0
- package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
- package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
- package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +18 -0
- package/node_modules/unpdf/dist/types/web/l10n.d.ts +31 -0
- package/node_modules/unpdf/dist/types/web/menu.d.ts +11 -0
- package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +132 -0
- package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
- package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
- package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +142 -0
- package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +27 -0
- package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +249 -0
- package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +50 -0
- package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
- package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
- package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
- package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +108 -0
- package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +161 -0
- package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
- package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +619 -0
- package/node_modules/unpdf/dist/types/web/renderable_view.d.ts +33 -0
- package/node_modules/unpdf/dist/types/web/sidebar.d.ts +65 -0
- package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
- package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
- package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
- package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +70 -0
- package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +265 -0
- package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
- package/node_modules/unpdf/package.json +97 -0
- package/node_modules/yocto-queue/index.d.ts +75 -0
- package/node_modules/yocto-queue/index.js +90 -0
- package/node_modules/yocto-queue/license +9 -0
- package/node_modules/yocto-queue/package.json +48 -0
- package/node_modules/yocto-queue/readme.md +80 -0
- package/package.json +103 -0
- package/resources/skills/ab-test-analysis/SKILL.md +82 -0
- package/resources/skills/agent-feed-publish/SKILL.md +63 -0
- package/resources/skills/analyze-feature-requests/SKILL.md +49 -0
- package/resources/skills/ansoff-matrix/SKILL.md +166 -0
- package/resources/skills/awaken/SKILL.md +203 -0
- package/resources/skills/beachhead-segment/SKILL.md +145 -0
- package/resources/skills/brainstorm-experiments-existing/SKILL.md +51 -0
- package/resources/skills/brainstorm-experiments-new/SKILL.md +45 -0
- package/resources/skills/brainstorm-ideas-existing/SKILL.md +54 -0
- package/resources/skills/brainstorm-ideas-new/SKILL.md +46 -0
- package/resources/skills/brainstorm-okrs/SKILL.md +80 -0
- package/resources/skills/brave-search/SKILL.md +85 -0
- package/resources/skills/brave-search/content.js +86 -0
- package/resources/skills/brave-search/package-lock.json +621 -0
- package/resources/skills/brave-search/package.json +14 -0
- package/resources/skills/brave-search/search.js +199 -0
- package/resources/skills/browser-tools/SKILL.md +202 -0
- package/resources/skills/browser-tools/browser-content.js +103 -0
- package/resources/skills/browser-tools/browser-cookies.js +35 -0
- package/resources/skills/browser-tools/browser-eval.js +53 -0
- package/resources/skills/browser-tools/browser-hn-scraper.js +108 -0
- package/resources/skills/browser-tools/browser-nav.js +44 -0
- package/resources/skills/browser-tools/browser-pick.js +162 -0
- package/resources/skills/browser-tools/browser-screenshot.js +34 -0
- package/resources/skills/browser-tools/browser-start.js +86 -0
- package/resources/skills/browser-tools/package-lock.json +2556 -0
- package/resources/skills/browser-tools/package.json +19 -0
- package/resources/skills/business-model/SKILL.md +133 -0
- package/resources/skills/cohort-analysis/SKILL.md +114 -0
- package/resources/skills/competitive-battlecard/SKILL.md +77 -0
- package/resources/skills/competitor-analysis/SKILL.md +110 -0
- package/resources/skills/create-prd/SKILL.md +86 -0
- package/resources/skills/customer-journey-map/SKILL.md +65 -0
- package/resources/skills/daily-brief/SKILL.md +321 -0
- package/resources/skills/daily-brief/assets/rss-feeds.json +652 -0
- package/resources/skills/daily-brief/scripts/rss_digest.py +339 -0
- package/resources/skills/daily-brief/scripts/run_last30days.sh +115 -0
- package/resources/skills/daily-brief/scripts/submit_brief.sh +48 -0
- package/resources/skills/daily-brief/vendor/last30days/SKILL.md +1709 -0
- package/resources/skills/daily-brief/vendor/last30days/agents/openai.yaml +8 -0
- package/resources/skills/daily-brief/vendor/last30days/references/save-html-brief.md +90 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/briefing.py +264 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/build-skill.sh +39 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/compare.sh +61 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/evaluate_search_quality.py +554 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/last30days.py +1036 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/__init__.py +1 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/bird_x.py +505 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/bluesky.py +329 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/categories.py +283 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/chrome_cookies.py +322 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/cluster.py +271 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/competitors.py +199 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/cookie_extract.py +403 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/dates.py +120 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/dedupe.py +130 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/digg.py +414 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/entity_extract.py +127 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/env.py +744 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/fanout.py +85 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/fusion.py +207 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/github.py +921 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/grounding.py +324 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/hackernews.py +338 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/html_render.py +674 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/http.py +261 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/instagram.py +543 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/log.py +28 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/normalize.py +552 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/perplexity.py +164 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/pinterest.py +163 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/pipeline.py +1132 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/planner.py +714 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/polymarket.py +786 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/preflight.py +119 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/providers.py +483 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/quality_nudge.py +333 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/query.py +117 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit.py +713 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit_enrich.py +322 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit_public.py +388 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/relevance.py +168 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/render.py +1779 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/rerank.py +425 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/resolve.py +345 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/safari_cookies.py +193 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/schema.py +319 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/setup_wizard.py +536 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/signals.py +253 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/skill_meta.py +33 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/snippet.py +51 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/subproc.py +94 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/threads.py +205 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/tiktok.py +618 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/truthsocial.py +168 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/ui.py +616 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/LICENSE +21 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/bird-search.mjs +147 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/cookies.js +220 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/features.json +17 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/paginate-cursor.js +37 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/query-ids.json +20 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/runtime-features.js +151 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/runtime-query-ids.js +264 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-base.js +129 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-constants.js +50 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-features.js +347 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-search.js +157 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-types.js +2 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-utils.js +511 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/package.json +13 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xai_x.py +236 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xiaohongshu_api.py +162 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xquik.py +227 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xurl_x.py +172 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/youtube_yt.py +1035 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/setup-keychain.sh +122 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/store.py +991 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/test-v1-vs-v2.sh +220 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/test_device_auth.py +128 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/verify_v3.py +195 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/watchlist.py +293 -0
- package/resources/skills/draft-nda/SKILL.md +160 -0
- package/resources/skills/dummy-dataset/SKILL.md +114 -0
- package/resources/skills/find-skills/SKILL.md +142 -0
- package/resources/skills/grammar-check/SKILL.md +209 -0
- package/resources/skills/growth-loops/SKILL.md +125 -0
- package/resources/skills/gtm-motions/SKILL.md +155 -0
- package/resources/skills/gtm-strategy/SKILL.md +94 -0
- package/resources/skills/ideal-customer-profile/SKILL.md +164 -0
- package/resources/skills/identify-assumptions-existing/SKILL.md +44 -0
- package/resources/skills/identify-assumptions-new/SKILL.md +52 -0
- package/resources/skills/interview-script/SKILL.md +105 -0
- package/resources/skills/job-stories/SKILL.md +74 -0
- package/resources/skills/lean-canvas/SKILL.md +121 -0
- package/resources/skills/market-segments/SKILL.md +80 -0
- package/resources/skills/market-sizing/SKILL.md +90 -0
- package/resources/skills/marketing-ideas/SKILL.md +44 -0
- package/resources/skills/metrics-dashboard/SKILL.md +94 -0
- package/resources/skills/monetization-strategy/SKILL.md +150 -0
- package/resources/skills/north-star-metric/SKILL.md +74 -0
- package/resources/skills/opportunity-solution-tree/SKILL.md +64 -0
- package/resources/skills/outcome-roadmap/SKILL.md +68 -0
- package/resources/skills/pestle-analysis/SKILL.md +124 -0
- package/resources/skills/pi-skills-source/LICENSE +21 -0
- package/resources/skills/pi-skills-source/README.md +119 -0
- package/resources/skills/pm-skills-source/LICENSE +21 -0
- package/resources/skills/porters-five-forces/SKILL.md +212 -0
- package/resources/skills/positioning-ideas/SKILL.md +61 -0
- package/resources/skills/pre-mortem/SKILL.md +93 -0
- package/resources/skills/pricing-strategy/SKILL.md +85 -0
- package/resources/skills/prioritization-frameworks/SKILL.md +75 -0
- package/resources/skills/prioritize-assumptions/SKILL.md +48 -0
- package/resources/skills/prioritize-features/SKILL.md +52 -0
- package/resources/skills/privacy-policy/SKILL.md +238 -0
- package/resources/skills/product-name/SKILL.md +47 -0
- package/resources/skills/product-setup/SKILL.md +143 -0
- package/resources/skills/product-strategy/SKILL.md +111 -0
- package/resources/skills/product-vision/SKILL.md +52 -0
- package/resources/skills/release-notes/SKILL.md +63 -0
- package/resources/skills/retro/SKILL.md +76 -0
- package/resources/skills/review-resume/SKILL.md +221 -0
- package/resources/skills/sentiment-analysis/SKILL.md +83 -0
- package/resources/skills/skill-creator/LICENSE.txt +202 -0
- package/resources/skills/skill-creator/SKILL.md +485 -0
- package/resources/skills/skill-creator/agents/analyzer.md +274 -0
- package/resources/skills/skill-creator/agents/comparator.md +202 -0
- package/resources/skills/skill-creator/agents/grader.md +223 -0
- package/resources/skills/skill-creator/assets/eval_review.html +146 -0
- package/resources/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/resources/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/resources/skills/skill-creator/references/schemas.md +430 -0
- package/resources/skills/skill-creator/scripts/__init__.py +0 -0
- package/resources/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/resources/skills/skill-creator/scripts/generate_report.py +326 -0
- package/resources/skills/skill-creator/scripts/improve_description.py +247 -0
- package/resources/skills/skill-creator/scripts/package_skill.py +136 -0
- package/resources/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/resources/skills/skill-creator/scripts/run_eval.py +310 -0
- package/resources/skills/skill-creator/scripts/run_loop.py +328 -0
- package/resources/skills/skill-creator/scripts/utils.py +47 -0
- package/resources/skills/sprint-plan/SKILL.md +67 -0
- package/resources/skills/sql-queries/SKILL.md +87 -0
- package/resources/skills/stakeholder-map/SKILL.md +51 -0
- package/resources/skills/startup-canvas/SKILL.md +138 -0
- package/resources/skills/summarize-interview/SKILL.md +53 -0
- package/resources/skills/summarize-meeting/SKILL.md +81 -0
- package/resources/skills/swot-analysis/SKILL.md +96 -0
- package/resources/skills/test-scenarios/SKILL.md +86 -0
- package/resources/skills/user-personas/SKILL.md +69 -0
- package/resources/skills/user-segmentation/SKILL.md +88 -0
- package/resources/skills/user-stories/SKILL.md +74 -0
- package/resources/skills/value-prop-statements/SKILL.md +51 -0
- package/resources/skills/value-proposition/SKILL.md +108 -0
- package/resources/skills/wwas/SKILL.md +69 -0
- package/src/autopm/action-proposals.js +534 -0
- package/src/autopm/bootstrap.js +280 -0
- package/src/autopm/cli.js +93 -0
- package/src/autopm/command-tui.js +293 -0
- package/src/autopm/context-commands.js +813 -0
- package/src/autopm/context-connectors.js +629 -0
- package/src/autopm/dashboard.js +757 -0
- package/src/autopm/extension-runtime/bootstrap-guide.js +107 -0
- package/src/autopm/extension-runtime/command-menus.js +42 -0
- package/src/autopm/extension-runtime/contracts.js +191 -0
- package/src/autopm/extension-runtime/dashboard-ui.js +306 -0
- package/src/autopm/extension-runtime/loop-runtime.js +276 -0
- package/src/autopm/extension-runtime/registry.js +23 -0
- package/src/autopm/extension-runtime/runtime.js +2625 -0
- package/src/autopm/extension.js +76 -0
- package/src/autopm/heartbeat/cadence.js +237 -0
- package/src/autopm/heartbeat/contracts.js +387 -0
- package/src/autopm/heartbeat/file.js +538 -0
- package/src/autopm/heartbeat/runner.js +640 -0
- package/src/autopm/heartbeat/session-transcript.js +282 -0
- package/src/autopm/heartbeat/state.js +514 -0
- package/src/autopm/heartbeat/tasks.js +550 -0
- package/src/autopm/heartbeat-commands.js +712 -0
- package/src/autopm/heartbeat-tui.js +395 -0
- package/src/autopm/loader-env.js +430 -0
- package/src/autopm/loader.js +184 -0
- package/src/autopm/loop-commands.js +924 -0
- package/src/autopm/loop-tui.js +840 -0
- package/src/autopm/memory/accepted-memory.js +715 -0
- package/src/autopm/memory/candidates.js +305 -0
- package/src/autopm/memory/canonicalize.js +697 -0
- package/src/autopm/memory/chunk-store.js +259 -0
- package/src/autopm/memory/chunker.js +464 -0
- package/src/autopm/memory/contracts.js +493 -0
- package/src/autopm/memory/doctor.js +427 -0
- package/src/autopm/memory/entities.js +216 -0
- package/src/autopm/memory/get.js +854 -0
- package/src/autopm/memory/ingest.js +737 -0
- package/src/autopm/memory/jobs.js +791 -0
- package/src/autopm/memory/operations.js +931 -0
- package/src/autopm/memory/paths.js +187 -0
- package/src/autopm/memory/product-context-memory.js +285 -0
- package/src/autopm/memory/projection.js +152 -0
- package/src/autopm/memory/recall.js +678 -0
- package/src/autopm/memory/redaction.js +322 -0
- package/src/autopm/memory/registry.js +419 -0
- package/src/autopm/memory/runtime.js +496 -0
- package/src/autopm/memory/scheduler.js +507 -0
- package/src/autopm/memory/scorer.js +408 -0
- package/src/autopm/memory/search.js +652 -0
- package/src/autopm/memory/source-store.js +270 -0
- package/src/autopm/memory/status.js +334 -0
- package/src/autopm/memory/store.js +675 -0
- package/src/autopm/memory/summary-global.js +1050 -0
- package/src/autopm/memory/summary-source.js +898 -0
- package/src/autopm/memory/summary-topic.js +1087 -0
- package/src/autopm/memory/tools.js +448 -0
- package/src/autopm/memory/tree.js +816 -0
- package/src/autopm/memory/wiki.js +226 -0
- package/src/autopm/memory/worker.js +484 -0
- package/src/autopm/memory-commands.js +1079 -0
- package/src/autopm/modules/bootstrap/register.js +6 -0
- package/src/autopm/modules/context/register.js +6 -0
- package/src/autopm/modules/heartbeat/register.js +6 -0
- package/src/autopm/modules/loop/register.js +6 -0
- package/src/autopm/modules/memory/register.js +6 -0
- package/src/autopm/modules/product-setup/register.js +7 -0
- package/src/autopm/modules/venture/register.js +6 -0
- package/src/autopm/native-commands.js +505 -0
- package/src/autopm/objective-commands.js +372 -0
- package/src/autopm/objective.js +444 -0
- package/src/autopm/opportunities/briefs.js +58 -0
- package/src/autopm/opportunities/contracts.js +20 -0
- package/src/autopm/opportunities/schemas.js +35 -0
- package/src/autopm/opportunities-commands.js +859 -0
- package/src/autopm/plan-commands.js +344 -0
- package/src/autopm/plan-proposals.js +907 -0
- package/src/autopm/pm-skills.js +139 -0
- package/src/autopm/product-context.js +745 -0
- package/src/autopm/product-setup-documents.js +340 -0
- package/src/autopm/resource-ownership.js +507 -0
- package/src/autopm/runtime-context.js +432 -0
- package/src/autopm/scheduler/contracts.js +298 -0
- package/src/autopm/scheduler/runner.js +288 -0
- package/src/autopm/scheduler/schedule.js +746 -0
- package/src/autopm/scheduler/store.js +352 -0
- package/src/autopm/ship-commands.js +413 -0
- package/src/autopm/ship-readiness.js +851 -0
- package/src/autopm/standalone-contract.js +146 -0
- package/src/autopm/system-context.js +379 -0
- package/src/autopm/system-prompt-files.js +382 -0
- package/src/autopm/triage-commands.js +533 -0
- package/src/autopm/venture-commands.js +1707 -0
- package/src/venture-signal/collector.js +718 -0
- package/src/venture-signal/contracts.js +482 -0
- package/src/venture-signal/default-sources.js +316 -0
- package/src/venture-signal/freshness.js +342 -0
- package/src/venture-signal/normalizer.js +1439 -0
- package/src/venture-signal/pm-writer.js +984 -0
- package/src/venture-signal/policy.js +730 -0
- package/src/venture-signal/runner.js +1685 -0
- package/src/venture-signal/schemas.js +2188 -0
- package/src/venture-signal/signal-analyst.js +722 -0
- package/src/venture-signal/skeptic.js +724 -0
- package/src/venture-signal/source-adapters.js +483 -0
- package/src/venture-signal/taxonomy.js +880 -0
|
@@ -0,0 +1,1707 @@
|
|
|
1
|
+
import { readFile } from 'node:fs/promises';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
ANALYST_STAGE,
|
|
6
|
+
COLLECTOR_STAGE,
|
|
7
|
+
NORMALIZER_STAGE,
|
|
8
|
+
PM_WRITER_STAGE,
|
|
9
|
+
SKEPTIC_STAGE,
|
|
10
|
+
VENTURE_SIGNAL_LATEST_PATH,
|
|
11
|
+
analystRunSummaryPath,
|
|
12
|
+
analystTrendScoresPath,
|
|
13
|
+
collectorDiagnosticsPath,
|
|
14
|
+
collectorRunSummaryPath,
|
|
15
|
+
normalizeVentureEntityId,
|
|
16
|
+
normalizeVentureRunId,
|
|
17
|
+
normalizerAliasesPath,
|
|
18
|
+
normalizerCompaniesPath,
|
|
19
|
+
normalizerDiagnosticsIndexPath,
|
|
20
|
+
normalizerDiagnosticsPath,
|
|
21
|
+
normalizerInvestorsPath,
|
|
22
|
+
normalizerRunSummaryPath,
|
|
23
|
+
normalizerSignalsPath,
|
|
24
|
+
normalizerTaxonomyMappingsPath,
|
|
25
|
+
normalizerTrendsPath,
|
|
26
|
+
pmWriterDailyRadarPath,
|
|
27
|
+
pmWriterDiagnosticsPath,
|
|
28
|
+
pmWriterRunSummaryPath,
|
|
29
|
+
pmWriterSectorMemoPath,
|
|
30
|
+
} from '../venture-signal/contracts.js';
|
|
31
|
+
import { getDefaultFreeVentureSourceBundle } from '../venture-signal/default-sources.js';
|
|
32
|
+
import {
|
|
33
|
+
analysisAnalystDiagnosticsPath,
|
|
34
|
+
analysisSkepticChallengedClaimsPath,
|
|
35
|
+
analysisSkepticDiagnosticsPath,
|
|
36
|
+
analysisSkepticReviewPath,
|
|
37
|
+
runVentureSignalAnalysis,
|
|
38
|
+
runVentureSignalCollector,
|
|
39
|
+
runVentureSignalNormalizer,
|
|
40
|
+
} from '../venture-signal/runner.js';
|
|
41
|
+
import { SECRET_LOOKING_PATTERN } from '../venture-signal/schemas.js';
|
|
42
|
+
|
|
43
|
+
export const VENTURE_COMMAND_NAME = 'venture';
|
|
44
|
+
export const VENTURE_SOURCES_TOOL_NAME = 'venture_signal_sources';
|
|
45
|
+
export const VENTURE_RUN_TOOL_NAME = 'venture_signal_run';
|
|
46
|
+
export const VENTURE_NORMALIZE_TOOL_NAME = 'venture_signal_normalize';
|
|
47
|
+
export const VENTURE_ANALYZE_TOOL_NAME = 'venture_signal_analyze';
|
|
48
|
+
export const VENTURE_LATEST_TOOL_NAME = 'venture_signal_latest';
|
|
49
|
+
export const VENTURE_INSPECT_COLLECTOR_TOOL_NAME = 'venture_signal_inspect_collector';
|
|
50
|
+
export const VENTURE_INSPECT_NORMALIZER_TOOL_NAME = 'venture_signal_inspect_normalizer';
|
|
51
|
+
export const VENTURE_INSPECT_ANALYST_TOOL_NAME = 'venture_signal_inspect_analyst';
|
|
52
|
+
export const VENTURE_INSPECT_SKEPTIC_TOOL_NAME = 'venture_signal_inspect_skeptic';
|
|
53
|
+
export const VENTURE_RADAR_TOOL_NAME = 'venture_signal_radar';
|
|
54
|
+
export const VENTURE_MEMO_TOOL_NAME = 'venture_signal_memo';
|
|
55
|
+
|
|
56
|
+
const SECRET_LOOKING_REGEX = new RegExp(SECRET_LOOKING_PATTERN, 'g');
|
|
57
|
+
const SECRET_FLAG_NAME_PATTERN = /(?:^|[-_])(api[-_]?key|authorization|auth[-_]?token|access[-_]?token|refresh[-_]?token|secret|password|passwd|credential|token)(?:$|[-_])/i;
|
|
58
|
+
const SAFE_FLAG_NAME_PATTERN = /^--[A-Za-z][A-Za-z0-9-]{0,63}$/;
|
|
59
|
+
const DEFAULT_NOW = '2026-05-18T12:00:00.000Z';
|
|
60
|
+
|
|
61
|
+
const DEFAULT_FREE_SOURCE_RECORDS = Object.freeze([]);
|
|
62
|
+
const DEFAULT_FREE_ANALYSIS_SOURCE_RECORDS = Object.freeze([]);
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
export const VENTURE_SOURCES_TOOL_PARAMETERS = Object.freeze({
|
|
66
|
+
type: 'object',
|
|
67
|
+
additionalProperties: false,
|
|
68
|
+
properties: {
|
|
69
|
+
projectRoot: { type: 'string', description: 'Project root to inspect. Source listing is static and does not mutate the workspace.' },
|
|
70
|
+
},
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
export const VENTURE_RUN_TOOL_PARAMETERS = Object.freeze({
|
|
74
|
+
type: 'object',
|
|
75
|
+
additionalProperties: false,
|
|
76
|
+
properties: {
|
|
77
|
+
projectRoot: { type: 'string', description: 'Project root where .autopm/venture-signal Collector artifacts should be written.' },
|
|
78
|
+
runId: { type: 'string', description: 'Optional safe Collector run ID. Defaults to a generated collector-* ID.' },
|
|
79
|
+
now: { type: 'string', description: 'Optional ISO timestamp for deterministic local tests.' },
|
|
80
|
+
sourceRecords: {
|
|
81
|
+
type: 'array',
|
|
82
|
+
description: 'Optional authorized public source records. When omitted, the tool records source availability but does not synthesize evidence.',
|
|
83
|
+
items: { type: 'object', additionalProperties: true },
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
export const VENTURE_NORMALIZE_TOOL_PARAMETERS = Object.freeze({
|
|
89
|
+
type: 'object',
|
|
90
|
+
additionalProperties: false,
|
|
91
|
+
properties: {
|
|
92
|
+
projectRoot: { type: 'string', description: 'Project root where .autopm/venture-signal Collector and Normalizer artifacts should be written.' },
|
|
93
|
+
runId: { type: 'string', description: 'Optional safe Normalizer run ID. Defaults to a generated normalizer-* ID.' },
|
|
94
|
+
now: { type: 'string', description: 'Optional ISO timestamp for deterministic local tests.' },
|
|
95
|
+
sourceBundle: {
|
|
96
|
+
type: 'object',
|
|
97
|
+
description: 'Optional authorized public source bundle metadata. Defaults to the built-in free source bundle.',
|
|
98
|
+
additionalProperties: true,
|
|
99
|
+
},
|
|
100
|
+
sourceRecords: {
|
|
101
|
+
type: 'array',
|
|
102
|
+
description: 'Optional authorized public source records. When omitted, the tool records source availability but does not synthesize evidence.',
|
|
103
|
+
items: { type: 'object', additionalProperties: true },
|
|
104
|
+
},
|
|
105
|
+
},
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
export const VENTURE_ANALYZE_TOOL_PARAMETERS = Object.freeze({
|
|
109
|
+
type: 'object',
|
|
110
|
+
additionalProperties: false,
|
|
111
|
+
properties: {
|
|
112
|
+
projectRoot: { type: 'string', description: 'Project root where .autopm/venture-signal Collector, Normalizer, Analyst, and Skeptic artifacts should be written.' },
|
|
113
|
+
runId: { type: 'string', description: 'Optional safe Analysis run ID. Defaults to a generated analysis-* ID.' },
|
|
114
|
+
now: { type: 'string', description: 'Optional ISO timestamp for deterministic local tests.' },
|
|
115
|
+
sourceBundle: {
|
|
116
|
+
type: 'object',
|
|
117
|
+
description: 'Optional authorized public source bundle metadata. Defaults to the built-in free source bundle.',
|
|
118
|
+
additionalProperties: true,
|
|
119
|
+
},
|
|
120
|
+
sourceRecords: {
|
|
121
|
+
type: 'array',
|
|
122
|
+
description: 'Optional authorized public source records. When omitted, the tool records source availability but does not synthesize evidence.',
|
|
123
|
+
items: { type: 'object', additionalProperties: true },
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
export const VENTURE_LATEST_TOOL_PARAMETERS = Object.freeze({
|
|
129
|
+
type: 'object',
|
|
130
|
+
additionalProperties: false,
|
|
131
|
+
properties: {
|
|
132
|
+
projectRoot: { type: 'string', description: 'Project root containing .autopm/venture-signal/latest.json.' },
|
|
133
|
+
},
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
export const VENTURE_INSPECT_COLLECTOR_TOOL_PARAMETERS = Object.freeze({
|
|
137
|
+
type: 'object',
|
|
138
|
+
additionalProperties: false,
|
|
139
|
+
properties: {
|
|
140
|
+
projectRoot: { type: 'string', description: 'Project root containing Venture Signal Collector artifacts.' },
|
|
141
|
+
runId: { type: 'string', description: 'Optional safe Collector run ID. When omitted, latest.json selects the run.' },
|
|
142
|
+
stage: { type: 'string', enum: [COLLECTOR_STAGE], description: 'Stage to inspect with this Collector-specific tool.', default: COLLECTOR_STAGE },
|
|
143
|
+
},
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
export const VENTURE_INSPECT_NORMALIZER_TOOL_PARAMETERS = Object.freeze({
|
|
147
|
+
type: 'object',
|
|
148
|
+
additionalProperties: false,
|
|
149
|
+
properties: {
|
|
150
|
+
projectRoot: { type: 'string', description: 'Project root containing Venture Signal Normalizer artifacts.' },
|
|
151
|
+
runId: { type: 'string', description: 'Optional safe Normalizer run ID. When omitted, latest.json must select a Normalizer run.' },
|
|
152
|
+
stage: { type: 'string', enum: [NORMALIZER_STAGE], description: 'Stage to inspect with this Normalizer-specific tool.', default: NORMALIZER_STAGE },
|
|
153
|
+
},
|
|
154
|
+
});
|
|
155
|
+
|
|
156
|
+
export const VENTURE_INSPECT_ANALYST_TOOL_PARAMETERS = Object.freeze({
|
|
157
|
+
type: 'object',
|
|
158
|
+
additionalProperties: false,
|
|
159
|
+
properties: {
|
|
160
|
+
projectRoot: { type: 'string', description: 'Project root containing Venture Signal Analyst artifacts.' },
|
|
161
|
+
runId: { type: 'string', description: 'Optional safe Analysis run ID. When omitted, latest.json must select an Analyst/Skeptic analysis run.' },
|
|
162
|
+
stage: { type: 'string', enum: [ANALYST_STAGE], description: 'Stage to inspect with this Analyst-specific tool.', default: ANALYST_STAGE },
|
|
163
|
+
},
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
export const VENTURE_INSPECT_SKEPTIC_TOOL_PARAMETERS = Object.freeze({
|
|
167
|
+
type: 'object',
|
|
168
|
+
additionalProperties: false,
|
|
169
|
+
properties: {
|
|
170
|
+
projectRoot: { type: 'string', description: 'Project root containing Venture Signal Skeptic artifacts.' },
|
|
171
|
+
runId: { type: 'string', description: 'Optional safe Analysis run ID. When omitted, latest.json must select a Skeptic analysis run.' },
|
|
172
|
+
stage: { type: 'string', enum: [SKEPTIC_STAGE], description: 'Stage to inspect with this Skeptic-specific tool.', default: SKEPTIC_STAGE },
|
|
173
|
+
},
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
export const VENTURE_RADAR_TOOL_PARAMETERS = Object.freeze({
|
|
177
|
+
type: 'object',
|
|
178
|
+
additionalProperties: false,
|
|
179
|
+
properties: {
|
|
180
|
+
projectRoot: { type: 'string', description: 'Project root containing PM Writer daily radar artifacts.' },
|
|
181
|
+
runId: { type: 'string', description: 'Optional safe PM Writer run ID. When omitted, latest.json must select a PM Writer run.' },
|
|
182
|
+
},
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
export const VENTURE_MEMO_TOOL_PARAMETERS = Object.freeze({
|
|
186
|
+
type: 'object',
|
|
187
|
+
additionalProperties: false,
|
|
188
|
+
properties: {
|
|
189
|
+
projectRoot: { type: 'string', description: 'Project root containing PM Writer sector memo artifacts.' },
|
|
190
|
+
runId: { type: 'string', description: 'Optional safe PM Writer run ID. When omitted, latest.json must select a PM Writer run.' },
|
|
191
|
+
marketTrendId: { type: 'string', description: 'Optional PM Writer market trend ID. When omitted, latest.json selects the primary sector memo path.' },
|
|
192
|
+
},
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
function isPlainObject(value) {
|
|
196
|
+
return value !== null && typeof value === 'object' && !Array.isArray(value);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
function clone(value) {
|
|
200
|
+
return JSON.parse(JSON.stringify(value));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function normalizeArgs(args) {
|
|
204
|
+
return typeof args === 'string' ? args.trim() : '';
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
function safeFlagName(value) {
|
|
208
|
+
const raw = String(value ?? '');
|
|
209
|
+
const equalsIndex = raw.indexOf('=');
|
|
210
|
+
const name = equalsIndex >= 0 ? raw.slice(0, equalsIndex) : raw;
|
|
211
|
+
if (!SAFE_FLAG_NAME_PATTERN.test(name) || SECRET_FLAG_NAME_PATTERN.test(name)) return '--[redacted]';
|
|
212
|
+
return name;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
function redactSensitiveText(value) {
|
|
216
|
+
return String(value ?? '')
|
|
217
|
+
.replace(SECRET_LOOKING_REGEX, '[redacted]')
|
|
218
|
+
.replace(/([A-Z0-9_]*(?:API[-_]?KEY|AUTH(?:ORIZATION)?|ACCESS[-_]?TOKEN|REFRESH[-_]?TOKEN|SECRET|PASSWORD|PASSWD|CREDENTIAL|TOKEN)[A-Z0-9_]*\s*[=:]\s*)[^\s,;)}\]]+/gi, '$1[redacted]');
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
function uniqueCodes(values) {
|
|
222
|
+
return [...new Set(values.filter((value) => typeof value === 'string' && value.length > 0))];
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function diagnostic(code, message, details = {}, severity = 'error') {
|
|
226
|
+
return {
|
|
227
|
+
code,
|
|
228
|
+
severity,
|
|
229
|
+
message: redactSensitiveText(message),
|
|
230
|
+
timestamp: new Date().toISOString(),
|
|
231
|
+
details: Object.fromEntries(Object.entries(details).map(([key, value]) => [key, typeof value === 'string' ? redactSensitiveText(value) : value])),
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function baseEnvelope(subcommand, fields = {}) {
|
|
236
|
+
const warnings = Array.isArray(fields.warnings) ? fields.warnings : [];
|
|
237
|
+
const errors = Array.isArray(fields.errors) ? fields.errors : [];
|
|
238
|
+
return {
|
|
239
|
+
command: VENTURE_COMMAND_NAME,
|
|
240
|
+
subcommand,
|
|
241
|
+
implemented: true,
|
|
242
|
+
delegatedLegacyCommand: null,
|
|
243
|
+
status: fields.status ?? (errors.length > 0 ? 'error' : 'ok'),
|
|
244
|
+
generatedAt: fields.generatedAt ?? new Date().toISOString(),
|
|
245
|
+
artifactPathsRead: Array.isArray(fields.artifactPathsRead) ? fields.artifactPathsRead : [],
|
|
246
|
+
artifactPathsWritten: Array.isArray(fields.artifactPathsWritten) ? fields.artifactPathsWritten : [],
|
|
247
|
+
warningCodes: Array.isArray(fields.warningCodes) ? fields.warningCodes : uniqueCodes(warnings.map((warning) => warning?.code)),
|
|
248
|
+
errorCodes: Array.isArray(fields.errorCodes) ? fields.errorCodes : uniqueCodes(errors.map((error) => error?.code)),
|
|
249
|
+
warnings,
|
|
250
|
+
errors,
|
|
251
|
+
durableStateChanged: fields.durableStateChanged === true,
|
|
252
|
+
safeNextAction: fields.safeNextAction ?? null,
|
|
253
|
+
nextAction: fields.nextAction ?? fields.safeNextAction?.command ?? null,
|
|
254
|
+
...fields.extra,
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
function commandUsageText() {
|
|
259
|
+
return [
|
|
260
|
+
'Venture Signal diagnostics are internal tool surfaces. Use /opportunities for the operator workflow.',
|
|
261
|
+
'Internal tool surfaces:',
|
|
262
|
+
` ${VENTURE_SOURCES_TOOL_NAME} - list the default free Venture Signal source bundle`,
|
|
263
|
+
` ${VENTURE_RUN_TOOL_NAME} - run local Collector intake with supplied authorized source records`,
|
|
264
|
+
` ${VENTURE_NORMALIZE_TOOL_NAME} - run local Collector intake plus Normalizer artifacts`,
|
|
265
|
+
` ${VENTURE_ANALYZE_TOOL_NAME} - run Collector, Normalizer, Signal Analyst, and Skeptic artifacts`,
|
|
266
|
+
` ${VENTURE_LATEST_TOOL_NAME} - read .autopm/venture-signal/latest.json`,
|
|
267
|
+
` ${VENTURE_RADAR_TOOL_NAME} - inspect PM Writer daily radar output`,
|
|
268
|
+
` ${VENTURE_MEMO_TOOL_NAME} - inspect the primary PM Writer sector memo output`,
|
|
269
|
+
` ${VENTURE_INSPECT_COLLECTOR_TOOL_NAME} - inspect latest Collector summary and diagnostics`,
|
|
270
|
+
` ${VENTURE_INSPECT_NORMALIZER_TOOL_NAME} - inspect latest Normalizer summary, diagnostics, and aggregates`,
|
|
271
|
+
` ${VENTURE_INSPECT_ANALYST_TOOL_NAME} - inspect latest Analyst score components, warnings, and diagnostics`,
|
|
272
|
+
` ${VENTURE_INSPECT_SKEPTIC_TOOL_NAME} - inspect latest Skeptic challenges, confidence adjustments, and diagnostics`,
|
|
273
|
+
].join('\n');
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
function inspectToolNameForStage(stage) {
|
|
277
|
+
if (stage === NORMALIZER_STAGE) return VENTURE_INSPECT_NORMALIZER_TOOL_NAME;
|
|
278
|
+
if (stage === ANALYST_STAGE) return VENTURE_INSPECT_ANALYST_TOOL_NAME;
|
|
279
|
+
if (stage === SKEPTIC_STAGE) return VENTURE_INSPECT_SKEPTIC_TOOL_NAME;
|
|
280
|
+
return VENTURE_INSPECT_COLLECTOR_TOOL_NAME;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
function parseVentureArgs(args) {
|
|
284
|
+
const tokens = normalizeArgs(args).split(/\s+/).filter(Boolean);
|
|
285
|
+
const state = {
|
|
286
|
+
subcommand: null,
|
|
287
|
+
json: false,
|
|
288
|
+
help: false,
|
|
289
|
+
runId: undefined,
|
|
290
|
+
stage: undefined,
|
|
291
|
+
marketTrendId: undefined,
|
|
292
|
+
errors: [],
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
for (let index = 0; index < tokens.length; index += 1) {
|
|
296
|
+
const token = tokens[index];
|
|
297
|
+
if (token === '--json') {
|
|
298
|
+
state.json = true;
|
|
299
|
+
continue;
|
|
300
|
+
}
|
|
301
|
+
if (token === 'help' || token === '-h' || token === '--help') {
|
|
302
|
+
state.help = true;
|
|
303
|
+
continue;
|
|
304
|
+
}
|
|
305
|
+
if (token === '--run-id') {
|
|
306
|
+
const value = tokens[index + 1];
|
|
307
|
+
if (typeof value !== 'string' || value.trim() === '' || value.startsWith('--')) {
|
|
308
|
+
state.errors.push('Flag --run-id requires a non-empty value.');
|
|
309
|
+
} else {
|
|
310
|
+
state.runId = value.trim();
|
|
311
|
+
index += 1;
|
|
312
|
+
}
|
|
313
|
+
continue;
|
|
314
|
+
}
|
|
315
|
+
if (token.startsWith('--run-id=')) {
|
|
316
|
+
const value = token.slice('--run-id='.length).trim();
|
|
317
|
+
if (value === '') state.errors.push('Flag --run-id requires a non-empty value.');
|
|
318
|
+
else state.runId = value;
|
|
319
|
+
continue;
|
|
320
|
+
}
|
|
321
|
+
if (token === '--stage') {
|
|
322
|
+
const value = tokens[index + 1];
|
|
323
|
+
if (typeof value !== 'string' || value.trim() === '' || value.startsWith('--')) {
|
|
324
|
+
state.errors.push('Flag --stage requires a non-empty value.');
|
|
325
|
+
} else {
|
|
326
|
+
state.stage = value.trim();
|
|
327
|
+
index += 1;
|
|
328
|
+
}
|
|
329
|
+
continue;
|
|
330
|
+
}
|
|
331
|
+
if (token.startsWith('--stage=')) {
|
|
332
|
+
const value = token.slice('--stage='.length).trim();
|
|
333
|
+
if (value === '') state.errors.push('Flag --stage requires a non-empty value.');
|
|
334
|
+
else state.stage = value;
|
|
335
|
+
continue;
|
|
336
|
+
}
|
|
337
|
+
if (token === '--market-trend-id') {
|
|
338
|
+
const value = tokens[index + 1];
|
|
339
|
+
if (typeof value !== 'string' || value.trim() === '' || value.startsWith('--')) {
|
|
340
|
+
state.errors.push('Flag --market-trend-id requires a non-empty value.');
|
|
341
|
+
} else {
|
|
342
|
+
state.marketTrendId = value.trim();
|
|
343
|
+
index += 1;
|
|
344
|
+
}
|
|
345
|
+
continue;
|
|
346
|
+
}
|
|
347
|
+
if (token.startsWith('--market-trend-id=')) {
|
|
348
|
+
const value = token.slice('--market-trend-id='.length).trim();
|
|
349
|
+
if (value === '') state.errors.push('Flag --market-trend-id requires a non-empty value.');
|
|
350
|
+
else state.marketTrendId = value;
|
|
351
|
+
continue;
|
|
352
|
+
}
|
|
353
|
+
if (token.startsWith('--')) {
|
|
354
|
+
state.errors.push(`Unsupported flag: ${safeFlagName(token)}`);
|
|
355
|
+
continue;
|
|
356
|
+
}
|
|
357
|
+
if (['sources', 'run', 'normalize', 'analyze', 'latest', 'inspect', 'radar', 'memo'].includes(token)) {
|
|
358
|
+
if (state.subcommand && state.subcommand !== token) {
|
|
359
|
+
state.errors.push('Unexpected subcommand: [redacted-subcommand]');
|
|
360
|
+
} else {
|
|
361
|
+
state.subcommand = token;
|
|
362
|
+
}
|
|
363
|
+
continue;
|
|
364
|
+
}
|
|
365
|
+
state.errors.push('Unknown subcommand: [redacted-subcommand]');
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
state.subcommand ??= state.help ? 'help' : 'sources';
|
|
369
|
+
if (state.runId && !['run', 'normalize', 'analyze', 'inspect', 'radar', 'memo'].includes(state.subcommand)) {
|
|
370
|
+
state.errors.push(`Unsupported flag for ${state.subcommand}: --run-id`);
|
|
371
|
+
}
|
|
372
|
+
if (state.stage && state.subcommand !== 'inspect') {
|
|
373
|
+
state.errors.push(`Unsupported flag for ${state.subcommand}: --stage`);
|
|
374
|
+
}
|
|
375
|
+
if (state.marketTrendId && state.subcommand !== 'memo') {
|
|
376
|
+
state.errors.push(`Unsupported flag for ${state.subcommand}: --market-trend-id`);
|
|
377
|
+
}
|
|
378
|
+
if (state.subcommand === 'inspect' && ![COLLECTOR_STAGE, NORMALIZER_STAGE, ANALYST_STAGE, SKEPTIC_STAGE].includes(state.stage ?? COLLECTOR_STAGE)) {
|
|
379
|
+
state.errors.push('CLI_ARG_STAGE_UNSUPPORTED: Venture Signal inspect supports stage collector, normalizer, analyst, or skeptic.');
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
return state;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
function summarizeSource(source) {
|
|
386
|
+
return {
|
|
387
|
+
sourceId: source.sourceId,
|
|
388
|
+
name: source.name,
|
|
389
|
+
category: source.category,
|
|
390
|
+
kind: source.kind,
|
|
391
|
+
optionality: source.optionality,
|
|
392
|
+
enabled: source.enabled !== false,
|
|
393
|
+
access: {
|
|
394
|
+
mode: source.access?.mode ?? 'unknown',
|
|
395
|
+
requiresCredential: source.access?.requiresCredential === true,
|
|
396
|
+
networkAccess: source.access?.networkAccess === true,
|
|
397
|
+
credentialEnvKey: source.access?.credentialEnvKey ?? null,
|
|
398
|
+
complianceNote: source.access?.complianceNote ?? null,
|
|
399
|
+
documentationUrl: source.access?.documentationUrl ?? null,
|
|
400
|
+
},
|
|
401
|
+
rights: {
|
|
402
|
+
status: source.rights?.status ?? 'unknown',
|
|
403
|
+
attributionRequired: source.rights?.attributionRequired === true,
|
|
404
|
+
termsUrl: source.rights?.termsUrl ?? null,
|
|
405
|
+
lastReviewedAt: source.rights?.lastReviewedAt ?? null,
|
|
406
|
+
},
|
|
407
|
+
freshnessExpectation: source.freshnessExpectation ?? null,
|
|
408
|
+
adapter: {
|
|
409
|
+
name: source.adapter?.name ?? null,
|
|
410
|
+
version: source.adapter?.version ?? null,
|
|
411
|
+
pollingEnabled: source.adapter?.config?.polling?.enabled === true,
|
|
412
|
+
},
|
|
413
|
+
};
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export function listVentureSources() {
|
|
417
|
+
const bundle = getDefaultFreeVentureSourceBundle();
|
|
418
|
+
const sources = bundle.sources.map(summarizeSource);
|
|
419
|
+
const paidExtensions = bundle.paidExtensions.map(summarizeSource);
|
|
420
|
+
return baseEnvelope('sources', {
|
|
421
|
+
status: 'ok',
|
|
422
|
+
durableStateChanged: false,
|
|
423
|
+
safeNextAction: { command: VENTURE_RUN_TOOL_NAME, reason: 'Run the local Collector with supplied authorized source records when artifacts are needed.' },
|
|
424
|
+
extra: {
|
|
425
|
+
bundleId: bundle.bundleId,
|
|
426
|
+
schemaVersion: bundle.schemaVersion,
|
|
427
|
+
model: bundle.model,
|
|
428
|
+
sourceCounts: {
|
|
429
|
+
free: sources.length,
|
|
430
|
+
required: sources.filter((source) => source.optionality === 'required').length,
|
|
431
|
+
optional: sources.filter((source) => source.optionality === 'optional').length,
|
|
432
|
+
paidExtensions: paidExtensions.length,
|
|
433
|
+
requiringCredentialsInDefaultFreeBundle: sources.filter((source) => source.access.requiresCredential).length,
|
|
434
|
+
},
|
|
435
|
+
accessModes: uniqueCodes(sources.map((source) => source.access.mode)).sort(),
|
|
436
|
+
rightsStatuses: uniqueCodes(sources.map((source) => source.rights.status)).sort(),
|
|
437
|
+
sources,
|
|
438
|
+
paidExtensions,
|
|
439
|
+
credentialRequired: false,
|
|
440
|
+
paidCredentialRequired: false,
|
|
441
|
+
compliance: {
|
|
442
|
+
defaultBundle: 'free-public-and-operator-provided-only',
|
|
443
|
+
paidExtensions: 'disabled-extension-metadata-only',
|
|
444
|
+
},
|
|
445
|
+
},
|
|
446
|
+
});
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
function runRecords(params = {}) {
|
|
450
|
+
return Array.isArray(params.sourceRecords) ? params.sourceRecords : clone(DEFAULT_FREE_SOURCE_RECORDS);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
function analysisRunRecords(params = {}) {
|
|
454
|
+
return Array.isArray(params.sourceRecords)
|
|
455
|
+
? params.sourceRecords
|
|
456
|
+
: clone([...DEFAULT_FREE_SOURCE_RECORDS, ...DEFAULT_FREE_ANALYSIS_SOURCE_RECORDS]);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
export async function runVentureCollectorCommand(params = {}) {
|
|
460
|
+
try {
|
|
461
|
+
const result = await runVentureSignalCollector({
|
|
462
|
+
rootDir: params.projectRoot,
|
|
463
|
+
runId: params.runId,
|
|
464
|
+
now: params.now ?? DEFAULT_NOW,
|
|
465
|
+
sourceRecords: runRecords(params),
|
|
466
|
+
sourceBundle: getDefaultFreeVentureSourceBundle(),
|
|
467
|
+
includePaidExtensions: false,
|
|
468
|
+
});
|
|
469
|
+
return baseEnvelope('run', {
|
|
470
|
+
status: result.status,
|
|
471
|
+
generatedAt: result.summary?.completedAt,
|
|
472
|
+
artifactPathsRead: [],
|
|
473
|
+
artifactPathsWritten: result.written,
|
|
474
|
+
warningCodes: result.status === 'warn' ? uniqueCodes(result.diagnostics.filter((entry) => entry.severity === 'warning').map((entry) => entry.code)) : [],
|
|
475
|
+
errorCodes: result.status === 'error' ? uniqueCodes(result.diagnostics.filter((entry) => entry.severity === 'error').map((entry) => entry.code)) : [],
|
|
476
|
+
warnings: result.diagnostics.filter((entry) => entry.severity === 'warning'),
|
|
477
|
+
errors: result.diagnostics.filter((entry) => entry.severity === 'error'),
|
|
478
|
+
durableStateChanged: result.written.length > 0,
|
|
479
|
+
safeNextAction: { command: VENTURE_INSPECT_COLLECTOR_TOOL_NAME, reason: 'Inspect Collector diagnostics and latest promotion before downstream stages consume artifacts.' },
|
|
480
|
+
extra: {
|
|
481
|
+
runId: result.runId,
|
|
482
|
+
role: result.role,
|
|
483
|
+
stage: result.stage,
|
|
484
|
+
summaryPath: result.summaryPath,
|
|
485
|
+
diagnosticsPath: result.diagnosticsPath,
|
|
486
|
+
latestPath: result.latestPath,
|
|
487
|
+
latestPromoted: result.latestPromoted,
|
|
488
|
+
previousLatestPreserved: result.previousLatestPreserved,
|
|
489
|
+
sourceCounts: result.summary?.sourceCounts ?? null,
|
|
490
|
+
accessModes: result.summary?.accessModes ?? [],
|
|
491
|
+
rightsStatuses: result.summary?.rightsStatuses ?? [],
|
|
492
|
+
},
|
|
493
|
+
});
|
|
494
|
+
} catch (error) {
|
|
495
|
+
const code = error?.name === 'AbortError' ? 'VENTURE_COLLECTOR_RUN_ABORTED' : 'VENTURE_COLLECTOR_RUN_FAILED';
|
|
496
|
+
return baseEnvelope('run', {
|
|
497
|
+
status: 'error',
|
|
498
|
+
errors: [diagnostic(code, 'Venture Signal Collector run failed before producing a complete result.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
499
|
+
durableStateChanged: false,
|
|
500
|
+
safeNextAction: { command: VENTURE_SOURCES_TOOL_NAME, reason: 'Inspect source bundle and retry with a safe run ID.' },
|
|
501
|
+
extra: { runId: null, latestPromoted: false },
|
|
502
|
+
});
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
function normalizerAggregatePaths(runId) {
|
|
507
|
+
const normalizedRunId = normalizeVentureRunId(runId);
|
|
508
|
+
return {
|
|
509
|
+
companies: normalizerCompaniesPath(normalizedRunId),
|
|
510
|
+
investors: normalizerInvestorsPath(normalizedRunId),
|
|
511
|
+
trends: normalizerTrendsPath(normalizedRunId),
|
|
512
|
+
signals: normalizerSignalsPath(normalizedRunId),
|
|
513
|
+
aliases: normalizerAliasesPath(normalizedRunId),
|
|
514
|
+
taxonomyMappings: normalizerTaxonomyMappingsPath(normalizedRunId),
|
|
515
|
+
diagnosticsIndex: normalizerDiagnosticsIndexPath(normalizedRunId),
|
|
516
|
+
};
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
export async function runVentureNormalizerCommand(params = {}) {
|
|
520
|
+
try {
|
|
521
|
+
const result = await runVentureSignalNormalizer({
|
|
522
|
+
rootDir: params.projectRoot,
|
|
523
|
+
runId: params.runId,
|
|
524
|
+
now: params.now ?? DEFAULT_NOW,
|
|
525
|
+
sourceRecords: runRecords(params),
|
|
526
|
+
sourceBundle: isPlainObject(params.sourceBundle) ? params.sourceBundle : getDefaultFreeVentureSourceBundle(),
|
|
527
|
+
includePaidExtensions: false,
|
|
528
|
+
});
|
|
529
|
+
const warnings = result.diagnostics.filter((entry) => entry.severity === 'warning');
|
|
530
|
+
const errors = result.diagnostics.filter((entry) => entry.severity === 'error');
|
|
531
|
+
return baseEnvelope('normalize', {
|
|
532
|
+
status: result.status,
|
|
533
|
+
generatedAt: result.summary?.completedAt,
|
|
534
|
+
artifactPathsRead: [],
|
|
535
|
+
artifactPathsWritten: result.written,
|
|
536
|
+
warningCodes: uniqueCodes(warnings.map((entry) => entry.code)),
|
|
537
|
+
errorCodes: uniqueCodes(errors.map((entry) => entry.code)),
|
|
538
|
+
warnings,
|
|
539
|
+
errors,
|
|
540
|
+
durableStateChanged: result.written.length > 0,
|
|
541
|
+
safeNextAction: { command: VENTURE_INSPECT_NORMALIZER_TOOL_NAME, reason: 'Inspect Normalizer diagnostics, duplicate-resolution decisions, and aggregate artifacts before scoring.' },
|
|
542
|
+
extra: {
|
|
543
|
+
runId: result.runId,
|
|
544
|
+
role: result.role,
|
|
545
|
+
stage: result.stage,
|
|
546
|
+
stageStatuses: result.stageStatuses,
|
|
547
|
+
summaryPath: result.summaryPath,
|
|
548
|
+
diagnosticsPath: result.diagnosticsPath,
|
|
549
|
+
aggregatePaths: {
|
|
550
|
+
...result.aggregatePaths,
|
|
551
|
+
aliases: normalizerAliasesPath(result.runId),
|
|
552
|
+
taxonomyMappings: normalizerTaxonomyMappingsPath(result.runId),
|
|
553
|
+
},
|
|
554
|
+
latestPath: result.latestPath,
|
|
555
|
+
latestPromoted: result.latestPromoted,
|
|
556
|
+
previousLatestPreserved: result.previousLatestPreserved,
|
|
557
|
+
normalizerCounts: result.summary?.counts ?? null,
|
|
558
|
+
},
|
|
559
|
+
});
|
|
560
|
+
} catch (error) {
|
|
561
|
+
const code = error?.name === 'AbortError' ? 'VENTURE_NORMALIZER_RUN_ABORTED' : 'VENTURE_NORMALIZER_RUN_FAILED';
|
|
562
|
+
return baseEnvelope('normalize', {
|
|
563
|
+
status: 'error',
|
|
564
|
+
errors: [diagnostic(code, 'Venture Signal Normalizer run failed before producing a complete result.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
565
|
+
durableStateChanged: false,
|
|
566
|
+
safeNextAction: { command: VENTURE_RUN_TOOL_NAME, reason: 'Create and inspect a valid Collector run before retrying normalization.' },
|
|
567
|
+
extra: { runId: null, latestPromoted: false, normalizerCounts: null },
|
|
568
|
+
});
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
function diagnosticIsWarning(entry) {
|
|
573
|
+
return entry?.severity === 'warning' || entry?.status === 'warn';
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
function diagnosticIsError(entry) {
|
|
577
|
+
return entry?.severity === 'error' || entry?.status === 'error';
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
function trendScoreSummary(trendScore) {
|
|
581
|
+
return {
|
|
582
|
+
marketTrendId: trendScore?.marketTrendId ?? null,
|
|
583
|
+
rank: trendScore?.rank ?? null,
|
|
584
|
+
score: trendScore?.score ?? null,
|
|
585
|
+
confidenceScore: trendScore?.confidence?.score ?? null,
|
|
586
|
+
confidenceDowngraded: trendScore?.confidence?.downgraded === true,
|
|
587
|
+
downgradeReasons: Array.isArray(trendScore?.confidence?.downgradeReasons) ? trendScore.confidence.downgradeReasons : [],
|
|
588
|
+
artifactPath: trendScore?.artifactPath ?? null,
|
|
589
|
+
componentCount: Array.isArray(trendScore?.components) ? trendScore.components.length : 0,
|
|
590
|
+
missingEvidenceWarnings: Array.isArray(trendScore?.components)
|
|
591
|
+
? trendScore.components.flatMap((component) => Array.isArray(component?.missingEvidenceWarnings) ? component.missingEvidenceWarnings : [])
|
|
592
|
+
: [],
|
|
593
|
+
};
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
function challengeTypeCounts(challenges) {
|
|
597
|
+
const counts = {};
|
|
598
|
+
for (const challenge of challenges) {
|
|
599
|
+
const type = typeof challenge?.challengeType === 'string' && challenge.challengeType.length > 0 ? challenge.challengeType : 'unknown';
|
|
600
|
+
counts[type] = (counts[type] ?? 0) + 1;
|
|
601
|
+
}
|
|
602
|
+
return counts;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
export async function runVentureAnalysisCommand(params = {}) {
|
|
606
|
+
try {
|
|
607
|
+
const result = await runVentureSignalAnalysis({
|
|
608
|
+
rootDir: params.projectRoot,
|
|
609
|
+
runId: params.runId,
|
|
610
|
+
now: params.now ?? DEFAULT_NOW,
|
|
611
|
+
sourceRecords: analysisRunRecords(params),
|
|
612
|
+
sourceBundle: isPlainObject(params.sourceBundle) ? params.sourceBundle : getDefaultFreeVentureSourceBundle(),
|
|
613
|
+
includePaidExtensions: false,
|
|
614
|
+
});
|
|
615
|
+
const allDiagnostics = [...(result.analystDiagnostics ?? []), ...(result.skepticDiagnostics ?? [])];
|
|
616
|
+
const warnings = allDiagnostics.filter(diagnosticIsWarning);
|
|
617
|
+
const errors = allDiagnostics.filter(diagnosticIsError);
|
|
618
|
+
const trendScoreSummaries = Array.isArray(result.summary?.trendScores)
|
|
619
|
+
? result.summary.trendScores.map(trendScoreSummary)
|
|
620
|
+
: [];
|
|
621
|
+
const challengedClaims = Array.isArray(result.challengedClaims) ? result.challengedClaims : [];
|
|
622
|
+
return baseEnvelope('analyze', {
|
|
623
|
+
status: result.status,
|
|
624
|
+
generatedAt: result.summary?.completedAt,
|
|
625
|
+
artifactPathsRead: [],
|
|
626
|
+
artifactPathsWritten: result.written,
|
|
627
|
+
warningCodes: uniqueCodes(warnings.map((entry) => entry.code)),
|
|
628
|
+
errorCodes: uniqueCodes(errors.map((entry) => entry.code)),
|
|
629
|
+
warnings,
|
|
630
|
+
errors,
|
|
631
|
+
durableStateChanged: result.written.length > 0,
|
|
632
|
+
safeNextAction: { command: VENTURE_INSPECT_SKEPTIC_TOOL_NAME, reason: 'Inspect Skeptic challenges, confidence adjustments, bubble-risk rationale, and safety language before PM recommendations.' },
|
|
633
|
+
extra: {
|
|
634
|
+
runId: result.runId,
|
|
635
|
+
role: result.role,
|
|
636
|
+
stage: result.stage,
|
|
637
|
+
stageStatuses: result.stageStatuses,
|
|
638
|
+
summaryPath: result.summaryPath,
|
|
639
|
+
diagnosticsPath: result.diagnosticsPath,
|
|
640
|
+
analystPaths: result.analystPaths,
|
|
641
|
+
skepticPaths: result.skepticPaths,
|
|
642
|
+
latestPath: result.latestPath,
|
|
643
|
+
latestPromoted: result.latestPromoted,
|
|
644
|
+
previousLatestPreserved: result.previousLatestPreserved,
|
|
645
|
+
analysisCounts: result.analystSummary?.counts ?? null,
|
|
646
|
+
skepticCounts: {
|
|
647
|
+
challengedClaims: challengedClaims.length,
|
|
648
|
+
confidenceAdjustments: Array.isArray(result.confidenceAdjustments) ? result.confidenceAdjustments.length : 0,
|
|
649
|
+
diagnostics: Array.isArray(result.skepticDiagnostics) ? result.skepticDiagnostics.length : 0,
|
|
650
|
+
},
|
|
651
|
+
trendScoreSummaries,
|
|
652
|
+
challengeTypeCounts: challengeTypeCounts(challengedClaims),
|
|
653
|
+
safety: result.summary?.safety ?? null,
|
|
654
|
+
},
|
|
655
|
+
});
|
|
656
|
+
} catch (error) {
|
|
657
|
+
const code = error?.name === 'AbortError' ? 'VENTURE_ANALYSIS_RUN_ABORTED' : 'VENTURE_ANALYSIS_RUN_FAILED';
|
|
658
|
+
return baseEnvelope('analyze', {
|
|
659
|
+
status: 'error',
|
|
660
|
+
errors: [diagnostic(code, 'Venture Signal Analysis run failed before producing a complete result.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
661
|
+
durableStateChanged: false,
|
|
662
|
+
safeNextAction: { command: VENTURE_NORMALIZE_TOOL_NAME, reason: 'Create and inspect valid Normalizer artifacts before retrying analysis.' },
|
|
663
|
+
extra: { runId: null, latestPromoted: false, analysisCounts: null, skepticCounts: null },
|
|
664
|
+
});
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
async function readJsonArtifact(projectRoot, relativePath) {
|
|
669
|
+
const root = path.resolve(typeof projectRoot === 'string' && projectRoot.trim() !== '' ? projectRoot : process.cwd());
|
|
670
|
+
const destination = path.resolve(root, relativePath);
|
|
671
|
+
if (destination !== root && !destination.startsWith(`${root}${path.sep}`)) {
|
|
672
|
+
throw new TypeError(`Refusing to read Venture artifact outside project root: ${relativePath}.`);
|
|
673
|
+
}
|
|
674
|
+
return JSON.parse(await readFile(destination, 'utf8'));
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
export async function readVentureLatest(params = {}) {
|
|
678
|
+
try {
|
|
679
|
+
const latest = await readJsonArtifact(params.projectRoot, VENTURE_SIGNAL_LATEST_PATH);
|
|
680
|
+
const stage = [COLLECTOR_STAGE, NORMALIZER_STAGE, ANALYST_STAGE, SKEPTIC_STAGE, PM_WRITER_STAGE].includes(latest.stage) ? latest.stage : COLLECTOR_STAGE;
|
|
681
|
+
const safeNextCommand = stage === PM_WRITER_STAGE ? VENTURE_RADAR_TOOL_NAME : inspectToolNameForStage(stage);
|
|
682
|
+
const safeNextReason = stage === PM_WRITER_STAGE ? 'Inspect the PM Writer daily radar behind latest.json.' : `Inspect the ${stage} summary and diagnostics behind latest.json.`;
|
|
683
|
+
return baseEnvelope('latest', {
|
|
684
|
+
status: latest.status ?? 'ok',
|
|
685
|
+
generatedAt: latest.updatedAt,
|
|
686
|
+
artifactPathsRead: [VENTURE_SIGNAL_LATEST_PATH],
|
|
687
|
+
durableStateChanged: false,
|
|
688
|
+
safeNextAction: { command: safeNextCommand, reason: safeNextReason },
|
|
689
|
+
extra: {
|
|
690
|
+
latestPath: VENTURE_SIGNAL_LATEST_PATH,
|
|
691
|
+
latest,
|
|
692
|
+
runId: latest.runId,
|
|
693
|
+
stage: latest.stage,
|
|
694
|
+
summaryPath: latest.summaryPath,
|
|
695
|
+
diagnosticsPath: latest.diagnosticsPath,
|
|
696
|
+
sourceCounts: latest.sourceCounts,
|
|
697
|
+
freshness: latest.freshness,
|
|
698
|
+
promotion: latest.promotion,
|
|
699
|
+
},
|
|
700
|
+
});
|
|
701
|
+
} catch (error) {
|
|
702
|
+
const code = 'VENTURE_LATEST_UNAVAILABLE';
|
|
703
|
+
return baseEnvelope('latest', {
|
|
704
|
+
status: 'error',
|
|
705
|
+
artifactPathsRead: [VENTURE_SIGNAL_LATEST_PATH],
|
|
706
|
+
errors: [diagnostic(code, 'Venture Signal latest artifact is unavailable or malformed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
707
|
+
durableStateChanged: false,
|
|
708
|
+
safeNextAction: { command: VENTURE_RUN_TOOL_NAME, reason: 'Create a Collector run before reading latest state.' },
|
|
709
|
+
extra: { latestPath: VENTURE_SIGNAL_LATEST_PATH, latest: null },
|
|
710
|
+
});
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
function pmWriterLatestAllowed(latest) {
|
|
715
|
+
if (!isPlainObject(latest) || latest.stage !== PM_WRITER_STAGE) {
|
|
716
|
+
throw new TypeError(`Latest Venture Signal pointer is ${latest?.stage ?? 'unknown'}, not pm-writer.`);
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
function pmWriterDiagnosticsSummary(diagnosticsArtifact) {
|
|
721
|
+
const diagnostics = Array.isArray(diagnosticsArtifact?.diagnostics) ? diagnosticsArtifact.diagnostics : [];
|
|
722
|
+
const warnings = diagnostics.filter(diagnosticIsWarning);
|
|
723
|
+
const errors = diagnostics.filter(diagnosticIsError);
|
|
724
|
+
return {
|
|
725
|
+
diagnostics,
|
|
726
|
+
warnings,
|
|
727
|
+
errors,
|
|
728
|
+
warningCodes: uniqueCodes(warnings.map((entry) => entry.code)),
|
|
729
|
+
errorCodes: uniqueCodes(errors.map((entry) => entry.code)),
|
|
730
|
+
diagnosticCounts: {
|
|
731
|
+
total: diagnostics.length,
|
|
732
|
+
info: diagnostics.filter((entry) => entry.severity === 'info' || entry.status === 'info').length,
|
|
733
|
+
warning: warnings.length,
|
|
734
|
+
error: errors.length,
|
|
735
|
+
redacted: diagnostics.filter((entry) => entry.redacted === true).length,
|
|
736
|
+
},
|
|
737
|
+
};
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
function summarizePmWriterRecommendation(recommendation) {
|
|
741
|
+
return {
|
|
742
|
+
recommendationId: recommendation?.recommendationId ?? null,
|
|
743
|
+
recommendationType: recommendation?.recommendationType ?? null,
|
|
744
|
+
marketTrendId: recommendation?.marketTrendId ?? null,
|
|
745
|
+
title: recommendation?.title ?? null,
|
|
746
|
+
confidence: recommendation?.confidence ?? null,
|
|
747
|
+
risk: recommendation?.risk ?? null,
|
|
748
|
+
evidenceRefCount: Array.isArray(recommendation?.evidenceRefs) ? recommendation.evidenceRefs.length : 0,
|
|
749
|
+
skepticRefCount: Array.isArray(recommendation?.skepticRefs) ? recommendation.skepticRefs.length : 0,
|
|
750
|
+
nextActions: Array.isArray(recommendation?.nextActions) ? recommendation.nextActions : [],
|
|
751
|
+
};
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
async function resolvePmWriterInspectionPaths(projectRoot, runId) {
|
|
755
|
+
const artifactPathsRead = [];
|
|
756
|
+
let latest = null;
|
|
757
|
+
let normalizedRunId = runId;
|
|
758
|
+
if (typeof normalizedRunId !== 'string' || normalizedRunId.trim() === '') {
|
|
759
|
+
latest = await readJsonArtifact(projectRoot, VENTURE_SIGNAL_LATEST_PATH);
|
|
760
|
+
artifactPathsRead.push(VENTURE_SIGNAL_LATEST_PATH);
|
|
761
|
+
pmWriterLatestAllowed(latest);
|
|
762
|
+
normalizedRunId = latest.runId;
|
|
763
|
+
}
|
|
764
|
+
normalizedRunId = normalizeVentureRunId(normalizedRunId);
|
|
765
|
+
return { latest, runId: normalizedRunId, artifactPathsRead };
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
export async function inspectVentureRadar(params = {}) {
|
|
769
|
+
try {
|
|
770
|
+
const projectRoot = params.projectRoot;
|
|
771
|
+
const resolved = await resolvePmWriterInspectionPaths(projectRoot, params.runId);
|
|
772
|
+
const latest = resolved.latest;
|
|
773
|
+
const runId = resolved.runId;
|
|
774
|
+
const summaryPath = latest?.writerPaths?.summary ?? latest?.summaryPath ?? pmWriterRunSummaryPath(runId);
|
|
775
|
+
const diagnosticsPath = latest?.writerPaths?.diagnostics ?? latest?.diagnosticsPath ?? pmWriterDiagnosticsPath(runId);
|
|
776
|
+
const radarPath = latest?.writerPaths?.dailyRadarJson ?? latest?.dailyRadarPath ?? pmWriterDailyRadarPath(runId);
|
|
777
|
+
const summary = await readJsonArtifact(projectRoot, summaryPath);
|
|
778
|
+
const diagnosticsArtifact = await readJsonArtifact(projectRoot, diagnosticsPath);
|
|
779
|
+
const dailyRadar = await readJsonArtifact(projectRoot, radarPath);
|
|
780
|
+
const pathsRead = [...resolved.artifactPathsRead, summaryPath, diagnosticsPath, radarPath];
|
|
781
|
+
const diagnosticsSummary = pmWriterDiagnosticsSummary(diagnosticsArtifact);
|
|
782
|
+
const recommendations = Array.isArray(dailyRadar.recommendations) ? dailyRadar.recommendations : [];
|
|
783
|
+
|
|
784
|
+
return baseEnvelope('radar', {
|
|
785
|
+
status: summary.status ?? dailyRadar.status ?? (diagnosticsSummary.errors.length > 0 ? 'error' : diagnosticsSummary.warnings.length > 0 ? 'warn' : 'ok'),
|
|
786
|
+
generatedAt: dailyRadar.generatedAt ?? summary.completedAt,
|
|
787
|
+
artifactPathsRead: pathsRead,
|
|
788
|
+
warningCodes: diagnosticsSummary.warningCodes,
|
|
789
|
+
errorCodes: diagnosticsSummary.errorCodes,
|
|
790
|
+
warnings: diagnosticsSummary.warnings,
|
|
791
|
+
errors: diagnosticsSummary.errors,
|
|
792
|
+
durableStateChanged: false,
|
|
793
|
+
safeNextAction: { command: VENTURE_MEMO_TOOL_NAME, reason: 'Inspect the primary PM Writer sector memo after reviewing daily radar recommendation traces.' },
|
|
794
|
+
extra: {
|
|
795
|
+
runId,
|
|
796
|
+
role: PM_WRITER_STAGE,
|
|
797
|
+
stage: PM_WRITER_STAGE,
|
|
798
|
+
latest,
|
|
799
|
+
summaryPath,
|
|
800
|
+
diagnosticsPath,
|
|
801
|
+
radarPath,
|
|
802
|
+
writerPaths: latest?.writerPaths ?? summary.artifacts ?? null,
|
|
803
|
+
stageStatuses: dailyRadar.roleStageTrace?.stageStatuses ?? summary.stageStatuses ?? latest?.stageStatuses ?? null,
|
|
804
|
+
sourceTraceCoverage: dailyRadar.roleStageTrace?.sourceTraceCoverage ?? null,
|
|
805
|
+
radar: dailyRadar,
|
|
806
|
+
recommendationSummaries: recommendations.map(summarizePmWriterRecommendation),
|
|
807
|
+
alertCandidateCount: Array.isArray(dailyRadar.alertCandidates) ? dailyRadar.alertCandidates.length : 0,
|
|
808
|
+
mvpValidationExperimentCount: Array.isArray(dailyRadar.mvpValidationExperiments) ? dailyRadar.mvpValidationExperiments.length : 0,
|
|
809
|
+
diagnosticCounts: diagnosticsSummary.diagnosticCounts,
|
|
810
|
+
diagnostics: diagnosticsArtifact,
|
|
811
|
+
summary,
|
|
812
|
+
},
|
|
813
|
+
});
|
|
814
|
+
} catch (error) {
|
|
815
|
+
const code = 'VENTURE_RADAR_INSPECT_FAILED';
|
|
816
|
+
return baseEnvelope('radar', {
|
|
817
|
+
status: 'error',
|
|
818
|
+
errors: [diagnostic(code, 'Venture Signal PM Writer daily radar inspection failed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
819
|
+
durableStateChanged: false,
|
|
820
|
+
safeNextAction: { command: '/opportunities', reason: 'Use the AI-first opportunities workflow to decide whether PM Writer artifacts are needed as evidence before inspecting daily radar output.' },
|
|
821
|
+
extra: { stage: PM_WRITER_STAGE, runId: null, radar: null, summary: null, diagnostics: null },
|
|
822
|
+
});
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
export async function inspectVentureMemo(params = {}) {
|
|
827
|
+
try {
|
|
828
|
+
const projectRoot = params.projectRoot;
|
|
829
|
+
const resolved = await resolvePmWriterInspectionPaths(projectRoot, params.runId);
|
|
830
|
+
const latest = resolved.latest;
|
|
831
|
+
const runId = resolved.runId;
|
|
832
|
+
const summaryPath = latest?.writerPaths?.summary ?? latest?.summaryPath ?? pmWriterRunSummaryPath(runId);
|
|
833
|
+
const diagnosticsPath = latest?.writerPaths?.diagnostics ?? latest?.diagnosticsPath ?? pmWriterDiagnosticsPath(runId);
|
|
834
|
+
const summary = await readJsonArtifact(projectRoot, summaryPath);
|
|
835
|
+
const diagnosticsArtifact = await readJsonArtifact(projectRoot, diagnosticsPath);
|
|
836
|
+
let memoPath = latest?.writerPaths?.sectorMemoJson ?? null;
|
|
837
|
+
if (typeof params.marketTrendId === 'string' && params.marketTrendId.trim() !== '') {
|
|
838
|
+
memoPath = pmWriterSectorMemoPath(runId, normalizeVentureEntityId(params.marketTrendId, 'venture signal market trend id'));
|
|
839
|
+
}
|
|
840
|
+
if (typeof memoPath !== 'string' || memoPath.trim() === '') {
|
|
841
|
+
const sectorMemos = Array.isArray(summary.artifacts?.sectorMemos) ? summary.artifacts.sectorMemos : [];
|
|
842
|
+
memoPath = sectorMemos[0];
|
|
843
|
+
}
|
|
844
|
+
if (typeof memoPath !== 'string' || memoPath.trim() === '') {
|
|
845
|
+
throw new TypeError('PM Writer sector memo path is unavailable.');
|
|
846
|
+
}
|
|
847
|
+
const sectorMemo = await readJsonArtifact(projectRoot, memoPath);
|
|
848
|
+
const pathsRead = [...resolved.artifactPathsRead, summaryPath, diagnosticsPath, memoPath];
|
|
849
|
+
const diagnosticsSummary = pmWriterDiagnosticsSummary(diagnosticsArtifact);
|
|
850
|
+
|
|
851
|
+
return baseEnvelope('memo', {
|
|
852
|
+
status: summary.status ?? sectorMemo.status ?? (diagnosticsSummary.errors.length > 0 ? 'error' : diagnosticsSummary.warnings.length > 0 ? 'warn' : 'ok'),
|
|
853
|
+
generatedAt: sectorMemo.generatedAt ?? summary.completedAt,
|
|
854
|
+
artifactPathsRead: pathsRead,
|
|
855
|
+
warningCodes: diagnosticsSummary.warningCodes,
|
|
856
|
+
errorCodes: diagnosticsSummary.errorCodes,
|
|
857
|
+
warnings: diagnosticsSummary.warnings,
|
|
858
|
+
errors: diagnosticsSummary.errors,
|
|
859
|
+
durableStateChanged: false,
|
|
860
|
+
safeNextAction: { command: '/opportunities <natural language request>', reason: 'Use the AI-first opportunities workflow for a topic-focused follow-up after inspecting memo evidence and Skeptic traces.' },
|
|
861
|
+
extra: {
|
|
862
|
+
runId,
|
|
863
|
+
role: PM_WRITER_STAGE,
|
|
864
|
+
stage: PM_WRITER_STAGE,
|
|
865
|
+
latest,
|
|
866
|
+
summaryPath,
|
|
867
|
+
diagnosticsPath,
|
|
868
|
+
memoPath,
|
|
869
|
+
writerPaths: latest?.writerPaths ?? summary.artifacts ?? null,
|
|
870
|
+
marketTrendId: sectorMemo.marketTrendId,
|
|
871
|
+
sectorName: sectorMemo.sectorName,
|
|
872
|
+
sourceTraceCoverage: sectorMemo.roleStageTrace?.sourceTraceCoverage ?? null,
|
|
873
|
+
memo: sectorMemo,
|
|
874
|
+
recommendationSummaries: (sectorMemo.recommendations ?? []).map(summarizePmWriterRecommendation),
|
|
875
|
+
mvpValidationExperimentCount: Array.isArray(sectorMemo.mvpValidationExperiments) ? sectorMemo.mvpValidationExperiments.length : 0,
|
|
876
|
+
diagnosticCounts: diagnosticsSummary.diagnosticCounts,
|
|
877
|
+
diagnostics: diagnosticsArtifact,
|
|
878
|
+
summary,
|
|
879
|
+
},
|
|
880
|
+
});
|
|
881
|
+
} catch (error) {
|
|
882
|
+
const code = 'VENTURE_MEMO_INSPECT_FAILED';
|
|
883
|
+
return baseEnvelope('memo', {
|
|
884
|
+
status: 'error',
|
|
885
|
+
errors: [diagnostic(code, 'Venture Signal PM Writer sector memo inspection failed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
886
|
+
durableStateChanged: false,
|
|
887
|
+
safeNextAction: { command: '/opportunities', reason: 'Use the AI-first opportunities workflow to decide whether PM Writer artifacts are needed as evidence before inspecting sector memo output.' },
|
|
888
|
+
extra: { stage: PM_WRITER_STAGE, runId: null, memo: null, summary: null, diagnostics: null },
|
|
889
|
+
});
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
export async function inspectVentureCollector(params = {}) {
|
|
894
|
+
try {
|
|
895
|
+
const stage = params.stage ?? COLLECTOR_STAGE;
|
|
896
|
+
if (stage !== COLLECTOR_STAGE) {
|
|
897
|
+
throw new TypeError('Unsupported Venture Signal stage for Collector inspection; use --stage collector.');
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
let runId = params.runId;
|
|
901
|
+
let latest = null;
|
|
902
|
+
const artifactPathsRead = [];
|
|
903
|
+
if (typeof runId !== 'string' || runId.trim() === '') {
|
|
904
|
+
latest = await readJsonArtifact(params.projectRoot, VENTURE_SIGNAL_LATEST_PATH);
|
|
905
|
+
artifactPathsRead.push(VENTURE_SIGNAL_LATEST_PATH);
|
|
906
|
+
runId = latest.runId;
|
|
907
|
+
}
|
|
908
|
+
const normalizedRunId = normalizeVentureRunId(runId);
|
|
909
|
+
const summaryPath = collectorRunSummaryPath(normalizedRunId);
|
|
910
|
+
const diagnosticsPath = collectorDiagnosticsPath(normalizedRunId);
|
|
911
|
+
const summary = await readJsonArtifact(params.projectRoot, summaryPath);
|
|
912
|
+
const diagnosticsArtifact = await readJsonArtifact(params.projectRoot, diagnosticsPath);
|
|
913
|
+
artifactPathsRead.push(summaryPath, diagnosticsPath);
|
|
914
|
+
const diagnostics = Array.isArray(diagnosticsArtifact.diagnostics) ? diagnosticsArtifact.diagnostics : [];
|
|
915
|
+
const warningEntries = diagnostics.filter((entry) => entry.severity === 'warning');
|
|
916
|
+
const errorEntries = diagnostics.filter((entry) => entry.severity === 'error');
|
|
917
|
+
|
|
918
|
+
return baseEnvelope('inspect', {
|
|
919
|
+
status: summary.status ?? (errorEntries.length > 0 ? 'error' : warningEntries.length > 0 ? 'warn' : 'ok'),
|
|
920
|
+
generatedAt: summary.completedAt ?? diagnosticsArtifact.generatedAt,
|
|
921
|
+
artifactPathsRead,
|
|
922
|
+
warningCodes: uniqueCodes(warningEntries.map((entry) => entry.code)),
|
|
923
|
+
errorCodes: uniqueCodes(errorEntries.map((entry) => entry.code)),
|
|
924
|
+
warnings: warningEntries,
|
|
925
|
+
errors: errorEntries,
|
|
926
|
+
durableStateChanged: false,
|
|
927
|
+
safeNextAction: { command: VENTURE_LATEST_TOOL_NAME, reason: 'Use latest.json as the stable downstream pointer after Collector inspection passes.' },
|
|
928
|
+
extra: {
|
|
929
|
+
stage: COLLECTOR_STAGE,
|
|
930
|
+
runId: normalizedRunId,
|
|
931
|
+
latest,
|
|
932
|
+
summaryPath,
|
|
933
|
+
diagnosticsPath,
|
|
934
|
+
summary,
|
|
935
|
+
diagnostics: diagnosticsArtifact,
|
|
936
|
+
diagnosticCounts: {
|
|
937
|
+
total: diagnostics.length,
|
|
938
|
+
info: diagnostics.filter((entry) => entry.severity === 'info').length,
|
|
939
|
+
warning: warningEntries.length,
|
|
940
|
+
error: errorEntries.length,
|
|
941
|
+
redacted: diagnostics.filter((entry) => entry.redacted === true).length,
|
|
942
|
+
},
|
|
943
|
+
},
|
|
944
|
+
});
|
|
945
|
+
} catch (error) {
|
|
946
|
+
const code = 'VENTURE_COLLECTOR_INSPECT_FAILED';
|
|
947
|
+
return baseEnvelope('inspect', {
|
|
948
|
+
status: 'error',
|
|
949
|
+
errors: [diagnostic(code, 'Venture Signal Collector inspection failed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
950
|
+
durableStateChanged: false,
|
|
951
|
+
safeNextAction: { command: VENTURE_RUN_TOOL_NAME, reason: 'Create a valid Collector run before inspection.' },
|
|
952
|
+
extra: { stage: COLLECTOR_STAGE, runId: null, summary: null, diagnostics: null },
|
|
953
|
+
});
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
export async function inspectVentureNormalizer(params = {}) {
|
|
958
|
+
try {
|
|
959
|
+
const stage = params.stage ?? NORMALIZER_STAGE;
|
|
960
|
+
if (stage !== NORMALIZER_STAGE) {
|
|
961
|
+
throw new TypeError('Unsupported Venture Signal stage for Normalizer inspection; use --stage normalizer.');
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
let runId = params.runId;
|
|
965
|
+
let latest = null;
|
|
966
|
+
const artifactPathsRead = [];
|
|
967
|
+
if (typeof runId !== 'string' || runId.trim() === '') {
|
|
968
|
+
latest = await readJsonArtifact(params.projectRoot, VENTURE_SIGNAL_LATEST_PATH);
|
|
969
|
+
artifactPathsRead.push(VENTURE_SIGNAL_LATEST_PATH);
|
|
970
|
+
if (latest.stage !== NORMALIZER_STAGE) {
|
|
971
|
+
throw new TypeError(`Latest Venture Signal pointer is ${latest.stage ?? 'unknown'}, not normalizer.`);
|
|
972
|
+
}
|
|
973
|
+
runId = latest.runId;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
const normalizedRunId = normalizeVentureRunId(runId);
|
|
977
|
+
const summaryPath = normalizerRunSummaryPath(normalizedRunId);
|
|
978
|
+
const diagnosticsPath = normalizerDiagnosticsPath(normalizedRunId);
|
|
979
|
+
const aggregatePaths = normalizerAggregatePaths(normalizedRunId);
|
|
980
|
+
const summary = await readJsonArtifact(params.projectRoot, summaryPath);
|
|
981
|
+
const diagnosticsArtifact = await readJsonArtifact(params.projectRoot, diagnosticsPath);
|
|
982
|
+
const companies = await readJsonArtifact(params.projectRoot, aggregatePaths.companies);
|
|
983
|
+
const investors = await readJsonArtifact(params.projectRoot, aggregatePaths.investors);
|
|
984
|
+
const trends = await readJsonArtifact(params.projectRoot, aggregatePaths.trends);
|
|
985
|
+
const signals = await readJsonArtifact(params.projectRoot, aggregatePaths.signals);
|
|
986
|
+
const aliases = await readJsonArtifact(params.projectRoot, aggregatePaths.aliases);
|
|
987
|
+
const taxonomyMappings = await readJsonArtifact(params.projectRoot, aggregatePaths.taxonomyMappings);
|
|
988
|
+
const diagnosticsIndex = await readJsonArtifact(params.projectRoot, aggregatePaths.diagnosticsIndex);
|
|
989
|
+
artifactPathsRead.push(
|
|
990
|
+
summaryPath,
|
|
991
|
+
diagnosticsPath,
|
|
992
|
+
aggregatePaths.companies,
|
|
993
|
+
aggregatePaths.investors,
|
|
994
|
+
aggregatePaths.trends,
|
|
995
|
+
aggregatePaths.signals,
|
|
996
|
+
aggregatePaths.aliases,
|
|
997
|
+
aggregatePaths.taxonomyMappings,
|
|
998
|
+
aggregatePaths.diagnosticsIndex,
|
|
999
|
+
);
|
|
1000
|
+
|
|
1001
|
+
const diagnostics = Array.isArray(diagnosticsArtifact.diagnostics) ? diagnosticsArtifact.diagnostics : [];
|
|
1002
|
+
const warningEntries = diagnostics.filter((entry) => entry.severity === 'warning');
|
|
1003
|
+
const errorEntries = diagnostics.filter((entry) => entry.severity === 'error');
|
|
1004
|
+
|
|
1005
|
+
return baseEnvelope('inspect', {
|
|
1006
|
+
status: summary.status ?? (errorEntries.length > 0 ? 'error' : warningEntries.length > 0 ? 'warn' : 'ok'),
|
|
1007
|
+
generatedAt: summary.completedAt ?? diagnosticsArtifact.generatedAt,
|
|
1008
|
+
artifactPathsRead,
|
|
1009
|
+
warningCodes: uniqueCodes(warningEntries.map((entry) => entry.code)),
|
|
1010
|
+
errorCodes: uniqueCodes(errorEntries.map((entry) => entry.code)),
|
|
1011
|
+
warnings: warningEntries,
|
|
1012
|
+
errors: errorEntries,
|
|
1013
|
+
durableStateChanged: false,
|
|
1014
|
+
safeNextAction: { command: VENTURE_LATEST_TOOL_NAME, reason: 'Use latest.json as the stable Normalizer pointer before scoring or analyst stages.' },
|
|
1015
|
+
extra: {
|
|
1016
|
+
stage: NORMALIZER_STAGE,
|
|
1017
|
+
runId: normalizedRunId,
|
|
1018
|
+
latest,
|
|
1019
|
+
summaryPath,
|
|
1020
|
+
diagnosticsPath,
|
|
1021
|
+
aggregatePaths,
|
|
1022
|
+
normalizerCounts: summary.counts ?? null,
|
|
1023
|
+
summary,
|
|
1024
|
+
diagnostics: diagnosticsArtifact,
|
|
1025
|
+
diagnosticsIndex,
|
|
1026
|
+
companies,
|
|
1027
|
+
investors,
|
|
1028
|
+
trends,
|
|
1029
|
+
signals,
|
|
1030
|
+
aliases,
|
|
1031
|
+
taxonomyMappings,
|
|
1032
|
+
diagnosticCounts: {
|
|
1033
|
+
total: diagnostics.length,
|
|
1034
|
+
info: diagnostics.filter((entry) => entry.severity === 'info').length,
|
|
1035
|
+
warning: warningEntries.length,
|
|
1036
|
+
error: errorEntries.length,
|
|
1037
|
+
redacted: diagnostics.filter((entry) => entry.redacted === true).length,
|
|
1038
|
+
},
|
|
1039
|
+
},
|
|
1040
|
+
});
|
|
1041
|
+
} catch (error) {
|
|
1042
|
+
const code = 'VENTURE_NORMALIZER_INSPECT_FAILED';
|
|
1043
|
+
return baseEnvelope('inspect', {
|
|
1044
|
+
status: 'error',
|
|
1045
|
+
errors: [diagnostic(code, 'Venture Signal Normalizer inspection failed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
1046
|
+
durableStateChanged: false,
|
|
1047
|
+
safeNextAction: { command: VENTURE_NORMALIZE_TOOL_NAME, reason: 'Create a valid Normalizer run before inspection.' },
|
|
1048
|
+
extra: { stage: NORMALIZER_STAGE, runId: null, summary: null, diagnostics: null, aggregatePaths: null },
|
|
1049
|
+
});
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
function analysisLatestAllowed(latest, stages, label) {
|
|
1054
|
+
if (!isPlainObject(latest)) return;
|
|
1055
|
+
if (!stages.includes(latest.stage)) {
|
|
1056
|
+
throw new TypeError(`Latest Venture Signal pointer is ${latest.stage ?? 'unknown'}, not ${label}.`);
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
export async function inspectVentureAnalyst(params = {}) {
|
|
1061
|
+
try {
|
|
1062
|
+
const stage = params.stage ?? ANALYST_STAGE;
|
|
1063
|
+
if (stage !== ANALYST_STAGE) {
|
|
1064
|
+
throw new TypeError('Unsupported Venture Signal stage for Analyst inspection; use --stage analyst.');
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
let runId = params.runId;
|
|
1068
|
+
let latest = null;
|
|
1069
|
+
const artifactPathsRead = [];
|
|
1070
|
+
if (typeof runId !== 'string' || runId.trim() === '') {
|
|
1071
|
+
latest = await readJsonArtifact(params.projectRoot, VENTURE_SIGNAL_LATEST_PATH);
|
|
1072
|
+
artifactPathsRead.push(VENTURE_SIGNAL_LATEST_PATH);
|
|
1073
|
+
analysisLatestAllowed(latest, [ANALYST_STAGE, SKEPTIC_STAGE], 'an Analyst/Skeptic analysis run');
|
|
1074
|
+
runId = latest.runId;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
const normalizedRunId = normalizeVentureRunId(runId);
|
|
1078
|
+
const summaryPath = analystRunSummaryPath(normalizedRunId);
|
|
1079
|
+
const diagnosticsPath = analysisAnalystDiagnosticsPath(normalizedRunId);
|
|
1080
|
+
const trendScoresPath = analystTrendScoresPath(normalizedRunId);
|
|
1081
|
+
const summary = await readJsonArtifact(params.projectRoot, summaryPath);
|
|
1082
|
+
const diagnosticsArtifact = await readJsonArtifact(params.projectRoot, diagnosticsPath);
|
|
1083
|
+
const trendScores = await readJsonArtifact(params.projectRoot, trendScoresPath);
|
|
1084
|
+
artifactPathsRead.push(summaryPath, diagnosticsPath, trendScoresPath);
|
|
1085
|
+
|
|
1086
|
+
const diagnostics = Array.isArray(diagnosticsArtifact.diagnostics) ? diagnosticsArtifact.diagnostics : [];
|
|
1087
|
+
const warningEntries = diagnostics.filter(diagnosticIsWarning);
|
|
1088
|
+
const errorEntries = diagnostics.filter(diagnosticIsError);
|
|
1089
|
+
const trendScoreRecords = Array.isArray(trendScores.trendScores) ? trendScores.trendScores : [];
|
|
1090
|
+
|
|
1091
|
+
return baseEnvelope('inspect', {
|
|
1092
|
+
status: summary.status ?? (errorEntries.length > 0 ? 'error' : warningEntries.length > 0 ? 'warn' : 'ok'),
|
|
1093
|
+
generatedAt: summary.completedAt ?? diagnosticsArtifact.generatedAt,
|
|
1094
|
+
artifactPathsRead,
|
|
1095
|
+
warningCodes: uniqueCodes(warningEntries.map((entry) => entry.code)),
|
|
1096
|
+
errorCodes: uniqueCodes(errorEntries.map((entry) => entry.code)),
|
|
1097
|
+
warnings: warningEntries,
|
|
1098
|
+
errors: errorEntries,
|
|
1099
|
+
durableStateChanged: false,
|
|
1100
|
+
safeNextAction: { command: VENTURE_INSPECT_SKEPTIC_TOOL_NAME, reason: 'Compare Analyst score components against Skeptic challenges before PM output.' },
|
|
1101
|
+
extra: {
|
|
1102
|
+
stage: ANALYST_STAGE,
|
|
1103
|
+
runId: normalizedRunId,
|
|
1104
|
+
latest,
|
|
1105
|
+
summaryPath,
|
|
1106
|
+
diagnosticsPath,
|
|
1107
|
+
trendScoresPath,
|
|
1108
|
+
analystCounts: summary.counts ?? null,
|
|
1109
|
+
scoreArtifactPaths: summary.artifacts?.trendScoreArtifacts ?? [],
|
|
1110
|
+
trendScoreSummaries: trendScoreRecords.map(trendScoreSummary),
|
|
1111
|
+
confidenceDowngradeSummary: {
|
|
1112
|
+
downgradedTrendCount: trendScoreRecords.filter((trendScore) => trendScore?.confidence?.downgraded === true).length,
|
|
1113
|
+
downgradeReasons: uniqueCodes(trendScoreRecords.flatMap((trendScore) => Array.isArray(trendScore?.confidence?.downgradeReasons) ? trendScore.confidence.downgradeReasons : [])),
|
|
1114
|
+
},
|
|
1115
|
+
summary,
|
|
1116
|
+
diagnostics: diagnosticsArtifact,
|
|
1117
|
+
trendScores,
|
|
1118
|
+
diagnosticCounts: {
|
|
1119
|
+
total: diagnostics.length,
|
|
1120
|
+
info: diagnostics.filter((entry) => entry.severity === 'info' || entry.status === 'info').length,
|
|
1121
|
+
warning: warningEntries.length,
|
|
1122
|
+
error: errorEntries.length,
|
|
1123
|
+
redacted: diagnostics.filter((entry) => entry.redacted === true).length,
|
|
1124
|
+
},
|
|
1125
|
+
},
|
|
1126
|
+
});
|
|
1127
|
+
} catch (error) {
|
|
1128
|
+
const code = 'VENTURE_ANALYST_INSPECT_FAILED';
|
|
1129
|
+
return baseEnvelope('inspect', {
|
|
1130
|
+
status: 'error',
|
|
1131
|
+
errors: [diagnostic(code, 'Venture Signal Analyst inspection failed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
1132
|
+
durableStateChanged: false,
|
|
1133
|
+
safeNextAction: { command: VENTURE_ANALYZE_TOOL_NAME, reason: 'Create a valid Analysis run before Analyst inspection.' },
|
|
1134
|
+
extra: { stage: ANALYST_STAGE, runId: null, summary: null, diagnostics: null, trendScores: null },
|
|
1135
|
+
});
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
export async function inspectVentureSkeptic(params = {}) {
|
|
1140
|
+
try {
|
|
1141
|
+
const stage = params.stage ?? SKEPTIC_STAGE;
|
|
1142
|
+
if (stage !== SKEPTIC_STAGE) {
|
|
1143
|
+
throw new TypeError('Unsupported Venture Signal stage for Skeptic inspection; use --stage skeptic.');
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
let runId = params.runId;
|
|
1147
|
+
let latest = null;
|
|
1148
|
+
const artifactPathsRead = [];
|
|
1149
|
+
if (typeof runId !== 'string' || runId.trim() === '') {
|
|
1150
|
+
latest = await readJsonArtifact(params.projectRoot, VENTURE_SIGNAL_LATEST_PATH);
|
|
1151
|
+
artifactPathsRead.push(VENTURE_SIGNAL_LATEST_PATH);
|
|
1152
|
+
analysisLatestAllowed(latest, [SKEPTIC_STAGE], 'a Skeptic analysis run');
|
|
1153
|
+
runId = latest.runId;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
const normalizedRunId = normalizeVentureRunId(runId);
|
|
1157
|
+
const reviewPath = analysisSkepticReviewPath(normalizedRunId);
|
|
1158
|
+
const diagnosticsPath = analysisSkepticDiagnosticsPath(normalizedRunId);
|
|
1159
|
+
const challengedClaimsPath = analysisSkepticChallengedClaimsPath(normalizedRunId);
|
|
1160
|
+
const review = await readJsonArtifact(params.projectRoot, reviewPath);
|
|
1161
|
+
const diagnosticsArtifact = await readJsonArtifact(params.projectRoot, diagnosticsPath);
|
|
1162
|
+
const challengedClaims = await readJsonArtifact(params.projectRoot, challengedClaimsPath);
|
|
1163
|
+
artifactPathsRead.push(reviewPath, diagnosticsPath, challengedClaimsPath);
|
|
1164
|
+
|
|
1165
|
+
const diagnostics = Array.isArray(diagnosticsArtifact.diagnostics) ? diagnosticsArtifact.diagnostics : [];
|
|
1166
|
+
const warningEntries = diagnostics.filter(diagnosticIsWarning);
|
|
1167
|
+
const errorEntries = diagnostics.filter(diagnosticIsError);
|
|
1168
|
+
const challenges = Array.isArray(challengedClaims.challenges) ? challengedClaims.challenges : [];
|
|
1169
|
+
const trendScoreRecords = Array.isArray(review.trendScores) ? review.trendScores : [];
|
|
1170
|
+
|
|
1171
|
+
return baseEnvelope('inspect', {
|
|
1172
|
+
status: review.stageStatuses?.skeptic ?? review.status ?? (errorEntries.length > 0 ? 'error' : warningEntries.length > 0 ? 'warn' : 'ok'),
|
|
1173
|
+
generatedAt: review.completedAt ?? diagnosticsArtifact.generatedAt,
|
|
1174
|
+
artifactPathsRead,
|
|
1175
|
+
warningCodes: uniqueCodes(warningEntries.map((entry) => entry.code)),
|
|
1176
|
+
errorCodes: uniqueCodes(errorEntries.map((entry) => entry.code)),
|
|
1177
|
+
warnings: warningEntries,
|
|
1178
|
+
errors: errorEntries,
|
|
1179
|
+
durableStateChanged: false,
|
|
1180
|
+
safeNextAction: { command: VENTURE_LATEST_TOOL_NAME, reason: 'Use latest.json as the stable analysis pointer before PM Writer output.' },
|
|
1181
|
+
extra: {
|
|
1182
|
+
stage: SKEPTIC_STAGE,
|
|
1183
|
+
runId: normalizedRunId,
|
|
1184
|
+
latest,
|
|
1185
|
+
summaryPath: reviewPath,
|
|
1186
|
+
diagnosticsPath,
|
|
1187
|
+
challengedClaimsPath,
|
|
1188
|
+
skepticPaths: {
|
|
1189
|
+
review: reviewPath,
|
|
1190
|
+
challengedClaims: challengedClaimsPath,
|
|
1191
|
+
diagnostics: diagnosticsPath,
|
|
1192
|
+
challengeArtifacts: challenges.map((challenge) => challenge.artifactPath).filter(Boolean),
|
|
1193
|
+
},
|
|
1194
|
+
skepticCounts: {
|
|
1195
|
+
challengedClaims: challenges.length,
|
|
1196
|
+
confidenceAdjustments: challenges.length,
|
|
1197
|
+
diagnostics: diagnostics.length,
|
|
1198
|
+
},
|
|
1199
|
+
challengeTypeCounts: challengeTypeCounts(challenges),
|
|
1200
|
+
trendScoreSummaries: trendScoreRecords.map(trendScoreSummary),
|
|
1201
|
+
confidenceAdjustments: challenges.map((challenge) => ({
|
|
1202
|
+
marketTrendId: challenge.targetMarketTrendId,
|
|
1203
|
+
challengeId: challenge.challengeId,
|
|
1204
|
+
challengeType: challenge.challengeType,
|
|
1205
|
+
adjustedConfidenceScore: challenge.confidence?.score ?? null,
|
|
1206
|
+
downgradeReasons: Array.isArray(challenge.confidence?.downgradeReasons) ? challenge.confidence.downgradeReasons : [],
|
|
1207
|
+
})),
|
|
1208
|
+
review,
|
|
1209
|
+
summary: review,
|
|
1210
|
+
diagnostics: diagnosticsArtifact,
|
|
1211
|
+
challengedClaims,
|
|
1212
|
+
diagnosticCounts: {
|
|
1213
|
+
total: diagnostics.length,
|
|
1214
|
+
info: diagnostics.filter((entry) => entry.severity === 'info' || entry.status === 'info').length,
|
|
1215
|
+
warning: warningEntries.length,
|
|
1216
|
+
error: errorEntries.length,
|
|
1217
|
+
redacted: diagnostics.filter((entry) => entry.redacted === true).length,
|
|
1218
|
+
},
|
|
1219
|
+
},
|
|
1220
|
+
});
|
|
1221
|
+
} catch (error) {
|
|
1222
|
+
const code = 'VENTURE_SKEPTIC_INSPECT_FAILED';
|
|
1223
|
+
return baseEnvelope('inspect', {
|
|
1224
|
+
status: 'error',
|
|
1225
|
+
errors: [diagnostic(code, 'Venture Signal Skeptic inspection failed.', { reason: error instanceof Error ? error.message : String(error) })],
|
|
1226
|
+
durableStateChanged: false,
|
|
1227
|
+
safeNextAction: { command: VENTURE_ANALYZE_TOOL_NAME, reason: 'Create a valid Analysis run before Skeptic inspection.' },
|
|
1228
|
+
extra: { stage: SKEPTIC_STAGE, runId: null, summary: null, diagnostics: null, challengedClaims: null },
|
|
1229
|
+
});
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
function argumentFailure(messages, subcommand = 'sources') {
|
|
1234
|
+
const errors = messages.map((message) => {
|
|
1235
|
+
const codeMatch = /^([A-Z0-9_]+):/.exec(message);
|
|
1236
|
+
return diagnostic(codeMatch?.[1] ?? 'CLI_ARG_INVALID', message.replace(/^([A-Z0-9_]+):\s*/, ''), { usage: commandUsageText() });
|
|
1237
|
+
});
|
|
1238
|
+
return baseEnvelope(subcommand, {
|
|
1239
|
+
status: 'error',
|
|
1240
|
+
errors,
|
|
1241
|
+
durableStateChanged: false,
|
|
1242
|
+
safeNextAction: { command: VENTURE_SOURCES_TOOL_NAME, reason: 'Review supported Venture Signal tool inputs.' },
|
|
1243
|
+
});
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
function compactText(result) {
|
|
1247
|
+
const warningCodes = Array.isArray(result.warningCodes) && result.warningCodes.length > 0 ? result.warningCodes.join(', ') : 'none';
|
|
1248
|
+
const errorCodes = Array.isArray(result.errorCodes) && result.errorCodes.length > 0 ? result.errorCodes.join(', ') : 'none';
|
|
1249
|
+
return [
|
|
1250
|
+
`AutoPM venture: ${result.status ?? 'unknown'}`,
|
|
1251
|
+
`subcommand: ${result.subcommand ?? 'unknown'}`,
|
|
1252
|
+
`implemented: ${result.implemented === true}`,
|
|
1253
|
+
`runId: ${result.runId ?? result.latest?.runId ?? 'none'}`,
|
|
1254
|
+
`stage: ${result.stage ?? result.latest?.stage ?? 'none'}`,
|
|
1255
|
+
`summaryPath: ${result.summaryPath ?? 'none'}`,
|
|
1256
|
+
`diagnosticsPath: ${result.diagnosticsPath ?? 'none'}`,
|
|
1257
|
+
`latestPath: ${result.latestPath ?? VENTURE_SIGNAL_LATEST_PATH}`,
|
|
1258
|
+
`artifactPathsRead: ${Array.isArray(result.artifactPathsRead) && result.artifactPathsRead.length > 0 ? result.artifactPathsRead.join(', ') : 'none'}`,
|
|
1259
|
+
`artifactPathsWritten: ${Array.isArray(result.artifactPathsWritten) && result.artifactPathsWritten.length > 0 ? result.artifactPathsWritten.join(', ') : 'none'}`,
|
|
1260
|
+
`warnings: ${warningCodes}`,
|
|
1261
|
+
`errors: ${errorCodes}`,
|
|
1262
|
+
`durableStateChanged: ${result.durableStateChanged === true}`,
|
|
1263
|
+
`safeNextAction: ${result.safeNextAction?.command ?? 'none'}`,
|
|
1264
|
+
].join('\n');
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
function resolveProjectRoot(ctx, explicitProjectRoot) {
|
|
1268
|
+
if (typeof explicitProjectRoot === 'string' && explicitProjectRoot.trim() !== '') return explicitProjectRoot;
|
|
1269
|
+
if (typeof ctx?.cwd === 'string' && ctx.cwd.trim() !== '') return ctx.cwd;
|
|
1270
|
+
return process.cwd();
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
export function ventureCommandCompletions(prefix = '') {
|
|
1274
|
+
const trimmed = normalizeArgs(prefix).toLowerCase();
|
|
1275
|
+
return [
|
|
1276
|
+
{ value: 'sources', label: 'sources', description: 'List the default free Venture Signal source bundle' },
|
|
1277
|
+
{ value: 'run', label: 'run', description: 'Run local Collector intake using supplied authorized source records' },
|
|
1278
|
+
{ value: 'run --run-id', label: 'run --run-id', description: 'Run Collector intake with a deterministic run ID' },
|
|
1279
|
+
{ value: 'normalize', label: 'normalize', description: 'Run local Collector intake plus Normalizer artifacts' },
|
|
1280
|
+
{ value: 'normalize --run-id', label: 'normalize --run-id', description: 'Run Normalizer with a deterministic run ID' },
|
|
1281
|
+
{ value: 'analyze', label: 'analyze', description: 'Run Collector, Normalizer, Signal Analyst, and Skeptic artifacts' },
|
|
1282
|
+
{ value: 'analyze --run-id', label: 'analyze --run-id', description: 'Run Analysis with a deterministic run ID' },
|
|
1283
|
+
{ value: 'latest', label: 'latest', description: 'Read the stable Venture Signal latest pointer' },
|
|
1284
|
+
{ value: 'radar', label: 'radar', description: 'Inspect PM Writer daily radar output for the latest run' },
|
|
1285
|
+
{ value: 'memo', label: 'memo', description: 'Inspect the primary PM Writer sector memo output for the latest run' },
|
|
1286
|
+
{ value: 'inspect --stage collector', label: 'inspect collector', description: 'Inspect Collector summary and diagnostics for latest run' },
|
|
1287
|
+
{ value: 'inspect --stage normalizer', label: 'inspect normalizer', description: 'Inspect Normalizer diagnostics and aggregate artifacts for latest run' },
|
|
1288
|
+
{ value: 'inspect --stage analyst', label: 'inspect analyst', description: 'Inspect Analyst score components and diagnostics for latest analysis run' },
|
|
1289
|
+
{ value: 'inspect --stage skeptic', label: 'inspect skeptic', description: 'Inspect Skeptic challenges and diagnostics for latest analysis run' },
|
|
1290
|
+
{ value: 'help', label: 'help', description: 'Show Venture Signal command usage' },
|
|
1291
|
+
].filter((completion) => completion.value.toLowerCase().startsWith(trimmed));
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
export function createVentureCommandHandler() {
|
|
1295
|
+
return async function handleVentureCommand(args, ctx = {}) {
|
|
1296
|
+
const parsed = parseVentureArgs(args);
|
|
1297
|
+
if (parsed.help) {
|
|
1298
|
+
return baseEnvelope('help', {
|
|
1299
|
+
status: parsed.errors.length > 0 ? 'error' : 'ok',
|
|
1300
|
+
errors: parsed.errors.length > 0 ? [diagnostic('CLI_ARG_INVALID', parsed.errors.join('\n'), { usage: commandUsageText() })] : [],
|
|
1301
|
+
durableStateChanged: false,
|
|
1302
|
+
extra: { usage: commandUsageText() },
|
|
1303
|
+
});
|
|
1304
|
+
}
|
|
1305
|
+
if (parsed.errors.length > 0) {
|
|
1306
|
+
return argumentFailure(parsed.errors, parsed.subcommand);
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
const projectRoot = resolveProjectRoot(ctx);
|
|
1310
|
+
if (parsed.subcommand === 'sources') return listVentureSources({ projectRoot });
|
|
1311
|
+
if (parsed.subcommand === 'run') return runVentureCollectorCommand({ projectRoot, runId: parsed.runId });
|
|
1312
|
+
if (parsed.subcommand === 'normalize') return runVentureNormalizerCommand({ projectRoot, runId: parsed.runId });
|
|
1313
|
+
if (parsed.subcommand === 'analyze') return runVentureAnalysisCommand({ projectRoot, runId: parsed.runId });
|
|
1314
|
+
if (parsed.subcommand === 'latest') return readVentureLatest({ projectRoot });
|
|
1315
|
+
if (parsed.subcommand === 'radar') return inspectVentureRadar({ projectRoot, runId: parsed.runId });
|
|
1316
|
+
if (parsed.subcommand === 'memo') return inspectVentureMemo({ projectRoot, runId: parsed.runId, marketTrendId: parsed.marketTrendId });
|
|
1317
|
+
if (parsed.subcommand === 'inspect') {
|
|
1318
|
+
const stage = parsed.stage ?? COLLECTOR_STAGE;
|
|
1319
|
+
if (stage === NORMALIZER_STAGE) return inspectVentureNormalizer({ projectRoot, runId: parsed.runId, stage });
|
|
1320
|
+
if (stage === ANALYST_STAGE) return inspectVentureAnalyst({ projectRoot, runId: parsed.runId, stage });
|
|
1321
|
+
if (stage === SKEPTIC_STAGE) return inspectVentureSkeptic({ projectRoot, runId: parsed.runId, stage });
|
|
1322
|
+
return inspectVentureCollector({ projectRoot, runId: parsed.runId, stage });
|
|
1323
|
+
}
|
|
1324
|
+
return argumentFailure(['Unknown subcommand: [redacted-subcommand]'], parsed.subcommand);
|
|
1325
|
+
};
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
function ensureNotAborted(signal, operation) {
|
|
1329
|
+
if (signal?.aborted) {
|
|
1330
|
+
const error = new Error(`${operation} aborted before execution.`);
|
|
1331
|
+
error.name = 'AbortError';
|
|
1332
|
+
throw error;
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
function toolResult(result) {
|
|
1337
|
+
return {
|
|
1338
|
+
content: [{ type: 'text', text: compactText(result) }],
|
|
1339
|
+
isError: result.status === 'error',
|
|
1340
|
+
details: result,
|
|
1341
|
+
};
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
export function createVentureToolDefinitions() {
|
|
1345
|
+
return [
|
|
1346
|
+
{
|
|
1347
|
+
name: VENTURE_SOURCES_TOOL_NAME,
|
|
1348
|
+
label: 'Venture Signal Sources',
|
|
1349
|
+
description: 'List the built-in default free Venture Signal source bundle and disabled paid extension metadata. No credentials, network, or workspace mutation are required.',
|
|
1350
|
+
promptSnippet: 'List default free Venture Signal Collector sources before running intake',
|
|
1351
|
+
promptGuidelines: [
|
|
1352
|
+
'Use this before Venture Collector runs to inspect source access modes, rights status, optionality, and paid extension boundaries.',
|
|
1353
|
+
'Do not request paid credentials for the default free source bundle; paid extensions are disabled metadata only.',
|
|
1354
|
+
],
|
|
1355
|
+
parameters: VENTURE_SOURCES_TOOL_PARAMETERS,
|
|
1356
|
+
async execute(_toolCallId, params, signal) {
|
|
1357
|
+
try {
|
|
1358
|
+
ensureNotAborted(signal, VENTURE_SOURCES_TOOL_NAME);
|
|
1359
|
+
return toolResult(listVentureSources({ projectRoot: resolveProjectRoot(null, params?.projectRoot) }));
|
|
1360
|
+
} catch (error) {
|
|
1361
|
+
return toolResult(argumentFailure([error instanceof Error ? error.message : String(error)], 'sources'));
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
name: VENTURE_RUN_TOOL_NAME,
|
|
1367
|
+
label: 'Venture Signal Collector Run',
|
|
1368
|
+
description: 'Run local Venture Signal Collector intake and persist run-scoped Collector artifacts with safe latest promotion for ok/warn runs.',
|
|
1369
|
+
promptSnippet: 'Run Venture Signal Collector and inspect summary, diagnostics, and latest promotion artifacts',
|
|
1370
|
+
promptGuidelines: [
|
|
1371
|
+
'Use caller-provided authorized public sourceRecords when available; otherwise preserve source diagnostics without synthesized evidence.',
|
|
1372
|
+
'Inspect details.warningCodes, details.errorCodes, details.artifactPathsWritten, and details.latestPromoted before downstream use.',
|
|
1373
|
+
],
|
|
1374
|
+
parameters: VENTURE_RUN_TOOL_PARAMETERS,
|
|
1375
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1376
|
+
try {
|
|
1377
|
+
ensureNotAborted(signal, VENTURE_RUN_TOOL_NAME);
|
|
1378
|
+
const result = await runVentureCollectorCommand({
|
|
1379
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1380
|
+
runId: params.runId,
|
|
1381
|
+
now: params.now,
|
|
1382
|
+
sourceRecords: params.sourceRecords,
|
|
1383
|
+
});
|
|
1384
|
+
ensureNotAborted(signal, VENTURE_RUN_TOOL_NAME);
|
|
1385
|
+
return toolResult(result);
|
|
1386
|
+
} catch (error) {
|
|
1387
|
+
return toolResult(baseEnvelope('run', {
|
|
1388
|
+
status: 'error',
|
|
1389
|
+
errors: [diagnostic(
|
|
1390
|
+
error?.name === 'AbortError' ? 'VENTURE_COLLECTOR_RUN_ABORTED' : 'VENTURE_COLLECTOR_RUN_FAILED',
|
|
1391
|
+
'Venture Signal Collector tool execution failed before producing a complete result.',
|
|
1392
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1393
|
+
)],
|
|
1394
|
+
durableStateChanged: false,
|
|
1395
|
+
safeNextAction: { command: VENTURE_RUN_TOOL_NAME, reason: 'Retry the Collector run after resolving the tool failure.' },
|
|
1396
|
+
}));
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
name: VENTURE_NORMALIZE_TOOL_NAME,
|
|
1402
|
+
label: 'Venture Signal Normalizer Run',
|
|
1403
|
+
description: 'Run local Venture Signal Collector intake plus Normalizer artifact generation, validation, aggregate persistence, and safe latest promotion.',
|
|
1404
|
+
promptSnippet: 'Run Venture Signal Normalizer and inspect normalized companies, investors, market trends, signals, aliases, taxonomy mappings, and diagnostics',
|
|
1405
|
+
promptGuidelines: [
|
|
1406
|
+
'Use caller-provided authorized public source records and matching source bundle metadata when available; otherwise preserve source diagnostics without synthesized evidence.',
|
|
1407
|
+
'Inspect details.normalizerCounts, details.aggregatePaths, details.warningCodes, details.errorCodes, and details.latestPromoted before scoring or analyst stages.',
|
|
1408
|
+
],
|
|
1409
|
+
parameters: VENTURE_NORMALIZE_TOOL_PARAMETERS,
|
|
1410
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1411
|
+
try {
|
|
1412
|
+
ensureNotAborted(signal, VENTURE_NORMALIZE_TOOL_NAME);
|
|
1413
|
+
const result = await runVentureNormalizerCommand({
|
|
1414
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1415
|
+
runId: params.runId,
|
|
1416
|
+
now: params.now,
|
|
1417
|
+
sourceBundle: params.sourceBundle,
|
|
1418
|
+
sourceRecords: params.sourceRecords,
|
|
1419
|
+
});
|
|
1420
|
+
ensureNotAborted(signal, VENTURE_NORMALIZE_TOOL_NAME);
|
|
1421
|
+
return toolResult(result);
|
|
1422
|
+
} catch (error) {
|
|
1423
|
+
return toolResult(baseEnvelope('normalize', {
|
|
1424
|
+
status: 'error',
|
|
1425
|
+
errors: [diagnostic(
|
|
1426
|
+
error?.name === 'AbortError' ? 'VENTURE_NORMALIZER_RUN_ABORTED' : 'VENTURE_NORMALIZER_RUN_FAILED',
|
|
1427
|
+
'Venture Signal Normalizer tool execution failed before producing a complete result.',
|
|
1428
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1429
|
+
)],
|
|
1430
|
+
durableStateChanged: false,
|
|
1431
|
+
safeNextAction: { command: VENTURE_NORMALIZE_TOOL_NAME, reason: 'Retry the Normalizer run after resolving the tool failure.' },
|
|
1432
|
+
}));
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
name: VENTURE_ANALYZE_TOOL_NAME,
|
|
1438
|
+
label: 'Venture Signal Analysis Run',
|
|
1439
|
+
description: 'Run local Venture Signal Collector, Normalizer, Signal Analyst scoring, and Skeptic challenge generation with validated persistence and safe latest promotion.',
|
|
1440
|
+
promptSnippet: 'Run Venture Signal Analyst and Skeptic stages, then inspect score components and challenged claims',
|
|
1441
|
+
promptGuidelines: [
|
|
1442
|
+
'Use caller-provided authorized public source records and matching source bundle metadata when available; otherwise preserve source diagnostics without synthesized evidence.',
|
|
1443
|
+
'Inspect details.analystPaths, details.skepticPaths, details.trendScoreSummaries, details.challengeTypeCounts, warningCodes, errorCodes, and latestPromoted before PM Writer output.',
|
|
1444
|
+
],
|
|
1445
|
+
parameters: VENTURE_ANALYZE_TOOL_PARAMETERS,
|
|
1446
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1447
|
+
try {
|
|
1448
|
+
ensureNotAborted(signal, VENTURE_ANALYZE_TOOL_NAME);
|
|
1449
|
+
const result = await runVentureAnalysisCommand({
|
|
1450
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1451
|
+
runId: params.runId,
|
|
1452
|
+
now: params.now,
|
|
1453
|
+
sourceBundle: params.sourceBundle,
|
|
1454
|
+
sourceRecords: params.sourceRecords,
|
|
1455
|
+
});
|
|
1456
|
+
ensureNotAborted(signal, VENTURE_ANALYZE_TOOL_NAME);
|
|
1457
|
+
return toolResult(result);
|
|
1458
|
+
} catch (error) {
|
|
1459
|
+
return toolResult(baseEnvelope('analyze', {
|
|
1460
|
+
status: 'error',
|
|
1461
|
+
errors: [diagnostic(
|
|
1462
|
+
error?.name === 'AbortError' ? 'VENTURE_ANALYSIS_RUN_ABORTED' : 'VENTURE_ANALYSIS_RUN_FAILED',
|
|
1463
|
+
'Venture Signal Analysis tool execution failed before producing a complete result.',
|
|
1464
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1465
|
+
)],
|
|
1466
|
+
durableStateChanged: false,
|
|
1467
|
+
safeNextAction: { command: VENTURE_ANALYZE_TOOL_NAME, reason: 'Retry Analysis after resolving the tool failure.' },
|
|
1468
|
+
}));
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
name: VENTURE_LATEST_TOOL_NAME,
|
|
1474
|
+
label: 'Venture Signal Latest',
|
|
1475
|
+
description: 'Read the stable .autopm/venture-signal/latest.json pointer for the latest promotable Collector run.',
|
|
1476
|
+
promptSnippet: 'Read Venture Signal latest.json before consuming Collector artifacts',
|
|
1477
|
+
promptGuidelines: [
|
|
1478
|
+
'Use this to find the current Collector run and freshness/promotion status.',
|
|
1479
|
+
'If missing or malformed, run venture_signal_run before downstream stages consume artifacts.',
|
|
1480
|
+
],
|
|
1481
|
+
parameters: VENTURE_LATEST_TOOL_PARAMETERS,
|
|
1482
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1483
|
+
try {
|
|
1484
|
+
ensureNotAborted(signal, VENTURE_LATEST_TOOL_NAME);
|
|
1485
|
+
return toolResult(await readVentureLatest({ projectRoot: resolveProjectRoot(null, params.projectRoot) }));
|
|
1486
|
+
} catch (error) {
|
|
1487
|
+
return toolResult(baseEnvelope('latest', {
|
|
1488
|
+
status: 'error',
|
|
1489
|
+
errors: [diagnostic(
|
|
1490
|
+
error?.name === 'AbortError' ? 'VENTURE_LATEST_ABORTED' : 'VENTURE_LATEST_FAILED',
|
|
1491
|
+
'Venture Signal latest tool execution failed before producing a complete result.',
|
|
1492
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1493
|
+
)],
|
|
1494
|
+
durableStateChanged: false,
|
|
1495
|
+
safeNextAction: { command: VENTURE_LATEST_TOOL_NAME, reason: 'Retry latest inspection after resolving the tool failure.' },
|
|
1496
|
+
extra: { latestPath: VENTURE_SIGNAL_LATEST_PATH, latest: null },
|
|
1497
|
+
}));
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
name: VENTURE_RADAR_TOOL_NAME,
|
|
1503
|
+
label: 'Venture Signal PM Writer Radar Inspect',
|
|
1504
|
+
description: 'Inspect PM Writer daily radar output selected by latest.json or an explicit runId, including recommendation trace coverage and diagnostics.',
|
|
1505
|
+
promptSnippet: 'Inspect PM Writer daily radar recommendation traces and diagnostics for the latest opportunity workflow run',
|
|
1506
|
+
promptGuidelines: [
|
|
1507
|
+
'Use this after /opportunities or PM Writer generation when an agent needs low-level daily radar evidence paths.',
|
|
1508
|
+
'Check details.sourceTraceCoverage, details.recommendationSummaries, details.warningCodes, details.errorCodes, and details.artifactPathsRead before relying on recommendations.',
|
|
1509
|
+
],
|
|
1510
|
+
parameters: VENTURE_RADAR_TOOL_PARAMETERS,
|
|
1511
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1512
|
+
try {
|
|
1513
|
+
ensureNotAborted(signal, VENTURE_RADAR_TOOL_NAME);
|
|
1514
|
+
return toolResult(await inspectVentureRadar({
|
|
1515
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1516
|
+
runId: params.runId,
|
|
1517
|
+
}));
|
|
1518
|
+
} catch (error) {
|
|
1519
|
+
return toolResult(baseEnvelope('radar', {
|
|
1520
|
+
status: 'error',
|
|
1521
|
+
errors: [diagnostic(
|
|
1522
|
+
error?.name === 'AbortError' ? 'VENTURE_RADAR_INSPECT_ABORTED' : 'VENTURE_RADAR_INSPECT_FAILED',
|
|
1523
|
+
'Venture Signal PM Writer radar inspection tool execution failed before producing a complete result.',
|
|
1524
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1525
|
+
)],
|
|
1526
|
+
durableStateChanged: false,
|
|
1527
|
+
safeNextAction: { command: VENTURE_RADAR_TOOL_NAME, reason: 'Retry PM Writer radar inspection after resolving the tool failure.' },
|
|
1528
|
+
extra: { stage: PM_WRITER_STAGE, runId: null, radar: null, diagnostics: null },
|
|
1529
|
+
}));
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
name: VENTURE_MEMO_TOOL_NAME,
|
|
1535
|
+
label: 'Venture Signal PM Writer Memo Inspect',
|
|
1536
|
+
description: 'Inspect PM Writer sector memo output selected by latest.json, runId, or marketTrendId, including evidence and Skeptic traces.',
|
|
1537
|
+
promptSnippet: 'Inspect PM Writer sector memo evidence, Skeptic traces, MVP validation experiments, and diagnostics',
|
|
1538
|
+
promptGuidelines: [
|
|
1539
|
+
'Use this after /opportunities or venture_signal_radar when an agent needs low-level sector memo evidence paths.',
|
|
1540
|
+
'Check details.memo, details.recommendationSummaries, details.sourceTraceCoverage, warningCodes, errorCodes, and safeNextAction before proposing follow-up work.',
|
|
1541
|
+
],
|
|
1542
|
+
parameters: VENTURE_MEMO_TOOL_PARAMETERS,
|
|
1543
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1544
|
+
try {
|
|
1545
|
+
ensureNotAborted(signal, VENTURE_MEMO_TOOL_NAME);
|
|
1546
|
+
return toolResult(await inspectVentureMemo({
|
|
1547
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1548
|
+
runId: params.runId,
|
|
1549
|
+
marketTrendId: params.marketTrendId,
|
|
1550
|
+
}));
|
|
1551
|
+
} catch (error) {
|
|
1552
|
+
return toolResult(baseEnvelope('memo', {
|
|
1553
|
+
status: 'error',
|
|
1554
|
+
errors: [diagnostic(
|
|
1555
|
+
error?.name === 'AbortError' ? 'VENTURE_MEMO_INSPECT_ABORTED' : 'VENTURE_MEMO_INSPECT_FAILED',
|
|
1556
|
+
'Venture Signal PM Writer memo inspection tool execution failed before producing a complete result.',
|
|
1557
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1558
|
+
)],
|
|
1559
|
+
durableStateChanged: false,
|
|
1560
|
+
safeNextAction: { command: VENTURE_MEMO_TOOL_NAME, reason: 'Retry PM Writer memo inspection after resolving the tool failure.' },
|
|
1561
|
+
extra: { stage: PM_WRITER_STAGE, runId: null, memo: null, diagnostics: null },
|
|
1562
|
+
}));
|
|
1563
|
+
}
|
|
1564
|
+
},
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
name: VENTURE_INSPECT_COLLECTOR_TOOL_NAME,
|
|
1568
|
+
label: 'Venture Signal Collector Inspect',
|
|
1569
|
+
description: 'Inspect a Venture Signal Collector summary and diagnostics artifact selected by runId or latest.json.',
|
|
1570
|
+
promptSnippet: 'Inspect Venture Signal Collector diagnostic codes and artifact paths for the latest run',
|
|
1571
|
+
promptGuidelines: [
|
|
1572
|
+
'Use this before normalizer, analyst, skeptic, or PM writer stages consume Collector outputs.',
|
|
1573
|
+
'Check diagnosticCounts, warningCodes, errorCodes, redacted diagnostics, and latest promotion state.',
|
|
1574
|
+
],
|
|
1575
|
+
parameters: VENTURE_INSPECT_COLLECTOR_TOOL_PARAMETERS,
|
|
1576
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1577
|
+
try {
|
|
1578
|
+
ensureNotAborted(signal, VENTURE_INSPECT_COLLECTOR_TOOL_NAME);
|
|
1579
|
+
return toolResult(await inspectVentureCollector({
|
|
1580
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1581
|
+
runId: params.runId,
|
|
1582
|
+
stage: params.stage ?? COLLECTOR_STAGE,
|
|
1583
|
+
}));
|
|
1584
|
+
} catch (error) {
|
|
1585
|
+
return toolResult(baseEnvelope('inspect', {
|
|
1586
|
+
status: 'error',
|
|
1587
|
+
errors: [diagnostic(
|
|
1588
|
+
error?.name === 'AbortError' ? 'VENTURE_COLLECTOR_INSPECT_ABORTED' : 'VENTURE_COLLECTOR_INSPECT_FAILED',
|
|
1589
|
+
'Venture Signal Collector inspection tool execution failed before producing a complete result.',
|
|
1590
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1591
|
+
)],
|
|
1592
|
+
durableStateChanged: false,
|
|
1593
|
+
safeNextAction: { command: VENTURE_INSPECT_COLLECTOR_TOOL_NAME, reason: 'Retry Collector inspection after resolving the tool failure.' },
|
|
1594
|
+
extra: { stage: COLLECTOR_STAGE, runId: null, summary: null, diagnostics: null },
|
|
1595
|
+
}));
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
name: VENTURE_INSPECT_NORMALIZER_TOOL_NAME,
|
|
1601
|
+
label: 'Venture Signal Normalizer Inspect',
|
|
1602
|
+
description: 'Inspect a Venture Signal Normalizer summary, diagnostics, aliases, taxonomy mappings, and aggregate entity artifacts selected by runId or latest.json.',
|
|
1603
|
+
promptSnippet: 'Inspect Venture Signal Normalizer diagnostic codes, merge decisions, aggregate artifact paths, and normalized artifacts for the latest run',
|
|
1604
|
+
promptGuidelines: [
|
|
1605
|
+
'Use this after venture_signal_normalize and before scoring, analyst, skeptic, or PM writer stages consume Normalizer outputs.',
|
|
1606
|
+
'Check normalizerCounts, diagnosticCounts, warningCodes, errorCodes, aggregatePaths, duplicate/merge decisions, and validation diagnostics.',
|
|
1607
|
+
],
|
|
1608
|
+
parameters: VENTURE_INSPECT_NORMALIZER_TOOL_PARAMETERS,
|
|
1609
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1610
|
+
try {
|
|
1611
|
+
ensureNotAborted(signal, VENTURE_INSPECT_NORMALIZER_TOOL_NAME);
|
|
1612
|
+
return toolResult(await inspectVentureNormalizer({
|
|
1613
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1614
|
+
runId: params.runId,
|
|
1615
|
+
stage: params.stage ?? NORMALIZER_STAGE,
|
|
1616
|
+
}));
|
|
1617
|
+
} catch (error) {
|
|
1618
|
+
return toolResult(baseEnvelope('inspect', {
|
|
1619
|
+
status: 'error',
|
|
1620
|
+
errors: [diagnostic(
|
|
1621
|
+
error?.name === 'AbortError' ? 'VENTURE_NORMALIZER_INSPECT_ABORTED' : 'VENTURE_NORMALIZER_INSPECT_FAILED',
|
|
1622
|
+
'Venture Signal Normalizer inspection tool execution failed before producing a complete result.',
|
|
1623
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1624
|
+
)],
|
|
1625
|
+
durableStateChanged: false,
|
|
1626
|
+
safeNextAction: { command: VENTURE_INSPECT_NORMALIZER_TOOL_NAME, reason: 'Retry Normalizer inspection after resolving the tool failure.' },
|
|
1627
|
+
extra: { stage: NORMALIZER_STAGE, runId: null, summary: null, diagnostics: null, aggregatePaths: null },
|
|
1628
|
+
}));
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
name: VENTURE_INSPECT_ANALYST_TOOL_NAME,
|
|
1634
|
+
label: 'Venture Signal Analyst Inspect',
|
|
1635
|
+
description: 'Inspect Venture Signal Analyst score components, contribution diagnostics, freshness, source concentration, and confidence downgrades selected by runId or latest.json.',
|
|
1636
|
+
promptSnippet: 'Inspect Analyst scoring diagnostics and trend score component paths for the latest analysis run',
|
|
1637
|
+
promptGuidelines: [
|
|
1638
|
+
'Use this after venture_signal_analyze and before PM writer stages consume score components.',
|
|
1639
|
+
'Check analystCounts, trendScoreSummaries, confidenceDowngradeSummary, diagnosticCounts, warningCodes, and scoreArtifactPaths.',
|
|
1640
|
+
],
|
|
1641
|
+
parameters: VENTURE_INSPECT_ANALYST_TOOL_PARAMETERS,
|
|
1642
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1643
|
+
try {
|
|
1644
|
+
ensureNotAborted(signal, VENTURE_INSPECT_ANALYST_TOOL_NAME);
|
|
1645
|
+
return toolResult(await inspectVentureAnalyst({
|
|
1646
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1647
|
+
runId: params.runId,
|
|
1648
|
+
stage: params.stage ?? ANALYST_STAGE,
|
|
1649
|
+
}));
|
|
1650
|
+
} catch (error) {
|
|
1651
|
+
return toolResult(baseEnvelope('inspect', {
|
|
1652
|
+
status: 'error',
|
|
1653
|
+
errors: [diagnostic(
|
|
1654
|
+
error?.name === 'AbortError' ? 'VENTURE_ANALYST_INSPECT_ABORTED' : 'VENTURE_ANALYST_INSPECT_FAILED',
|
|
1655
|
+
'Venture Signal Analyst inspection tool execution failed before producing a complete result.',
|
|
1656
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1657
|
+
)],
|
|
1658
|
+
durableStateChanged: false,
|
|
1659
|
+
safeNextAction: { command: VENTURE_INSPECT_ANALYST_TOOL_NAME, reason: 'Retry Analyst inspection after resolving the tool failure.' },
|
|
1660
|
+
extra: { stage: ANALYST_STAGE, runId: null, summary: null, diagnostics: null, trendScores: null },
|
|
1661
|
+
}));
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
name: VENTURE_INSPECT_SKEPTIC_TOOL_NAME,
|
|
1667
|
+
label: 'Venture Signal Skeptic Inspect',
|
|
1668
|
+
description: 'Inspect Venture Signal Skeptic challenged claims, negative evidence, bubble-risk rationale, confidence adjustments, diagnostics, and safe next actions selected by runId or latest.json.',
|
|
1669
|
+
promptSnippet: 'Inspect Skeptic challenge diagnostics and confidence adjustment paths for the latest analysis run',
|
|
1670
|
+
promptGuidelines: [
|
|
1671
|
+
'Use this after venture_signal_analyze and before PM writer stages produce recommendations.',
|
|
1672
|
+
'Check skepticCounts, challengeTypeCounts, confidenceAdjustments, warningCodes, challengedClaimsPath, and no-investment-advice safety metadata.',
|
|
1673
|
+
],
|
|
1674
|
+
parameters: VENTURE_INSPECT_SKEPTIC_TOOL_PARAMETERS,
|
|
1675
|
+
async execute(_toolCallId, params = {}, signal) {
|
|
1676
|
+
try {
|
|
1677
|
+
ensureNotAborted(signal, VENTURE_INSPECT_SKEPTIC_TOOL_NAME);
|
|
1678
|
+
return toolResult(await inspectVentureSkeptic({
|
|
1679
|
+
projectRoot: resolveProjectRoot(null, params.projectRoot),
|
|
1680
|
+
runId: params.runId,
|
|
1681
|
+
stage: params.stage ?? SKEPTIC_STAGE,
|
|
1682
|
+
}));
|
|
1683
|
+
} catch (error) {
|
|
1684
|
+
return toolResult(baseEnvelope('inspect', {
|
|
1685
|
+
status: 'error',
|
|
1686
|
+
errors: [diagnostic(
|
|
1687
|
+
error?.name === 'AbortError' ? 'VENTURE_SKEPTIC_INSPECT_ABORTED' : 'VENTURE_SKEPTIC_INSPECT_FAILED',
|
|
1688
|
+
'Venture Signal Skeptic inspection tool execution failed before producing a complete result.',
|
|
1689
|
+
{ reason: error instanceof Error ? error.message : String(error) },
|
|
1690
|
+
)],
|
|
1691
|
+
durableStateChanged: false,
|
|
1692
|
+
safeNextAction: { command: VENTURE_INSPECT_SKEPTIC_TOOL_NAME, reason: 'Retry Skeptic inspection after resolving the tool failure.' },
|
|
1693
|
+
extra: { stage: SKEPTIC_STAGE, runId: null, summary: null, diagnostics: null, challengedClaims: null },
|
|
1694
|
+
}));
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1697
|
+
},
|
|
1698
|
+
];
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
export function createVentureToolResult(result) {
|
|
1702
|
+
return toolResult(result);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
export function compactVentureText(result) {
|
|
1706
|
+
return compactText(result);
|
|
1707
|
+
}
|