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
package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Testing Strategies for AI Agent Runtimes.md
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
# **Deep Research: Testing Strategies for AI Agent Runtimes**
|
|
2
|
+
|
|
3
|
+
## **The Paradigm Shift in Agentic Quality Assurance**
|
|
4
|
+
|
|
5
|
+
The deployment of autonomous artificial intelligence agents operating via Large Language Models (LLMs) fundamentally invalidates traditional, deterministic software testing methodologies. In classical software engineering, test suites rely on fixed inputs producing exact, predictable outputs. Conversely, AI agent runtimes, such as the proposed KhaBotCLI, handle non-deterministic LLM outputs, orchestrate complex multi-agent workflows, and interact with dynamic tool execution environments. A single passing test run in an agentic system is statistically insignificant; counterintuitively, re-running the same test with identical inputs can yield a failure due to minor variations in token sampling, model state, or contextual drift.1
|
|
6
|
+
|
|
7
|
+
To ensure reliability, security, and performance within KhaBotCLI, the quality assurance architecture must transition from binary correctness validation to probabilistic behavioral bounding. This necessitates the implementation of continuous evaluation, semantic similarity tracking, property-based testing, and rigorous cognitive load profiling.2 Modern enterprise guidelines emphasize that distributed AI systems require continuous observability and instrumentation across all operations and handoffs, moving away from static regression tests that penalize agent improvement.2 This exhaustive report delineates a comprehensive testing strategy tailored for an advanced AI agent runtime, establishing architectural specifications for testing non-deterministic outputs, validating the Model Context Protocol (MCP), testing multi-agent workflows, and constructing resilient continuous integration and continuous delivery (CI/CD) pipelines.
|
|
8
|
+
|
|
9
|
+
## **The KhaBotCLI Testing Pyramid**
|
|
10
|
+
|
|
11
|
+
To manage the inherent variability of LLM-backed workflows without incurring unsustainable API costs or latency, the KhaBotCLI testing strategy must adopt a specialized, four-tier testing pyramid. This structure isolates reasoning logic from deterministic execution, ensuring that the bulk of the test suite runs rapidly and reliably offline, while reserving expensive network calls for high-level evaluations.
|
|
12
|
+
|
|
13
|
+
| Testing Layer | Proportion of Suite | Objective and Scope | Execution Environment and Tooling | Example Test Case Specification |
|
|
14
|
+
| :---- | :---- | :---- | :---- | :---- |
|
|
15
|
+
| **Unit Testing** | 50% | Validate deterministic components, tool parsers, configuration loaders, and MCP client logic without invoking network-based LLMs. | Local, isolated, offline environments. Utilizes Vitest/Jest for JavaScript components and go test for Go components.5 | Verify that the read_file tool returns a standardized, stringified error object when encountering a 403 Permission Denied operating system error, rather than crashing the runtime. |
|
|
16
|
+
| **Integration Testing** | 30% | Validate the interaction between the agent runtime, local system tools, and mocked LLM responses to ensure correct tool-calling loops. | Local environments using dependency injection. Relies on recorded LLM trajectories (Cassettes) and Mock MCP servers.7 | Inject a deterministic mocked LLM response requesting a bash command execution; verify the runtime intercepts the payload, evaluates permissions, and successfully executes the command. |
|
|
17
|
+
| **End-to-End (E2E)** | 10% | Validate the full lifecycle of the agent using lightweight local models or constrained API calls to ensure cross-component system integration. | Sandboxed environments (e.g., Docker containers) interacting with live, isolated external file systems and APIs.8 | Provide a prompt instructing the agent to refactor a specific repository file. Validate that the file is read, successfully edited, and subsequently passes a local syntax check. |
|
|
18
|
+
| **Continuous Evaluation** | 10% | Measure output quality, reasoning capabilities, and behavioral drift using probabilistic grading and LLMs-as-judges.2 | Post-deployment shadow mode or nightly CI runs using production-grade models (e.g., Claude 3.5 Sonnet, GPT-4o). | Evaluate the agent's summarization of a 10,000-token log file against a human-graded golden standard using a strict scoring rubric. |
|
|
19
|
+
|
|
20
|
+
This pyramid ensures that the runtime is tested from the foundational logic up to its emergent reasoning capabilities. Unit and integration tests ensure the "hands" of the agent work perfectly, while E2E and evaluation layers ensure the "brain" is reasoning correctly.
|
|
21
|
+
|
|
22
|
+
## **1. Testing Non-Deterministic Outputs**
|
|
23
|
+
|
|
24
|
+
Because KhaBotCLI will inherently produce varying text outputs for the identical prompt, exact string matching must be replaced with statistical, property-based, and semantic validation frameworks. The testing infrastructure must shift its focus toward asserting outcomes and semantic correctness rather than precise phrasing.10
|
|
25
|
+
|
|
26
|
+
### **Scoring Rubrics**
|
|
27
|
+
|
|
28
|
+
Defining strict criteria and applying scoring rubrics is essential for evaluating complex, multi-step agent behaviors. Instead of a binary pass/fail, rubrics allow evaluators to assign granular scores across multiple dimensions of an output. For example, a response might be graded on factuality, conciseness, and adherence to constraints. The implementation requires defining a specific prompt for a judge that outlines the grading scale (e.g., assigning a score from 0 to 5) and explicitly detailing what constitutes each tier. The tradeoffs of this approach include the difficulty of designing rubrics that remove subjectivity and the overhead of maintaining these rubrics as the agent's capabilities expand. However, when combined with automated grading, rubrics provide highly actionable feedback for developers, identifying exactly which dimension of the agent's behavior is failing.11
|
|
29
|
+
|
|
30
|
+
### **LLM-as-a-Judge**
|
|
31
|
+
|
|
32
|
+
For nuanced validation, utilizing a secondary, highly capable LLM to grade the output of the agent is the industry standard for evaluating non-deterministic text. The implementation involves constructing an evaluation pipeline where the judge LLM is provided with a system prompt containing the rubric, the original user prompt, and the KhaBotCLI agent's generated response. The judge evaluates the response and outputs a structured JSON object containing scores and a reasoning trace.11 The primary tradeoff is that this approach introduces an additional layer of non-determinism and incurs further API costs. Furthermore, the judge model requires periodic calibration against human expert graders to ensure it is not hallucinating scores or exhibiting bias.9 Leading frameworks for implementing this include LangSmith, Braintrust, and Promptfoo, which streamline the execution of these evaluation pipelines and track scores over time to detect capability regressions.5
|
|
33
|
+
|
|
34
|
+
### **Property-Based Testing**
|
|
35
|
+
|
|
36
|
+
Property-based testing frameworks, such as Hypothesis in Python or fast-check in JavaScript/TypeScript, transcend traditional example-based testing by automatically generating vast ranges of inputs to verify system invariants. In the context of AI agent tool execution, this methodology is invaluable. The implementation involves defining core properties that must always hold true regardless of the LLM's non-deterministic text generation. For instance, if KhaBotCLI is tasked with generating a JSON configuration file, the property-based test asserts that for any valid prompt, the resulting output file must always parse as valid JSON, must contain specific required keys, and must not exceed a certain file size limit.13 The tradeoff is the steep learning curve required to translate complex agent behaviors into mathematical properties; however, once established, these tests uncover edge cases that manual example-based tests routinely miss.
|
|
37
|
+
|
|
38
|
+
### **Snapshot Testing**
|
|
39
|
+
|
|
40
|
+
Snapshot testing in AI runtimes involves recording a "golden" output trajectory, which includes the agent's chain of thought, tool invocations, and final responses. During subsequent test runs, the newly generated output is compared to the recorded snapshot. Because exact string matches will inevitably fail due to non-determinism, the comparison engine must evaluate structural equivalence and semantic similarity. Implementation involves converting both the expected golden response and the agent's actual response into vector embeddings and asserting that the cosine similarity exceeds a specific threshold (e.g., similarity > 0.85).12 This allows the test to pass even if the agent rephrases its answer, so long as the factual content and tool-calling sequence remain identical. The tradeoff is the computational overhead of generating embeddings during test runs, but it provides a highly resilient method for validating conversational agents.
|
|
41
|
+
|
|
42
|
+
### **Regression Detection**
|
|
43
|
+
|
|
44
|
+
Regression detection monitors the agent's performance over time to detect when quality drops across versions. Anthropic divides this into "capability evals" and "regression evals." Capability evals target tasks the agent currently struggles with, providing a benchmark for future improvement. Once the agent masters these tasks, they graduate into the regression suite. The regression suite must have a near 100% pass rate and runs continuously to protect against backsliding.9 Implementation involves integrating continuous evaluation metrics into the CI/CD pipeline, tracking task success rates over rolling 7-day and 30-day windows. If the success rate drops by more than 10% below the established baseline, an automated drift detection alert is triggered, preventing the deployment of the degraded agent version.2
|
|
45
|
+
|
|
46
|
+
## **2. Testing Agent Tools**
|
|
47
|
+
|
|
48
|
+
KhaBotCLI's ability to manipulate its environment relies entirely on its tools. The testing of these tools must be strictly isolated from the LLM's reasoning engine to ensure deterministic, rapid validation. Tools act as the functional extremities of the agent, and their reliability is paramount.7
|
|
49
|
+
|
|
50
|
+
### **Testing Individual Tool Implementations**
|
|
51
|
+
|
|
52
|
+
Testing individual tool implementations, such as bash, read_file, or edit_file, requires robust unit testing frameworks like Vitest or Go test. These tests must be executed without invoking an LLM. The implementation involves passing hardcoded, deterministic arguments to the tool function and asserting the outcome on the host system. For a read_file tool, the test creates a temporary file, invokes the tool with the file path, and asserts that the returned string matches the file's contents exactly. For an edit_file tool, the test provides a path and a diff payload, and asserts that the file on disk is correctly mutated.17
|
|
53
|
+
|
|
54
|
+
### **Testing Tool Permission Evaluation**
|
|
55
|
+
|
|
56
|
+
AI agents operating within enterprise environments must adhere to the principle of least privilege. Testing tool permission evaluation ensures that the agent cannot execute destructive actions. The implementation requires injecting payloads where the mock LLM attempts to execute unauthorized commands, such as running rm -rf / via the bash tool or attempting to read sensitive environment variables. The test asserts that the KhaBotCLI policy engine intercepts the request, blocks the execution, and returns a specific unauthorized status code back to the LLM context, preventing any actual system mutation.19
|
|
57
|
+
|
|
58
|
+
### **Testing Tool Error Handling**
|
|
59
|
+
|
|
60
|
+
LLMs frequently hallucinate tool arguments or attempt to use tools in invalid contexts. Robust error handling is critical to prevent the runtime from crashing. Testing this involves simulating edge cases by injecting tool-call payloads with missing required parameters, incorrect data types, or requests for non-existent files. The assertions must verify that KhaBotCLI catches the exception gracefully, formats a descriptive error message (e.g., "Error: file not found at path X, please verify the directory structure"), and returns this string back to the LLM context to prompt an autonomous self-correction loop.17
|
|
61
|
+
|
|
62
|
+
### **Mocking LLM Responses for Deterministic Tool Testing**
|
|
63
|
+
|
|
64
|
+
To test the runtime's ability to orchestrate tools based on LLM output, the LLM API client must be entirely mocked. Utilizing dependency injection at the architectural level (Level 3 Mocking), the test suite replaces the live API client with a mock client.7
|
|
65
|
+
|
|
66
|
+
| Testing Goal | Mock Payload Injection | Assertion Strategy |
|
|
67
|
+
| :---- | :---- | :---- |
|
|
68
|
+
| **Verify Tool Invocation** | Inject: {"name": "edit_file", "args": {"path": "main.go", "content": "func main(){}"}} | Assert that the internal edit_file function was called exactly once with the provided arguments. |
|
|
69
|
+
| **Verify Tool Output Routing** | Inject: Mocked success response from a mocked read_file tool. | Assert that the runtime correctly formats the tool output into the proper message schema and appends it to the session history array. |
|
|
70
|
+
| **Verify Multi-Step Chains** | Inject: A sequence of predefined tool calls (e.g., list_dir followed by read_file). | Assert that the runtime executes the sequence in order, maintaining state between calls without dropping context.18 |
|
|
71
|
+
|
|
72
|
+
This approach allows engineers to validate the complex orchestration logic of the agent framework without incurring the latency, cost, or non-determinism of actual neural network inference.
|
|
73
|
+
|
|
74
|
+
## **3. Testing Multi-Agent Workflows**
|
|
75
|
+
|
|
76
|
+
Advanced iterations of KhaBotCLI will employ multi-agent workflows, where specialized sub-agents collaborate to resolve complex tasks. This architectural pattern, moving beyond single-agent paradigms, introduces exponential testing complexity.21
|
|
77
|
+
|
|
78
|
+
### **Testing Agent-to-Agent Communication**
|
|
79
|
+
|
|
80
|
+
Agent-to-agent communication relies on specific protocols, such as the Agent-to-Agent (A2A) protocol or framework-specific message queues. Testing this communication requires interceptor frameworks that can monitor and assert the data flowing between agents.22 The implementation involves creating a mock sending agent and a mock receiving agent. The test injects a message from the sender and asserts that the receiver correctly parses the intent, extracts the payload, and updates its internal working context. Furthermore, tests must utilize active translation validation, ensuring that a sub-agent does not misattribute the history of a previous agent to itself during handoffs.22
|
|
81
|
+
|
|
82
|
+
### **Testing Task Delegation Chains**
|
|
83
|
+
|
|
84
|
+
Multi-agent topologies rely on hierarchical delegation. For example, a system might utilize a Manager agent (Level 0) that delegates to an Architect agent (Level 1), which in turn delegates to a Builder agent (Level 2).24 Automated test scripts must validate the integrity of these delegation matrices.
|
|
85
|
+
|
|
86
|
+
| Validation Target | Description and Implementation | Failure Condition |
|
|
87
|
+
| :---- | :---- | :---- |
|
|
88
|
+
| **Hierarchy Levels** | Ensures agents delegate downward to lower levels and escalate upward appropriately. | An L3 agent attempting to delegate to an L2 agent.25 |
|
|
89
|
+
| **Circular Dependencies** | Automatically detects routing loops where agents endlessly pass tasks to one another. | Agent A delegates to Agent B, which delegates to Agent C, which escalates back to Agent A.25 |
|
|
90
|
+
| **Reference Validity** | Confirms that all delegates_to or escalates_to targets defined in the agent configuration files actually exist. | An agent is configured to delegate to a target identifier that is missing from the system registry.25 |
|
|
91
|
+
|
|
92
|
+
### **Testing Concurrent Agent Execution**
|
|
93
|
+
|
|
94
|
+
When multiple agents execute tasks in parallel—such as an Information Retrieval Agent querying a database while a Reasoning Agent processes a user prompt—they share underlying state and context. Testing must subject the runtime to rigorous stress tests to identify race conditions where concurrent updates corrupt the session memory.26 Frameworks must utilize thread-sanitizers or isolated concurrency testing libraries to detect deadlocks. The implementation involves simulating highly concurrent workloads and inserting deliberate delays between relevant code statements to artificially expand the race window, making evidence of unexpected behavior easier to detect.27
|
|
95
|
+
|
|
96
|
+
### **Testing Context Compaction Preservation**
|
|
97
|
+
|
|
98
|
+
As agent sessions extend over hundreds of turns, the context window fills, leading to "context rot" where performance degrades and API costs surge. KhaBotCLI must implement context compaction—asynchronously summarizing older events and pruning raw logs to maintain dense, relevant working context.22 Testing compaction strategies requires specialized probe tests to measure how much critical context is preserved.
|
|
99
|
+
|
|
100
|
+
| Probe Type | Testing Objective | Example Evaluation Question |
|
|
101
|
+
| :---- | :---- | :---- |
|
|
102
|
+
| **Recall** | Factual retention of specific details from early in the session. | "What was the exact error code returned by the server on turn 2?" 11 |
|
|
103
|
+
| **Artifact** | Tracking changes to files or system state over time. | "Which files have we modified so far, and what changed in each?" 11 |
|
|
104
|
+
| **Continuation** | Task planning and understanding the current workflow state. | "Based on the previous steps, what is the immediate next action required?" 11 |
|
|
105
|
+
| **Decision** | Retaining the reasoning chain and agreed-upon constraints. | "We previously discussed options for the database schema. What was decided and why?" 11 |
|
|
106
|
+
|
|
107
|
+
During testing, the judge LLM receives these probe questions, the agent's response based on the compacted context, and a strict rubric. If the agent fails to answer accurately, the compaction algorithm is deemed lossy and requires refinement.11
|
|
108
|
+
|
|
109
|
+
### **Integration Testing a Full Agent Lifecycle**
|
|
110
|
+
|
|
111
|
+
Integration testing the full lifecycle involves deploying KhaBotCLI in an isolated environment and evaluating its ability to resolve complete, multi-step problems autonomously. Methodologies like SWE-bench provide a rigorous framework for this. The agent is provided with an execution environment (e.g., a Docker Image) containing a codebase and an issue description. The agent must navigate the repository, utilize tools to investigate the bug, generate a patch, and apply it. The test benchmark evaluates performance by measuring whether the generated patch successfully passes both PASS_TO_PASS and FAIL_TO_PASS unit tests within the repository.8
|
|
112
|
+
|
|
113
|
+
## **4. CI/CD for AI Agent Projects**
|
|
114
|
+
|
|
115
|
+
The Continuous Integration and Continuous Delivery (CI/CD) pipeline for an AI agent runtime cannot simply check code syntax; it must validate the emergent behavior resulting from the interplay of code, prompt templates, and model parameters. Altering a system prompt by a single sentence can fundamentally shift agent behavior without altering any programmatic logic, making traditional pipeline architectures insufficient.10
|
|
116
|
+
|
|
117
|
+
### **CI Practices of Leading Projects**
|
|
118
|
+
|
|
119
|
+
Leading agentic development environments employ distinct CI practices to maintain reliability.
|
|
120
|
+
|
|
121
|
+
* **Claude Code CLI:** Anthropic's terminal agent relies heavily on self-testing and integration suites. Tests are organized into deep describe blocks that validate workflows step-by-step. Furthermore, Claude Code encourages the inclusion of explicit verification commands within the agent's prompt context (e.g., instructing the agent to run the test suite after every file edit and loop until tests pass) to ensure the generated code is functional before the task is marked complete.32
|
|
122
|
+
* **OpenCode:** The OpenCode architecture separates concerns into dual orchestrators (Manager and Architect) and utilizes specialized worker agents. Its test suite, written in Go, relies on a highly modular architecture that validates state recovery, checkpointing, and the ability of agents to hand off tasks within tmux sessions. The suite actively runs tests to detect and kill "slop comments" and ensures strict adherence to routing protocols.24
|
|
123
|
+
* **Cursor:** While heavily integrated into the IDE, Cursor's backend testing relies on evaluating the model's ability to maintain context across multiple files and apply precise edits without corrupting surrounding syntax, often utilizing custom models to orchestrate these specific codebase interactions.36
|
|
124
|
+
|
|
125
|
+
### **CI Pipeline Specification for an Agent Runtime**
|
|
126
|
+
|
|
127
|
+
A robust CI pipeline for KhaBotCLI must follow a strict, multi-stage matrix to catch both deterministic bugs and behavioral drift.10
|
|
128
|
+
|
|
129
|
+
| Pipeline Stage | Triggers & Execution Constraints | Primary Actions | Failure Threshold |
|
|
130
|
+
| :---- | :---- | :---- | :---- |
|
|
131
|
+
| **1. Static Analysis & Linting** | Runs on every commit. Execution time: < 1 min. | Standard code linting, security scanning, and prompt template validation (ensuring required Jinja/template variables exist). | Any syntax error, memory leak warning, or missing schema definition. |
|
|
132
|
+
| **2. Deterministic Unit Tests** | Runs on every commit. Execution time: < 2 mins. | Validates tool parsers, configuration loading, and pure functions. Tool functions are tested with hardcoded inputs. | < 95% line coverage on the core reasoning engine; any single test failure. |
|
|
133
|
+
| **3. Cassette Integration (Record/Replay)** | Runs on every Pull Request. Execution time: < 5 mins. | Loads recorded LLM trajectories. Verifies the runtime correctly parses tool calls and routes multi-agent delegations without external API calls.38 | Any deviation in the execution path or unhandled exception during mock tool execution. |
|
|
134
|
+
| **4. E2E Capability Evals** | Runs nightly or pre-merge for major features. Execution time: 10-30 mins. | Deploys KhaBotCLI in an isolated Docker sandbox. Assigns 10-20 known tasks. Uses live API calls (e.g., Claude 3.5 Sonnet).31 | Evaluated via LLM-as-judge. Pass rate must exceed the predefined capability baseline. |
|
|
135
|
+
| **5. Regression Evals** | Runs nightly. Execution time: 30+ mins. | Tests previously mastered, critical capabilities using live models.9 | Pass rate must be > 98%. Any regression immediately blocks release pipelines. |
|
|
136
|
+
|
|
137
|
+
### **Handling Flaky Tests Due to LLM Non-Determinism**
|
|
138
|
+
|
|
139
|
+
Because End-to-End and evaluation layers rely on live probabilistic models, occasional failures are inevitable and do not always indicate a code defect. To handle this flakiness, CI steps running live evaluations must not enforce a binary pass/fail on a single run. Instead, tests must execute a defined number of iterations (e.g., 5 runs per prompt) and assert that the statistical success rate meets a strict threshold (e.g., passes 4 out of 5 times).1
|
|
140
|
+
|
|
141
|
+
### **Benchmarking Performance and Gating Releases**
|
|
142
|
+
|
|
143
|
+
Deploying KhaBotCLI updates directly to production users carries high risk. The final stage of the CI/CD pipeline must enforce strict quality gates and utilize progressive rollout strategies. Version control must encompass prompts, tool schemas, and model configuration temperatures alongside the codebase to ensure true rollback capability.10 New versions should initially be deployed in "shadow mode," processing a sample of live user inputs silently in the background. The outputs are compared against the active production version using semantic similarity scoring. If the new version performs adequately, a canary deployment routes a small percentage of active traffic to the new version, gated by automated drift detection metrics that halt the rollout if error rates spike.10
|
|
144
|
+
|
|
145
|
+
## **5. Mock LLM Strategies**
|
|
146
|
+
|
|
147
|
+
To facilitate fast, reliable, and cost-effective CI pipelines, KhaBotCLI requires a sophisticated Mock LLM strategy. Relying solely on live APIs introduces unpredictable network latency, non-determinism, and significant financial overhead, making it unsuitable for the bulk of the testing pyramid.
|
|
148
|
+
|
|
149
|
+
### **Record/Replay LLM Responses**
|
|
150
|
+
|
|
151
|
+
The most robust approach for deterministic testing of complex agent trajectories is the Record and Replay mechanism. Academic frameworks conceptualize this as AgentRR, while practical implementations utilize tools like pytest-agentcontract or custom proxies.38
|
|
152
|
+
|
|
153
|
+
* **Implementation:** During the recording phase, developers run the agent through a task against a live LLM API. A network interceptor captures the exact sequence of HTTP requests and responses, including user prompts, intermediate tool calls, system outputs, and final responses. This trajectory is saved as a structured JSON "cassette".12 During the replay phase in CI, the Mock Client intercepts requests, hashes the prompt, and retrieves the exact corresponding response from the cassette.
|
|
154
|
+
* **Tradeoffs:** Replay rules must be strict. Routing decisions, fallback evaluations, and model inferences are bypassed. The recorded outputs are returned exactly as captured. This ensures determinism but requires developers to manually re-record cassettes whenever the underlying agent prompt structure changes significantly.41
|
|
155
|
+
|
|
156
|
+
### **Fake LLM with Scripted Responses**
|
|
157
|
+
|
|
158
|
+
For unit testing specific agent loops, a Fake LLM can be programmed with stateful, scripted responses based on input patterns.
|
|
159
|
+
|
|
160
|
+
* **Implementation:** The Fake LLM analyzes the incoming prompt. If the prompt matches a regex pattern (e.g., .*calculate.*), it returns a hardcoded tool call for the calculator. If the input contains an error string, it returns a predefined self-correction payload.
|
|
161
|
+
* **Tradeoffs:** This isolates the orchestration logic from network calls entirely, making tests execute in milliseconds. However, it fails to simulate the complex, unpredictable ways real LLMs might combine multiple tools or misunderstand context.42
|
|
162
|
+
|
|
163
|
+
### **Lightweight Local Models for Testing**
|
|
164
|
+
|
|
165
|
+
When testing the integration of the prompt construction and parsing logic without incurring API costs, lightweight local models (e.g., Llama-3-8B via Ollama) can be spun up during the CI process.
|
|
166
|
+
|
|
167
|
+
* **Tradeoffs:** While these small models may lack the reasoning capacity to successfully complete complex coding tasks, they are sufficient to verify that KhaBotCLI successfully connects to an endpoint, sends a properly formatted payload, and correctly parses the returned markdown or JSON structure.43
|
|
168
|
+
|
|
169
|
+
### **When to Use Real LLM Calls vs. Mocks**
|
|
170
|
+
|
|
171
|
+
| Testing Scenario | Recommended Approach | Justification |
|
|
172
|
+
| :---- | :---- | :---- |
|
|
173
|
+
| **Tool Parser Validation** | Scripted Fake LLM | Requires instant, deterministic payloads to ensure the parser handles both valid and malformed JSON seamlessly. |
|
|
174
|
+
| **Agent Orchestration Logic** | Record/Replay (Cassettes) | Allows testing of deep, multi-turn tool calling loops without non-determinism breaking the test assertions.38 |
|
|
175
|
+
| **Prompt Template Rendering** | Lightweight Local Model | Ensures the generated prompt fits within context limits and is processed correctly by a real inference engine without high API costs. |
|
|
176
|
+
| **Reasoning and Capability Evaluation** | Real LLM (e.g., Claude 3.5 Sonnet) | The only way to accurately assess the agent's emergent intelligence, accuracy, and task success rate against novel problems.9 |
|
|
177
|
+
|
|
178
|
+
## **6. MCP Server Testing**
|
|
179
|
+
|
|
180
|
+
The Model Context Protocol (MCP) standardizes how AI agents discover, authenticate, and interact with external tools and data sources. Testing MCP integration requires simulating the full client-server lifecycle to ensure KhaBotCLI can reliably expand its capabilities dynamically.
|
|
181
|
+
|
|
182
|
+
### **Testing Discovery and Handshake**
|
|
183
|
+
|
|
184
|
+
Testing the initial connection involves asserting that KhaBotCLI correctly initiates the handshake procedure. The test must verify that when the runtime attempts to connect to a protected server, it correctly processes the 401 Unauthorized response and reads the WWW-Authenticate header to locate the Protected Resource Metadata (PRM) document. The framework must then simulate the Dynamic Client Registration (DCR) flow or OAuth 2.1 exchange, verifying that the client successfully retrieves an access token and establishes the connection.44 Tools like the MCP Inspector and custom Go mock transports are essential for validating this raw protocol exchange.46
|
|
185
|
+
|
|
186
|
+
### **Creating Mock MCP Servers**
|
|
187
|
+
|
|
188
|
+
To test integration without relying on external third-party services, developers must utilize mock MCP servers.
|
|
189
|
+
|
|
190
|
+
* **Implementation:** Tools like mcp-tools-tester provide an interactive API layer that simulates an active MCP server.48 For automated testing in Go, developers can create in-memory transports (mcp.NewInMemoryTransports()) that instantiate a lightweight MCP server directly within the test process. This server registers a dummy tool, allowing the test suite to connect the client, invoke the tool, and assert the response entirely in memory without network overhead.47
|
|
191
|
+
|
|
192
|
+
### **Testing Tool Registration from MCP**
|
|
193
|
+
|
|
194
|
+
MCP allows servers to dynamically change the list of available tools at runtime based on authentication state or context.49 Testing this capability requires simulating a runtime event where the mock MCP server emits a notifications/tools/list_changed signal. The test must assert that KhaBotCLI intercepts this event, resets prior tool acceptances to prevent rug-pull attacks, refetches the tool list, and updates its internal routing registry without dropping the active user session or crashing.50
|
|
195
|
+
|
|
196
|
+
### **Testing MCP Error Handling**
|
|
197
|
+
|
|
198
|
+
Robust error handling must be verified at the protocol level. Tests must simulate scenarios where the MCP server returns malformed JSON-RPC responses, times out during tool execution, or rejects requests due to invalid scopes or expired JWTs. The test suite must ensure KhaBotCLI handles these errors gracefully, attempts reasonable retries, and ultimately translates the protocol error into a natural language explanation for the user or the agent's internal reasoning loop.44
|
|
199
|
+
|
|
200
|
+
## **7. Performance & Load Testing**
|
|
201
|
+
|
|
202
|
+
Traditional load testing, which focuses on requests per second (RPS) against stateless web endpoints, is entirely inadequate for AI agent runtimes. Every query in an agent session carries historical context; thus, a user's 10th message requires exponentially more compute, memory, and token processing than their 1st. AI workloads are probabilistic, and performance degradation is non-linear.3
|
|
203
|
+
|
|
204
|
+
### **Benchmarking Agent Startup Time**
|
|
205
|
+
|
|
206
|
+
Benchmarking startup time involves measuring the latency from the moment the user invokes the CLI to the moment the agent is ready to process input. This includes loading configuration files, parsing the system prompt, initializing local tools, and establishing WebSocket or HTTP connections to configured MCP servers. The test should assert that the initialization overhead remains minimal (e.g., under 500ms) to ensure a responsive developer experience, utilizing Go's benchmarking tools (go test -bench) to detect regressions in initialization routines.6
|
|
207
|
+
|
|
208
|
+
### **Testing with 1000+ Sessions in Storage**
|
|
209
|
+
|
|
210
|
+
Supporting 1000+ concurrent sessions requires a highly robust memory architecture. Storing massive conversation histories entirely in the runtime's local memory guarantees resource exhaustion and crashes.
|
|
211
|
+
|
|
212
|
+
* **Tiered Architecture Benchmarking:** Load tests must benchmark the runtime's ability to seamlessly transition data across memory tiers, inspired by cognitive models. This involves testing an L1 Working Memory (e.g., Redis) for sub-millisecond latency caching of active sessions, and an L2 Episodic Memory (e.g., SQLite or PostgreSQL) for long-term storage of events and serialized tool outputs.52
|
|
213
|
+
* **Simulation:** Automated stress tests must initialize 1000 concurrent mock sessions, simulate rapid read/write operations spanning both memory tiers, and monitor for connection pool exhaustion, database lock contention, and latency degradation.54
|
|
214
|
+
|
|
215
|
+
### **Testing Concurrent Task Execution Limits**
|
|
216
|
+
|
|
217
|
+
When an agent attempts to execute multiple tasks concurrently, the runtime must enforce limits to prevent overwhelming the host system or external APIs. Load testing must simulate "spike" scenarios, slamming the system with a rapid increase in concurrent tool invocations.55 The tests must verify that KhaBotCLI implements proper rate limiting, queueing mechanisms, and backpressure handling. If performance degrades beyond an acceptable threshold, the system should fail gracefully rather than corrupting data or crashing the host process.56
|
|
218
|
+
|
|
219
|
+
### **Memory Usage Profiling Strategies**
|
|
220
|
+
|
|
221
|
+
Memory leaks in long-running AI services cause gradual performance degradation, increased infrastructure costs, and eventual crashes.57
|
|
222
|
+
|
|
223
|
+
* **Continuous Profiling:** In Go-based runtimes like KhaBotCLI, continuous profiling via the built-in pprof package is mandatory. This provides deep, low-overhead insights into CPU usage, memory allocation, and goroutine behavior over time, allowing developers to identify unclosed resources, growing caches, or event listener accumulation.57
|
|
224
|
+
* **OpenTelemetry (OTel) Tracing:** To diagnose performance bottlenecks at the AI interaction level, KhaBotCLI must emit structured traces using OpenTelemetry. This transforms the "black box" of agent reasoning into a transparent, debuggable execution graph.
|
|
225
|
+
|
|
226
|
+
| OTel Attribute Schema | Description and Purpose |
|
|
227
|
+
| :---- | :---- |
|
|
228
|
+
| gen_ai.usage.input_tokens | Tracks the context window bloat by measuring tokens consumed per LLM call.59 |
|
|
229
|
+
| gen_ai.usage.output_tokens | Measures the generation length, helping calculate exact API costs per step.59 |
|
|
230
|
+
| agent.tool.name | Identifies which tool is currently causing a bottleneck or latency spike.59 |
|
|
231
|
+
| agent.tool.arguments | Captures the exact parameters passed, essential for reproducing errors locally.59 |
|
|
232
|
+
| agent.decision | Records whether the agent opted for a tool_call or provided a final_answer, illuminating the routing logic.59 |
|
|
233
|
+
|
|
234
|
+
By implementing cognitive load profiling that tracks token consumption and context window utilization rather than simple request volume, engineering teams can accurately assess whether the agent runtime will remain performant and cost-effective under real-world, marathon session conditions.51
|
|
235
|
+
|
|
236
|
+
## **Conclusion**
|
|
237
|
+
|
|
238
|
+
Testing an advanced AI agent runtime like KhaBotCLI requires abandoning the comfort of absolute determinism. The inherent unpredictability of language models mandates a paradigm shift toward continuous evaluation, semantic bounding, and sophisticated architectural mocks. By constructing a comprehensive testing pyramid that isolates pure execution logic from probabilistic inference, developers can maintain rapid, reliable CI/CD pipelines.
|
|
239
|
+
|
|
240
|
+
Leveraging techniques such as LLM-as-a-judge for qualitative evaluation, strict Record and Replay mechanisms for deterministic integration testing, and comprehensive OpenTelemetry tracing for memory profiling ensures that the runtime remains observable and debuggable. Furthermore, the rigorous validation of the Model Context Protocol lifecycle and multi-agent delegation topologies guarantees that KhaBotCLI can scale its capabilities securely. Ultimately, by shifting from traditional exact-match assertions to outcome-based probabilistic evaluations, engineering teams can ensure the agent runtime remains a stable, resilient, and highly performant interface for autonomous task execution across iterative deployments.
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Deep Research: Agent Orchestration Patterns for AI Runtimes
|
|
2
|
+
|
|
3
|
+
## Research Goal
|
|
4
|
+
Provide a comprehensive comparison of multi-agent orchestration patterns used in production AI agent systems (Feb 2026), with specific recommendations for an API-first agent runtime like KhaBotCLI.
|
|
5
|
+
|
|
6
|
+
## Key Questions
|
|
7
|
+
|
|
8
|
+
### 1. Orchestration Patterns Comparison
|
|
9
|
+
Microsoft Azure documents 5 patterns. For each, provide:
|
|
10
|
+
- **Sequential** — agents in a pipeline, each processes previous output
|
|
11
|
+
- **Concurrent** — multiple agents work in parallel, results aggregated
|
|
12
|
+
- **Group Chat** — agents discuss in a shared context (with moderator)
|
|
13
|
+
- **Handoff** — one agent transfers control to another based on context
|
|
14
|
+
- **Magentic** — dynamic task assignment by a coordinator agent
|
|
15
|
+
|
|
16
|
+
For each pattern:
|
|
17
|
+
- When to use it?
|
|
18
|
+
- When NOT to use it?
|
|
19
|
+
- What's the context management strategy?
|
|
20
|
+
- How does state persist between agents?
|
|
21
|
+
- Real-world examples in production systems?
|
|
22
|
+
|
|
23
|
+
### 2. Claude Code Agent Teams (Feb 2026)
|
|
24
|
+
- How does Claude Code's "Agent Teams" feature work?
|
|
25
|
+
- What is the TeammateTool? How does it coordinate?
|
|
26
|
+
- What is the SendMessageTool protocol?
|
|
27
|
+
- How do agents in a team share context?
|
|
28
|
+
- How is work divided? (by file? by task? by domain?)
|
|
29
|
+
|
|
30
|
+
### 3. Parallel Agent Execution
|
|
31
|
+
Every major tool shipped multi-agent in Feb 2026:
|
|
32
|
+
- **Cursor 2.0** — subagent system, independent agents handle discrete parts
|
|
33
|
+
- **Windsurf** — 5 parallel agents via git worktrees
|
|
34
|
+
- **Codex CLI** — parallel via OpenAI Agents SDK + git worktrees
|
|
35
|
+
- **Grok Build** — 8 parallel agents
|
|
36
|
+
- **Cline CLI 2.0** — parallel terminal agents
|
|
37
|
+
|
|
38
|
+
For each:
|
|
39
|
+
- How is work divided between parallel agents?
|
|
40
|
+
- How do they avoid conflicts (file locks? worktrees? scoped permissions)?
|
|
41
|
+
- How are results merged?
|
|
42
|
+
- What's the coordination overhead?
|
|
43
|
+
|
|
44
|
+
### 4. Task Dependencies & DAGs
|
|
45
|
+
- How do modern agent orchestrators handle task dependencies?
|
|
46
|
+
- Should KhaBotCLI support DAG-based task execution?
|
|
47
|
+
- How do you handle circular dependencies?
|
|
48
|
+
- What happens when a dependency fails?
|
|
49
|
+
|
|
50
|
+
### 5. Human-in-the-Loop (HITL)
|
|
51
|
+
- Where should human checkpoints be in multi-agent workflows?
|
|
52
|
+
- How to persist state at HITL checkpoints for resumption?
|
|
53
|
+
- Approval gates vs feedback loops?
|
|
54
|
+
- How does this interact with the permission system?
|
|
55
|
+
|
|
56
|
+
### 6. Cost & Latency Optimization
|
|
57
|
+
- How to minimize total LLM cost in multi-agent orchestrations?
|
|
58
|
+
- When is it cheaper to use one agent vs multiple agents?
|
|
59
|
+
- How to avoid "context explosion" (each agent adds overhead)?
|
|
60
|
+
- Strategies for using cheaper models for sub-tasks
|
|
61
|
+
|
|
62
|
+
## Sources to Investigate
|
|
63
|
+
- Microsoft Azure "AI Agent Orchestration Patterns" architecture guide
|
|
64
|
+
- Claude Code Agent Teams documentation and system prompts
|
|
65
|
+
- OpenAI Agents SDK documentation
|
|
66
|
+
- Cursor 2.0 subagent architecture
|
|
67
|
+
- AutoGen, CrewAI, LangGraph multi-agent patterns
|
|
68
|
+
- Anthropic's "How we built our multi-agent research system" blog post
|
|
69
|
+
|
|
70
|
+
## Expected Output
|
|
71
|
+
1. Comparison matrix of all 5 patterns with pros/cons/use-cases
|
|
72
|
+
2. Recommended pattern(s) for KhaBotCLI (likely: Sequential + Concurrent as defaults, Handoff for complex flows)
|
|
73
|
+
3. Detailed design for KhaBotCLI's multi-agent communication protocol
|
|
74
|
+
4. Task DAG specification for KhaBotCLI
|
|
75
|
+
5. Cost optimization recommendations
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# Deep Research: Apply Layer & Cheaper Model Delegation
|
|
2
|
+
|
|
3
|
+
## Research Goal
|
|
4
|
+
Investigate the "apply layer" pattern where AI coding agents use cheaper/faster models for file editing operations, and broader patterns of delegating specific tasks to specialized cheaper models.
|
|
5
|
+
|
|
6
|
+
## Key Questions
|
|
7
|
+
|
|
8
|
+
### 1. The Apply Layer Problem
|
|
9
|
+
When an AI agent edits a file, it traditionally:
|
|
10
|
+
1. Reads the full file
|
|
11
|
+
2. Generates the entire new file content (or a diff)
|
|
12
|
+
3. Writes the result
|
|
13
|
+
|
|
14
|
+
This is expensive (thousands of output tokens) and error-prone (diffs fail when context shifts, search-and-replace misses when code moves, full rewrites waste tokens).
|
|
15
|
+
|
|
16
|
+
- How do modern agents solve this?
|
|
17
|
+
- What is Morph Fast Apply? How does it work?
|
|
18
|
+
- What other "apply" models exist?
|
|
19
|
+
- What's the accuracy vs cost tradeoff?
|
|
20
|
+
|
|
21
|
+
### 2. Edit Strategies Comparison
|
|
22
|
+
Compare these file editing strategies used in AI coding agents:
|
|
23
|
+
- **Full rewrite** — LLM outputs entire file (Claude Code's Write tool)
|
|
24
|
+
- **Search-and-replace** — find old string, replace with new (Claude Code's Edit tool)
|
|
25
|
+
- **Unified diff** — LLM outputs diff, apply with patch (Aider's approach)
|
|
26
|
+
- **Edit instructions** — LLM outputs intent, apply model merges (Morph approach)
|
|
27
|
+
- **Line-range edit** — specify start/end lines and new content
|
|
28
|
+
|
|
29
|
+
For each:
|
|
30
|
+
- Accuracy rate in practice?
|
|
31
|
+
- Token cost?
|
|
32
|
+
- Speed?
|
|
33
|
+
- Failure modes?
|
|
34
|
+
- When to use which?
|
|
35
|
+
|
|
36
|
+
### 3. Cheaper Model Delegation Patterns
|
|
37
|
+
Beyond file editing, what other tasks can be delegated to cheaper models?
|
|
38
|
+
- **Title generation** — session titles (Claude Code uses separate prompt)
|
|
39
|
+
- **Summarization** — context compaction (Claude Code's compaction agent)
|
|
40
|
+
- **Code search** — finding relevant files (Explore sub-agent)
|
|
41
|
+
- **Tool search** — finding relevant tools
|
|
42
|
+
- **Sentiment analysis** — detecting user frustration
|
|
43
|
+
- **Commit message generation** — git commit messages
|
|
44
|
+
- **PR description** — pull request descriptions
|
|
45
|
+
|
|
46
|
+
For each:
|
|
47
|
+
- What model tier is appropriate? (e.g., Haiku, GPT-4o-mini, Flash)
|
|
48
|
+
- How much cost savings vs using the main model?
|
|
49
|
+
- Is quality acceptable?
|
|
50
|
+
|
|
51
|
+
### 4. Speculative Editing
|
|
52
|
+
- What is speculative editing / speculative decoding for code?
|
|
53
|
+
- How does Cursor implement speculative edits?
|
|
54
|
+
- Can the agent predict likely edits and pre-generate them?
|
|
55
|
+
|
|
56
|
+
### 5. Model Routing
|
|
57
|
+
- How to route different tasks to different models automatically?
|
|
58
|
+
- Should the agent decide which model to use, or should the runtime decide?
|
|
59
|
+
- What heuristics determine task complexity for model selection?
|
|
60
|
+
|
|
61
|
+
### 6. Cost Optimization
|
|
62
|
+
- What's the typical cost breakdown for an AI coding session?
|
|
63
|
+
- Main model reasoning: X%
|
|
64
|
+
- File reading: X%
|
|
65
|
+
- File editing: X%
|
|
66
|
+
- Search/exploration: X%
|
|
67
|
+
- Summarization: X%
|
|
68
|
+
- Where are the biggest cost savings opportunities?
|
|
69
|
+
|
|
70
|
+
## Sources to Investigate
|
|
71
|
+
- Morph Fast Apply model documentation and API
|
|
72
|
+
- Aider's diff editing approach
|
|
73
|
+
- Claude Code's Edit vs Write tool implementation
|
|
74
|
+
- Cursor's speculative editing
|
|
75
|
+
- Kilo Code's cheaper model delegation
|
|
76
|
+
- OpenRouter pricing for model comparison
|
|
77
|
+
- Anthropic's prompt caching documentation
|
|
78
|
+
|
|
79
|
+
## Expected Output
|
|
80
|
+
1. Comparison table of edit strategies (accuracy, cost, speed)
|
|
81
|
+
2. Recommended model delegation map for KhaBotCLI:
|
|
82
|
+
- Main reasoning: Model A
|
|
83
|
+
- File editing: Model B
|
|
84
|
+
- Summarization: Model C
|
|
85
|
+
- Title/meta: Model D
|
|
86
|
+
3. Cost projection: typical session with vs without model delegation
|
|
87
|
+
4. Implementation specification for KhaBotCLI's apply layer
|
|
88
|
+
5. Model routing heuristics
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Deep Research: Context Engineering for AI Agent Runtimes
|
|
2
|
+
|
|
3
|
+
## Research Goal
|
|
4
|
+
Provide a comprehensive analysis of context window management strategies for AI agent runtimes (like KhaBotCLI), covering compaction, structured note-taking, sub-agent isolation, and tool result clearing.
|
|
5
|
+
|
|
6
|
+
## Key Questions
|
|
7
|
+
|
|
8
|
+
### 1. Compaction Algorithms
|
|
9
|
+
- What are the best compaction/summarization strategies used in production AI agents?
|
|
10
|
+
- How does Claude Code implement compaction? What does its compaction prompt look like?
|
|
11
|
+
- How does OpenCode implement auto-compact at 95% threshold?
|
|
12
|
+
- What should be preserved during compaction? (architectural decisions, unresolved bugs, file paths, TODOs)
|
|
13
|
+
- What should be discarded? (raw tool outputs, resolved issues, redundant messages)
|
|
14
|
+
- How do you tune compaction for maximum recall vs precision?
|
|
15
|
+
- What's the optimal compaction threshold (80%? 90%? 95%)?
|
|
16
|
+
|
|
17
|
+
### 2. Tool Result Clearing
|
|
18
|
+
- Anthropic recommends "tool result clearing" as the lightest compaction. How exactly does this work?
|
|
19
|
+
- When should tool results be cleared vs kept?
|
|
20
|
+
- Should tool results be replaced with summaries or completely removed?
|
|
21
|
+
- How does Anthropic's new "context management" feature on the Developer Platform handle this?
|
|
22
|
+
|
|
23
|
+
### 3. Structured Note-Taking
|
|
24
|
+
- How do agents like Claude Code use TODO lists and NOTES.md for persistent memory?
|
|
25
|
+
- What's the optimal format for structured notes that survive compaction?
|
|
26
|
+
- How does "Claude playing Pokémon" maintain state across thousands of steps?
|
|
27
|
+
- Should notes be part of the system prompt or injected as user messages?
|
|
28
|
+
|
|
29
|
+
### 4. Sub-Agent Context Isolation
|
|
30
|
+
- How do sub-agents get clean context windows?
|
|
31
|
+
- What gets passed to a sub-agent (full context? summary? just the task)?
|
|
32
|
+
- How long should a sub-agent's returned summary be? (Anthropic says 1,000-2,000 tokens)
|
|
33
|
+
- When should you use sub-agents vs compaction vs note-taking?
|
|
34
|
+
|
|
35
|
+
### 5. Token Budgeting
|
|
36
|
+
- How should an agent runtime budget its context window?
|
|
37
|
+
- System prompt: X%
|
|
38
|
+
- Tools: X%
|
|
39
|
+
- History: X%
|
|
40
|
+
- Current task: X%
|
|
41
|
+
- How do competitors (Claude Code, Cursor, OpenCode) budget their context?
|
|
42
|
+
|
|
43
|
+
### 6. Multi-Turn Context Optimization
|
|
44
|
+
- How to handle conversations that span 100+ turns?
|
|
45
|
+
- Progressive summarization (summarize every N turns)?
|
|
46
|
+
- Sliding window approaches?
|
|
47
|
+
- When to start a new session vs continue compacting?
|
|
48
|
+
|
|
49
|
+
## Sources to Investigate
|
|
50
|
+
- Anthropic's "Effective Context Engineering for AI Agents" blog post
|
|
51
|
+
- Claude Code's compaction agent prompt (from Piebald-AI/claude-code-system-prompts)
|
|
52
|
+
- OpenCode's auto-compact implementation (Go source code)
|
|
53
|
+
- Cursor's context management approach
|
|
54
|
+
- JetBrains' research paper on "Efficient Context Management" (NeurIPS 2025)
|
|
55
|
+
- Anthropic's Developer Platform "context management" feature docs
|
|
56
|
+
|
|
57
|
+
## Expected Output
|
|
58
|
+
A detailed document with:
|
|
59
|
+
1. Comparison table of compaction strategies across tools
|
|
60
|
+
2. Recommended compaction prompt template for KhaBotCLI
|
|
61
|
+
3. Recommended token budgeting strategy
|
|
62
|
+
4. Decision tree: when to compact vs note-take vs spawn sub-agent
|
|
63
|
+
5. Implementation pseudocode for auto-compaction system
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Deep Research: System Prompt Architecture for AI Agent Runtimes
|
|
2
|
+
|
|
3
|
+
## Research Goal
|
|
4
|
+
Design a modular system prompt architecture for KhaBotCLI based on how Claude Code, OpenCode, Cursor, and other production AI agents structure their system prompts.
|
|
5
|
+
|
|
6
|
+
## Key Questions
|
|
7
|
+
|
|
8
|
+
### 1. Claude Code's System Prompt Architecture
|
|
9
|
+
Claude Code v2.1.62 has 110+ system prompt strings. Investigate:
|
|
10
|
+
- How are they organized? (categories: base, task, tool, agent, utility, reminder)
|
|
11
|
+
- How are they assembled? What determines which fragments are included?
|
|
12
|
+
- What's the total token count of a typical system prompt?
|
|
13
|
+
- Which fragments are always included vs conditional?
|
|
14
|
+
- What are "system reminders" and when are they injected mid-conversation?
|
|
15
|
+
- How does the system prompt change for sub-agents (Explore, Plan, Task)?
|
|
16
|
+
|
|
17
|
+
Specific prompts to analyze (from Piebald-AI/claude-code-system-prompts):
|
|
18
|
+
- Base system prompt (identity, safety)
|
|
19
|
+
- "Doing tasks" fragments (avoid over-engineering, read before modifying, no premature abstractions, etc.)
|
|
20
|
+
- Tool descriptions (18 tools, each with its own prompt)
|
|
21
|
+
- Agent prompts (Explore, Plan, Task, compaction, title, summary)
|
|
22
|
+
- Utility prompts (bash command analysis, memory selection, session search)
|
|
23
|
+
- System reminders (~40 mid-conversation injections)
|
|
24
|
+
|
|
25
|
+
### 2. OpenCode's System Prompt Approach
|
|
26
|
+
- How does OpenCode structure its system prompts?
|
|
27
|
+
- Per-agent custom prompts via config
|
|
28
|
+
- File-based prompts (`{file:./prompts/code-review.txt}`)
|
|
29
|
+
- How does it differ from Claude Code's approach?
|
|
30
|
+
|
|
31
|
+
### 3. System Prompt Best Practices
|
|
32
|
+
From Anthropic's documentation and research:
|
|
33
|
+
- What makes a good system prompt for an agent?
|
|
34
|
+
- How to balance specificity vs flexibility?
|
|
35
|
+
- How to handle safety instructions without being overly restrictive?
|
|
36
|
+
- How to include tool usage guidelines effectively?
|
|
37
|
+
- How to manage system prompt size vs context budget?
|
|
38
|
+
|
|
39
|
+
### 4. Conditional Fragment Inclusion
|
|
40
|
+
- Which fragments should be included based on environment?
|
|
41
|
+
- Git available → include git status prompt
|
|
42
|
+
- LSP available → include diagnostics prompt
|
|
43
|
+
- Hooks configured → include hooks prompt
|
|
44
|
+
- Images in context → include vision prompt
|
|
45
|
+
- MCP servers → include MCP tool descriptions
|
|
46
|
+
- How to implement conditional inclusion cleanly?
|
|
47
|
+
|
|
48
|
+
### 5. System Reminders (Mid-Conversation Injection)
|
|
49
|
+
Claude Code injects ~40 system reminders at specific points during conversation:
|
|
50
|
+
- What triggers a reminder? (e.g., after X tool calls, when context is large, when agent seems stuck)
|
|
51
|
+
- What do they contain? (e.g., "remember to use parallel tool calls", "check your todo list")
|
|
52
|
+
- How effective are they?
|
|
53
|
+
- Should KhaBotCLI implement this pattern?
|
|
54
|
+
|
|
55
|
+
### 6. Token Budget for System Prompts
|
|
56
|
+
- How many tokens should a system prompt use?
|
|
57
|
+
- Claude Code's system prompt is reportedly 24k+ tokens with tools
|
|
58
|
+
- Is this too much? What's the impact on response quality?
|
|
59
|
+
- How to keep it lean while still being effective?
|
|
60
|
+
- Strategies for reducing system prompt size (abbreviation, reference, lazy loading)
|
|
61
|
+
|
|
62
|
+
### 7. User-Customizable System Prompts
|
|
63
|
+
- AGENT.md as user's custom addition to system prompt
|
|
64
|
+
- CLAUDE.md / AGENT.md creation assistants
|
|
65
|
+
- How to merge user's prompt with system prompt without conflicts?
|
|
66
|
+
- Priority: user instructions > system instructions?
|
|
67
|
+
|
|
68
|
+
## Sources to Investigate
|
|
69
|
+
- Piebald-AI/claude-code-system-prompts repository (all 110+ prompts)
|
|
70
|
+
- OpenCode agent configuration docs
|
|
71
|
+
- OpenClaw agent prompts
|
|
72
|
+
- Anthropic's prompt engineering documentation
|
|
73
|
+
- Anthropic's "effective context engineering" blog
|
|
74
|
+
- Cursor's system prompt (if leaked/available)
|
|
75
|
+
- System prompts collection: asgeirtj/system_prompts_leaks
|
|
76
|
+
|
|
77
|
+
## Expected Output
|
|
78
|
+
1. Complete taxonomy of system prompt categories
|
|
79
|
+
2. Template system prompt for KhaBotCLI's main agent
|
|
80
|
+
3. Template system prompts for built-in sub-agents (explore, plan, execute, compact)
|
|
81
|
+
4. Conditional fragment inclusion rules
|
|
82
|
+
5. System reminder specification (when to inject, what to say)
|
|
83
|
+
6. Token budget recommendation per category
|
|
84
|
+
7. File structure for `./system-prompts/` directory
|