khabotcli 1.0.0
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/.OLD/PLAN.md +4 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Agent Orchestration Patterns for AI Runtimes.md +240 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Apply Layer & Cheaper Model Delegation.md +182 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Context Engineering for AI Agent Runtimes.md +197 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: System Prompt Architecture for AI Agent Runtimes.md +283 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Testing Strategies for AI Agent Runtimes.md +240 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-agent-orchestration.md +75 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-apply-layer.md +88 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-context-engineering.md +63 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-system-prompts.md +84 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-testing-ai-agents.md +74 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-agent-types.md +44 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-mcp-vs-custom-tools.md +61 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-session-storage.md +63 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-skill-auto-loading.md +56 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-system-prompt-architecture.md +62 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-agent-types.md +290 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-mcp-vs-custom-tools.md +234 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-session-storage.md +455 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-skill-auto-loading.md +479 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-system-prompt-architecture.md +508 -0
- package/.OLD/STEP-1/step-1.md +1066 -0
- package/.OLD/STEP-2/FACTS.md +244 -0
- package/.OLD/STEP-2/RESEARCH-RESULTS/deep-research-ably-integration.md +673 -0
- package/.OLD/STEP-2/RESEARCH-RESULTS/deep-research-nodejs-agent-runtime.md +373 -0
- package/.OLD/STEP-2/RESEARCH-TODO/deep-research-ably-integration.md +68 -0
- package/.OLD/STEP-2/RESEARCH-TODO/deep-research-nodejs-agent-runtime.md +67 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-api-design.md +60 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-custom-tool-execution.md +60 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-sqlite-schema.md +53 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-subagent-lifecycle.md +65 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-api-design.md +394 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-custom-tool-execution.md +650 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-sqlite-schema.md +658 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-subagent-lifecycle.md +400 -0
- package/.OLD/STEP-2/step-2.md +252 -0
- package/.OLD/STEP-3/FACTS.md +225 -0
- package/.OLD/STEP-4/FACTS.md +117 -0
- package/.OLD/STEP-5/AUDIT.md +242 -0
- package/.OLD/STEP-5/audit-prompt.md +114 -0
- package/.OLD/STEP-6/AUDIT.md +468 -0
- package/.OLD/STEP-7/AUDIT.md +360 -0
- package/.OLD/STEP-7/OPTIONS.md +86 -0
- package/.OLD/Trial-1/API.md +545 -0
- package/.OLD/Trial-1/CONFIG.md +446 -0
- package/.OLD/Trial-1/DEV-PHASES.md +688 -0
- package/.OLD/Trial-1/README.md +310 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/analyst/AGENT.md +44 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/analyst/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/coder/AGENT.md +44 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/coder/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/helper/AGENT.md +35 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/helper/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/reviewer/AGENT.md +37 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/reviewer/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/writer/AGENT.md +28 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/writer/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/settings.json +53 -0
- package/.OLD/Trial-1/TEST-APP/README.md +199 -0
- package/.OLD/Trial-1/TEST-APP/api-client.js +166 -0
- package/.OLD/Trial-1/TEST-APP/results-chat.json +1 -0
- package/.OLD/Trial-1/TEST-APP/test-chat.js +162 -0
- package/.OLD/Trial-1/TEST-APP/test-runner.js +130 -0
- package/.OLD/Trial-1/TEST-APP/test-tasks.js +222 -0
- package/.OLD/Trial-1/TEST-APP/test-tools.js +175 -0
- package/.OLD/Trial-1/node_modules/.package-lock.json +1360 -0
- package/.OLD/Trial-1/node_modules/accepts/HISTORY.md +243 -0
- package/.OLD/Trial-1/node_modules/accepts/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/accepts/README.md +140 -0
- package/.OLD/Trial-1/node_modules/accepts/index.js +238 -0
- package/.OLD/Trial-1/node_modules/accepts/package.json +47 -0
- package/.OLD/Trial-1/node_modules/ajv/.runkit_example.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/ajv/README.md +207 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.js +61 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.js +55 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.js +50 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.js +123 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.js +242 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.js +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.js +178 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.d.ts +174 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.js +618 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.js +72 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/data.json +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.js +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/2019.ts +81 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/2020.ts +75 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/ajv.ts +70 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/index.ts +324 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/names.ts +27 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/util.ts +213 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/core.ts +892 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/jtd.ts +132 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/data.json +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/index.ts +244 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/package.json +127 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/README.md +125 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.js +208 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.js +37 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.js +69 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/package.json +74 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/formats.ts +269 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/index.ts +62 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/limit.ts +99 -0
- package/.OLD/Trial-1/node_modules/array-flatten/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/array-flatten/README.md +43 -0
- package/.OLD/Trial-1/node_modules/array-flatten/array-flatten.js +64 -0
- package/.OLD/Trial-1/node_modules/array-flatten/package.json +39 -0
- package/.OLD/Trial-1/node_modules/asynckit/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/asynckit/README.md +233 -0
- package/.OLD/Trial-1/node_modules/asynckit/bench.js +76 -0
- package/.OLD/Trial-1/node_modules/asynckit/index.js +6 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/abort.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/async.js +34 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/defer.js +26 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/iterate.js +75 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/state.js +37 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/streamify.js +141 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/terminator.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/package.json +63 -0
- package/.OLD/Trial-1/node_modules/asynckit/parallel.js +43 -0
- package/.OLD/Trial-1/node_modules/asynckit/serial.js +17 -0
- package/.OLD/Trial-1/node_modules/asynckit/serialOrdered.js +75 -0
- package/.OLD/Trial-1/node_modules/asynckit/stream.js +21 -0
- package/.OLD/Trial-1/node_modules/axios/CHANGELOG.md +906 -0
- package/.OLD/Trial-1/node_modules/axios/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/axios/README.md +909 -0
- package/.OLD/Trial-1/node_modules/axios/SECURITY.md +5 -0
- package/.OLD/Trial-1/node_modules/axios/UPGRADE_GUIDE.md +168 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.js +2293 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.map +1 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.min.js +2 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.min.map +1 -0
- package/.OLD/Trial-1/node_modules/axios/index.d.ts +221 -0
- package/.OLD/Trial-1/node_modules/axios/index.js +1 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/README.md +37 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/http.js +404 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/xhr.js +212 -0
- package/.OLD/Trial-1/node_modules/axios/lib/axios.js +57 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/Cancel.js +19 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/CancelToken.js +119 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/Axios.js +148 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/InterceptorManager.js +54 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/README.md +8 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/buildFullPath.js +20 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/createError.js +18 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/dispatchRequest.js +87 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/enhanceError.js +43 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/mergeConfig.js +99 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/settle.js +25 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/transformData.js +22 -0
- package/.OLD/Trial-1/node_modules/axios/lib/defaults/index.js +131 -0
- package/.OLD/Trial-1/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/.OLD/Trial-1/node_modules/axios/lib/env/README.md +3 -0
- package/.OLD/Trial-1/node_modules/axios/lib/env/data.js +3 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/README.md +7 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/bind.js +11 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/buildURL.js +70 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/combineURLs.js +14 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/cookies.js +53 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/deprecatedMethod.js +24 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isAbsoluteURL.js +14 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isAxiosError.js +13 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isURLSameOrigin.js +68 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/normalizeHeaderName.js +12 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/parseHeaders.js +53 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/spread.js +27 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/toFormData.js +55 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/validator.js +82 -0
- package/.OLD/Trial-1/node_modules/axios/lib/utils.js +349 -0
- package/.OLD/Trial-1/node_modules/axios/package.json +86 -0
- package/.OLD/Trial-1/node_modules/axios/tsconfig.json +14 -0
- package/.OLD/Trial-1/node_modules/axios/tslint.json +6 -0
- package/.OLD/Trial-1/node_modules/base64-js/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/base64-js/README.md +34 -0
- package/.OLD/Trial-1/node_modules/base64-js/base64js.min.js +1 -0
- package/.OLD/Trial-1/node_modules/base64-js/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/base64-js/index.js +150 -0
- package/.OLD/Trial-1/node_modules/base64-js/package.json +47 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/README.md +92 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/binding.gyp +38 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/defines.gypi +40 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/download.sh +112 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +255954 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +13374 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +719 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/database.js +90 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/index.js +3 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/transaction.js +75 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/util.js +12 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/package.json +54 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/src/better_sqlite3.cpp +2165 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/src/better_sqlite3.hpp +1038 -0
- package/.OLD/Trial-1/node_modules/bindings/LICENSE.md +22 -0
- package/.OLD/Trial-1/node_modules/bindings/README.md +98 -0
- package/.OLD/Trial-1/node_modules/bindings/bindings.js +221 -0
- package/.OLD/Trial-1/node_modules/bindings/package.json +28 -0
- package/.OLD/Trial-1/node_modules/bl/.travis.yml +17 -0
- package/.OLD/Trial-1/node_modules/bl/BufferList.js +396 -0
- package/.OLD/Trial-1/node_modules/bl/LICENSE.md +13 -0
- package/.OLD/Trial-1/node_modules/bl/README.md +247 -0
- package/.OLD/Trial-1/node_modules/bl/bl.js +84 -0
- package/.OLD/Trial-1/node_modules/bl/package.json +37 -0
- package/.OLD/Trial-1/node_modules/bl/test/convert.js +21 -0
- package/.OLD/Trial-1/node_modules/bl/test/indexOf.js +492 -0
- package/.OLD/Trial-1/node_modules/bl/test/isBufferList.js +32 -0
- package/.OLD/Trial-1/node_modules/bl/test/test.js +869 -0
- package/.OLD/Trial-1/node_modules/body-parser/HISTORY.md +680 -0
- package/.OLD/Trial-1/node_modules/body-parser/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/body-parser/README.md +476 -0
- package/.OLD/Trial-1/node_modules/body-parser/index.js +156 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/read.js +205 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/json.js +247 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/raw.js +101 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/text.js +121 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/urlencoded.js +300 -0
- package/.OLD/Trial-1/node_modules/body-parser/package.json +55 -0
- package/.OLD/Trial-1/node_modules/buffer/AUTHORS.md +70 -0
- package/.OLD/Trial-1/node_modules/buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/buffer/README.md +410 -0
- package/.OLD/Trial-1/node_modules/buffer/index.d.ts +186 -0
- package/.OLD/Trial-1/node_modules/buffer/index.js +1817 -0
- package/.OLD/Trial-1/node_modules/buffer/package.json +96 -0
- package/.OLD/Trial-1/node_modules/bytes/History.md +97 -0
- package/.OLD/Trial-1/node_modules/bytes/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/bytes/Readme.md +152 -0
- package/.OLD/Trial-1/node_modules/bytes/index.js +170 -0
- package/.OLD/Trial-1/node_modules/bytes/package.json +42 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/call-bound/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/call-bound/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/call-bound/CHANGELOG.md +42 -0
- package/.OLD/Trial-1/node_modules/call-bound/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/call-bound/README.md +53 -0
- package/.OLD/Trial-1/node_modules/call-bound/index.d.ts +94 -0
- package/.OLD/Trial-1/node_modules/call-bound/index.js +19 -0
- package/.OLD/Trial-1/node_modules/call-bound/package.json +99 -0
- package/.OLD/Trial-1/node_modules/call-bound/test/index.js +61 -0
- package/.OLD/Trial-1/node_modules/call-bound/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/chownr/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/chownr/README.md +3 -0
- package/.OLD/Trial-1/node_modules/chownr/chownr.js +167 -0
- package/.OLD/Trial-1/node_modules/chownr/package.json +29 -0
- package/.OLD/Trial-1/node_modules/combined-stream/License +19 -0
- package/.OLD/Trial-1/node_modules/combined-stream/Readme.md +138 -0
- package/.OLD/Trial-1/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/.OLD/Trial-1/node_modules/combined-stream/package.json +25 -0
- package/.OLD/Trial-1/node_modules/combined-stream/yarn.lock +17 -0
- package/.OLD/Trial-1/node_modules/content-disposition/HISTORY.md +60 -0
- package/.OLD/Trial-1/node_modules/content-disposition/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/content-disposition/README.md +142 -0
- package/.OLD/Trial-1/node_modules/content-disposition/index.js +458 -0
- package/.OLD/Trial-1/node_modules/content-disposition/package.json +44 -0
- package/.OLD/Trial-1/node_modules/content-type/HISTORY.md +29 -0
- package/.OLD/Trial-1/node_modules/content-type/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/content-type/README.md +94 -0
- package/.OLD/Trial-1/node_modules/content-type/index.js +225 -0
- package/.OLD/Trial-1/node_modules/content-type/package.json +42 -0
- package/.OLD/Trial-1/node_modules/cookie/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/cookie/README.md +317 -0
- package/.OLD/Trial-1/node_modules/cookie/SECURITY.md +25 -0
- package/.OLD/Trial-1/node_modules/cookie/index.js +335 -0
- package/.OLD/Trial-1/node_modules/cookie/package.json +44 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/History.md +42 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/Readme.md +42 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/index.js +51 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/package.json +18 -0
- package/.OLD/Trial-1/node_modules/cors/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/cors/README.md +277 -0
- package/.OLD/Trial-1/node_modules/cors/lib/index.js +238 -0
- package/.OLD/Trial-1/node_modules/cors/package.json +42 -0
- package/.OLD/Trial-1/node_modules/debug/.coveralls.yml +1 -0
- package/.OLD/Trial-1/node_modules/debug/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/debug/.travis.yml +14 -0
- package/.OLD/Trial-1/node_modules/debug/CHANGELOG.md +362 -0
- package/.OLD/Trial-1/node_modules/debug/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/debug/Makefile +50 -0
- package/.OLD/Trial-1/node_modules/debug/README.md +312 -0
- package/.OLD/Trial-1/node_modules/debug/component.json +19 -0
- package/.OLD/Trial-1/node_modules/debug/karma.conf.js +70 -0
- package/.OLD/Trial-1/node_modules/debug/node.js +1 -0
- package/.OLD/Trial-1/node_modules/debug/package.json +49 -0
- package/.OLD/Trial-1/node_modules/debug/src/browser.js +185 -0
- package/.OLD/Trial-1/node_modules/debug/src/debug.js +202 -0
- package/.OLD/Trial-1/node_modules/debug/src/index.js +10 -0
- package/.OLD/Trial-1/node_modules/debug/src/inspector-log.js +15 -0
- package/.OLD/Trial-1/node_modules/debug/src/node.js +248 -0
- package/.OLD/Trial-1/node_modules/decompress-response/index.d.ts +22 -0
- package/.OLD/Trial-1/node_modules/decompress-response/index.js +58 -0
- package/.OLD/Trial-1/node_modules/decompress-response/license +9 -0
- package/.OLD/Trial-1/node_modules/decompress-response/package.json +56 -0
- package/.OLD/Trial-1/node_modules/decompress-response/readme.md +48 -0
- package/.OLD/Trial-1/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/.OLD/Trial-1/node_modules/deep-extend/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/deep-extend/README.md +91 -0
- package/.OLD/Trial-1/node_modules/deep-extend/index.js +1 -0
- package/.OLD/Trial-1/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/.OLD/Trial-1/node_modules/deep-extend/package.json +62 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/License +19 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/Makefile +7 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/Readme.md +141 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/package.json +27 -0
- package/.OLD/Trial-1/node_modules/depd/History.md +103 -0
- package/.OLD/Trial-1/node_modules/depd/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/depd/Readme.md +280 -0
- package/.OLD/Trial-1/node_modules/depd/index.js +538 -0
- package/.OLD/Trial-1/node_modules/depd/lib/browser/index.js +77 -0
- package/.OLD/Trial-1/node_modules/depd/package.json +45 -0
- package/.OLD/Trial-1/node_modules/destroy/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/destroy/README.md +63 -0
- package/.OLD/Trial-1/node_modules/destroy/index.js +209 -0
- package/.OLD/Trial-1/node_modules/destroy/package.json +48 -0
- package/.OLD/Trial-1/node_modules/detect-libc/LICENSE +201 -0
- package/.OLD/Trial-1/node_modules/detect-libc/README.md +163 -0
- package/.OLD/Trial-1/node_modules/detect-libc/index.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/elf.js +39 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/process.js +24 -0
- package/.OLD/Trial-1/node_modules/detect-libc/package.json +44 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/README.md +54 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/get.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/get.js +30 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/package.json +76 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/set.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/set.js +35 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/get.js +34 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/index.js +4 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/set.js +50 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/ee-first/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/ee-first/README.md +80 -0
- package/.OLD/Trial-1/node_modules/ee-first/index.js +95 -0
- package/.OLD/Trial-1/node_modules/ee-first/package.json +29 -0
- package/.OLD/Trial-1/node_modules/encodeurl/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/encodeurl/README.md +109 -0
- package/.OLD/Trial-1/node_modules/encodeurl/index.js +60 -0
- package/.OLD/Trial-1/node_modules/encodeurl/package.json +40 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/README.md +54 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/index.js +96 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/package.json +37 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/.OLD/Trial-1/node_modules/es-define-property/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-define-property/README.md +49 -0
- package/.OLD/Trial-1/node_modules/es-define-property/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-define-property/index.js +14 -0
- package/.OLD/Trial-1/node_modules/es-define-property/package.json +81 -0
- package/.OLD/Trial-1/node_modules/es-define-property/test/index.js +56 -0
- package/.OLD/Trial-1/node_modules/es-define-property/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/es-errors/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-errors/CHANGELOG.md +40 -0
- package/.OLD/Trial-1/node_modules/es-errors/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-errors/README.md +55 -0
- package/.OLD/Trial-1/node_modules/es-errors/eval.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/eval.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/index.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/package.json +80 -0
- package/.OLD/Trial-1/node_modules/es-errors/range.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/range.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/ref.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/ref.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/syntax.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/syntax.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/test/index.js +19 -0
- package/.OLD/Trial-1/node_modules/es-errors/tsconfig.json +49 -0
- package/.OLD/Trial-1/node_modules/es-errors/type.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/type.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/uri.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/uri.js +4 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/README.md +63 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/ToObject.js +10 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/index.js +4 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/isObject.js +6 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/package.json +80 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/test/index.js +38 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/README.md +53 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/index.js +35 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/package.json +78 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/escape-html/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/escape-html/Readme.md +43 -0
- package/.OLD/Trial-1/node_modules/escape-html/index.js +78 -0
- package/.OLD/Trial-1/node_modules/escape-html/package.json +24 -0
- package/.OLD/Trial-1/node_modules/etag/HISTORY.md +83 -0
- package/.OLD/Trial-1/node_modules/etag/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/etag/README.md +159 -0
- package/.OLD/Trial-1/node_modules/etag/index.js +131 -0
- package/.OLD/Trial-1/node_modules/etag/package.json +47 -0
- package/.OLD/Trial-1/node_modules/expand-template/.travis.yml +6 -0
- package/.OLD/Trial-1/node_modules/expand-template/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/expand-template/README.md +43 -0
- package/.OLD/Trial-1/node_modules/expand-template/index.js +26 -0
- package/.OLD/Trial-1/node_modules/expand-template/package.json +29 -0
- package/.OLD/Trial-1/node_modules/expand-template/test.js +67 -0
- package/.OLD/Trial-1/node_modules/express/History.md +3667 -0
- package/.OLD/Trial-1/node_modules/express/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/express/Readme.md +260 -0
- package/.OLD/Trial-1/node_modules/express/index.js +11 -0
- package/.OLD/Trial-1/node_modules/express/lib/application.js +661 -0
- package/.OLD/Trial-1/node_modules/express/lib/express.js +116 -0
- package/.OLD/Trial-1/node_modules/express/lib/middleware/init.js +43 -0
- package/.OLD/Trial-1/node_modules/express/lib/middleware/query.js +47 -0
- package/.OLD/Trial-1/node_modules/express/lib/request.js +525 -0
- package/.OLD/Trial-1/node_modules/express/lib/response.js +1179 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/index.js +673 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/layer.js +181 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/route.js +230 -0
- package/.OLD/Trial-1/node_modules/express/lib/utils.js +303 -0
- package/.OLD/Trial-1/node_modules/express/lib/view.js +182 -0
- package/.OLD/Trial-1/node_modules/express/package.json +102 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/README.md +96 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/index.js +46 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/package.json +61 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/react.js +53 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.gitattributes +2 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/.stale.yml +21 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/tests_checker.yml +8 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/.OLD/Trial-1/node_modules/fast-uri/LICENSE +32 -0
- package/.OLD/Trial-1/node_modules/fast-uri/README.md +143 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/package.json +17 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/.OLD/Trial-1/node_modules/fast-uri/eslint.config.js +6 -0
- package/.OLD/Trial-1/node_modules/fast-uri/index.js +340 -0
- package/.OLD/Trial-1/node_modules/fast-uri/lib/schemes.js +267 -0
- package/.OLD/Trial-1/node_modules/fast-uri/lib/utils.js +336 -0
- package/.OLD/Trial-1/node_modules/fast-uri/package.json +69 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/equal.test.js +108 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/parse.test.js +318 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/resolve.test.js +78 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/util.test.js +38 -0
- package/.OLD/Trial-1/node_modules/fast-uri/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/fast-uri/types/index.d.ts +60 -0
- package/.OLD/Trial-1/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/History.md +21 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/README.md +74 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/index.js +66 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/package.json +32 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/test/test.js +24 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/.OLD/Trial-1/node_modules/finalhandler/HISTORY.md +216 -0
- package/.OLD/Trial-1/node_modules/finalhandler/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/finalhandler/README.md +147 -0
- package/.OLD/Trial-1/node_modules/finalhandler/SECURITY.md +25 -0
- package/.OLD/Trial-1/node_modules/finalhandler/index.js +341 -0
- package/.OLD/Trial-1/node_modules/finalhandler/package.json +47 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/README.md +155 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/debug.js +15 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/http.js +1 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/https.js +1 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/index.js +686 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/package.json +58 -0
- package/.OLD/Trial-1/node_modules/form-data/CHANGELOG.md +659 -0
- package/.OLD/Trial-1/node_modules/form-data/License +19 -0
- package/.OLD/Trial-1/node_modules/form-data/README.md +355 -0
- package/.OLD/Trial-1/node_modules/form-data/index.d.ts +62 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/browser.js +4 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/form_data.js +494 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/populate.js +10 -0
- package/.OLD/Trial-1/node_modules/form-data/package.json +82 -0
- package/.OLD/Trial-1/node_modules/forwarded/HISTORY.md +21 -0
- package/.OLD/Trial-1/node_modules/forwarded/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/forwarded/README.md +57 -0
- package/.OLD/Trial-1/node_modules/forwarded/index.js +90 -0
- package/.OLD/Trial-1/node_modules/forwarded/package.json +45 -0
- package/.OLD/Trial-1/node_modules/fresh/HISTORY.md +70 -0
- package/.OLD/Trial-1/node_modules/fresh/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/fresh/README.md +119 -0
- package/.OLD/Trial-1/node_modules/fresh/index.js +137 -0
- package/.OLD/Trial-1/node_modules/fresh/package.json +46 -0
- package/.OLD/Trial-1/node_modules/fs-constants/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/fs-constants/README.md +26 -0
- package/.OLD/Trial-1/node_modules/fs-constants/browser.js +1 -0
- package/.OLD/Trial-1/node_modules/fs-constants/index.js +1 -0
- package/.OLD/Trial-1/node_modules/fs-constants/package.json +19 -0
- package/.OLD/Trial-1/node_modules/function-bind/.eslintrc +21 -0
- package/.OLD/Trial-1/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/.OLD/Trial-1/node_modules/function-bind/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/function-bind/CHANGELOG.md +136 -0
- package/.OLD/Trial-1/node_modules/function-bind/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/function-bind/README.md +46 -0
- package/.OLD/Trial-1/node_modules/function-bind/implementation.js +84 -0
- package/.OLD/Trial-1/node_modules/function-bind/index.js +5 -0
- package/.OLD/Trial-1/node_modules/function-bind/package.json +87 -0
- package/.OLD/Trial-1/node_modules/function-bind/test/.eslintrc +9 -0
- package/.OLD/Trial-1/node_modules/function-bind/test/index.js +252 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.eslintrc +42 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/README.md +71 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/index.js +378 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/package.json +97 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/.OLD/Trial-1/node_modules/get-proto/.eslintrc +10 -0
- package/.OLD/Trial-1/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/get-proto/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/get-proto/CHANGELOG.md +21 -0
- package/.OLD/Trial-1/node_modules/get-proto/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/.OLD/Trial-1/node_modules/get-proto/README.md +50 -0
- package/.OLD/Trial-1/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/.OLD/Trial-1/node_modules/get-proto/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/get-proto/index.js +27 -0
- package/.OLD/Trial-1/node_modules/get-proto/package.json +81 -0
- package/.OLD/Trial-1/node_modules/get-proto/test/index.js +68 -0
- package/.OLD/Trial-1/node_modules/get-proto/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/github-from-package/.travis.yml +4 -0
- package/.OLD/Trial-1/node_modules/github-from-package/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/github-from-package/example/package.json +8 -0
- package/.OLD/Trial-1/node_modules/github-from-package/example/url.js +3 -0
- package/.OLD/Trial-1/node_modules/github-from-package/index.js +17 -0
- package/.OLD/Trial-1/node_modules/github-from-package/package.json +30 -0
- package/.OLD/Trial-1/node_modules/github-from-package/readme.markdown +53 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/a.json +8 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/b.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/c.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/d.json +7 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/e.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/url.js +19 -0
- package/.OLD/Trial-1/node_modules/gopd/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/gopd/CHANGELOG.md +45 -0
- package/.OLD/Trial-1/node_modules/gopd/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/gopd/README.md +40 -0
- package/.OLD/Trial-1/node_modules/gopd/gOPD.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/gopd/gOPD.js +4 -0
- package/.OLD/Trial-1/node_modules/gopd/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/gopd/index.js +15 -0
- package/.OLD/Trial-1/node_modules/gopd/package.json +77 -0
- package/.OLD/Trial-1/node_modules/gopd/test/index.js +36 -0
- package/.OLD/Trial-1/node_modules/gopd/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/.OLD/Trial-1/node_modules/has-symbols/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/has-symbols/README.md +46 -0
- package/.OLD/Trial-1/node_modules/has-symbols/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-symbols/index.js +14 -0
- package/.OLD/Trial-1/node_modules/has-symbols/package.json +111 -0
- package/.OLD/Trial-1/node_modules/has-symbols/shams.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-symbols/shams.js +45 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/index.js +22 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/tests.js +58 -0
- package/.OLD/Trial-1/node_modules/has-symbols/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/README.md +46 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/index.js +8 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/package.json +108 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/shams.js +8 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/index.js +21 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/tests.js +15 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/.OLD/Trial-1/node_modules/hasown/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/hasown/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/hasown/CHANGELOG.md +40 -0
- package/.OLD/Trial-1/node_modules/hasown/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/hasown/README.md +40 -0
- package/.OLD/Trial-1/node_modules/hasown/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/hasown/index.js +8 -0
- package/.OLD/Trial-1/node_modules/hasown/package.json +92 -0
- package/.OLD/Trial-1/node_modules/hasown/tsconfig.json +6 -0
- package/.OLD/Trial-1/node_modules/http-errors/HISTORY.md +186 -0
- package/.OLD/Trial-1/node_modules/http-errors/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/http-errors/README.md +169 -0
- package/.OLD/Trial-1/node_modules/http-errors/index.js +290 -0
- package/.OLD/Trial-1/node_modules/http-errors/package.json +54 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/Changelog.md +162 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/README.md +156 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/index.js +22 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/index.js +153 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/streams.js +121 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/package.json +46 -0
- package/.OLD/Trial-1/node_modules/ieee754/LICENSE +11 -0
- package/.OLD/Trial-1/node_modules/ieee754/README.md +51 -0
- package/.OLD/Trial-1/node_modules/ieee754/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ieee754/index.js +85 -0
- package/.OLD/Trial-1/node_modules/ieee754/package.json +52 -0
- package/.OLD/Trial-1/node_modules/inherits/LICENSE +16 -0
- package/.OLD/Trial-1/node_modules/inherits/README.md +42 -0
- package/.OLD/Trial-1/node_modules/inherits/inherits.js +9 -0
- package/.OLD/Trial-1/node_modules/inherits/inherits_browser.js +27 -0
- package/.OLD/Trial-1/node_modules/inherits/package.json +29 -0
- package/.OLD/Trial-1/node_modules/ini/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/ini/README.md +102 -0
- package/.OLD/Trial-1/node_modules/ini/ini.js +206 -0
- package/.OLD/Trial-1/node_modules/ini/package.json +33 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/README.md +233 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/package.json +35 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/README.md +95 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/index.js +93 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/package.json +43 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/README.md +50 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/abs.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/floor.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isFinite.js +12 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isInteger.js +16 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNaN.js +6 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/max.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/max.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/min.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/min.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/mod.js +9 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/package.json +86 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/pow.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/round.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/round.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/sign.js +11 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/test/index.js +192 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/.OLD/Trial-1/node_modules/media-typer/HISTORY.md +22 -0
- package/.OLD/Trial-1/node_modules/media-typer/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/media-typer/README.md +81 -0
- package/.OLD/Trial-1/node_modules/media-typer/index.js +270 -0
- package/.OLD/Trial-1/node_modules/media-typer/package.json +26 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/README.md +49 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/index.js +60 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/package.json +39 -0
- package/.OLD/Trial-1/node_modules/methods/HISTORY.md +29 -0
- package/.OLD/Trial-1/node_modules/methods/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/methods/README.md +51 -0
- package/.OLD/Trial-1/node_modules/methods/index.js +69 -0
- package/.OLD/Trial-1/node_modules/methods/package.json +36 -0
- package/.OLD/Trial-1/node_modules/mime/CHANGELOG.md +164 -0
- package/.OLD/Trial-1/node_modules/mime/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/mime/README.md +90 -0
- package/.OLD/Trial-1/node_modules/mime/cli.js +8 -0
- package/.OLD/Trial-1/node_modules/mime/mime.js +108 -0
- package/.OLD/Trial-1/node_modules/mime/package.json +44 -0
- package/.OLD/Trial-1/node_modules/mime/src/build.js +53 -0
- package/.OLD/Trial-1/node_modules/mime/src/test.js +60 -0
- package/.OLD/Trial-1/node_modules/mime/types.json +1 -0
- package/.OLD/Trial-1/node_modules/mime-db/HISTORY.md +507 -0
- package/.OLD/Trial-1/node_modules/mime-db/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/mime-db/README.md +100 -0
- package/.OLD/Trial-1/node_modules/mime-db/db.json +8519 -0
- package/.OLD/Trial-1/node_modules/mime-db/index.js +12 -0
- package/.OLD/Trial-1/node_modules/mime-db/package.json +60 -0
- package/.OLD/Trial-1/node_modules/mime-types/HISTORY.md +397 -0
- package/.OLD/Trial-1/node_modules/mime-types/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/mime-types/README.md +113 -0
- package/.OLD/Trial-1/node_modules/mime-types/index.js +188 -0
- package/.OLD/Trial-1/node_modules/mime-types/package.json +44 -0
- package/.OLD/Trial-1/node_modules/mimic-response/index.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/mimic-response/index.js +77 -0
- package/.OLD/Trial-1/node_modules/mimic-response/license +9 -0
- package/.OLD/Trial-1/node_modules/mimic-response/package.json +42 -0
- package/.OLD/Trial-1/node_modules/mimic-response/readme.md +78 -0
- package/.OLD/Trial-1/node_modules/minimist/.eslintrc +29 -0
- package/.OLD/Trial-1/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/minimist/.nycrc +14 -0
- package/.OLD/Trial-1/node_modules/minimist/CHANGELOG.md +298 -0
- package/.OLD/Trial-1/node_modules/minimist/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/minimist/README.md +121 -0
- package/.OLD/Trial-1/node_modules/minimist/example/parse.js +4 -0
- package/.OLD/Trial-1/node_modules/minimist/index.js +263 -0
- package/.OLD/Trial-1/node_modules/minimist/package.json +75 -0
- package/.OLD/Trial-1/node_modules/minimist/test/all_bool.js +34 -0
- package/.OLD/Trial-1/node_modules/minimist/test/bool.js +177 -0
- package/.OLD/Trial-1/node_modules/minimist/test/dash.js +43 -0
- package/.OLD/Trial-1/node_modules/minimist/test/default_bool.js +37 -0
- package/.OLD/Trial-1/node_modules/minimist/test/dotted.js +24 -0
- package/.OLD/Trial-1/node_modules/minimist/test/kv_short.js +32 -0
- package/.OLD/Trial-1/node_modules/minimist/test/long.js +33 -0
- package/.OLD/Trial-1/node_modules/minimist/test/num.js +38 -0
- package/.OLD/Trial-1/node_modules/minimist/test/parse.js +209 -0
- package/.OLD/Trial-1/node_modules/minimist/test/parse_modified.js +11 -0
- package/.OLD/Trial-1/node_modules/minimist/test/proto.js +64 -0
- package/.OLD/Trial-1/node_modules/minimist/test/short.js +69 -0
- package/.OLD/Trial-1/node_modules/minimist/test/stop_early.js +17 -0
- package/.OLD/Trial-1/node_modules/minimist/test/unknown.js +104 -0
- package/.OLD/Trial-1/node_modules/minimist/test/whitespace.js +10 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/README.md +18 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/index.js +98 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/package.json +18 -0
- package/.OLD/Trial-1/node_modules/ms/index.js +152 -0
- package/.OLD/Trial-1/node_modules/ms/license.md +21 -0
- package/.OLD/Trial-1/node_modules/ms/package.json +37 -0
- package/.OLD/Trial-1/node_modules/ms/readme.md +51 -0
- package/.OLD/Trial-1/node_modules/nanoid/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/nanoid/README.md +39 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.browser.cjs +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.browser.js +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.cjs +35 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.d.ts +56 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.js +35 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.native.js +26 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/package.json +12 -0
- package/.OLD/Trial-1/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.browser.cjs +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.browser.js +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.cjs +45 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.d.ts +91 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.js +45 -0
- package/.OLD/Trial-1/node_modules/nanoid/nanoid.js +1 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.cjs +21 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.js +21 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/package.json +6 -0
- package/.OLD/Trial-1/node_modules/nanoid/package.json +60 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/index.cjs +3 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/README.md +52 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/index.js +214 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/index.md +0 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/package.json +42 -0
- package/.OLD/Trial-1/node_modules/negotiator/HISTORY.md +108 -0
- package/.OLD/Trial-1/node_modules/negotiator/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/negotiator/README.md +203 -0
- package/.OLD/Trial-1/node_modules/negotiator/index.js +82 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/charset.js +169 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/encoding.js +184 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/language.js +179 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/mediaType.js +294 -0
- package/.OLD/Trial-1/node_modules/negotiator/package.json +42 -0
- package/.OLD/Trial-1/node_modules/node-abi/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/node-abi/README.md +54 -0
- package/.OLD/Trial-1/node_modules/node-abi/abi_registry.json +432 -0
- package/.OLD/Trial-1/node_modules/node-abi/index.js +179 -0
- package/.OLD/Trial-1/node_modules/node-abi/package.json +45 -0
- package/.OLD/Trial-1/node_modules/node-cron/.circleci/config.yml +17 -0
- package/.OLD/Trial-1/node_modules/node-cron/.covignore +1 -0
- package/.OLD/Trial-1/node_modules/node-cron/.eslintrc.yml +20 -0
- package/.OLD/Trial-1/node_modules/node-cron/.github/stale.yml +17 -0
- package/.OLD/Trial-1/node_modules/node-cron/LICENSE.md +7 -0
- package/.OLD/Trial-1/node_modules/node-cron/README.md +247 -0
- package/.OLD/Trial-1/node_modules/node-cron/package.json +43 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/background-scheduled-task/daemon.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/background-scheduled-task/index.js +67 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/asterisk-to-range-conversion.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/index.js +66 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/month-names-conversion.js +22 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/range-conversion.js +39 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/step-values-conversion.js +30 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/week-day-names-conversion.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/node-cron.js +64 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/pattern-validation.js +124 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/scheduled-task.js +51 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/scheduler.js +49 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/storage.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/task.js +34 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/time-matcher.js +54 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/assets/dummy-task.js +3 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/background-scheduled-task-test.js +47 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/asterisk-to-range-conversion-test.js +12 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/convert-expression-test.js +18 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/month-names-conversion-test.js +16 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/range-conversion-test.js +24 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/step-values-conversion-test.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/week-day-names-conversion-test.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/node-cron-test.js +138 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-day-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-hours-test.js +38 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-minute-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-month-test.js +44 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-pattern-type.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-second-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-test.js +24 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-week-day-test.js +56 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/scheduled-task-test.js +91 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/scheduler-test.js +91 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/storage-test.js +26 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/task-test.js +49 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/time-matcher-test.js +244 -0
- package/.OLD/Trial-1/node_modules/object-assign/index.js +90 -0
- package/.OLD/Trial-1/node_modules/object-assign/license +21 -0
- package/.OLD/Trial-1/node_modules/object-assign/package.json +42 -0
- package/.OLD/Trial-1/node_modules/object-assign/readme.md +61 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.eslintrc +53 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/.OLD/Trial-1/node_modules/object-inspect/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/all.js +23 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/circular.js +6 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/fn.js +5 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/inspect.js +10 -0
- package/.OLD/Trial-1/node_modules/object-inspect/index.js +544 -0
- package/.OLD/Trial-1/node_modules/object-inspect/package-support.json +20 -0
- package/.OLD/Trial-1/node_modules/object-inspect/package.json +105 -0
- package/.OLD/Trial-1/node_modules/object-inspect/readme.markdown +84 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/bigint.js +58 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/circular.js +16 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/deep.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/element.js +53 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/err.js +48 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/fakes.js +29 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/fn.js +76 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/global.js +17 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/has.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/holes.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/indent-option.js +271 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/inspect.js +139 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/number.js +58 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/undef.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/values.js +261 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test-core-js.js +26 -0
- package/.OLD/Trial-1/node_modules/object-inspect/util.inspect.js +1 -0
- package/.OLD/Trial-1/node_modules/on-finished/HISTORY.md +98 -0
- package/.OLD/Trial-1/node_modules/on-finished/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/on-finished/README.md +162 -0
- package/.OLD/Trial-1/node_modules/on-finished/index.js +234 -0
- package/.OLD/Trial-1/node_modules/on-finished/package.json +39 -0
- package/.OLD/Trial-1/node_modules/once/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/once/README.md +79 -0
- package/.OLD/Trial-1/node_modules/once/once.js +42 -0
- package/.OLD/Trial-1/node_modules/once/package.json +33 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/bug_report.yml +56 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/config.yml +7 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/feature_request.yml +20 -0
- package/.OLD/Trial-1/node_modules/openai/.github/workflows/test.yml +25 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator/FILES +6 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator/VERSION +1 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator-ignore +5 -0
- package/.OLD/Trial-1/node_modules/openai/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/openai/README.md +89 -0
- package/.OLD/Trial-1/node_modules/openai/api.ts +4131 -0
- package/.OLD/Trial-1/node_modules/openai/base.ts +72 -0
- package/.OLD/Trial-1/node_modules/openai/common.ts +150 -0
- package/.OLD/Trial-1/node_modules/openai/configuration.ts +127 -0
- package/.OLD/Trial-1/node_modules/openai/dist/api.d.ts +3003 -0
- package/.OLD/Trial-1/node_modules/openai/dist/api.js +2040 -0
- package/.OLD/Trial-1/node_modules/openai/dist/base.d.ts +54 -0
- package/.OLD/Trial-1/node_modules/openai/dist/base.js +59 -0
- package/.OLD/Trial-1/node_modules/openai/dist/common.d.ts +65 -0
- package/.OLD/Trial-1/node_modules/openai/dist/common.js +151 -0
- package/.OLD/Trial-1/node_modules/openai/dist/configuration.d.ts +91 -0
- package/.OLD/Trial-1/node_modules/openai/dist/configuration.js +54 -0
- package/.OLD/Trial-1/node_modules/openai/dist/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/openai/dist/index.js +27 -0
- package/.OLD/Trial-1/node_modules/openai/index.ts +18 -0
- package/.OLD/Trial-1/node_modules/openai/package.json +31 -0
- package/.OLD/Trial-1/node_modules/openai/tsconfig.json +17 -0
- package/.OLD/Trial-1/node_modules/parseurl/HISTORY.md +58 -0
- package/.OLD/Trial-1/node_modules/parseurl/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/parseurl/README.md +133 -0
- package/.OLD/Trial-1/node_modules/parseurl/index.js +158 -0
- package/.OLD/Trial-1/node_modules/parseurl/package.json +40 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/Readme.md +35 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/index.js +156 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/package.json +30 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/README.md +163 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/asset.js +44 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/bin.js +78 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/download.js +142 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/error.js +14 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/help.txt +16 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/index.js +1 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/log.js +33 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/package.json +67 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/proxy.js +35 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/rc.js +64 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/util.js +143 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/HISTORY.md +161 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/README.md +139 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/index.js +327 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/package.json +47 -0
- package/.OLD/Trial-1/node_modules/pump/.github/FUNDING.yml +2 -0
- package/.OLD/Trial-1/node_modules/pump/.travis.yml +5 -0
- package/.OLD/Trial-1/node_modules/pump/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/pump/README.md +74 -0
- package/.OLD/Trial-1/node_modules/pump/SECURITY.md +5 -0
- package/.OLD/Trial-1/node_modules/pump/empty.js +1 -0
- package/.OLD/Trial-1/node_modules/pump/index.js +86 -0
- package/.OLD/Trial-1/node_modules/pump/package.json +30 -0
- package/.OLD/Trial-1/node_modules/pump/test-browser.js +66 -0
- package/.OLD/Trial-1/node_modules/pump/test-node.js +53 -0
- package/.OLD/Trial-1/node_modules/qs/.editorconfig +46 -0
- package/.OLD/Trial-1/node_modules/qs/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/qs/.github/SECURITY.md +11 -0
- package/.OLD/Trial-1/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/.OLD/Trial-1/node_modules/qs/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/qs/CHANGELOG.md +644 -0
- package/.OLD/Trial-1/node_modules/qs/LICENSE.md +29 -0
- package/.OLD/Trial-1/node_modules/qs/README.md +740 -0
- package/.OLD/Trial-1/node_modules/qs/dist/qs.js +141 -0
- package/.OLD/Trial-1/node_modules/qs/eslint.config.mjs +56 -0
- package/.OLD/Trial-1/node_modules/qs/lib/formats.js +23 -0
- package/.OLD/Trial-1/node_modules/qs/lib/index.js +11 -0
- package/.OLD/Trial-1/node_modules/qs/lib/parse.js +371 -0
- package/.OLD/Trial-1/node_modules/qs/lib/stringify.js +356 -0
- package/.OLD/Trial-1/node_modules/qs/lib/utils.js +340 -0
- package/.OLD/Trial-1/node_modules/qs/package.json +94 -0
- package/.OLD/Trial-1/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/.OLD/Trial-1/node_modules/qs/test/parse.js +1512 -0
- package/.OLD/Trial-1/node_modules/qs/test/stringify.js +1310 -0
- package/.OLD/Trial-1/node_modules/qs/test/utils.js +397 -0
- package/.OLD/Trial-1/node_modules/range-parser/HISTORY.md +56 -0
- package/.OLD/Trial-1/node_modules/range-parser/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/range-parser/README.md +84 -0
- package/.OLD/Trial-1/node_modules/range-parser/index.js +162 -0
- package/.OLD/Trial-1/node_modules/range-parser/package.json +44 -0
- package/.OLD/Trial-1/node_modules/raw-body/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/raw-body/README.md +223 -0
- package/.OLD/Trial-1/node_modules/raw-body/index.d.ts +87 -0
- package/.OLD/Trial-1/node_modules/raw-body/index.js +336 -0
- package/.OLD/Trial-1/node_modules/raw-body/package.json +47 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.BSD +26 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.MIT +24 -0
- package/.OLD/Trial-1/node_modules/rc/README.md +227 -0
- package/.OLD/Trial-1/node_modules/rc/browser.js +7 -0
- package/.OLD/Trial-1/node_modules/rc/cli.js +4 -0
- package/.OLD/Trial-1/node_modules/rc/index.js +53 -0
- package/.OLD/Trial-1/node_modules/rc/lib/utils.js +104 -0
- package/.OLD/Trial-1/node_modules/rc/package.json +29 -0
- package/.OLD/Trial-1/node_modules/rc/test/ini.js +16 -0
- package/.OLD/Trial-1/node_modules/rc/test/nested-env-vars.js +50 -0
- package/.OLD/Trial-1/node_modules/rc/test/test.js +59 -0
- package/.OLD/Trial-1/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/.OLD/Trial-1/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/.OLD/Trial-1/node_modules/readable-stream/LICENSE +47 -0
- package/.OLD/Trial-1/node_modules/readable-stream/README.md +106 -0
- package/.OLD/Trial-1/node_modules/readable-stream/errors-browser.js +127 -0
- package/.OLD/Trial-1/node_modules/readable-stream/errors.js +116 -0
- package/.OLD/Trial-1/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/.OLD/Trial-1/node_modules/readable-stream/package.json +68 -0
- package/.OLD/Trial-1/node_modules/readable-stream/readable-browser.js +9 -0
- package/.OLD/Trial-1/node_modules/readable-stream/readable.js +16 -0
- package/.OLD/Trial-1/node_modules/require-from-string/index.js +34 -0
- package/.OLD/Trial-1/node_modules/require-from-string/license +21 -0
- package/.OLD/Trial-1/node_modules/require-from-string/package.json +28 -0
- package/.OLD/Trial-1/node_modules/require-from-string/readme.md +56 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/README.md +584 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/index.d.ts +187 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/index.js +65 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/package.json +51 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/Readme.md +156 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/dangerous.js +58 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/package.json +34 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/safer.js +77 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/tests.js +406 -0
- package/.OLD/Trial-1/node_modules/semver/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/semver/README.md +665 -0
- package/.OLD/Trial-1/node_modules/semver/bin/semver.js +191 -0
- package/.OLD/Trial-1/node_modules/semver/classes/comparator.js +143 -0
- package/.OLD/Trial-1/node_modules/semver/classes/index.js +7 -0
- package/.OLD/Trial-1/node_modules/semver/classes/range.js +557 -0
- package/.OLD/Trial-1/node_modules/semver/classes/semver.js +333 -0
- package/.OLD/Trial-1/node_modules/semver/functions/clean.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/functions/cmp.js +54 -0
- package/.OLD/Trial-1/node_modules/semver/functions/coerce.js +62 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare-build.js +9 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare-loose.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare.js +7 -0
- package/.OLD/Trial-1/node_modules/semver/functions/diff.js +60 -0
- package/.OLD/Trial-1/node_modules/semver/functions/eq.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/gt.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/gte.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/inc.js +21 -0
- package/.OLD/Trial-1/node_modules/semver/functions/lt.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/lte.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/major.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/minor.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/neq.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/parse.js +18 -0
- package/.OLD/Trial-1/node_modules/semver/functions/patch.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/prerelease.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/functions/rcompare.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/rsort.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/satisfies.js +12 -0
- package/.OLD/Trial-1/node_modules/semver/functions/sort.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/valid.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/index.js +91 -0
- package/.OLD/Trial-1/node_modules/semver/internal/constants.js +37 -0
- package/.OLD/Trial-1/node_modules/semver/internal/debug.js +11 -0
- package/.OLD/Trial-1/node_modules/semver/internal/identifiers.js +29 -0
- package/.OLD/Trial-1/node_modules/semver/internal/lrucache.js +42 -0
- package/.OLD/Trial-1/node_modules/semver/internal/parse-options.js +17 -0
- package/.OLD/Trial-1/node_modules/semver/internal/re.js +223 -0
- package/.OLD/Trial-1/node_modules/semver/package.json +78 -0
- package/.OLD/Trial-1/node_modules/semver/preload.js +4 -0
- package/.OLD/Trial-1/node_modules/semver/range.bnf +16 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/gtr.js +6 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/intersects.js +9 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/ltr.js +6 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/min-version.js +63 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/outside.js +82 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/simplify.js +49 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/subset.js +249 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/to-comparators.js +10 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/valid.js +13 -0
- package/.OLD/Trial-1/node_modules/send/HISTORY.md +538 -0
- package/.OLD/Trial-1/node_modules/send/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/send/README.md +327 -0
- package/.OLD/Trial-1/node_modules/send/SECURITY.md +24 -0
- package/.OLD/Trial-1/node_modules/send/index.js +1142 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/index.js +162 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/license.md +21 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/package.json +38 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/readme.md +59 -0
- package/.OLD/Trial-1/node_modules/send/package.json +62 -0
- package/.OLD/Trial-1/node_modules/serve-static/HISTORY.md +493 -0
- package/.OLD/Trial-1/node_modules/serve-static/LICENSE +25 -0
- package/.OLD/Trial-1/node_modules/serve-static/README.md +257 -0
- package/.OLD/Trial-1/node_modules/serve-static/index.js +209 -0
- package/.OLD/Trial-1/node_modules/serve-static/package.json +42 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/LICENSE +13 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/README.md +31 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/index.js +17 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/package.json +38 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/test/index.js +24 -0
- package/.OLD/Trial-1/node_modules/side-channel/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel/.eslintrc +12 -0
- package/.OLD/Trial-1/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel/CHANGELOG.md +110 -0
- package/.OLD/Trial-1/node_modules/side-channel/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel/README.md +61 -0
- package/.OLD/Trial-1/node_modules/side-channel/index.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/side-channel/index.js +43 -0
- package/.OLD/Trial-1/node_modules/side-channel/package.json +85 -0
- package/.OLD/Trial-1/node_modules/side-channel/test/index.js +104 -0
- package/.OLD/Trial-1/node_modules/side-channel/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/index.js +113 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/list.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/package.json +77 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/test/index.js +104 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/index.js +68 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/package.json +80 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/test/index.js +114 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/index.js +84 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/package.json +87 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/simple-concat/.travis.yml +3 -0
- package/.OLD/Trial-1/node_modules/simple-concat/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/simple-concat/README.md +44 -0
- package/.OLD/Trial-1/node_modules/simple-concat/index.js +15 -0
- package/.OLD/Trial-1/node_modules/simple-concat/package.json +47 -0
- package/.OLD/Trial-1/node_modules/simple-concat/test/basic.js +41 -0
- package/.OLD/Trial-1/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/.OLD/Trial-1/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/.OLD/Trial-1/node_modules/simple-get/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/simple-get/README.md +333 -0
- package/.OLD/Trial-1/node_modules/simple-get/index.js +108 -0
- package/.OLD/Trial-1/node_modules/simple-get/package.json +67 -0
- package/.OLD/Trial-1/node_modules/statuses/HISTORY.md +87 -0
- package/.OLD/Trial-1/node_modules/statuses/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/statuses/README.md +139 -0
- package/.OLD/Trial-1/node_modules/statuses/codes.json +65 -0
- package/.OLD/Trial-1/node_modules/statuses/index.js +146 -0
- package/.OLD/Trial-1/node_modules/statuses/package.json +49 -0
- package/.OLD/Trial-1/node_modules/string_decoder/LICENSE +48 -0
- package/.OLD/Trial-1/node_modules/string_decoder/README.md +47 -0
- package/.OLD/Trial-1/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/.OLD/Trial-1/node_modules/string_decoder/package.json +34 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/index.js +70 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/license +21 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/package.json +42 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/readme.md +64 -0
- package/.OLD/Trial-1/node_modules/tar-fs/.travis.yml +6 -0
- package/.OLD/Trial-1/node_modules/tar-fs/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/tar-fs/README.md +165 -0
- package/.OLD/Trial-1/node_modules/tar-fs/index.js +363 -0
- package/.OLD/Trial-1/node_modules/tar-fs/package.json +41 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/index.js +346 -0
- package/.OLD/Trial-1/node_modules/tar-stream/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/tar-stream/README.md +168 -0
- package/.OLD/Trial-1/node_modules/tar-stream/extract.js +257 -0
- package/.OLD/Trial-1/node_modules/tar-stream/headers.js +295 -0
- package/.OLD/Trial-1/node_modules/tar-stream/index.js +2 -0
- package/.OLD/Trial-1/node_modules/tar-stream/pack.js +255 -0
- package/.OLD/Trial-1/node_modules/tar-stream/package.json +58 -0
- package/.OLD/Trial-1/node_modules/tar-stream/sandbox.js +11 -0
- package/.OLD/Trial-1/node_modules/toidentifier/HISTORY.md +9 -0
- package/.OLD/Trial-1/node_modules/toidentifier/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/toidentifier/README.md +61 -0
- package/.OLD/Trial-1/node_modules/toidentifier/index.js +32 -0
- package/.OLD/Trial-1/node_modules/toidentifier/package.json +38 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/LICENSE +55 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/README.md +4 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/index.js +244 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/package.json +22 -0
- package/.OLD/Trial-1/node_modules/type-is/HISTORY.md +259 -0
- package/.OLD/Trial-1/node_modules/type-is/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/type-is/README.md +170 -0
- package/.OLD/Trial-1/node_modules/type-is/index.js +266 -0
- package/.OLD/Trial-1/node_modules/type-is/package.json +45 -0
- package/.OLD/Trial-1/node_modules/unpipe/HISTORY.md +4 -0
- package/.OLD/Trial-1/node_modules/unpipe/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/unpipe/README.md +43 -0
- package/.OLD/Trial-1/node_modules/unpipe/index.js +69 -0
- package/.OLD/Trial-1/node_modules/unpipe/package.json +27 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/History.md +16 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/README.md +53 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/browser.js +67 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/node.js +6 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/package.json +27 -0
- package/.OLD/Trial-1/node_modules/utils-merge/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/utils-merge/README.md +34 -0
- package/.OLD/Trial-1/node_modules/utils-merge/index.js +23 -0
- package/.OLD/Trial-1/node_modules/utils-merge/package.json +40 -0
- package/.OLD/Trial-1/node_modules/uuid/CHANGELOG.md +229 -0
- package/.OLD/Trial-1/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/.OLD/Trial-1/node_modules/uuid/LICENSE.md +9 -0
- package/.OLD/Trial-1/node_modules/uuid/README.md +505 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/bin/uuid +2 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/index.js +79 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/md5-browser.js +223 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/md5.js +23 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/nil.js +8 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/parse.js +45 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/regex.js +8 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/rng-browser.js +26 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/rng.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/sha1.js +23 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/stringify.js +39 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v1.js +107 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v3.js +16 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v35.js +78 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v4.js +37 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v5.js +16 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/validate.js +17 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/version.js +21 -0
- package/.OLD/Trial-1/node_modules/uuid/package.json +135 -0
- package/.OLD/Trial-1/node_modules/uuid/wrapper.mjs +10 -0
- package/.OLD/Trial-1/node_modules/vary/HISTORY.md +39 -0
- package/.OLD/Trial-1/node_modules/vary/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/vary/README.md +101 -0
- package/.OLD/Trial-1/node_modules/vary/index.js +149 -0
- package/.OLD/Trial-1/node_modules/vary/package.json +43 -0
- package/.OLD/Trial-1/node_modules/wrappy/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/wrappy/README.md +36 -0
- package/.OLD/Trial-1/node_modules/wrappy/package.json +29 -0
- package/.OLD/Trial-1/node_modules/wrappy/wrappy.js +33 -0
- package/.OLD/Trial-1/package-lock.json +1382 -0
- package/.OLD/Trial-1/package.json +35 -0
- package/.OLD/Trial-1/src/agents/builtin/compact.js +187 -0
- package/.OLD/Trial-1/src/agents/loader.js +237 -0
- package/.OLD/Trial-1/src/agents/resolver.js +80 -0
- package/.OLD/Trial-1/src/agents/scanner.js +119 -0
- package/.OLD/Trial-1/src/agents/types.js +83 -0
- package/.OLD/Trial-1/src/agents/validator.js +96 -0
- package/.OLD/Trial-1/src/api/middleware/auth.js +49 -0
- package/.OLD/Trial-1/src/api/middleware/errors.js +38 -0
- package/.OLD/Trial-1/src/api/middleware/validate.js +96 -0
- package/.OLD/Trial-1/src/api/routes/agents.js +69 -0
- package/.OLD/Trial-1/src/api/routes/chat.js +115 -0
- package/.OLD/Trial-1/src/api/routes/sessions.js +77 -0
- package/.OLD/Trial-1/src/api/routes/system.js +61 -0
- package/.OLD/Trial-1/src/api/routes/tasks.js +140 -0
- package/.OLD/Trial-1/src/api/schemas/chat-request.json +42 -0
- package/.OLD/Trial-1/src/api/schemas/task-request.json +33 -0
- package/.OLD/Trial-1/src/api/schemas/task-respond.json +12 -0
- package/.OLD/Trial-1/src/api/server.js +108 -0
- package/.OLD/Trial-1/src/cli/auth.js +119 -0
- package/.OLD/Trial-1/src/cli/commands/auth.js +101 -0
- package/.OLD/Trial-1/src/cli/commands/config.js +104 -0
- package/.OLD/Trial-1/src/cli/commands/start.js +65 -0
- package/.OLD/Trial-1/src/cli/index.js +209 -0
- package/.OLD/Trial-1/src/config/config.json +12 -0
- package/.OLD/Trial-1/src/context/compaction.js +166 -0
- package/.OLD/Trial-1/src/context/extraction.js +202 -0
- package/.OLD/Trial-1/src/context/tokens.js +128 -0
- package/.OLD/Trial-1/src/context/trimming.js +170 -0
- package/.OLD/Trial-1/src/llm/client.js +154 -0
- package/.OLD/Trial-1/src/llm/errors.js +103 -0
- package/.OLD/Trial-1/src/llm/models.js +136 -0
- package/.OLD/Trial-1/src/llm/tokenizer.js +138 -0
- package/.OLD/Trial-1/src/permissions/checker.js +55 -0
- package/.OLD/Trial-1/src/prompt/assembler.js +130 -0
- package/.OLD/Trial-1/src/prompt/layers/agent-instructions.js +44 -0
- package/.OLD/Trial-1/src/prompt/layers/base-core.js +22 -0
- package/.OLD/Trial-1/src/prompt/layers/environment.js +57 -0
- package/.OLD/Trial-1/src/prompt/layers/heuristics.js +72 -0
- package/.OLD/Trial-1/src/prompt/layers/safety-rules.js +22 -0
- package/.OLD/Trial-1/src/prompt/layers/session-context.js +61 -0
- package/.OLD/Trial-1/src/prompt/layers/tools.js +75 -0
- package/.OLD/Trial-1/src/prompt/reminders.js +98 -0
- package/.OLD/Trial-1/src/runtime/chat.js +121 -0
- package/.OLD/Trial-1/src/runtime/events.js +80 -0
- package/.OLD/Trial-1/src/runtime/limits.js +87 -0
- package/.OLD/Trial-1/src/runtime/loop.js +280 -0
- package/.OLD/Trial-1/src/schemas/agent.json +200 -0
- package/.OLD/Trial-1/src/schemas/settings.json +254 -0
- package/.OLD/Trial-1/src/session/manager.js +164 -0
- package/.OLD/Trial-1/src/settings/loader.js +207 -0
- package/.OLD/Trial-1/src/storage/agent-messages.js +178 -0
- package/.OLD/Trial-1/src/storage/db.js +103 -0
- package/.OLD/Trial-1/src/storage/events.js +124 -0
- package/.OLD/Trial-1/src/storage/messages.js +151 -0
- package/.OLD/Trial-1/src/storage/migrations.js +102 -0
- package/.OLD/Trial-1/src/storage/schema.sql +145 -0
- package/.OLD/Trial-1/src/storage/sessions.js +260 -0
- package/.OLD/Trial-1/src/storage/tasks.js +236 -0
- package/.OLD/Trial-1/src/storage/todos.js +72 -0
- package/.OLD/Trial-1/src/system-prompts/base-core.md +27 -0
- package/.OLD/Trial-1/src/system-prompts/heuristics/no-over-engineering.md +15 -0
- package/.OLD/Trial-1/src/system-prompts/heuristics/read-before-edit.md +15 -0
- package/.OLD/Trial-1/src/system-prompts/safety-rules.md +34 -0
- package/.OLD/Trial-1/src/tasks/lifecycle.js +218 -0
- package/.OLD/Trial-1/src/tasks/limits.js +161 -0
- package/.OLD/Trial-1/src/tasks/queue.js +250 -0
- package/.OLD/Trial-1/src/tools/builtin/control/sleep.js +38 -0
- package/.OLD/Trial-1/src/tools/builtin/control/todo_read.js +27 -0
- package/.OLD/Trial-1/src/tools/builtin/control/todo_write.js +53 -0
- package/.OLD/Trial-1/src/tools/builtin/files/edit_file.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/glob.js +96 -0
- package/.OLD/Trial-1/src/tools/builtin/files/grep.js +112 -0
- package/.OLD/Trial-1/src/tools/builtin/files/list_dir.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/read_file.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/write_file.js +46 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_read.js +62 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_search.js +90 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_write.js +126 -0
- package/.OLD/Trial-1/src/tools/builtin/network/fetch.js +174 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/agent_message.js +71 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/agent_spawn.js +127 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_create.js +115 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_respond.js +67 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_status.js +101 -0
- package/.OLD/Trial-1/src/tools/builtin/system/bash.js +61 -0
- package/.OLD/Trial-1/src/tools/registry.js +216 -0
- package/.OLD/Trial-1/src/tools/schemas/agent_message.json +27 -0
- package/.OLD/Trial-1/src/tools/schemas/agent_spawn.json +34 -0
- package/.OLD/Trial-1/src/tools/schemas/bash.json +20 -0
- package/.OLD/Trial-1/src/tools/schemas/edit_file.json +22 -0
- package/.OLD/Trial-1/src/tools/schemas/fetch.json +43 -0
- package/.OLD/Trial-1/src/tools/schemas/glob.json +18 -0
- package/.OLD/Trial-1/src/tools/schemas/grep.json +22 -0
- package/.OLD/Trial-1/src/tools/schemas/list_dir.json +13 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_read.json +19 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_search.json +20 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_write.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/read_file.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/sleep.json +16 -0
- package/.OLD/Trial-1/src/tools/schemas/task_create.json +47 -0
- package/.OLD/Trial-1/src/tools/schemas/task_respond.json +18 -0
- package/.OLD/Trial-1/src/tools/schemas/task_status.json +25 -0
- package/.OLD/Trial-1/src/tools/schemas/todo_read.json +8 -0
- package/.OLD/Trial-1/src/tools/schemas/todo_write.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/write_file.json +18 -0
- package/.OLD/Trial-1/src/utils/context.js +11 -0
- package/.OLD/Trial-1/src/utils/files.js +139 -0
- package/.OLD/Trial-1/src/utils/id.js +20 -0
- package/.OLD/Trial-1/src/utils/paths.js +156 -0
- package/.OLD/Trial-1/test/storage.test.js +168 -0
- package/.OLD/Trial-1/test/tasks.test.js +133 -0
- package/.OLD/Trial-1/test/tokens.test.js +104 -0
- package/.OLD/Trial-1/test/tools.test.js +140 -0
- package/.OLD/Trial-1/test/utils.js +106 -0
- package/.khabot/agents/analyst/AGENT.md +21 -0
- package/.khabot/agents/analyst/agent.json +23 -0
- package/.khabot/agents/assistant/AGENT.md +15 -0
- package/.khabot/agents/assistant/agent.json +19 -0
- package/.khabot/agents/coder/AGENT.md +18 -0
- package/.khabot/agents/coder/agent.json +19 -0
- package/.khabot/agents/hello/AGENT.md +5 -0
- package/.khabot/agents/hello/agent.json +13 -0
- package/.khabot/agents/writer/AGENT.md +12 -0
- package/.khabot/agents/writer/agent.json +17 -0
- package/.khabot/auth.json +9 -0
- package/.khabot/memory/MEMORY.md +343 -0
- package/.khabot/memory/agents/analyst/MEMORY.md +55 -0
- package/.khabot/memory/agents/hello/MEMORY.md +12 -0
- package/.khabot/settings.json +10 -0
- package/PLAN/01-vision.md +26 -0
- package/PLAN/02-tech-stack.md +94 -0
- package/PLAN/03-agents.md +232 -0
- package/PLAN/04-runtime.md +171 -0
- package/PLAN/05-tools.md +211 -0
- package/PLAN/06-communication.md +243 -0
- package/PLAN/07-storage.md +218 -0
- package/PLAN/08-api-cli.md +153 -0
- package/PLAN/09-permissions.md +108 -0
- package/PLAN/10-ably.md +105 -0
- package/PLAN/11-file-formats.md +442 -0
- package/PLAN/12-folder-structure.md +205 -0
- package/PLAN/13-operations.md +212 -0
- package/PLAN/README.md +23 -0
- package/README.md +128 -0
- package/REPORT.md +174 -0
- package/TODO.md +46 -0
- package/ai-tests/FRONTEND_PROMPT.md +220 -0
- package/ai-tests/Research & Planning.md +814 -0
- package/ai-tests/prompt-001-basic-api.md +230 -0
- package/ai-tests/prompt-002-basic-flows.md +230 -0
- package/ai-tests/prompt-003-agent-behaviors.md +220 -0
- package/api/middleware.js +60 -0
- package/api/routes/agents.js +193 -0
- package/api/routes/chat.js +93 -0
- package/api/routes/completions.js +122 -0
- package/api/routes/daemons.js +80 -0
- package/api/routes/memory.js +169 -0
- package/api/routes/models.js +40 -0
- package/api/routes/remote-methods.js +74 -0
- package/api/routes/sessions.js +208 -0
- package/api/routes/settings.js +108 -0
- package/api/routes/system.js +50 -0
- package/api/routes/tasks.js +270 -0
- package/api/server.js +120 -0
- package/cli/formatter.js +70 -0
- package/cli/index.js +410 -0
- package/cli/parser.js +108 -0
- package/config/config.json +10 -0
- package/config/models.json +6826 -0
- package/core/agent.js +329 -0
- package/core/cancel.js +38 -0
- package/core/compaction.js +176 -0
- package/core/events.js +13 -0
- package/core/loop.js +564 -0
- package/core/memory.js +51 -0
- package/core/prompt.js +184 -0
- package/core/queue.js +96 -0
- package/core/registry.js +291 -0
- package/core/remote-methods.js +124 -0
- package/core/router.js +386 -0
- package/core/running-sessions.js +18 -0
- package/docs/api/01-system.md +84 -0
- package/docs/api/02-agents.md +374 -0
- package/docs/api/03-chat.md +269 -0
- package/docs/api/04-tasks.md +470 -0
- package/docs/api/05-sessions.md +444 -0
- package/docs/api/06-daemons.md +142 -0
- package/docs/api/07-memory.md +186 -0
- package/docs/api/08-settings.md +133 -0
- package/docs/api/09-models.md +119 -0
- package/docs/api/09-websocket.md +350 -0
- package/docs/api/10-completions.md +134 -0
- package/docs/api/README.md +116 -0
- package/docs/guide/01-quickstart.md +220 -0
- package/docs/guide/02-folder-structure.md +185 -0
- package/docs/guide/03-configuration.md +252 -0
- package/docs/guide/04-agents.md +267 -0
- package/docs/guide/05-cli.md +290 -0
- package/docs/guide/06-tools.md +643 -0
- package/docs/guide/07-permissions.md +236 -0
- package/docs/guide/08-memory.md +139 -0
- package/docs/guide/09-multi-agent.md +271 -0
- package/docs/guide/10-daemons.md +226 -0
- package/docs/guide/README.md +53 -0
- package/docs/index.html +623 -0
- package/examples/README.md +151 -0
- package/examples/agents/assistant/AGENT.md +31 -0
- package/examples/agents/assistant/SOUL.md +9 -0
- package/examples/agents/assistant/agent.json +74 -0
- package/examples/agents/hello/AGENT.md +15 -0
- package/examples/agents/hello/agent.json +14 -0
- package/examples/agents/monitor/AGENT.md +51 -0
- package/examples/agents/monitor/agent.json +33 -0
- package/examples/agents/monitor/heartbeats/monitor.md +24 -0
- package/examples/agents/orchestrator/AGENT.md +70 -0
- package/examples/agents/orchestrator/agent.json +30 -0
- package/examples/agents/researcher/AGENT.md +52 -0
- package/examples/agents/researcher/agent.json +49 -0
- package/examples/agents/researcher/skills/web-research.md +28 -0
- package/examples/skills/code-review.md +72 -0
- package/examples/skills/summarise.md +59 -0
- package/examples/skills/web-research.md +42 -0
- package/examples/tools/word-count/index.js +27 -0
- package/examples/tools/word-count/tool.json +18 -0
- package/infrastructure/database.js +563 -0
- package/infrastructure/scheduler.js +122 -0
- package/llm/client.js +206 -0
- package/migrations/001-initial.sql +121 -0
- package/migrations/002-debuggability.sql +13 -0
- package/migrations/003-drop-orphaned-columns.sql +72 -0
- package/migrations/004-session-message-token-fields.sql +78 -0
- package/migrations/005-session-thinking.sql +5 -0
- package/package.json +30 -0
- package/schemas/agent.json +143 -0
- package/schemas/settings.json +111 -0
- package/scripts/fetch-models.js +93 -0
- package/session-debug-scenario.md +248 -0
- package/settings/fields.js +52 -0
- package/system-prompts/base-core.md +23 -0
- package/system-prompts/environment.md +13 -0
- package/system-prompts/reminders/anti-drift.md +6 -0
- package/system-prompts/reminders/stall-recovery.md +10 -0
- package/system-prompts/safety-rules.md +25 -0
- package/system-prompts/task-heuristics.md +27 -0
- package/test/client.js +71 -0
- package/test/integration/01-health.test.js +25 -0
- package/test/integration/02-agents.test.js +80 -0
- package/test/integration/03-chat-hello.test.js +48 -0
- package/test/integration/04-chat-multiturn.test.js +61 -0
- package/test/integration/05-chat-writer.test.js +48 -0
- package/test/integration/06-task-basic.test.js +68 -0
- package/test/integration/07-task-tools.test.js +74 -0
- package/test/integration/08-task-code-analysis.test.js +69 -0
- package/test/integration/09-memory-analyst.test.js +63 -0
- package/test/integration/10-task-advanced.test.js +85 -0
- package/test/integration/11-sessions-advanced.test.js +84 -0
- package/test/integration/12-assistant-chat-tools.test.js +75 -0
- package/test/integration/13-edge-cases.test.js +99 -0
- package/test/integration/14-cancel.test.js +62 -0
- package/test/integration/15-debug.test.js +106 -0
- package/test/integration/16-memory-api.test.js +83 -0
- package/test/integration/17-settings-api.test.js +41 -0
- package/test/integration/18-tool-search-activation.test.js +119 -0
- package/test/results/.gitkeep +0 -0
- package/test/runner.js +206 -0
- package/test/smoke.js +216 -0
- package/tools/agent_message.js +85 -0
- package/tools/agent_send.js +80 -0
- package/tools/agent_spawn.js +44 -0
- package/tools/bash.js +49 -0
- package/tools/edit_file.js +41 -0
- package/tools/glob.js +64 -0
- package/tools/grep.js +82 -0
- package/tools/list_dir.js +63 -0
- package/tools/log_write.js +31 -0
- package/tools/memory_read.js +38 -0
- package/tools/memory_search.js +65 -0
- package/tools/memory_write.js +42 -0
- package/tools/read_file.js +48 -0
- package/tools/sleep.js +22 -0
- package/tools/task_create.js +41 -0
- package/tools/task_respond.js +37 -0
- package/tools/task_spawn.js +64 -0
- package/tools/task_status.js +39 -0
- package/tools/task_subscribe.js +37 -0
- package/tools/todo_read.js +26 -0
- package/tools/todo_write.js +38 -0
- package/tools/tool_activate.js +24 -0
- package/tools/tool_search.js +24 -0
- package/tools/web_fetch.js +50 -0
- package/tools/web_search.js +52 -0
- package/tools/write_file.js +28 -0
- package/ui/api.js +190 -0
- package/ui/app.js +245 -0
- package/ui/index.html +339 -0
- package/ui/views/agents.js +377 -0
- package/ui/views/chat.js +610 -0
- package/ui/views/connection.js +96 -0
- package/ui/views/daemons.js +129 -0
- package/ui/views/feed.js +194 -0
- package/ui/views/memory.js +263 -0
- package/ui/views/models.js +146 -0
- package/ui/views/sessions.js +314 -0
- package/ui/views/settings.js +142 -0
- package/ui/views/tasks.js +415 -0
- package/utils/context.js +49 -0
- package/utils/id.js +16 -0
- package/utils/models.js +88 -0
- package/utils/paths.js +213 -0
- package/utils/settings.js +172 -0
|
@@ -0,0 +1,1066 @@
|
|
|
1
|
+
# KhaBotCli — Step 1: Audit, Questions & Recommendations
|
|
2
|
+
|
|
3
|
+
> **Date:** Feb 27, 2026
|
|
4
|
+
> **Context:** Full audit of PLAN.md v1.0 against the current AI agent ecosystem (Claude Code v2.1.62, OpenCode, Cursor 2.0, Codex CLI, MCP spec 2025-11-25, Anthropic's context engineering guide).
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Table of Contents
|
|
9
|
+
|
|
10
|
+
1. [Critical Questions (Need Your Answers)](#1-critical-questions)
|
|
11
|
+
2. [Over-Complications to Remove](#2-over-complications-to-remove)
|
|
12
|
+
3. [CLI Behaviour Issues](#3-cli-behaviour-issues)
|
|
13
|
+
4. [Missing Features](#4-missing-features)
|
|
14
|
+
5. [Session Stats & Context Optimizations](#5-session-stats--context-optimizations)
|
|
15
|
+
6. [Built-in Tools Revision](#6-built-in-tools-revision)
|
|
16
|
+
7. [Agent/Skill/Plugin Architecture](#7-agentskillplugin-architecture)
|
|
17
|
+
8. [System Prompts](#8-system-prompts)
|
|
18
|
+
9. [Image Handling](#9-image-handling)
|
|
19
|
+
10. [File/URL Handling](#10-fileurl-handling)
|
|
20
|
+
11. [Agent-to-Agent Communication](#11-agent-to-agent-communication)
|
|
21
|
+
12. [Loading & Memory Optimizations](#12-loading--memory-optimizations)
|
|
22
|
+
13. [MCP Revision](#13-mcp-revision)
|
|
23
|
+
14. [Task System Revision](#14-task-system-revision)
|
|
24
|
+
15. [Daemon Agents Revision](#15-daemon-agents-revision)
|
|
25
|
+
16. [Testing Strategy](#16-testing-strategy)
|
|
26
|
+
17. [Documentation Plan](#17-documentation-plan)
|
|
27
|
+
18. [Forkable Config & Branding](#18-forkable-config--branding)
|
|
28
|
+
19. [Diagrams & Overview](#19-diagrams--overview)
|
|
29
|
+
20. [Schema/JSON Revisions](#20-schemajson-revisions)
|
|
30
|
+
21. [Plan Structure Proposal](#21-plan-structure-proposal)
|
|
31
|
+
22. [Research Items Needed](#22-research-items-needed)
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## 1. Critical Questions
|
|
36
|
+
|
|
37
|
+
These questions **must be answered** before the plan can be rewritten. Mark your answers inline or in a separate file.
|
|
38
|
+
|
|
39
|
+
### Q1. KhaBot.com API Scope
|
|
40
|
+
Since KhaBot.com isn't ready, what minimal API surface should KhaBotCLI expect from it in the future?
|
|
41
|
+
- **(a)** Just token validation (verify `khabot_token` is valid)
|
|
42
|
+
- **(b)** Token validation + agent/skill/tool registry (download pre-built agents)
|
|
43
|
+
- **(c)** Full platform (registry + billing + analytics + team management)
|
|
44
|
+
- **(d)** Other: ___
|
|
45
|
+
|
|
46
|
+
> **Your answer:** When I said KhaBot.com isn't ready, I meant to make support for some pre-built agents, skills and tools available, witout the need for internet, i mean i dont have to download the file reader tool for example, also KhaBot.com will be edited inline with the KhaBotCLI development, just we should have a plan of whats expected from KhaBot.com in details
|
|
47
|
+
|
|
48
|
+
### Q2. Target LLM Providers
|
|
49
|
+
- **(a)** OpenRouter only (simplest — one `base_url` + `api_key`)
|
|
50
|
+
- **(b)** OpenRouter + direct provider APIs (Anthropic, OpenAI, Google, etc.)
|
|
51
|
+
- **(c)** OpenRouter + direct APIs + local models (Ollama, LM Studio, etc.)
|
|
52
|
+
|
|
53
|
+
> **Your answer:** I mean we just do (`base_url` + `api_key`) and user can use any LLM provider, OpenRouter or any other provider, since Ollama (Local LLMs) provides local (`base_url` + `api_key`) that can be used for KhaBotCLI
|
|
54
|
+
|
|
55
|
+
### Q3. Primary Language
|
|
56
|
+
- **(a)** Node.js / TypeScript (matches Claude Code ecosystem)
|
|
57
|
+
- **(b)** Go (like OpenCode — faster, single binary, no runtime dependency)
|
|
58
|
+
- **(c)** Rust
|
|
59
|
+
- **(d)** Other: ___
|
|
60
|
+
|
|
61
|
+
> **Your answer:** Node.js + JSdoc (No TypeScript)
|
|
62
|
+
|
|
63
|
+
### Q4. Interactive TUI Mode
|
|
64
|
+
Current plan is REST API + one-shot only. Do you want an interactive terminal UI?
|
|
65
|
+
- **(a)** No TUI — strictly REST API + one-shot CLI. Consumers build their own UI.
|
|
66
|
+
- **(b)** Basic TUI for debugging/testing (like OpenCode's Bubble Tea UI)
|
|
67
|
+
- **(c)** Full TUI as a primary interface
|
|
68
|
+
|
|
69
|
+
> **Your answer:** strictly REST API + one-shot CLI + A Good DOC, so we can build independent UIs that uses the Rest API
|
|
70
|
+
|
|
71
|
+
### Q5. Streaming Responses
|
|
72
|
+
Current plan says "Returns response synchronously (no streaming)." Every competitor streams.
|
|
73
|
+
- **(a)** No streaming — keep synchronous. Consumers poll `/tasks/:id` for progress.
|
|
74
|
+
- **(b)** SSE streaming on API endpoints
|
|
75
|
+
- **(c)** WebSocket streaming
|
|
76
|
+
- **(d)** Both SSE and polling (SSE for real-time consumers, polling as fallback)
|
|
77
|
+
|
|
78
|
+
> **Your answer:** No streaming, for easy maintenance, and more focus on the needs, plus AIs are getting faster anyway
|
|
79
|
+
|
|
80
|
+
### Q6. Agent Ownership / Runtime Creation
|
|
81
|
+
- **(a)** Agents are only defined as files by the user (current plan)
|
|
82
|
+
- **(b)** Agents can also be created at runtime via API (e.g., `POST /agents`)
|
|
83
|
+
- **(c)** Agents can create other agents at runtime (self-replication)
|
|
84
|
+
|
|
85
|
+
> **Your answer:** Agents are only defined as files in ~/.khabot/agents or ./.khabot/agents, if a script/agent/human wants to add a custom agent, it should add it to ./.khabot/agents and run khabotcli from there
|
|
86
|
+
|
|
87
|
+
### Q7. Forking Scope
|
|
88
|
+
What exactly should be configurable for forks?
|
|
89
|
+
- **(a)** Just branding (domain name, product name, logo URL)
|
|
90
|
+
- **(b)** Branding + default agents/tools/skills
|
|
91
|
+
- **(c)** Branding + defaults + custom API endpoints + custom auth flow
|
|
92
|
+
- **(d)** Full white-label (everything swappable)
|
|
93
|
+
|
|
94
|
+
> **Your answer:** Basically the "khabot.com" endpoint, the name "KhaBot" and the defaults, the system is the same
|
|
95
|
+
|
|
96
|
+
### Q8. Image Handling Priority
|
|
97
|
+
- **(a)** Vision only (agent can read/analyze images sent to it)
|
|
98
|
+
- **(b)** Vision + generation (via tool/MCP, e.g., DALL-E, Stable Diffusion)
|
|
99
|
+
- **(c)** Vision + generation + editing (full image pipeline)
|
|
100
|
+
- **(d)** Not a priority for v1
|
|
101
|
+
|
|
102
|
+
> **Your answer:** Basic Vision + generation (Gen using normal API since Many new models support generating images/audios/videos), no need for third party tools, but MCP already can do all (MCP wont be used, it just to be there for people who want to use it in their custom agents)
|
|
103
|
+
|
|
104
|
+
### Q9. Browser Automation
|
|
105
|
+
Claude Code now has a `Computer` tool for Chrome browser automation. Does KhaBotCLI need this?
|
|
106
|
+
- **(a)** No — out of scope
|
|
107
|
+
- **(b)** Yes, as a built-in tool
|
|
108
|
+
- **(c)** Yes, but as an optional MCP server (not built-in)
|
|
109
|
+
|
|
110
|
+
> **Your answer:** No, out of scope, if user wants Browser Automation, they can use an MCP for that
|
|
111
|
+
|
|
112
|
+
### Q10. Remote Access (Ably vs Alternatives)
|
|
113
|
+
- **(a)** Keep Ably (current plan)
|
|
114
|
+
- **(b)** Replace with WebSocket server built into KhaBotCLI
|
|
115
|
+
- **(c)** Replace with SSE endpoints
|
|
116
|
+
- **(d)** Remove remote access from v1, add later
|
|
117
|
+
- **(e)** Keep Ably but also support direct WebSocket
|
|
118
|
+
|
|
119
|
+
> **Your answer:** Keep Ably (current plan)
|
|
120
|
+
|
|
121
|
+
### Q11. Skills vs Commands
|
|
122
|
+
In Claude Code: Skills = reusable prompt templates, Commands = slash-invocable actions. In the current plan, both exist but their distinction is unclear.
|
|
123
|
+
- **(a)** Merge into one concept ("Skills" that can be invoked via slash or by the agent)
|
|
124
|
+
- **(b)** Keep both separate (Skills = agent-invocable, Commands = user-invocable)
|
|
125
|
+
- **(c)** Rename both to something else: ___
|
|
126
|
+
|
|
127
|
+
> **Your answer:** Skills are meant to be used by the agents, But dont forget that the user can chat with an Agent and use commands in their message
|
|
128
|
+
|
|
129
|
+
### Q12. How Are Agents Invoked Externally?
|
|
130
|
+
- **(a)** REST API only (current plan)
|
|
131
|
+
- **(b)** REST API + CLI commands (e.g., `khabot chat researcher "what is quantum computing?"`)
|
|
132
|
+
- **(c)** REST API + CLI + Ably/remote
|
|
133
|
+
|
|
134
|
+
> **Your answer:** REST API + CLI, But for CLI a user can start an agent (one shot mode), and ably will simply expose the REST API for remote access through Ably
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## 2. Over-Complications to Remove
|
|
139
|
+
|
|
140
|
+
These items add complexity without proportional value. Recommendation: **remove or simplify**.
|
|
141
|
+
|
|
142
|
+
### 2.1 Browser OAuth Login (Section 2.4)
|
|
143
|
+
**Problem:** The plan says `khabot login` opens a browser to KhaBot.com OAuth flow. You confirmed KhaBot.com isn't ready and this was hallucinated.
|
|
144
|
+
**Fix:** Remove browser OAuth entirely. Login = `khabot login --key <token>` only. Store token in `~/.khabot/auth.json`.
|
|
145
|
+
|
|
146
|
+
> **Your answer:** ACCEPTED
|
|
147
|
+
|
|
148
|
+
### 2.2 Dual auth.json Locations
|
|
149
|
+
**Problem:** Auth can be at `~/.khabot/auth.json` (global) OR `./.khabot/auth.json` (project). This creates confusion about which token is used.
|
|
150
|
+
**Fix:** Single location: `~/.khabot/auth.json`. Project-level settings can override the *model* and *permissions*, but auth should be global only.
|
|
151
|
+
|
|
152
|
+
> **Your answer:** REJECTED, needed for testing
|
|
153
|
+
|
|
154
|
+
### 2.3 Three Agent Types as Rigid Categories
|
|
155
|
+
**Problem:** Chat, Task, and Daemon are treated as fundamentally different things with separate code paths and endpoints. In reality:
|
|
156
|
+
- A **Chat** agent is just an agent with a persistent session
|
|
157
|
+
- A **Task** agent is just an agent with a job queue entry and a terminal state
|
|
158
|
+
- A **Daemon** agent is just an agent with a cron trigger
|
|
159
|
+
|
|
160
|
+
**Fix:** Unify into a single Agent concept. The *type* becomes an *invocation mode*. Any agent can be invoked as chat, task, or daemon. The agent definition doesn't change — only how it's triggered.
|
|
161
|
+
|
|
162
|
+
> **Your answer:** REJECTED, Chat are meant to interact with the user, Task are meant to receive a single input and loop until completion, Daemon are meant to run in the background and perform actions, with time different optimizations will be applied to each, Like Task agent will have access to Task answering tool, giving that to a chat agent may make confusion, so the developer of an agent should state the type of the agent they want to create
|
|
163
|
+
|
|
164
|
+
### 2.4 Custom JS Tool Implementations
|
|
165
|
+
**Problem:** `tool.json` + `index.js` custom tools are a security risk (arbitrary code execution) and duplicate what MCP already provides.
|
|
166
|
+
**Fix:** Deprecate custom JS tools. Use MCP servers for all external tool extensions. Built-in tools are part of KhaBotCLI core. If custom tools are truly needed, they should be MCP servers.
|
|
167
|
+
|
|
168
|
+
> **Your answer:** REJECTED, Custom Tools need to exist, for testing or custom Agents, MCP only for specific user needs
|
|
169
|
+
|
|
170
|
+
### 2.5 Individual JSON Files Per Session/Task
|
|
171
|
+
**Problem:** At 50k sessions with individual `meta.json` + `messages.json` files each, the filesystem becomes unmanageable. Directory listing alone becomes slow. No indexing, no querying.
|
|
172
|
+
**Fix:** Use SQLite (like OpenCode) for session/task storage. Single `~/.khabot/data.db` file. Queryable, indexable, atomic writes, backup-friendly.
|
|
173
|
+
|
|
174
|
+
> **Your answer:** ACCEPTED
|
|
175
|
+
|
|
176
|
+
### 2.6 Over-Specified Hooks
|
|
177
|
+
**Problem:** 5 hook types (`PreToolUse`, `PostToolUse`, `beforeBash`, `afterWrite`, `afterResponse`) with inconsistent naming (camelCase vs PascalCase).
|
|
178
|
+
**Fix:** Standardize to just `PreToolUse` and `PostToolUse` (matching Claude Code). Tool name is available in env vars, so `beforeBash` = `PreToolUse` where `KHABOT_TOOL_NAME=bash`. Add `Notification` hook for agent events.
|
|
179
|
+
|
|
180
|
+
> **Your answer:** ACCEPTED
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## 3. CLI Behaviour Issues
|
|
185
|
+
|
|
186
|
+
Problems with the current CLI design:
|
|
187
|
+
|
|
188
|
+
### 3.1 Import Mode is Too Rigid
|
|
189
|
+
**Problem:** `khabot import --type=claude-code` assumes a specific source format. What about importing from OpenCode, Cursor, or raw markdown?
|
|
190
|
+
**Fix:** Make import extensible with adapters. Ship with `claude-code` and `openclaw` adapters. Allow community adapters via MCP or plugins.
|
|
191
|
+
|
|
192
|
+
> **Your answer:** ACCEPTED
|
|
193
|
+
|
|
194
|
+
### 3.2 One-Shot Mode Has No Progress Feedback
|
|
195
|
+
**Problem:** `khabot run --agent researcher --input "..."` blocks until completion with no output. For long tasks, the user has no idea what's happening.
|
|
196
|
+
**Fix:** Stream progress to stderr (iterations, tool calls) while the final result goes to stdout. Or add `--progress` flag.
|
|
197
|
+
|
|
198
|
+
> **Your answer:** ACCEPTED, but progress should stream to stdout with a special prefix (e.g., `KHABOT_PROGRESS={ ... json object of the progress state ...}`)
|
|
199
|
+
|
|
200
|
+
### 3.3 No `khabot status` Command
|
|
201
|
+
**Problem:** No way to check what's running without hitting the API.
|
|
202
|
+
**Fix:** Add `khabot status` — shows running server, active sessions, active tasks, daemon status.
|
|
203
|
+
|
|
204
|
+
> **Your answer:** ACCEPTED
|
|
205
|
+
|
|
206
|
+
### 3.4 No `khabot stop` Command
|
|
207
|
+
**Problem:** `POST /shutdown` exists but no CLI equivalent.
|
|
208
|
+
**Fix:** Add `khabot stop` — sends shutdown signal to running server.
|
|
209
|
+
|
|
210
|
+
> **Your answer:** ACCEPTED
|
|
211
|
+
|
|
212
|
+
### 3.5 No Agent Management Commands
|
|
213
|
+
**Problem:** No CLI commands to list/inspect/create agents.
|
|
214
|
+
**Fix:** Add:
|
|
215
|
+
- `khabot agents list` — list all discovered agents
|
|
216
|
+
- `khabot agents inspect <name>` — show agent details
|
|
217
|
+
- `khabot agents create` — interactive agent creation (like OpenCode's `opencode agent create`)
|
|
218
|
+
|
|
219
|
+
> **Your answer:** ACCEPTED
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
223
|
+
## 4. Missing Features
|
|
224
|
+
|
|
225
|
+
### 4.1 Context Compaction System
|
|
226
|
+
**What:** Auto-summarize conversation when approaching context window limit.
|
|
227
|
+
**How it works in competitors:**
|
|
228
|
+
- **Claude Code:** Hidden compaction agent summarizes message history, preserves architectural decisions + unresolved bugs + implementation details, discards redundant tool outputs. Keeps 5 most recently accessed files.
|
|
229
|
+
- **OpenCode:** Auto-compact at 95% context usage. Creates new session with summary.
|
|
230
|
+
- **Anthropic's recommendation:** Maximize recall first, then iterate precision. Tool result clearing is the lightest compaction.
|
|
231
|
+
|
|
232
|
+
**Recommendation for KhaBotCLI:**
|
|
233
|
+
- Built-in hidden `compaction` agent (uses cheaper model)
|
|
234
|
+
- Triggers at configurable threshold (default 90%)
|
|
235
|
+
- Summarizes: key decisions, unresolved issues, current task state, file paths
|
|
236
|
+
- Clears: raw tool outputs, redundant messages, resolved issues
|
|
237
|
+
- Configurable in `settings.json`: `{ "compaction": { "threshold": 0.9, "model": "anthropic/claude-3-haiku", "enabled": true } }`
|
|
238
|
+
|
|
239
|
+
> **Your answer:** ACCEPTED
|
|
240
|
+
|
|
241
|
+
### 4.2 Session Statistics & Token Tracking
|
|
242
|
+
**What:** Track per-session/task: input tokens, output tokens, cache tokens, cost estimate, duration, iterations, tool calls count.
|
|
243
|
+
**Why:** Essential for cost management and debugging. No competitor ships without this.
|
|
244
|
+
**Schema addition:**
|
|
245
|
+
```json
|
|
246
|
+
{
|
|
247
|
+
"tokenUsage": {
|
|
248
|
+
"inputTokens": 15420,
|
|
249
|
+
"outputTokens": 3200,
|
|
250
|
+
"cacheReadTokens": 8000,
|
|
251
|
+
"cacheWriteTokens": 2000,
|
|
252
|
+
"totalTokens": 28620,
|
|
253
|
+
"estimatedCost": 0.042
|
|
254
|
+
},
|
|
255
|
+
"toolCalls": 12,
|
|
256
|
+
"compactionCount": 1
|
|
257
|
+
}
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
> **Your answer:** ACCEPTED
|
|
261
|
+
|
|
262
|
+
### 4.3 Sub-Agent Architecture
|
|
263
|
+
**What:** Agents can spawn lightweight sub-agents with isolated context windows.
|
|
264
|
+
**How it works in Claude Code:**
|
|
265
|
+
- `Task` tool — spawns a sub-agent for a specific task, returns result
|
|
266
|
+
- `Explore` sub-agent — read-only, for codebase exploration
|
|
267
|
+
- `Plan` sub-agent — analysis only, no modifications
|
|
268
|
+
- Each sub-agent gets a clean context, does extensive work, returns a condensed summary (1,000-2,000 tokens)
|
|
269
|
+
|
|
270
|
+
**Recommendation:** Built-in sub-agent types:
|
|
271
|
+
- **explore** — read-only codebase exploration (cheaper model)
|
|
272
|
+
- **plan** — analysis and planning without modifications
|
|
273
|
+
- **execute** — full tool access for specific tasks
|
|
274
|
+
- **summarize** — context compaction (cheapest model)
|
|
275
|
+
- Custom sub-agents definable by user
|
|
276
|
+
|
|
277
|
+
> **Your answer:** ACCEPTED, but in order to make `Explore` agent for example, for chat and to be a sub-agent, there should be two of them, one called `Explore` (type: Chat Agent) and one called `Explore sub-agent` (type: Task Agent), to align with our current infrastructure, unless you give me a better idea.
|
|
278
|
+
|
|
279
|
+
### 4.4 Structured Note-Taking / TodoWrite
|
|
280
|
+
**What:** Agents maintain a structured TODO list that persists across compactions.
|
|
281
|
+
**How in Claude Code:** `TodoWrite` tool (2,167 tokens description!) — creates and manages task lists, tracks progress, survives compaction.
|
|
282
|
+
**Recommendation:** Built-in `todo_write` and `todo_read` tools. TODO stored in session metadata, always included in compacted context.
|
|
283
|
+
|
|
284
|
+
> **Your answer:** ACCEPTED
|
|
285
|
+
|
|
286
|
+
### 4.5 ToolSearch / Lazy Tool Loading
|
|
287
|
+
**What:** Not all tools are loaded into context at startup. Agent discovers tools when needed.
|
|
288
|
+
**How in Claude Code:** `ToolSearch` tool — agent can search for available tools by name/description. Tools are loaded into context only when found and needed.
|
|
289
|
+
**Why:** Reduces context pollution. With 50+ MCP tools, loading all tool descriptions into system prompt wastes context.
|
|
290
|
+
**Recommendation:** Built-in `tool_search` tool. Tool descriptions loaded on-demand. Only actively-used tool descriptions kept in context.
|
|
291
|
+
|
|
292
|
+
> **Your answer:** ACCEPTED
|
|
293
|
+
|
|
294
|
+
### 4.6 Sleep / Wait Tool
|
|
295
|
+
**What:** Agent can pause execution and wait (e.g., for a build to complete, for a file to change).
|
|
296
|
+
**How in Claude Code:** `Sleep` tool — waits with early wake capability on user input.
|
|
297
|
+
**Recommendation:** Built-in `sleep` tool with configurable timeout and wake conditions.
|
|
298
|
+
|
|
299
|
+
> **Your answer:** ACCEPTED
|
|
300
|
+
|
|
301
|
+
### 4.7 LSP Integration
|
|
302
|
+
**What:** Language Server Protocol for code intelligence (go-to-definition, find-references, diagnostics).
|
|
303
|
+
**How in OpenCode:** LSP servers per language, integrated with AI tools. Diagnostics available as a tool.
|
|
304
|
+
**Recommendation:** Optional LSP support via `settings.json`. Built-in `diagnostics` tool that queries LSP for errors/warnings.
|
|
305
|
+
|
|
306
|
+
> **Your answer:** ACCEPTED
|
|
307
|
+
|
|
308
|
+
### 4.8 WebSearch Tool
|
|
309
|
+
**What:** Agent can search the web (not just fetch a URL).
|
|
310
|
+
**How in Claude Code:** Separate `WebSearch` and `WebFetch` tools.
|
|
311
|
+
**Recommendation:** Built-in `web_search` tool (uses configurable search API) + existing `web_fetch`.
|
|
312
|
+
|
|
313
|
+
> **Your answer:** ACCEPTED
|
|
314
|
+
|
|
315
|
+
---
|
|
316
|
+
|
|
317
|
+
## 5. Session Stats & Context Optimizations
|
|
318
|
+
|
|
319
|
+
### Current State (PLAN.md)
|
|
320
|
+
- **No token tracking** — no visibility into costs
|
|
321
|
+
- **No compaction** — sessions grow until they hit context limit, then fail
|
|
322
|
+
- **No tool result clearing** — raw tool outputs accumulate forever
|
|
323
|
+
- **No sub-agent isolation** — one context window for everything
|
|
324
|
+
|
|
325
|
+
### Required Optimizations
|
|
326
|
+
|
|
327
|
+
| Optimization | Priority | Description |
|
|
328
|
+
|-------------|----------|-------------|
|
|
329
|
+
| **Token tracking** | P0 | Count input/output/cache tokens per LLM call, aggregate per session |
|
|
330
|
+
| **Auto compaction** | P0 | Summarize at 90% threshold, use cheaper model |
|
|
331
|
+
| **Tool result clearing** | P0 | Clear old tool results after N turns (keep summary only) |
|
|
332
|
+
| **Sub-agent isolation** | P1 | Spawn sub-agents with clean context, return condensed results |
|
|
333
|
+
| **Structured notes** | P1 | TODO/NOTES persisted outside context, survive compaction |
|
|
334
|
+
| **Lazy tool loading** | P1 | ToolSearch pattern, don't load all tool descriptions upfront |
|
|
335
|
+
| **Session indexing** | P1 | SQLite index for fast session lookup without loading messages |
|
|
336
|
+
| **Message pagination** | P2 | API returns messages paginated, not all at once |
|
|
337
|
+
| **Context budget display** | P2 | Show remaining context % in session stats |
|
|
338
|
+
|
|
339
|
+
---
|
|
340
|
+
|
|
341
|
+
## 6. Built-in Tools Revision
|
|
342
|
+
|
|
343
|
+
### Current Plan (14 tools)
|
|
344
|
+
```
|
|
345
|
+
bash, read_file, write_file, edit_file, list_directory, glob,
|
|
346
|
+
web_fetch, memory_write, memory_read, task_create, task_status,
|
|
347
|
+
task_respond, session_spawn, session_message, log_write
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
### Claude Code v2.1.62 (18 built-in tools)
|
|
351
|
+
```
|
|
352
|
+
Bash, ReadFile, Write, Edit, Glob, Grep, WebFetch, WebSearch,
|
|
353
|
+
NotebookEdit, LSP, Computer, Sleep, AskUserQuestion,
|
|
354
|
+
TodoWrite, Task, TaskCreate, Skill, EnterPlanMode, ExitPlanMode,
|
|
355
|
+
ToolSearch, TeammateTool, SendMessageTool, TeamDelete, EnterWorktree
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
### OpenCode (12 tools)
|
|
359
|
+
```
|
|
360
|
+
bash, view, write, edit, glob, grep, ls, fetch, sourcegraph,
|
|
361
|
+
diagnostics, agent, context_window
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
### Recommended KhaBotCLI Built-in Tools
|
|
365
|
+
|
|
366
|
+
| Tool | Category | Description | Model |
|
|
367
|
+
|------|----------|-------------|-------|
|
|
368
|
+
| `bash` | System | Execute shell commands (with permissions) | Main |
|
|
369
|
+
| `read_file` | Files | Read file contents (with offset/limit) | Main |
|
|
370
|
+
| `write_file` | Files | Write/overwrite file | Cheap (apply) |
|
|
371
|
+
| `edit_file` | Files | Patch specific lines via search-replace | Cheap (apply) |
|
|
372
|
+
| `list_dir` | Files | List directory contents | Main |
|
|
373
|
+
| `glob` | Files | Find files by pattern | Main |
|
|
374
|
+
| `grep` | Files | Search file contents (ripgrep) | Main |
|
|
375
|
+
| `web_fetch` | Network | Fetch URL content | Main |
|
|
376
|
+
| `web_search` | Network | Search the web | Main |
|
|
377
|
+
| `memory_write` | Memory | Write to agent's MEMORY.md | Main |
|
|
378
|
+
| `memory_read` | Memory | Read agent's MEMORY.md | Main |
|
|
379
|
+
| `todo_write` | Memory | Create/update structured TODO list | Main |
|
|
380
|
+
| `todo_read` | Memory | Read current TODO list | Main |
|
|
381
|
+
| `task_create` | Orchestration | Create a new task for any agent | Main |
|
|
382
|
+
| `task_status` | Orchestration | Check task status | Main |
|
|
383
|
+
| `task_respond` | Orchestration | Respond to a waiting task | Main |
|
|
384
|
+
| `agent_spawn` | Orchestration | Spawn a sub-agent with isolated context | Main |
|
|
385
|
+
| `agent_message` | Orchestration | Send message to another agent directly | Main |
|
|
386
|
+
| `tool_search` | Meta | Search available tools by name/description | Cheap |
|
|
387
|
+
| `sleep` | Control | Wait with configurable timeout | — |
|
|
388
|
+
| `ask_user` | Control | Ask the user a question (with options) | Main |
|
|
389
|
+
| `log_write` | Logging | Write entry to task log | Main |
|
|
390
|
+
|
|
391
|
+
**Key changes from current plan:**
|
|
392
|
+
- **Added:** `grep`, `web_search`, `todo_write`, `todo_read`, `agent_spawn`, `agent_message`, `tool_search`, `sleep`, `ask_user`
|
|
393
|
+
- **Removed:** `session_spawn`, `session_message` (replaced by `agent_spawn`, `agent_message`)
|
|
394
|
+
- **Revised:** `write_file` and `edit_file` can use cheaper "apply" model for the actual file operation
|
|
395
|
+
|
|
396
|
+
> **Your answer:** ACCEPTED, but no need for `ask_user` tool, We dont have a chat interface, if its a Task Agent it will add a comment to the Task and stop, if its a chat agent it will simply send a message back
|
|
397
|
+
|
|
398
|
+
### Cheaper Model Delegation (Apply Layer)
|
|
399
|
+
|
|
400
|
+
Modern AI coding agents use a two-model approach:
|
|
401
|
+
1. **Main model** (e.g., Claude 3.5 Sonnet) — reasoning, planning, deciding what to change
|
|
402
|
+
2. **Apply model** (e.g., Claude Haiku, Morph Fast Apply) — executing the actual file edit
|
|
403
|
+
|
|
404
|
+
**How it works:**
|
|
405
|
+
- Main model outputs edit intent: "Add error handling to function X in file Y"
|
|
406
|
+
- Apply model receives: instruction + current file content + edit snippet → outputs merged file
|
|
407
|
+
- 10x cheaper, 5x faster for file operations
|
|
408
|
+
|
|
409
|
+
**Recommendation:** Configurable in settings:
|
|
410
|
+
```json
|
|
411
|
+
{
|
|
412
|
+
"models": {
|
|
413
|
+
"main": "anthropic/claude-3.5-sonnet",
|
|
414
|
+
"apply": "anthropic/claude-3-haiku",
|
|
415
|
+
"compact": "anthropic/claude-3-haiku",
|
|
416
|
+
"title": "anthropic/claude-3-haiku"
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
> **Your answer:** ACCEPTED
|
|
422
|
+
|
|
423
|
+
---
|
|
424
|
+
|
|
425
|
+
## 7. Agent/Skill/Plugin Architecture
|
|
426
|
+
|
|
427
|
+
### Current Plan Issues
|
|
428
|
+
- Agent types (Chat/Task/Daemon) are too rigid
|
|
429
|
+
- Skills are loaded all at once, no auto-import/remove
|
|
430
|
+
- No sub-agent concept
|
|
431
|
+
- No agent creation at runtime
|
|
432
|
+
- No per-agent model/temperature/tools/permissions
|
|
433
|
+
|
|
434
|
+
> **Your answer:** WRONG, I have explained above the agent types (Chat/Task/Daemon) and any agent can be a sub-agent, YES Skills should be loaded on demand by agents, unless configured for auto-import, Agents creation at runtime is already supported, a script/user can add a folder for a new agent then simply call it with the API/CLI, since the KhaBotCLI should check for the agent at each run (to check for existance or an update), YES per-agent model/temperature/tools/permissions should be supported
|
|
435
|
+
|
|
436
|
+
### Claude Code's Architecture (Feb 2026)
|
|
437
|
+
|
|
438
|
+
**Agent hierarchy:**
|
|
439
|
+
- **Primary agents** — user-facing (Build, Plan)
|
|
440
|
+
- **Sub-agents** — invoked by primary agents (Explore, Task, General)
|
|
441
|
+
- **Hidden system agents** — automatic (Compaction, Title, Summary)
|
|
442
|
+
- **Agent Teams** — multi-agent coordination via TeammateTool/SendMessageTool
|
|
443
|
+
|
|
444
|
+
**Skills:**
|
|
445
|
+
- Invoked via `Skill` tool
|
|
446
|
+
- Can specify `context: fork` for isolated execution
|
|
447
|
+
- Can specify different model per skill
|
|
448
|
+
- Template variables for arguments
|
|
449
|
+
|
|
450
|
+
**Key insight:** Skills in Claude Code are "auto-imported" — the agent is told about available skills in the system prompt, but the actual skill content is only loaded when invoked. Skills can be auto-removed from context after execution (fork mode).
|
|
451
|
+
|
|
452
|
+
### Recommended Architecture for KhaBotCLI
|
|
453
|
+
|
|
454
|
+
```
|
|
455
|
+
Agent Definition (AGENT.md + frontmatter)
|
|
456
|
+
├── mode: primary | subagent | hidden | all
|
|
457
|
+
├── model: override model for this agent
|
|
458
|
+
├── temperature: 0.0-1.0
|
|
459
|
+
├── steps: max iterations before forced summary
|
|
460
|
+
├── tools: { write: true, bash: false, ... }
|
|
461
|
+
├── permissions: { edit: "ask", bash: { "*": "deny", "npm test": "allow" } }
|
|
462
|
+
└── hidden: true/false (hidden from user, system-only)
|
|
463
|
+
|
|
464
|
+
Built-in Agents (shipped with KhaBotCLI):
|
|
465
|
+
├── build (primary) — full tool access, default agent
|
|
466
|
+
├── plan (primary) — read-only, analysis and planning
|
|
467
|
+
├── explore (subagent) — fast codebase exploration, read-only
|
|
468
|
+
├── execute (subagent) — full access for delegated tasks
|
|
469
|
+
├── compact (hidden) — context compaction
|
|
470
|
+
├── title (hidden) — session title generation
|
|
471
|
+
└── summary (hidden) — session summary generation
|
|
472
|
+
|
|
473
|
+
Skills:
|
|
474
|
+
├── Loaded on-demand (names listed in system prompt, content loaded on invoke)
|
|
475
|
+
├── Fork mode = isolated sub-agent context
|
|
476
|
+
├── Main mode = injected into current context
|
|
477
|
+
└── Auto-removed from context after fork execution
|
|
478
|
+
```
|
|
479
|
+
|
|
480
|
+
---
|
|
481
|
+
|
|
482
|
+
## 8. System Prompts
|
|
483
|
+
|
|
484
|
+
### Current Plan Issue
|
|
485
|
+
The plan has zero mention of system prompts beyond "AGENT.md content is loaded." No structure, no conditional fragments, no best practices.
|
|
486
|
+
|
|
487
|
+
### Claude Code's System Prompt Architecture (110+ fragments)
|
|
488
|
+
|
|
489
|
+
Claude Code assembles its system prompt from:
|
|
490
|
+
1. **Base system prompt** — core identity, capabilities, safety rules (~3,000 tokens)
|
|
491
|
+
2. **Task-specific fragments** — "avoid over-engineering", "read before modifying", "no premature abstractions", etc. (~30-50 tokens each)
|
|
492
|
+
3. **Tool descriptions** — each built-in tool has its own prompt (100-2,000 tokens each)
|
|
493
|
+
4. **Agent-specific prompts** — different for Explore, Plan, Task sub-agents
|
|
494
|
+
5. **Conditional fragments** — added based on environment (git status, LSP available, hooks configured)
|
|
495
|
+
6. **System reminders** — ~40 mid-conversation reminders injected at specific points
|
|
496
|
+
7. **User's CLAUDE.md** — loaded as part of system prompt
|
|
497
|
+
8. **Utility prompts** — compaction, title generation, summary, etc.
|
|
498
|
+
|
|
499
|
+
### Recommended for KhaBotCLI
|
|
500
|
+
|
|
501
|
+
**System prompt assembly order:**
|
|
502
|
+
```
|
|
503
|
+
1. Base system prompt (identity, safety, core rules)
|
|
504
|
+
2. Environment info (OS, shell, cwd, git status)
|
|
505
|
+
3. Agent-specific prompt (AGENT.md content)
|
|
506
|
+
4. Persona (SOUL.md if exists)
|
|
507
|
+
5. Memory (MEMORY.md if exists)
|
|
508
|
+
6. Available tools (names + short descriptions only)
|
|
509
|
+
7. Available skills (names + descriptions only)
|
|
510
|
+
8. Available agents (names + descriptions only)
|
|
511
|
+
9. Task-specific fragments (conditional)
|
|
512
|
+
10. Permission rules summary
|
|
513
|
+
11. Session context (compacted history if resuming)
|
|
514
|
+
```
|
|
515
|
+
|
|
516
|
+
**Source of system prompts:**
|
|
517
|
+
- **Piebald-AI/claude-code-system-prompts** — open source, all 110+ fragments with token counts
|
|
518
|
+
- **OpenCode source code** — agent prompts in Go source
|
|
519
|
+
- **OpenClaw** — agent prompts
|
|
520
|
+
|
|
521
|
+
**Action needed:** Create a `./system-prompts/` directory in KhaBotCLI with modular prompt fragments. See [RESEARCH-TODO/deep-research-system-prompts.md].
|
|
522
|
+
|
|
523
|
+
---
|
|
524
|
+
|
|
525
|
+
## 9. Image Handling
|
|
526
|
+
|
|
527
|
+
### Current Plan
|
|
528
|
+
No mention of images whatsoever.
|
|
529
|
+
|
|
530
|
+
### What's Needed
|
|
531
|
+
|
|
532
|
+
| Capability | How | Priority |
|
|
533
|
+
|-----------|-----|----------|
|
|
534
|
+
| **Image reading (vision)** | Send images as base64 data URLs in messages. Supported by Claude, GPT-4V, Gemini. | P1 |
|
|
535
|
+
| **Image from URL** | Fetch image from URL, convert to base64, include in context | P1 |
|
|
536
|
+
| **Image from file** | Read local image file, convert to base64, include in context | P1 |
|
|
537
|
+
| **Image generation** | Via MCP tool (DALL-E, Stable Diffusion MCP servers) | P2 |
|
|
538
|
+
| **Image editing** | Via MCP tool | P3 |
|
|
539
|
+
| **Screenshot capture** | Via `Computer` tool or `bash` + screenshot utility | P3 |
|
|
540
|
+
|
|
541
|
+
**Message format with images:**
|
|
542
|
+
```json
|
|
543
|
+
{
|
|
544
|
+
"role": "user",
|
|
545
|
+
"content": [
|
|
546
|
+
{ "type": "text", "text": "What's in this image?" },
|
|
547
|
+
{ "type": "image", "source": {
|
|
548
|
+
"type": "base64",
|
|
549
|
+
"media_type": "image/png",
|
|
550
|
+
"data": "iVBOR..."
|
|
551
|
+
}}
|
|
552
|
+
]
|
|
553
|
+
}
|
|
554
|
+
```
|
|
555
|
+
|
|
556
|
+
**Task input with images:**
|
|
557
|
+
```json
|
|
558
|
+
{
|
|
559
|
+
"prompt": "Analyze this screenshot",
|
|
560
|
+
"files": ["./screenshot.png", "https://example.com/image.jpg"],
|
|
561
|
+
"images": [
|
|
562
|
+
{ "type": "url", "url": "https://example.com/image.jpg" },
|
|
563
|
+
{ "type": "file", "path": "./screenshot.png" },
|
|
564
|
+
{ "type": "data_url", "data": "data:image/png;base64,iVBOR..." }
|
|
565
|
+
]
|
|
566
|
+
}
|
|
567
|
+
```
|
|
568
|
+
|
|
569
|
+
---
|
|
570
|
+
|
|
571
|
+
## 10. File/URL Handling
|
|
572
|
+
|
|
573
|
+
### Current Plan Issue
|
|
574
|
+
Task input `files` field only supports local file paths. Since KhaBotCLI is API-driven, it should support:
|
|
575
|
+
|
|
576
|
+
| Type | Format | Example |
|
|
577
|
+
|------|--------|---------|
|
|
578
|
+
| Local file | `./path/to/file` | `./src/auth.js` |
|
|
579
|
+
| Absolute path | `/path/to/file` | `/home/user/project/src/auth.js` |
|
|
580
|
+
| HTTP URL | `https://...` | `https://raw.githubusercontent.com/...` |
|
|
581
|
+
| Data URL | `data:...` | `data:text/plain;base64,SGVsbG8=` |
|
|
582
|
+
| File URL | `file:///...` | `file:///home/user/project/src/auth.js` |
|
|
583
|
+
|
|
584
|
+
**Implementation:** File resolver that:
|
|
585
|
+
1. Detects type from prefix
|
|
586
|
+
2. Fetches content (local read, HTTP GET, base64 decode)
|
|
587
|
+
3. Returns unified `{ path, content, mimeType, size }` object
|
|
588
|
+
4. Respects permissions (deny reading outside project for security)
|
|
589
|
+
|
|
590
|
+
---
|
|
591
|
+
|
|
592
|
+
## 11. Agent-to-Agent Communication
|
|
593
|
+
|
|
594
|
+
### Current Plan
|
|
595
|
+
"Agents do NOT communicate directly. The Task Queue is the message bus." — This is a bottleneck.
|
|
596
|
+
|
|
597
|
+
### Claude Code's Approach (Feb 2026)
|
|
598
|
+
- **TeammateTool** (1,642 tokens) — manage teams and coordinate teammates in a swarm
|
|
599
|
+
- **SendMessageTool** (1,241 tokens) — send messages to teammates and handle protocol requests/responses
|
|
600
|
+
- **TeamDelete** — remove team members
|
|
601
|
+
- Direct messaging between agents without going through task queue
|
|
602
|
+
|
|
603
|
+
### Recommended for KhaBotCLI
|
|
604
|
+
|
|
605
|
+
**Two communication patterns:**
|
|
606
|
+
|
|
607
|
+
1. **Task-based (async)** — Current plan's approach. Good for: fire-and-forget, long-running delegations.
|
|
608
|
+
- Agent A creates task for Agent B
|
|
609
|
+
- Agent A continues or waits
|
|
610
|
+
- Agent B completes task, result stored
|
|
611
|
+
|
|
612
|
+
2. **Direct messaging (sync)** — New. Good for: quick queries, coordination, real-time collaboration.
|
|
613
|
+
- Agent A sends message to Agent B via `agent_message` tool
|
|
614
|
+
- Agent B receives message in its context
|
|
615
|
+
- Agent B responds directly
|
|
616
|
+
- No task queue overhead
|
|
617
|
+
|
|
618
|
+
**Built-in tools:**
|
|
619
|
+
- `agent_message` — send direct message to another agent, get response
|
|
620
|
+
- `agent_spawn` — spawn a sub-agent with specific task and isolated context
|
|
621
|
+
- `task_create` — create async task (existing)
|
|
622
|
+
|
|
623
|
+
---
|
|
624
|
+
|
|
625
|
+
## 12. Loading & Memory Optimizations
|
|
626
|
+
|
|
627
|
+
### Current Plan Issue
|
|
628
|
+
"Session remains in `~/.khabot/sessions/` indefinitely (never auto-deleted, user manages cleanup)"
|
|
629
|
+
At 50k sessions × (meta.json + messages.json) = 100k files. This will be extremely slow.
|
|
630
|
+
|
|
631
|
+
### Recommended Optimizations
|
|
632
|
+
|
|
633
|
+
| Optimization | Description |
|
|
634
|
+
|-------------|-------------|
|
|
635
|
+
| **SQLite storage** | Single `data.db` for all sessions, tasks, messages. Indexed by session ID, agent name, status, date. |
|
|
636
|
+
| **Lazy loading** | Only load session metadata into memory. Load messages on-demand when session is accessed. |
|
|
637
|
+
| **Active session limit** | Keep max N sessions in memory (configurable, default 50). LRU eviction. |
|
|
638
|
+
| **Finished task cleanup** | Completed/failed tasks older than N days → archived (compressed) or deleted. Configurable retention. |
|
|
639
|
+
| **Message pagination** | API returns messages paginated (default 50 per page). |
|
|
640
|
+
| **Index on startup** | On startup, only scan SQLite index — don't load all session data. |
|
|
641
|
+
| **Compacted message storage** | After compaction, store compacted summary as a single message, delete originals from DB. |
|
|
642
|
+
| **Memory-mapped tool results** | Large tool results (file contents, bash output) stored as references, not inline in message history. |
|
|
643
|
+
|
|
644
|
+
### Settings Addition
|
|
645
|
+
```json
|
|
646
|
+
{
|
|
647
|
+
"storage": {
|
|
648
|
+
"engine": "sqlite",
|
|
649
|
+
"path": "~/.khabot/data.db",
|
|
650
|
+
"retention": {
|
|
651
|
+
"sessions": { "maxAge": "90d", "maxCount": 10000 },
|
|
652
|
+
"tasks": { "maxAge": "30d", "maxCount": 5000 },
|
|
653
|
+
"onLimit": "archive"
|
|
654
|
+
},
|
|
655
|
+
"memory": {
|
|
656
|
+
"maxActiveSessions": 50,
|
|
657
|
+
"maxActiveTasksPerAgent": 10
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
```
|
|
662
|
+
|
|
663
|
+
---
|
|
664
|
+
|
|
665
|
+
## 13. MCP Revision
|
|
666
|
+
|
|
667
|
+
> **Your answer:** Why not just use a famous MCP client library?
|
|
668
|
+
|
|
669
|
+
### Current Plan Issues
|
|
670
|
+
- Only mentions `stdio` transport
|
|
671
|
+
- No mention of Streamable HTTP (replaced SSE in March 2025)
|
|
672
|
+
- No authorization support
|
|
673
|
+
- No Elicitation support
|
|
674
|
+
- No mention of MCP Resources or Prompts (only Tools)
|
|
675
|
+
|
|
676
|
+
### MCP Spec 2025-11-25 Features to Support
|
|
677
|
+
|
|
678
|
+
| Feature | Description | Priority |
|
|
679
|
+
|---------|-------------|----------|
|
|
680
|
+
| **stdio transport** | Local MCP servers via stdin/stdout | P0 (already planned) |
|
|
681
|
+
| **Streamable HTTP** | Remote MCP servers via HTTP (replaced SSE) | P1 |
|
|
682
|
+
| **Tools** | MCP server provides tools to agents | P0 (already planned) |
|
|
683
|
+
| **Resources** | MCP server provides data/context to agents | P1 |
|
|
684
|
+
| **Prompts** | MCP server provides prompt templates | P2 |
|
|
685
|
+
| **Elicitation** | MCP server can ask user for input | P2 |
|
|
686
|
+
| **Authorization** | OAuth-based auth for remote MCP servers | P2 |
|
|
687
|
+
| **Sampling** | MCP server can request LLM completions | P3 |
|
|
688
|
+
|
|
689
|
+
### Updated MCP Config
|
|
690
|
+
```json
|
|
691
|
+
{
|
|
692
|
+
"mcpServers": {
|
|
693
|
+
"github": {
|
|
694
|
+
"transport": "stdio",
|
|
695
|
+
"command": "npx",
|
|
696
|
+
"args": ["-y", "@modelcontextprotocol/server-github"],
|
|
697
|
+
"env": { "GITHUB_TOKEN": "" }
|
|
698
|
+
},
|
|
699
|
+
"remote-db": {
|
|
700
|
+
"transport": "streamable-http",
|
|
701
|
+
"url": "https://mcp.example.com/db",
|
|
702
|
+
"authorization": {
|
|
703
|
+
"type": "bearer",
|
|
704
|
+
"token": "${MCP_DB_TOKEN}"
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
```
|
|
710
|
+
|
|
711
|
+
---
|
|
712
|
+
|
|
713
|
+
## 14. Task System Revision
|
|
714
|
+
|
|
715
|
+
### Current Plan Issues
|
|
716
|
+
- No parallel task execution awareness
|
|
717
|
+
- No task dependencies / DAG
|
|
718
|
+
- No task priority
|
|
719
|
+
- No task timeout per-task (only global)
|
|
720
|
+
- No task cancellation propagation (cancel parent → cancel children)
|
|
721
|
+
|
|
722
|
+
> **Your answer:** Parallel execution/timeouts SHOULD be supported, task dependencies/priority/cancellation i think they should be managed by the Agent who created it right?
|
|
723
|
+
|
|
724
|
+
### Recommended Updates
|
|
725
|
+
|
|
726
|
+
| Feature | Description |
|
|
727
|
+
|---------|-------------|
|
|
728
|
+
| **Task priority** | `high`, `normal`, `low` — affects queue ordering |
|
|
729
|
+
| **Task dependencies** | `dependsOn: ["task_xxx"]` — wait for dependencies before starting |
|
|
730
|
+
| **Parent-child tasks** | `parentTaskId` field — sub-tasks linked to parent |
|
|
731
|
+
| **Cancellation propagation** | Cancel parent → cancel all running children |
|
|
732
|
+
| **Per-task timeout** | Override in task creation request |
|
|
733
|
+
| **Parallel execution** | Configurable max concurrent tasks per agent and globally |
|
|
734
|
+
| **Task retry** | Per-task retry config (override global) |
|
|
735
|
+
| **Task tags** | Arbitrary tags for filtering/grouping |
|
|
736
|
+
|
|
737
|
+
### Updated task.json
|
|
738
|
+
```json
|
|
739
|
+
{
|
|
740
|
+
"id": "task_xxx",
|
|
741
|
+
"agentName": "researcher",
|
|
742
|
+
"status": "processing",
|
|
743
|
+
"priority": "normal",
|
|
744
|
+
"parentTaskId": null,
|
|
745
|
+
"dependsOn": [],
|
|
746
|
+
"tags": ["research", "quantum"],
|
|
747
|
+
"input": { "prompt": "...", "files": [], "images": [], "context": {} },
|
|
748
|
+
"output": null,
|
|
749
|
+
"tokenUsage": { "inputTokens": 0, "outputTokens": 0, "estimatedCost": 0 },
|
|
750
|
+
"iterations": 5,
|
|
751
|
+
"maxIterations": 50,
|
|
752
|
+
"timeoutSeconds": 300,
|
|
753
|
+
"createdAt": "...",
|
|
754
|
+
"startedAt": "...",
|
|
755
|
+
"finishedAt": null
|
|
756
|
+
}
|
|
757
|
+
```
|
|
758
|
+
|
|
759
|
+
---
|
|
760
|
+
|
|
761
|
+
## 15. Daemon Agents Revision
|
|
762
|
+
|
|
763
|
+
> **Your answer:** I already gave you context on this
|
|
764
|
+
|
|
765
|
+
### Current Plan Issues
|
|
766
|
+
- Only cron-based triggers
|
|
767
|
+
- `HEARTBEAT_OK` / `HEARTBEAT_ALERT` is simplistic
|
|
768
|
+
- No event-driven triggers
|
|
769
|
+
- No integration with task system events
|
|
770
|
+
|
|
771
|
+
### Recommended Updates (Aligned with OpenClaw)
|
|
772
|
+
|
|
773
|
+
| Feature | Description |
|
|
774
|
+
|---------|-------------|
|
|
775
|
+
| **Cron trigger** | Keep existing: `"interval": "*/30 * * * *"` |
|
|
776
|
+
| **Event trigger** | React to system events: `task.completed`, `task.failed`, `session.created`, `agent.error` |
|
|
777
|
+
| **Webhook trigger** | External webhook hits API → triggers daemon |
|
|
778
|
+
| **File watch trigger** | Watch specific files/directories for changes |
|
|
779
|
+
| **Chained triggers** | One daemon can trigger another |
|
|
780
|
+
| **Output routing** | Route alerts to: log, webhook URL, another agent, or Ably channel |
|
|
781
|
+
| **Health metrics** | Track: uptime, tick count, error count, last success/failure |
|
|
782
|
+
|
|
783
|
+
### Updated HEARTBEAT.md Schema
|
|
784
|
+
```yaml
|
|
785
|
+
---
|
|
786
|
+
triggers:
|
|
787
|
+
- type: cron
|
|
788
|
+
interval: "*/30 * * * *"
|
|
789
|
+
- type: event
|
|
790
|
+
events: ["task.failed", "agent.error"]
|
|
791
|
+
- type: file_watch
|
|
792
|
+
paths: ["./logs/*.log"]
|
|
793
|
+
output:
|
|
794
|
+
onAlert:
|
|
795
|
+
- type: webhook
|
|
796
|
+
url: "https://hooks.slack.com/..."
|
|
797
|
+
- type: agent
|
|
798
|
+
name: "incident-responder"
|
|
799
|
+
onOk: ignore
|
|
800
|
+
---
|
|
801
|
+
|
|
802
|
+
# Heartbeat Checklist
|
|
803
|
+
...
|
|
804
|
+
```
|
|
805
|
+
|
|
806
|
+
---
|
|
807
|
+
|
|
808
|
+
## 16. Testing Strategy
|
|
809
|
+
|
|
810
|
+
> **Your answer:** Should be revised after we set on a clear direction
|
|
811
|
+
|
|
812
|
+
### Current Plan
|
|
813
|
+
No testing mentioned at all.
|
|
814
|
+
|
|
815
|
+
### Recommended Testing Layers
|
|
816
|
+
|
|
817
|
+
| Layer | What | How |
|
|
818
|
+
|-------|------|-----|
|
|
819
|
+
| **Unit tests** | Individual tools, file resolver, permission evaluator, settings merger | Standard test framework (Jest/Vitest for TS, Go test for Go) |
|
|
820
|
+
| **Integration tests** | Agent lifecycle, session creation → message → compaction → resume | Test against mock LLM (record/replay responses) |
|
|
821
|
+
| **Agent tests** | Built-in agents produce correct outputs for known inputs | LLM-as-judge scoring rubric |
|
|
822
|
+
| **MCP tests** | MCP server discovery, tool registration, tool execution | Mock MCP servers |
|
|
823
|
+
| **API tests** | All REST endpoints return correct responses | HTTP test client |
|
|
824
|
+
| **Performance tests** | Startup time, 1000 sessions load time, concurrent task handling | Benchmark suite |
|
|
825
|
+
| **E2E tests** | Full scenario: start server → create agent → run task → check output | Scripted test scenario |
|
|
826
|
+
|
|
827
|
+
### CI Pipeline
|
|
828
|
+
```
|
|
829
|
+
1. Lint + type check
|
|
830
|
+
2. Unit tests
|
|
831
|
+
3. Integration tests (mock LLM)
|
|
832
|
+
4. Build
|
|
833
|
+
5. E2E tests (against built binary, with mock LLM)
|
|
834
|
+
6. Performance benchmarks (compare against baseline)
|
|
835
|
+
7. Package + publish (on tag)
|
|
836
|
+
```
|
|
837
|
+
|
|
838
|
+
### Test Script Structure
|
|
839
|
+
```
|
|
840
|
+
tests/
|
|
841
|
+
├── unit/
|
|
842
|
+
│ ├── tools/
|
|
843
|
+
│ ├── permissions/
|
|
844
|
+
│ ├── settings/
|
|
845
|
+
│ └── storage/
|
|
846
|
+
├── integration/
|
|
847
|
+
│ ├── agent-lifecycle/
|
|
848
|
+
│ ├── session-management/
|
|
849
|
+
│ ├── task-queue/
|
|
850
|
+
│ └── mcp/
|
|
851
|
+
├── e2e/
|
|
852
|
+
│ ├── scenarios/
|
|
853
|
+
│ └── fixtures/
|
|
854
|
+
├── performance/
|
|
855
|
+
│ └── benchmarks/
|
|
856
|
+
└── fixtures/
|
|
857
|
+
├── mock-llm-responses/
|
|
858
|
+
└── test-agents/
|
|
859
|
+
```
|
|
860
|
+
|
|
861
|
+
---
|
|
862
|
+
|
|
863
|
+
## 17. Documentation Plan
|
|
864
|
+
|
|
865
|
+
> **Your answer:** Should be revised after we set on a clear direction
|
|
866
|
+
|
|
867
|
+
### Current Plan
|
|
868
|
+
No documentation mentioned.
|
|
869
|
+
|
|
870
|
+
### Recommended Documentation Structure
|
|
871
|
+
|
|
872
|
+
```
|
|
873
|
+
docs/
|
|
874
|
+
├── getting-started.md — Quick start guide
|
|
875
|
+
├── installation.md — Install methods (npm, binary, source)
|
|
876
|
+
├── configuration.md — All settings explained
|
|
877
|
+
├── agents/
|
|
878
|
+
│ ├── creating-agents.md — How to create custom agents
|
|
879
|
+
│ ├── built-in-agents.md — Built-in agents reference
|
|
880
|
+
│ ├── sub-agents.md — Sub-agent patterns
|
|
881
|
+
│ └── skills.md — Skills/commands reference
|
|
882
|
+
├── tools/
|
|
883
|
+
│ ├── built-in-tools.md — All built-in tools reference
|
|
884
|
+
│ └── mcp-tools.md — Using MCP servers as tools
|
|
885
|
+
├── api/
|
|
886
|
+
│ ├── reference.md — Full API reference
|
|
887
|
+
│ └── examples.md — API usage examples
|
|
888
|
+
├── concepts/
|
|
889
|
+
│ ├── context-management.md — Compaction, notes, sub-agents
|
|
890
|
+
│ ├── permissions.md — Permission system
|
|
891
|
+
│ ├── sessions-tasks.md — Session/task lifecycle
|
|
892
|
+
│ └── daemon-agents.md — Daemon patterns
|
|
893
|
+
├── guides/
|
|
894
|
+
│ ├── migration-from-claude.md
|
|
895
|
+
│ ├── forking.md — How to fork KhaBotCLI
|
|
896
|
+
│ └── testing-agents.md — How to test your agents
|
|
897
|
+
└── contributing.md — How to contribute
|
|
898
|
+
```
|
|
899
|
+
|
|
900
|
+
**Auto-generation:** JSON schemas → API docs, tool descriptions → tool reference, agent frontmatter → agent reference.
|
|
901
|
+
|
|
902
|
+
---
|
|
903
|
+
|
|
904
|
+
## 18. Forkable Config & Branding
|
|
905
|
+
|
|
906
|
+
> **Your answer:** Should be revised after we set on a clear direction
|
|
907
|
+
|
|
908
|
+
### Current Plan Issue
|
|
909
|
+
Domain "KhaBot.com" is hardcoded throughout. No config for forking.
|
|
910
|
+
|
|
911
|
+
### Recommended Structure
|
|
912
|
+
|
|
913
|
+
```
|
|
914
|
+
config/
|
|
915
|
+
├── branding.json — All brand-specific values
|
|
916
|
+
├── defaults/
|
|
917
|
+
│ ├── agents/ — Default agents shipped with the product
|
|
918
|
+
│ │ ├── build/
|
|
919
|
+
│ │ │ └── AGENT.md
|
|
920
|
+
│ │ ├── plan/
|
|
921
|
+
│ │ │ └── AGENT.md
|
|
922
|
+
│ │ └── explore/
|
|
923
|
+
│ │ └── AGENT.md
|
|
924
|
+
│ ├── skills/ — Default skills
|
|
925
|
+
│ ├── tools/ — Default tool configs
|
|
926
|
+
│ └── system-prompts/ — System prompt fragments
|
|
927
|
+
└── schemas/ — JSON schemas for validation
|
|
928
|
+
├── settings.schema.json
|
|
929
|
+
├── agent.schema.json
|
|
930
|
+
├── task.schema.json
|
|
931
|
+
└── session.schema.json
|
|
932
|
+
```
|
|
933
|
+
|
|
934
|
+
**branding.json:**
|
|
935
|
+
```json
|
|
936
|
+
{
|
|
937
|
+
"productName": "KhaBotCli",
|
|
938
|
+
"productNameShort": "khabot",
|
|
939
|
+
"domain": "khabot.com",
|
|
940
|
+
"apiBaseUrl": "https://api.khabot.com",
|
|
941
|
+
"configDir": ".khabot",
|
|
942
|
+
"globalConfigDir": "~/.khabot",
|
|
943
|
+
"schemaBaseUrl": "https://khabot.com/schemas",
|
|
944
|
+
"defaultPort": 5050,
|
|
945
|
+
"authHeader": "X-KhaBot-Secret",
|
|
946
|
+
"tokenPrefix": "kbt_",
|
|
947
|
+
"sessionIdPrefix": "sess_",
|
|
948
|
+
"taskIdPrefix": "task_",
|
|
949
|
+
"logo": "🤖",
|
|
950
|
+
"description": "Locally-running autonomous agent runtime"
|
|
951
|
+
}
|
|
952
|
+
```
|
|
953
|
+
|
|
954
|
+
**Every reference** to "KhaBot", "khabot.com", ".khabot", "kbt_", "X-KhaBot-Secret", etc. should use values from `branding.json`.
|
|
955
|
+
|
|
956
|
+
---
|
|
957
|
+
|
|
958
|
+
## 19. Diagrams & Overview
|
|
959
|
+
|
|
960
|
+
The following diagrams need to be created (as Mermaid or ASCII in the plan):
|
|
961
|
+
|
|
962
|
+
### 19.1 Architecture Overview
|
|
963
|
+
```
|
|
964
|
+
┌─────────────────────────────────────────────────┐
|
|
965
|
+
│ KhaBotCLI │
|
|
966
|
+
├─────────────┬──────────────┬────────────────────┤
|
|
967
|
+
│ CLI Layer │ API Layer │ Ably/Remote Layer │
|
|
968
|
+
├─────────────┴──────────────┴────────────────────┤
|
|
969
|
+
│ Agent Runtime │
|
|
970
|
+
│ ┌─────────┐ ┌──────────┐ ┌──────────────────┐ │
|
|
971
|
+
│ │ Session │ │ Task │ │ Daemon Manager │ │
|
|
972
|
+
│ │ Manager │ │ Queue │ │ (cron/events) │ │
|
|
973
|
+
│ └────┬─────┘ └────┬─────┘ └────────┬─────────┘ │
|
|
974
|
+
│ └─────────────┼────────────────┘ │
|
|
975
|
+
│ ┌──────┴──────┐ │
|
|
976
|
+
│ │ Agent Core │ │
|
|
977
|
+
│ │ (LLM loop) │ │
|
|
978
|
+
│ └──────┬──────┘ │
|
|
979
|
+
│ ┌─────────────┼─────────────┐ │
|
|
980
|
+
│ ┌────┴────┐ ┌─────┴─────┐ ┌────┴────┐ │
|
|
981
|
+
│ │ Built-in│ │ MCP │ │ Context │ │
|
|
982
|
+
│ │ Tools │ │ Servers │ │ Manager │ │
|
|
983
|
+
│ └─────────┘ └───────────┘ └─────────┘ │
|
|
984
|
+
├──────────────────────────────────────────────────┤
|
|
985
|
+
│ Storage Layer (SQLite) │
|
|
986
|
+
│ Sessions │ Tasks │ Messages │ Agent Index │
|
|
987
|
+
└──────────────────────────────────────────────────┘
|
|
988
|
+
```
|
|
989
|
+
|
|
990
|
+
### 19.2 Agent Lifecycle, Session Lifecycle, Task Lifecycle, Data Flow
|
|
991
|
+
→ To be created in `PLAN/OVERVIEW-DIAGRAM.md`
|
|
992
|
+
|
|
993
|
+
---
|
|
994
|
+
|
|
995
|
+
## 20. Schema/JSON Revisions
|
|
996
|
+
|
|
997
|
+
| Schema | Changes Needed |
|
|
998
|
+
|--------|---------------|
|
|
999
|
+
| **settings.json** | Add: `models` (main/apply/compact/title), `compaction`, `storage`, `branding` reference. Update: `mcpServers` (add transport type). Simplify: `hooks` (just PreToolUse/PostToolUse). |
|
|
1000
|
+
| **auth.json** | Simplify to global-only. Add: `providers` object for multi-provider support. |
|
|
1001
|
+
| **AGENT.md frontmatter** | Add: `mode`, `steps`, `temperature`, `tools`, `permissions`, `hidden`. |
|
|
1002
|
+
| **Session (in SQLite)** | Add: `tokenUsage`, `compactionCount`, `parentSessionId`, `subAgentOf`. |
|
|
1003
|
+
| **Task (in SQLite)** | Add: `tokenUsage`, `priority`, `parentTaskId`, `dependsOn`, `tags`, per-task timeout. |
|
|
1004
|
+
| **tool.json** | Deprecate. Replace with MCP server configs. |
|
|
1005
|
+
| **HEARTBEAT.md** | Add: `triggers` (cron/event/webhook/file_watch), `output` routing config. |
|
|
1006
|
+
|
|
1007
|
+
---
|
|
1008
|
+
|
|
1009
|
+
## 21. Plan Structure Proposal
|
|
1010
|
+
|
|
1011
|
+
The current `PLAN.md` is a single 1,176-line file. Proposed split into `./PLAN/` folder:
|
|
1012
|
+
|
|
1013
|
+
```
|
|
1014
|
+
PLAN/
|
|
1015
|
+
├── 00-overview.md — Vision, identity, philosophy, architecture diagram
|
|
1016
|
+
├── 01-cli-modes.md — CLI commands and modes of operation
|
|
1017
|
+
├── 02-folder-structure.md — Project and global folder structure
|
|
1018
|
+
├── 03-agents.md — Agent types, lifecycle, sub-agents, built-in agents
|
|
1019
|
+
├── 04-tools.md — Built-in tools, MCP tools, apply layer, tool search
|
|
1020
|
+
├── 05-context-management.md — Compaction, notes, token tracking, sub-agent isolation
|
|
1021
|
+
├── 06-sessions-tasks.md — Session/task lifecycle, storage, stats, optimization
|
|
1022
|
+
├── 07-system-prompts.md — System prompt architecture, fragments, assembly
|
|
1023
|
+
├── 08-api.md — REST API specification
|
|
1024
|
+
├── 09-mcp.md — MCP support (stdio, Streamable HTTP, resources, prompts)
|
|
1025
|
+
├── 10-permissions-hooks.md — Permission system, hooks
|
|
1026
|
+
├── 11-daemon-agents.md — Daemon triggers, health, output routing
|
|
1027
|
+
├── 12-agent-communication.md — Task-based + direct messaging patterns
|
|
1028
|
+
├── 13-images-files.md — Image handling, file/URL resolution
|
|
1029
|
+
├── 14-config-branding.md — Forkable config, branding.json
|
|
1030
|
+
├── 15-testing.md — Testing strategy, CI pipeline
|
|
1031
|
+
├── 16-documentation.md — Docs structure, auto-generation
|
|
1032
|
+
├── 17-local-defaults.md — Pre-packaged agents, skills, tools, system prompts
|
|
1033
|
+
├── 18-schemas.md — All JSON schemas (settings, agent, task, session)
|
|
1034
|
+
├── 19-compatibility.md — Claude Code, OpenClaw import/compatibility
|
|
1035
|
+
├── 20-failure-recovery.md — Error handling, retry, startup recovery
|
|
1036
|
+
└── OVERVIEW-DIAGRAM.md — All architecture diagrams (Mermaid)
|
|
1037
|
+
```
|
|
1038
|
+
|
|
1039
|
+
---
|
|
1040
|
+
|
|
1041
|
+
## 22. Research Items Needed
|
|
1042
|
+
|
|
1043
|
+
These items require deeper investigation. Files have been created in `./RESEARCH-TODO/` and `./SCOPED-QUESTIONS/`.
|
|
1044
|
+
|
|
1045
|
+
### RESEARCH-TODO (for Deep Research Agent)
|
|
1046
|
+
1. **Context engineering deep dive** — compaction algorithms, optimal prompts, when to compact vs note-take vs spawn sub-agent
|
|
1047
|
+
2. **Agent orchestration patterns** — detailed comparison with recommendations for KhaBotCLI
|
|
1048
|
+
3. **Testing AI agents** — scoring rubrics, LLM-as-judge, regression detection
|
|
1049
|
+
4. **Apply layer / cheaper models** — Morph, speculative editing, search-replace vs diff strategies
|
|
1050
|
+
5. **System prompt best practices** — modular architecture, conditional fragments, token budgets
|
|
1051
|
+
|
|
1052
|
+
### SCOPED-QUESTIONS (for context-free AI chat)
|
|
1053
|
+
1. Agent types unification (Chat/Task/Daemon → invocation modes?)
|
|
1054
|
+
2. Session storage at scale (files vs SQLite vs hybrid?)
|
|
1055
|
+
3. Skill auto-loading patterns
|
|
1056
|
+
4. System prompt modular architecture
|
|
1057
|
+
5. MCP-only vs custom tool scripts
|
|
1058
|
+
|
|
1059
|
+
---
|
|
1060
|
+
|
|
1061
|
+
## Next Steps
|
|
1062
|
+
|
|
1063
|
+
1. **You answer the 12 questions** in Section 1
|
|
1064
|
+
2. **You send RESEARCH-TODO files** to your Deep Research Agent
|
|
1065
|
+
3. **You send SCOPED-QUESTIONS files** to your scoped AI chat
|
|
1066
|
+
4. **I receive answers** and proceed to Step 2: Schema/JSON revision + Plan rewrite
|