@entelligentsia/forgecli 0.3.0 → 0.6.6
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/CHANGELOG.md +388 -6
- package/README.md +50 -6
- package/dist/bin/argv.d.ts +13 -2
- package/dist/bin/argv.js +27 -0
- package/dist/bin/argv.js.map +1 -1
- package/dist/bin/forge.js +16 -2
- package/dist/bin/forge.js.map +1 -1
- package/dist/extensions/forgecli/ask-user-tool.d.ts +1 -1
- package/dist/extensions/forgecli/ask-user-tool.js +17 -3
- package/dist/extensions/forgecli/ask-user-tool.js.map +1 -1
- package/dist/extensions/forgecli/audience-gate.d.ts +26 -0
- package/dist/extensions/forgecli/audience-gate.js +46 -0
- package/dist/extensions/forgecli/audience-gate.js.map +1 -0
- package/dist/extensions/forgecli/enhance.d.ts +29 -0
- package/dist/extensions/forgecli/enhance.js +264 -0
- package/dist/extensions/forgecli/enhance.js.map +1 -0
- package/dist/extensions/forgecli/forge-commands.d.ts +2 -1
- package/dist/extensions/forgecli/forge-commands.js +34 -20
- package/dist/extensions/forgecli/forge-commands.js.map +1 -1
- package/dist/extensions/forgecli/forge-header.d.ts +12 -0
- package/dist/extensions/forgecli/forge-header.js +108 -0
- package/dist/extensions/forgecli/forge-header.js.map +1 -0
- package/dist/extensions/forgecli/forge-init.d.ts +3 -3
- package/dist/extensions/forgecli/forge-init.js +180 -33
- package/dist/extensions/forgecli/forge-init.js.map +1 -1
- package/dist/extensions/forgecli/forge-subagent.d.ts +81 -0
- package/dist/extensions/forgecli/forge-subagent.js +233 -0
- package/dist/extensions/forgecli/forge-subagent.js.map +1 -0
- package/dist/extensions/forgecli/forge-tools.d.ts +1 -1
- package/dist/extensions/forgecli/forge-tools.js +191 -17
- package/dist/extensions/forgecli/forge-tools.js.map +1 -1
- package/dist/extensions/forgecli/forge-update-command.d.ts +1 -1
- package/dist/extensions/forgecli/health-check.d.ts +1 -1
- package/dist/extensions/forgecli/health-check.js +2 -2
- package/dist/extensions/forgecli/health-check.js.map +1 -1
- package/dist/extensions/forgecli/hook-dispatcher.d.ts +1 -1
- package/dist/extensions/forgecli/hook-dispatcher.js +17 -1
- package/dist/extensions/forgecli/hook-dispatcher.js.map +1 -1
- package/dist/extensions/forgecli/hooks/two-layer-guard.d.ts +28 -0
- package/dist/extensions/forgecli/hooks/two-layer-guard.js +57 -0
- package/dist/extensions/forgecli/hooks/two-layer-guard.js.map +1 -0
- package/dist/extensions/forgecli/implement.d.ts +24 -0
- package/dist/extensions/forgecli/implement.js +217 -0
- package/dist/extensions/forgecli/implement.js.map +1 -0
- package/dist/extensions/forgecli/index.d.ts +1 -1
- package/dist/extensions/forgecli/index.js +130 -1
- package/dist/extensions/forgecli/index.js.map +1 -1
- package/dist/extensions/forgecli/kickoff.d.ts +10 -0
- package/dist/extensions/forgecli/kickoff.js +24 -0
- package/dist/extensions/forgecli/kickoff.js.map +1 -0
- package/dist/extensions/forgecli/loaders/persona-skill-loader.d.ts +45 -0
- package/dist/extensions/forgecli/loaders/persona-skill-loader.js +227 -0
- package/dist/extensions/forgecli/loaders/persona-skill-loader.js.map +1 -0
- package/dist/extensions/forgecli/loaders/template-render.d.ts +20 -0
- package/dist/extensions/forgecli/loaders/template-render.js +85 -0
- package/dist/extensions/forgecli/loaders/template-render.js.map +1 -0
- package/dist/extensions/forgecli/loaders/workflow-loader.d.ts +41 -0
- package/dist/extensions/forgecli/loaders/workflow-loader.js +164 -0
- package/dist/extensions/forgecli/loaders/workflow-loader.js.map +1 -0
- package/dist/extensions/forgecli/plan.d.ts +24 -0
- package/dist/extensions/forgecli/plan.js +212 -0
- package/dist/extensions/forgecli/plan.js.map +1 -0
- package/dist/extensions/forgecli/project-orientation.d.ts +1 -0
- package/dist/extensions/forgecli/project-orientation.js +83 -0
- package/dist/extensions/forgecli/project-orientation.js.map +1 -0
- package/dist/extensions/forgecli/read-command.d.ts +2 -0
- package/dist/extensions/forgecli/read-command.js +100 -0
- package/dist/extensions/forgecli/read-command.js.map +1 -0
- package/dist/extensions/forgecli/regenerate.d.ts +2 -0
- package/dist/extensions/forgecli/regenerate.js +169 -0
- package/dist/extensions/forgecli/regenerate.js.map +1 -0
- package/dist/extensions/forgecli/review-server.d.ts +10 -0
- package/dist/extensions/forgecli/review-server.js +894 -0
- package/dist/extensions/forgecli/review-server.js.map +1 -0
- package/dist/extensions/forgecli/run-sprint.d.ts +5 -0
- package/dist/extensions/forgecli/run-sprint.js +529 -0
- package/dist/extensions/forgecli/run-sprint.js.map +1 -0
- package/dist/extensions/forgecli/run-task.d.ts +114 -0
- package/dist/extensions/forgecli/run-task.js +868 -0
- package/dist/extensions/forgecli/run-task.js.map +1 -0
- package/dist/extensions/forgecli/session-monitor-widget.d.ts +37 -0
- package/dist/extensions/forgecli/session-monitor-widget.js +320 -0
- package/dist/extensions/forgecli/session-monitor-widget.js.map +1 -0
- package/dist/extensions/forgecli/session-monitor.d.ts +2 -0
- package/dist/extensions/forgecli/session-monitor.js +135 -0
- package/dist/extensions/forgecli/session-monitor.js.map +1 -0
- package/dist/extensions/forgecli/session-registry.d.ts +71 -0
- package/dist/extensions/forgecli/session-registry.js +215 -0
- package/dist/extensions/forgecli/session-registry.js.map +1 -0
- package/dist/extensions/forgecli/sprint-intake.d.ts +10 -0
- package/dist/extensions/forgecli/sprint-intake.js +91 -0
- package/dist/extensions/forgecli/sprint-intake.js.map +1 -0
- package/dist/extensions/forgecli/sprint-plan.d.ts +14 -0
- package/dist/extensions/forgecli/sprint-plan.js +122 -0
- package/dist/extensions/forgecli/sprint-plan.js.map +1 -0
- package/dist/extensions/forgecli/store-resolver.d.ts +38 -0
- package/dist/extensions/forgecli/store-resolver.js +232 -0
- package/dist/extensions/forgecli/store-resolver.js.map +1 -0
- package/dist/extensions/forgecli/subagent/agents.d.ts +1 -1
- package/dist/extensions/forgecli/subagent/agents.js +2 -2
- package/dist/extensions/forgecli/subagent/caller-context.d.ts +26 -0
- package/dist/extensions/forgecli/subagent/caller-context.js +67 -0
- package/dist/extensions/forgecli/subagent/caller-context.js.map +1 -0
- package/dist/extensions/forgecli/subagent/index.d.ts +2 -2
- package/dist/extensions/forgecli/subagent/index.js +4 -4
- package/dist/extensions/forgecli/test-orchestrate.d.ts +2 -0
- package/dist/extensions/forgecli/test-orchestrate.js +181 -0
- package/dist/extensions/forgecli/test-orchestrate.js.map +1 -0
- package/dist/extensions/forgecli/thread-switcher.d.ts +2 -0
- package/dist/extensions/forgecli/thread-switcher.js +476 -0
- package/dist/extensions/forgecli/thread-switcher.js.map +1 -0
- package/dist/extensions/forgecli/usage-hook.d.ts +49 -0
- package/dist/extensions/forgecli/usage-hook.js +123 -0
- package/dist/extensions/forgecli/usage-hook.js.map +1 -0
- package/dist/forge-payload/.base-pack/workflows/_fragments/event-emission-schema.md +71 -27
- package/dist/forge-payload/.base-pack/workflows/_fragments/finalize.md +9 -19
- package/dist/forge-payload/.base-pack/workflows/_fragments/friction-emit.md +73 -0
- package/dist/forge-payload/.base-pack/workflows/_fragments/store-cli-verbs.md +23 -0
- package/dist/forge-payload/.base-pack/workflows/architect_approve.md +27 -5
- package/dist/forge-payload/.base-pack/workflows/architect_review_sprint_completion.md +10 -3
- package/dist/forge-payload/.base-pack/workflows/architect_sprint_intake.md +21 -14
- package/dist/forge-payload/.base-pack/workflows/architect_sprint_plan.md +9 -11
- package/dist/forge-payload/.base-pack/workflows/collator_agent.md +20 -2
- package/dist/forge-payload/.base-pack/workflows/commit_task.md +22 -4
- package/dist/forge-payload/.base-pack/workflows/enhance.md +274 -0
- package/dist/forge-payload/.base-pack/workflows/fix_bug.md +18 -3
- package/dist/forge-payload/.base-pack/workflows/implement_plan.md +33 -5
- package/dist/forge-payload/.base-pack/workflows/orchestrate_task.md +71 -14
- package/dist/forge-payload/.base-pack/workflows/plan_task.md +29 -4
- package/dist/forge-payload/.base-pack/workflows/review_code.md +18 -5
- package/dist/forge-payload/.base-pack/workflows/review_plan.md +23 -5
- package/dist/forge-payload/.base-pack/workflows/run_sprint.md +27 -1
- package/dist/forge-payload/.base-pack/workflows/sprint_retrospective.md +2 -3
- package/dist/forge-payload/.base-pack/workflows/update_implementation.md +21 -4
- package/dist/forge-payload/.base-pack/workflows/update_plan.md +20 -3
- package/dist/forge-payload/.base-pack/workflows/validate_task.md +25 -4
- package/dist/forge-payload/.claude-plugin/plugin.json +10 -4
- package/dist/forge-payload/.schemas/event-sidecar.schema.json +1 -1
- package/dist/forge-payload/.schemas/event.schema.json +121 -6
- package/dist/forge-payload/tools/backfill-provider.cjs +112 -0
- package/dist/forge-payload/tools/collate.cjs +1042 -0
- package/dist/forge-payload/tools/friction-emit.cjs +112 -0
- package/dist/forge-payload/tools/lib/store-facade.cjs +162 -0
- package/dist/forge-payload/tools/lib/store-nlp.cjs +250 -0
- package/dist/forge-payload/tools/lib/store-query-exec.cjs +272 -0
- package/dist/forge-payload/tools/lib/validate.js +141 -0
- package/dist/forge-payload/tools/package.json +3 -0
- package/dist/forge-payload/tools/parse-gates.cjs +151 -0
- package/dist/forge-payload/tools/preflight-gate.cjs +366 -0
- package/dist/forge-payload/tools/prompts/sprint-plan-prompt.md +70 -0
- package/dist/forge-payload/tools/read-verdict.cjs +121 -0
- package/dist/forge-payload/tools/schemas/task-list.schema.json +53 -0
- package/dist/forge-payload/tools/store-cli.cjs +1349 -0
- package/dist/forge-payload/tools/store-query.cjs +362 -0
- package/dist/forge-payload/tools/validate-store.cjs +597 -0
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/bdd.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js +38 -39
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/models/BedrockRuntimeServiceException.js +3 -3
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.browser.js +14 -16
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.js +20 -24
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.native.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/runtimeConfig.shared.js +9 -10
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntime.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/BedrockRuntimeClient.js +6 -6
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ApplyGuardrailCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ConverseCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ConverseStreamCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/CountTokensCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/GetAsyncInvokeCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelWithBidirectionalStreamCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/InvokeModelWithResponseStreamCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/ListAsyncInvokesCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/commands/StartAsyncInvokeCommand.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/models/BedrockRuntimeServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.browser.js +5 -7
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.js +5 -9
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.native.js +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-es/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/BedrockRuntimeClient.d.ts +6 -6
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ApplyGuardrailCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ConverseCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ConverseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/CountTokensCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/GetAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/InvokeModelWithResponseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/ListAsyncInvokesCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/commands/StartAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/models/BedrockRuntimeServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/BedrockRuntimeClient.d.ts +12 -18
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ApplyGuardrailCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ConverseCommand.d.ts +6 -8
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ConverseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/CountTokensCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/GetAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/InvokeModelWithResponseStreamCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/ListAsyncInvokesCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/commands/StartAsyncInvokeCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/models/BedrockRuntimeServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-bedrock-runtime/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/client-bedrock-runtime/package.json +18 -43
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +65 -51
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +7 -7
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +56 -41
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +59 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +7 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +1 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +1 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +28 -13
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +2 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/package.json +16 -13
- package/node_modules/@aws-sdk/core/util.d.ts +7 -0
- package/node_modules/@aws-sdk/core/util.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +10 -10
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +7 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/package.json +15 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +9 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -12
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +14 -15
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -10
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +16 -17
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +3 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +1 -34
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -5
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-es/EventStreamPayloadHandler.js +1 -1
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-types/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/eventstream-handler-node/dist-types/ts3.4/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/eventstream-handler-node/package.json +2 -3
- package/node_modules/@aws-sdk/middleware-eventstream/dist-cjs/index.js +3 -3
- package/node_modules/@aws-sdk/middleware-eventstream/dist-es/eventStreamHandlingMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-eventstream/dist-es/eventStreamHeaderMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-eventstream/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.browser.js +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +6 -3
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -5
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +4 -6
- package/node_modules/@aws-sdk/middleware-websocket/dist-cjs/index.js +13 -15
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/WebSocketFetchHandler.js +5 -5
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/WebsocketSignatureV4.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/middlewares/websocketEndpointMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/ws-eventstream/EventSigningTransformStream.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-es/ws-eventstream/EventStreamPayloadHandler.js +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/WebSocketFetchHandler.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/ts3.4/WebSocketFetchHandler.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/ts3.4/ws-eventstream/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/dist-types/ws-eventstream/EventSigningTransformStream.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-websocket/package.json +5 -10
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +520 -52
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +454 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +399 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +593 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +835 -55
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +5 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +0 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +4 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +4 -8
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +3 -13
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +8 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +2 -12
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/nested-clients/package.json +13 -34
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +6 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.browser.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +4 -5
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +1 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +3 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/package.json +6 -4
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +38 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +3 -4
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +18 -19
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/package.json +4 -5
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +9 -9
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -3
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +1 -34
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.browser.js +4 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +13 -10
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +8 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +3 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +60 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -3
- package/node_modules/@entelligentsia/pi-agent-core/README.md +488 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.d.ts +24 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.js +458 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent-loop.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.d.ts +117 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.js +398 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/agent.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.d.ts +69 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.js +278 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/proxy.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/types.d.ts +369 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/types.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/dist/types.js.map +1 -0
- package/node_modules/@entelligentsia/pi-agent-core/package.json +45 -0
- package/node_modules/@entelligentsia/pi-ai/README.md +1313 -0
- package/node_modules/@entelligentsia/pi-ai/dist/cli.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/cli.js +116 -0
- package/node_modules/@entelligentsia/pi-ai/dist/cli.js.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.d.ts +17265 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.js +16500 -0
- package/node_modules/@entelligentsia/pi-ai/dist/models.generated.js.map +1 -0
- package/node_modules/@entelligentsia/pi-ai/package.json +108 -0
- package/node_modules/@entelligentsia/pi-coding-agent/CHANGELOG.md +4166 -0
- package/node_modules/@entelligentsia/pi-coding-agent/README.md +652 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.js +4 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/bun/register-bedrock.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.d.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/args.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.js +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/config-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.d.ts +15 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/file-processor.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.d.ts +18 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/initial-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.js +98 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/list-models.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.js +35 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/cli/session-picker.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/config.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/config.js +399 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/config.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.d.ts +86 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session-services.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.d.ts +595 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.js +2521 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/agent-session.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.d.ts +141 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.js +441 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/auth-storage.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +88 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.js +243 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.d.ts +121 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.js +615 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/compaction.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.d.ts +38 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/compaction/utils.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.d.ts +3 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/defaults.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.d.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/index.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.js +498 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/loader.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.d.ts +159 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.js +825 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/runner.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.d.ts +1187 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/types.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/extensions/wrapper.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.d.ts +353 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.js +295 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/keybindings.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.d.ts +77 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/messages.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.d.ts +150 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.js +727 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-registry.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.d.ts +110 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.js +494 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/model-resolver.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.d.ts +107 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.js +282 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/sdk.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.d.ts +333 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/session-manager.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.d.ts +261 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/settings-manager.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.d.ts +68 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.js +335 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/bash.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.d.ts +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.js +324 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/edit.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.d.ts +35 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.js +298 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/find.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.d.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.js +304 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/grep.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.d.ts +40 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/index.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.d.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.js +169 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/ls.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.d.ts +35 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.js +289 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/read.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.d.ts +21 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.js +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/render-utils.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.d.ts +26 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.js +213 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/core/tools/write.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/main.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/main.js +583 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/main.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +121 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +34 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +175 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +54 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.js +481 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +40 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +111 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +24 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +78 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +27 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.js +201 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +8 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +22 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +46 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +160 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.js +278 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +165 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +290 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +96 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.js +861 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +67 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +373 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +63 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +295 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +89 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +1092 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +114 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +10 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.js +29 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +374 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.js +4625 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +81 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.js +971 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.d.ts +28 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/print-mode.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +224 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.js +604 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +419 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.d.ts +36 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/image-resize.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.d.ts +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.d.ts.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.js +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/dist/utils/paths.js.map +1 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/compaction.md +394 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/custom-provider.md +646 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/extensions.md +2596 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/index.md +70 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/packages.md +223 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/quickstart.md +142 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/rpc.md +1407 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/sdk.md +1149 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/session-format.md +412 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/termux.md +127 -0
- package/node_modules/@entelligentsia/pi-coding-agent/docs/tui.md +918 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/README.md +208 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +30 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/bookmark.ts +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/border-status-editor.ts +150 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +249 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/claude-rules.ts +86 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/commands.ts +72 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/confirm-destructive.ts +59 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-compaction.ts +127 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-footer.ts +64 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-header.ts +73 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +604 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +19 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +349 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +56 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +132 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +104 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/doom-overlay/index.ts +74 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +15 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/dynamic-tools.ts +74 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/event-bus.ts +43 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/file-trigger.ts +41 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/git-checkpoint.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/github-issue-autocomplete.ts +185 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/handoff.ts +191 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/hello.ts +26 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/hidden-thinking-label.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/inline-bash.ts +94 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/input-transform.ts +43 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/interactive-shell.ts +196 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/mac-system-theme.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/message-renderer.ts +59 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/minimal-mode.ts +426 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/modal-editor.ts +85 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/model-status.ts +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/notify.ts +55 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +1348 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/overlay-test.ts +150 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/permission-gate.ts +34 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/pirate.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/plan-mode/index.ts +340 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/preset.ts +430 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/prompt-customizer.ts +97 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/protected-paths.ts +30 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/provider-payload.ts +18 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/qna.ts +122 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/question.ts +264 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/questionnaire.ts +427 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/rainbow-editor.ts +88 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/reload-runtime.ts +37 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/rpc-demo.ts +118 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/index.ts +321 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/package-lock.json +92 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/sandbox/package.json +19 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/send-user-message.ts +97 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/session-name.ts +27 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/shutdown-command.ts +63 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/snake.ts +343 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/space-invaders.ts +560 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/ssh.ts +220 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/status-line.ts +32 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/structured-output.ts +65 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/subagent/agents.ts +126 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/subagent/index.ts +987 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/summarize.ts +206 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/system-prompt-header.ts +17 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tic-tac-toe.ts +1008 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/timed-confirm.ts +70 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/titlebar-spinner.ts +58 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/todo.ts +297 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tool-override.ts +144 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/tools.ts +141 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/trigger-compact.ts +50 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/truncated-tool.ts +195 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/widget-placement.ts +9 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/index.ts +32 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/package-lock.json +31 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/with-deps/package.json +22 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/working-indicator.ts +123 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/extensions/working-message-test.ts +25 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/rpc-extension-ui.ts +632 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/01-minimal.ts +22 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/02-custom-model.ts +49 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/03-custom-prompt.ts +67 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/04-skills.ts +55 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/05-tools.ts +44 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/06-extensions.ts +95 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/07-context-files.ts +47 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/08-prompt-templates.ts +51 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +48 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/10-settings.ts +53 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/11-sessions.ts +48 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/12-full-control.ts +73 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/13-session-runtime.ts +67 -0
- package/node_modules/@entelligentsia/pi-coding-agent/examples/sdk/README.md +147 -0
- package/node_modules/@entelligentsia/pi-coding-agent/package.json +97 -0
- package/node_modules/@entelligentsia/pi-tui/README.md +779 -0
- package/node_modules/@entelligentsia/pi-tui/package.json +49 -0
- package/node_modules/@smithy/core/checksum.d.ts +5 -0
- package/node_modules/@smithy/core/checksum.js +5 -0
- package/node_modules/@smithy/core/client.d.ts +7 -0
- package/node_modules/@smithy/core/client.js +6 -0
- package/node_modules/@smithy/core/config.d.ts +5 -0
- package/node_modules/@smithy/core/config.js +5 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +6 -7
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +4 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +9 -13
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +202 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +259 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +229 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1136 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +375 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +735 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +364 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +860 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +873 -3
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +866 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +627 -3
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +297 -20
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +800 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +827 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +17 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1405 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1094 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1405 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +2 -2
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +1 -3
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +2 -3
- package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/constants.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/md5.js +168 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +98 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +3 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/url-parser/parseUrl.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +50 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +109 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +93 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +41 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +40 -10
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +60 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +38 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +53 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +48 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +2 -2
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -1
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +5 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/constants.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/md5.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +119 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +32 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpRequest.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +68 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +37 -10
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
- package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +2 -1
- package/node_modules/@smithy/core/package.json +110 -11
- package/node_modules/@smithy/core/retry.d.ts +5 -0
- package/node_modules/@smithy/core/retry.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +39 -41
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -4
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -7
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +6 -7
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -4
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +30 -4
- package/node_modules/@smithy/is-array-buffer/package.json +12 -13
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +45 -25
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +26 -16
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +9 -2
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +6 -4
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +6 -5
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +7 -2
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +1 -2
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +1 -2
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -3
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +167 -170
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +3 -4
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +1 -2
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
- package/node_modules/@smithy/signature-v4/package.json +2 -7
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +44 -17
- package/node_modules/@smithy/util-buffer-from/package.json +14 -15
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +60 -27
- package/node_modules/@smithy/util-utf8/package.json +13 -14
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/http2.d.ts +21 -12
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/fast-xml-builder/CHANGELOG.md +4 -0
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
- package/node_modules/fast-xml-builder/package.json +3 -2
- package/node_modules/fast-xml-builder/src/fxb.d.ts +92 -3
- package/node_modules/fast-xml-builder/src/fxb.js +92 -31
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +87 -33
- package/node_modules/protobufjs/dist/light/protobuf.js +39 -13
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/protobuf.js +74 -43
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/index.d.ts +18 -5
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/namespace.js +11 -5
- package/node_modules/protobufjs/src/parse.js +35 -30
- package/node_modules/protobufjs/src/root.js +4 -2
- package/node_modules/protobufjs/src/service.js +4 -2
- package/node_modules/protobufjs/src/type.js +4 -2
- package/node_modules/protobufjs/src/util.js +14 -0
- package/node_modules/socks/package.json +2 -2
- package/node_modules/ws/lib/sender.js +6 -1
- package/node_modules/ws/package.json +1 -1
- package/node_modules/xml-naming/README.md +189 -0
- package/node_modules/xml-naming/package.json +54 -0
- package/node_modules/xml-naming/src/index.d.ts +74 -0
- package/node_modules/xml-naming/src/index.js +270 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +4 -2
- package/node_modules/yaml/browser/dist/parse/lexer.js +28 -24
- package/node_modules/yaml/browser/dist/parse/parser.js +12 -4
- package/node_modules/yaml/dist/compose/composer.js +4 -2
- package/node_modules/yaml/dist/parse/lexer.js +28 -24
- package/node_modules/yaml/dist/parse/parser.js +12 -4
- package/node_modules/yaml/package.json +1 -1
- package/package.json +89 -81
- package/themes/forge-dark.json +84 -0
- package/dist/forge-payload/.tools/collate.cjs +0 -1041
- package/dist/forge-payload/.tools/lib/validate.js +0 -131
- package/dist/forge-payload/.tools/store-cli.cjs +0 -1123
- package/dist/forge-payload/.tools/validate-store.cjs +0 -522
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/README.md +0 -62
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -157
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +0 -16
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -81
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -10
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +0 -18
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +0 -11
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -11
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/package.json +0 -70
- package/node_modules/@aws-sdk/middleware-sdk-s3/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-sdk-s3/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +0 -581
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/bucket-endpoint-middleware.js +0 -36
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +0 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-endpoint-middleware.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +0 -42
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCache.js +0 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCacheEntry.js +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityProviderImpl.js +0 -49
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -38
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/signS3Express.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentity.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentityProvider.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +0 -51
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +0 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +0 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/bucket-endpoint-middleware.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +0 -20
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts +0 -10
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts +0 -20
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts +0 -26
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCache.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +0 -37
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -27
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressMiddleware.d.ts +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/signS3Express.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentity.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +0 -79
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +0 -21
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +0 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +0 -5
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/bucket-endpoint-middleware.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +0 -15
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-endpoint-middleware.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-middleware.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-expires-middleware.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCache.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +0 -31
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +0 -19
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -40
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressMiddleware.d.ts +0 -27
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/signS3Express.d.ts +0 -21
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentity.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -19
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +0 -79
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +0 -100
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +0 -90
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +0 -80
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +0 -80
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -55
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -144
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +0 -150
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -96
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -74
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -57
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
- package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
- package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
- package/node_modules/@aws-sdk/util-format-url/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-format-url/README.md +0 -4
- package/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js +0 -34
- package/node_modules/@aws-sdk/util-format-url/dist-es/index.js +0 -29
- package/node_modules/@aws-sdk/util-format-url/package.json +0 -56
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
- package/node_modules/@earendil-works/pi-agent-core/README.md +0 -488
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts +0 -24
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +0 -458
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts +0 -117
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js +0 -398
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts +0 -69
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js +0 -278
- package/node_modules/@earendil-works/pi-agent-core/dist/proxy.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts +0 -369
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/types.js.map +0 -1
- package/node_modules/@earendil-works/pi-agent-core/package.json +0 -45
- package/node_modules/@earendil-works/pi-ai/README.md +0 -1313
- package/node_modules/@earendil-works/pi-ai/dist/cli.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-ai/dist/cli.js +0 -116
- package/node_modules/@earendil-works/pi-ai/dist/cli.js.map +0 -1
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts +0 -17588
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +0 -16796
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js.map +0 -1
- package/node_modules/@earendil-works/pi-ai/package.json +0 -108
- package/node_modules/@earendil-works/pi-coding-agent/CHANGELOG.md +0 -4164
- package/node_modules/@earendil-works/pi-coding-agent/README.md +0 -651
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js +0 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.d.ts +0 -15
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/file-processor.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.d.ts +0 -18
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/initial-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.js +0 -98
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/list-models.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.js +0 -35
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/session-picker.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js +0 -402
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts +0 -86
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts +0 -595
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +0 -2521
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts +0 -141
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js +0 -441
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +0 -88
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js +0 -243
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.d.ts +0 -121
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js +0 -615
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts +0 -38
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.d.ts +0 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/defaults.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.d.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/index.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js +0 -498
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts +0 -159
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js +0 -824
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts +0 -1173
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/wrapper.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.d.ts +0 -353
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.js +0 -295
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/keybindings.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.d.ts +0 -77
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/messages.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts +0 -150
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +0 -727
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts +0 -110
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js +0 -494
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts +0 -107
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +0 -282
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts +0 -333
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts +0 -261
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts +0 -68
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js +0 -335
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.d.ts +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js +0 -324
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts +0 -35
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js +0 -298
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js +0 -304
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.d.ts +0 -40
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/index.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js +0 -169
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts +0 -35
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js +0 -288
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.d.ts +0 -21
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +0 -14
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts +0 -26
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js +0 -213
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +0 -583
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/armin.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +0 -121
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +0 -175
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +0 -54
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +0 -44
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +0 -45
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +0 -71
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js +0 -481
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +0 -14
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +0 -21
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +0 -70
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.js +0 -79
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +0 -23
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +0 -15
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +0 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +0 -40
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +0 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +0 -111
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +0 -23
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.js +0 -61
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +0 -24
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +0 -78
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +0 -27
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js +0 -201
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +0 -8
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +0 -22
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +0 -46
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +0 -160
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.js +0 -278
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +0 -165
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +0 -42
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +0 -290
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +0 -155
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +0 -96
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js +0 -861
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +0 -67
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +0 -373
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +0 -10
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +0 -39
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +0 -17
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +0 -11
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +0 -50
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +0 -11
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +0 -51
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +0 -63
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +0 -295
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +0 -89
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +0 -1092
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +0 -30
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +0 -114
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +0 -10
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.js +0 -29
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +0 -33
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +0 -361
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +0 -4585
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +0 -81
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js +0 -971
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts +0 -28
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +0 -224
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js +0 -601
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +0 -419
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.d.ts +0 -36
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/image-resize.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.d.ts +0 -14
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.d.ts.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js.map +0 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/compaction.md +0 -394
- package/node_modules/@earendil-works/pi-coding-agent/docs/custom-provider.md +0 -646
- package/node_modules/@earendil-works/pi-coding-agent/docs/extensions.md +0 -2596
- package/node_modules/@earendil-works/pi-coding-agent/docs/index.md +0 -64
- package/node_modules/@earendil-works/pi-coding-agent/docs/packages.md +0 -223
- package/node_modules/@earendil-works/pi-coding-agent/docs/quickstart.md +0 -142
- package/node_modules/@earendil-works/pi-coding-agent/docs/rpc.md +0 -1407
- package/node_modules/@earendil-works/pi-coding-agent/docs/sdk.md +0 -1149
- package/node_modules/@earendil-works/pi-coding-agent/docs/session-format.md +0 -412
- package/node_modules/@earendil-works/pi-coding-agent/docs/termux.md +0 -127
- package/node_modules/@earendil-works/pi-coding-agent/docs/tui.md +0 -918
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/README.md +0 -208
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +0 -30
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/bookmark.ts +0 -50
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/border-status-editor.ts +0 -150
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +0 -249
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/claude-rules.ts +0 -86
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/commands.ts +0 -72
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/confirm-destructive.ts +0 -59
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-compaction.ts +0 -127
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-footer.ts +0 -64
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-header.ts +0 -73
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +0 -604
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +0 -24
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +0 -19
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +0 -349
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +0 -16
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +0 -82
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +0 -56
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +0 -132
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +0 -104
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/index.ts +0 -74
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +0 -15
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/dynamic-tools.ts +0 -74
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/event-bus.ts +0 -43
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/file-trigger.ts +0 -41
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/git-checkpoint.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/github-issue-autocomplete.ts +0 -185
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/handoff.ts +0 -191
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/hello.ts +0 -26
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/hidden-thinking-label.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/inline-bash.ts +0 -94
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/input-transform.ts +0 -43
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/interactive-shell.ts +0 -196
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/mac-system-theme.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/message-renderer.ts +0 -59
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/minimal-mode.ts +0 -426
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/modal-editor.ts +0 -85
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/model-status.ts +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/notify.ts +0 -55
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +0 -1348
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-test.ts +0 -150
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/permission-gate.ts +0 -34
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/pirate.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/plan-mode/index.ts +0 -340
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/preset.ts +0 -430
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/prompt-customizer.ts +0 -97
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/protected-paths.ts +0 -30
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/provider-payload.ts +0 -18
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/qna.ts +0 -122
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/question.ts +0 -264
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/questionnaire.ts +0 -427
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/rainbow-editor.ts +0 -88
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/reload-runtime.ts +0 -37
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/rpc-demo.ts +0 -118
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/index.ts +0 -321
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package-lock.json +0 -92
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package.json +0 -19
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/send-user-message.ts +0 -97
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/session-name.ts +0 -27
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/shutdown-command.ts +0 -63
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/snake.ts +0 -343
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/space-invaders.ts +0 -560
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/ssh.ts +0 -220
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/status-line.ts +0 -32
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/structured-output.ts +0 -65
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/subagent/agents.ts +0 -126
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/subagent/index.ts +0 -987
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/summarize.ts +0 -206
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/system-prompt-header.ts +0 -17
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tic-tac-toe.ts +0 -1008
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/timed-confirm.ts +0 -70
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/titlebar-spinner.ts +0 -58
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/todo.ts +0 -297
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tool-override.ts +0 -144
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tools.ts +0 -141
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/trigger-compact.ts +0 -50
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/truncated-tool.ts +0 -195
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/widget-placement.ts +0 -9
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/index.ts +0 -32
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package-lock.json +0 -31
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package.json +0 -22
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/working-indicator.ts +0 -123
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/working-message-test.ts +0 -25
- package/node_modules/@earendil-works/pi-coding-agent/examples/rpc-extension-ui.ts +0 -632
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/01-minimal.ts +0 -22
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/02-custom-model.ts +0 -49
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/03-custom-prompt.ts +0 -67
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/04-skills.ts +0 -55
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/05-tools.ts +0 -44
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/06-extensions.ts +0 -95
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/07-context-files.ts +0 -47
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/08-prompt-templates.ts +0 -51
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +0 -48
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/10-settings.ts +0 -53
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/11-sessions.ts +0 -48
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/12-full-control.ts +0 -73
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/13-session-runtime.ts +0 -67
- package/node_modules/@earendil-works/pi-coding-agent/examples/sdk/README.md +0 -147
- package/node_modules/@earendil-works/pi-coding-agent/package.json +0 -100
- package/node_modules/@earendil-works/pi-tui/README.md +0 -779
- package/node_modules/@earendil-works/pi-tui/package.json +0 -52
- package/node_modules/@mariozechner/clipboard/.yarnrc.yml +0 -1
- package/node_modules/@mariozechner/clipboard/Cargo.toml +0 -26
- package/node_modules/@mariozechner/clipboard/README.md +0 -58
- package/node_modules/@mariozechner/clipboard/build.rs +0 -5
- package/node_modules/@mariozechner/clipboard/exp.ts +0 -12
- package/node_modules/@mariozechner/clipboard/index.d.ts +0 -23
- package/node_modules/@mariozechner/clipboard/index.js +0 -317
- package/node_modules/@mariozechner/clipboard/package.json +0 -56
- package/node_modules/@mariozechner/clipboard/src/lib.rs +0 -196
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/README.md +0 -3
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/clipboard.linux-x64-gnu.node +0 -0
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/package.json +0 -25
- package/node_modules/@smithy/config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/config-resolver/README.md +0 -17
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/package.json +0 -65
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
- package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-codec/README.md +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
- package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
- package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/package.json +0 -64
- package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
- package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
- package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
- package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
- package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
- package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
- package/node_modules/@smithy/hash-node/LICENSE +0 -201
- package/node_modules/@smithy/hash-node/README.md +0 -17
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
- package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
- package/node_modules/@smithy/hash-node/package.json +0 -64
- package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
- package/node_modules/@smithy/invalid-dependency/README.md +0 -17
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/invalid-dependency/package.json +0 -60
- package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
- package/node_modules/@smithy/middleware-content-length/README.md +0 -17
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
- package/node_modules/@smithy/middleware-content-length/package.json +0 -63
- package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
- package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
- package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
- package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
- package/node_modules/@smithy/middleware-retry/README.md +0 -24
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
- package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
- package/node_modules/@smithy/middleware-retry/package.json +0 -79
- package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
- package/node_modules/@smithy/middleware-serde/README.md +0 -17
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/middleware-serde/package.json +0 -65
- package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
- package/node_modules/@smithy/middleware-stack/README.md +0 -91
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/middleware-stack/package.json +0 -63
- package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/node-config-provider/README.md +0 -17
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/node-config-provider/package.json +0 -65
- package/node_modules/@smithy/property-provider/LICENSE +0 -201
- package/node_modules/@smithy/property-provider/README.md +0 -17
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
- package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
- package/node_modules/@smithy/property-provider/package.json +0 -60
- package/node_modules/@smithy/protocol-http/LICENSE +0 -201
- package/node_modules/@smithy/protocol-http/README.md +0 -17
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/protocol-http/package.json +0 -61
- package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
- package/node_modules/@smithy/querystring-builder/README.md +0 -17
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
- package/node_modules/@smithy/querystring-builder/package.json +0 -60
- package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
- package/node_modules/@smithy/querystring-parser/README.md +0 -17
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/querystring-parser/package.json +0 -60
- package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
- package/node_modules/@smithy/service-error-classification/README.md +0 -17
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -83
- package/node_modules/@smithy/service-error-classification/package.json +0 -59
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
- package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
- package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
- package/node_modules/@smithy/smithy-client/LICENSE +0 -201
- package/node_modules/@smithy/smithy-client/README.md +0 -17
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -642
- package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -131
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
- package/node_modules/@smithy/smithy-client/package.json +0 -69
- package/node_modules/@smithy/url-parser/LICENSE +0 -201
- package/node_modules/@smithy/url-parser/README.md +0 -17
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
- package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
- package/node_modules/@smithy/url-parser/package.json +0 -61
- package/node_modules/@smithy/util-base64/LICENSE +0 -201
- package/node_modules/@smithy/util-base64/README.md +0 -4
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
- package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
- package/node_modules/@smithy/util-base64/package.json +0 -74
- package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
- package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-node/README.md +0 -12
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/package.json +0 -62
- package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/util-config-provider/README.md +0 -4
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
- package/node_modules/@smithy/util-config-provider/package.json +0 -63
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
- package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
- package/node_modules/@smithy/util-endpoints/README.md +0 -17
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -573
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -8
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -46
- package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
- package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -11
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/package.json +0 -68
- package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
- package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
- package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
- package/node_modules/@smithy/util-middleware/LICENSE +0 -201
- package/node_modules/@smithy/util-middleware/README.md +0 -17
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
- package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-middleware/package.json +0 -66
- package/node_modules/@smithy/util-retry/LICENSE +0 -201
- package/node_modules/@smithy/util-retry/README.md +0 -78
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -347
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -36
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -111
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -93
- package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
- package/node_modules/@smithy/util-retry/package.json +0 -70
- package/node_modules/@smithy/util-stream/LICENSE +0 -201
- package/node_modules/@smithy/util-stream/README.md +0 -6
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
- package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
- package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
- package/node_modules/@smithy/util-stream/package.json +0 -98
- package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
- package/node_modules/@smithy/util-uri-escape/README.md +0 -10
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/package.json +0 -60
- package/node_modules/@smithy/uuid/LICENSE +0 -201
- package/node_modules/@smithy/uuid/README.md +0 -10
- package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
- package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/package.json +0 -66
- package/node_modules/cliui/CHANGELOG.md +0 -121
- package/node_modules/color-convert/CHANGELOG.md +0 -54
- package/node_modules/esprima/ChangeLog +0 -235
- package/node_modules/koffi/CHANGELOG.md +0 -1093
- package/node_modules/koffi/LICENSE.txt +0 -22
- package/node_modules/koffi/README.md +0 -43
- package/node_modules/koffi/build/koffi/darwin_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/darwin_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/freebsd_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/freebsd_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/freebsd_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_armhf/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_loong64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_riscv64d/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/linux_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/musl_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/musl_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/openbsd_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/openbsd_x64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/win32_arm64/koffi.exp +0 -0
- package/node_modules/koffi/build/koffi/win32_arm64/koffi.lib +0 -0
- package/node_modules/koffi/build/koffi/win32_arm64/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/win32_ia32/koffi.exp +0 -0
- package/node_modules/koffi/build/koffi/win32_ia32/koffi.lib +0 -0
- package/node_modules/koffi/build/koffi/win32_ia32/koffi.node +0 -0
- package/node_modules/koffi/build/koffi/win32_x64/koffi.exp +0 -0
- package/node_modules/koffi/build/koffi/win32_x64/koffi.lib +0 -0
- package/node_modules/koffi/build/koffi/win32_x64/koffi.node +0 -0
- package/node_modules/koffi/doc/benchmarks.md +0 -126
- package/node_modules/koffi/doc/callbacks.md +0 -210
- package/node_modules/koffi/doc/contribute.md +0 -148
- package/node_modules/koffi/doc/functions.md +0 -250
- package/node_modules/koffi/doc/index.md +0 -61
- package/node_modules/koffi/doc/input.md +0 -471
- package/node_modules/koffi/doc/migration.md +0 -159
- package/node_modules/koffi/doc/misc.md +0 -180
- package/node_modules/koffi/doc/output.md +0 -305
- package/node_modules/koffi/doc/packaging.md +0 -88
- package/node_modules/koffi/doc/platforms.md +0 -36
- package/node_modules/koffi/doc/pointers.md +0 -328
- package/node_modules/koffi/doc/start.md +0 -118
- package/node_modules/koffi/doc/unions.md +0 -186
- package/node_modules/koffi/doc/variables.md +0 -102
- package/node_modules/koffi/index.d.ts +0 -288
- package/node_modules/koffi/index.js +0 -634
- package/node_modules/koffi/indirect.js +0 -533
- package/node_modules/koffi/lib/native/base/base.cc +0 -11015
- package/node_modules/koffi/lib/native/base/base.hh +0 -6003
- package/node_modules/koffi/lib/native/base/crc.inc +0 -2214
- package/node_modules/koffi/lib/native/base/crc_gen.py +0 -72
- package/node_modules/koffi/lib/native/base/mimetypes.inc +0 -1248
- package/node_modules/koffi/lib/native/base/mimetypes_gen.py +0 -58
- package/node_modules/koffi/lib/native/base/tower.cc +0 -821
- package/node_modules/koffi/lib/native/base/tower.hh +0 -81
- package/node_modules/koffi/lib/native/base/unicode.inc +0 -408
- package/node_modules/koffi/lib/native/base/unicode_gen.py +0 -152
- package/node_modules/koffi/package.json +0 -38
- package/node_modules/koffi/src/cnoke/LICENSE.txt +0 -22
- package/node_modules/koffi/src/cnoke/README.md +0 -99
- package/node_modules/koffi/src/cnoke/assets/FindCNoke.cmake +0 -127
- package/node_modules/koffi/src/cnoke/assets/toolchains.json +0 -126
- package/node_modules/koffi/src/cnoke/assets/win_delay_hook.c +0 -36
- package/node_modules/koffi/src/cnoke/cnoke.js +0 -170
- package/node_modules/koffi/src/cnoke/package.json +0 -24
- package/node_modules/koffi/src/cnoke/src/builder.js +0 -511
- package/node_modules/koffi/src/cnoke/src/index.js +0 -10
- package/node_modules/koffi/src/cnoke/src/tools.js +0 -407
- package/node_modules/koffi/src/koffi/CMakeLists.txt +0 -182
- package/node_modules/koffi/src/koffi/src/abi_arm32.cc +0 -1018
- package/node_modules/koffi/src/koffi/src/abi_arm32_asm.S +0 -169
- package/node_modules/koffi/src/koffi/src/abi_arm64.cc +0 -1295
- package/node_modules/koffi/src/koffi/src/abi_arm64_asm.S +0 -195
- package/node_modules/koffi/src/koffi/src/abi_arm64_asm.asm +0 -174
- package/node_modules/koffi/src/koffi/src/abi_loong64.cc +0 -5
- package/node_modules/koffi/src/koffi/src/abi_loong64_asm.S +0 -204
- package/node_modules/koffi/src/koffi/src/abi_riscv64.cc +0 -915
- package/node_modules/koffi/src/koffi/src/abi_riscv64_asm.S +0 -203
- package/node_modules/koffi/src/koffi/src/abi_x64_sysv.cc +0 -939
- package/node_modules/koffi/src/koffi/src/abi_x64_sysv_asm.S +0 -231
- package/node_modules/koffi/src/koffi/src/abi_x64_win.cc +0 -715
- package/node_modules/koffi/src/koffi/src/abi_x64_win_asm.S +0 -166
- package/node_modules/koffi/src/koffi/src/abi_x64_win_asm.asm +0 -192
- package/node_modules/koffi/src/koffi/src/abi_x86.cc +0 -860
- package/node_modules/koffi/src/koffi/src/abi_x86_asm.S +0 -193
- package/node_modules/koffi/src/koffi/src/abi_x86_asm.asm +0 -177
- package/node_modules/koffi/src/koffi/src/call.cc +0 -1326
- package/node_modules/koffi/src/koffi/src/call.hh +0 -179
- package/node_modules/koffi/src/koffi/src/errno.inc +0 -462
- package/node_modules/koffi/src/koffi/src/ffi.cc +0 -2702
- package/node_modules/koffi/src/koffi/src/ffi.hh +0 -354
- package/node_modules/koffi/src/koffi/src/init.js +0 -105
- package/node_modules/koffi/src/koffi/src/parser.cc +0 -220
- package/node_modules/koffi/src/koffi/src/parser.hh +0 -54
- package/node_modules/koffi/src/koffi/src/util.cc +0 -1807
- package/node_modules/koffi/src/koffi/src/util.hh +0 -221
- package/node_modules/koffi/src/koffi/src/uv.cc +0 -193
- package/node_modules/koffi/src/koffi/src/uv.def +0 -10
- package/node_modules/koffi/src/koffi/src/uv.hh +0 -40
- package/node_modules/koffi/src/koffi/src/win32.cc +0 -198
- package/node_modules/koffi/src/koffi/src/win32.hh +0 -119
- package/node_modules/koffi/src/koffi/tools/write_trampolines.js +0 -77
- package/node_modules/koffi/vendor/node-addon-api/LICENSE.md +0 -9
- package/node_modules/koffi/vendor/node-addon-api/README.md +0 -95
- package/node_modules/koffi/vendor/node-addon-api/napi-inl.deprecated.h +0 -186
- package/node_modules/koffi/vendor/node-addon-api/napi-inl.h +0 -7033
- package/node_modules/koffi/vendor/node-addon-api/napi.h +0 -3309
- package/node_modules/koffi/vendor/node-api-headers/LICENSE +0 -21
- package/node_modules/koffi/vendor/node-api-headers/README.md +0 -95
- package/node_modules/koffi/vendor/node-api-headers/def/js_native_api.def +0 -125
- package/node_modules/koffi/vendor/node-api-headers/def/node_api.def +0 -157
- package/node_modules/koffi/vendor/node-api-headers/include/js_native_api.h +0 -591
- package/node_modules/koffi/vendor/node-api-headers/include/js_native_api_types.h +0 -210
- package/node_modules/koffi/vendor/node-api-headers/include/node_api.h +0 -265
- package/node_modules/koffi/vendor/node-api-headers/include/node_api_types.h +0 -58
- package/node_modules/koffi/vendor/node-api-headers/include/uv/aix.h +0 -32
- package/node_modules/koffi/vendor/node-api-headers/include/uv/bsd.h +0 -34
- package/node_modules/koffi/vendor/node-api-headers/include/uv/darwin.h +0 -61
- package/node_modules/koffi/vendor/node-api-headers/include/uv/errno.h +0 -483
- package/node_modules/koffi/vendor/node-api-headers/include/uv/linux.h +0 -34
- package/node_modules/koffi/vendor/node-api-headers/include/uv/os390.h +0 -33
- package/node_modules/koffi/vendor/node-api-headers/include/uv/posix.h +0 -31
- package/node_modules/koffi/vendor/node-api-headers/include/uv/sunos.h +0 -44
- package/node_modules/koffi/vendor/node-api-headers/include/uv/threadpool.h +0 -37
- package/node_modules/koffi/vendor/node-api-headers/include/uv/tree.h +0 -521
- package/node_modules/koffi/vendor/node-api-headers/include/uv/unix.h +0 -512
- package/node_modules/koffi/vendor/node-api-headers/include/uv/version.h +0 -43
- package/node_modules/koffi/vendor/node-api-headers/include/uv/win.h +0 -698
- package/node_modules/koffi/vendor/node-api-headers/include/uv.h +0 -1990
- package/node_modules/mz/HISTORY.md +0 -66
- package/node_modules/proper-lockfile/CHANGELOG.md +0 -108
- package/node_modules/socks/.claude/settings.local.json +0 -26
- package/node_modules/source-map/CHANGELOG.md +0 -301
- package/node_modules/thenify/History.md +0 -11
- package/node_modules/thenify-all/History.md +0 -11
- package/node_modules/y18n/CHANGELOG.md +0 -100
- package/node_modules/yargs/CHANGELOG.md +0 -88
- package/node_modules/yargs-parser/CHANGELOG.md +0 -263
- /package/dist/forge-payload/{.tools → tools}/banners.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-context-pack.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-init-context.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-overlay.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/build-persona-pack.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/generation-manifest.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/forge-root.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/paths.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/pricing.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/project-root.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/lib/result.js +0 -0
- /package/dist/forge-payload/{.tools → tools}/manage-config.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/manage-versions.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/seed-store.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/store.cjs +0 -0
- /package/dist/forge-payload/{.tools → tools}/substitute-placeholders.cjs +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/index.d.ts → core/dist-types/submodules/util/util-arn-parser/arn.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-format-url/dist-types/index.d.ts → core/dist-types/submodules/util/util-format-url/format-url.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-arn-parser/arn.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-format-url/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-format-url/format-url.d.ts} +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-agent-core/dist/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/api-registry.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/bedrock-provider.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/env-api-keys.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/models.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/oauth.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/amazon-bedrock.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/anthropic.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/azure-openai-responses.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/cloudflare.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/faux.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/github-copilot-headers.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-shared.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google-vertex.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/google.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/mistral.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-codex-responses.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-completions.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses-shared.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/openai-responses.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/register-builtins.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/simple-options.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/providers/transform-messages.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/session-resources.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/stream.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/types.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/diagnostics.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/event-stream.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/hash.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/headers.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/json-parse.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/anthropic.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/github-copilot.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/oauth-page.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/openai-codex.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/pkce.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/oauth/types.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/overflow.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/sanitize-unicode.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/typebox-helpers.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-ai/dist/utils/validation.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/cli.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/register-bedrock.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/bun/restore-sandbox-env.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/args.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/config-selector.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/file-processor.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/initial-message.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/list-models.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli/session-picker.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/cli.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/config.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-runtime.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/agent-session-services.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/auth-guidance.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/bash-executor.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/compaction/utils.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/defaults.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/diagnostics.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/event-bus.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/exec.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/ansi-to-html.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.css +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.html +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/template.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/tool-renderer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/vendor/highlight.min.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/export-html/vendor/marked.min.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/extensions/wrapper.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/footer-data-provider.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/messages.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/output-guard.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/package-manager.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/prompt-templates.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/provider-display-names.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resolve-config-value.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/resource-loader.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-cwd.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/session-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/settings-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/skills.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/slash-commands.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/source-info.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/system-prompt.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/telemetry.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/timings.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/edit-diff.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/file-mutation-queue.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/output-accumulator.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/path-utils.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/core/tools/truncate.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/main.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/migrations.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/armin.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/daxnuts.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/diff.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/dark.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/light.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/interactive/theme/theme-schema.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/print-mode.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/jsonl.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-client.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/modes/rpc/rpc-types.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/package-manager-cli.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/changelog.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/child-process.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-image.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard-native.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/clipboard.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/exif-orientation.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/frontmatter.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/fs-watch.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/git.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-convert.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/image-resize.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/mime.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/photon.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/pi-user-agent.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/shell.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/sleep.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/tools-manager.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/dist/utils/version-check.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/development.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/docs.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/doom-extension.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/exy.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/interactive-mode.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/images/tree-view.png +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/json.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/keybindings.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/models.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/prompt-templates.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/providers.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/sessions.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/settings.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/shell-aliases.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/skills.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/terminal-setup.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/themes.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/tmux.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/usage.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/docs/windows.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.wasm +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/build.sh +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/doom-engine.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/doom-overlay/wad-finder.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/SKILL.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.json +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/plan-mode/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/plan-mode/utils.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/README.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/planner.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/reviewer.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/scout.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/agents/worker.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/implement-and-review.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/implement.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-coding-agent/examples/extensions/subagent/prompts/scout-and-plan.md +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/autocomplete.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/box.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/cancellable-loader.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/editor.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/image.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/input.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/loader.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/markdown.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/select-list.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/settings-list.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/spacer.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/text.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/components/truncated-text.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/editor-component.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/fuzzy.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/index.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keybindings.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/keys.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/kill-ring.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/stdin-buffer.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal-image.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/terminal.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/tui.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/undo-stack.js.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.d.ts +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.d.ts.map +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.js +0 -0
- /package/node_modules/{@earendil-works → @entelligentsia}/pi-tui/dist/utils.js.map +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-value-from-text-node.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/getSmithyContext.js +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/client/util-middleware}/normalizeProvider.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/config.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/constants.js +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es/retry-pre-sra-deprecated → core/dist-es/submodules/config/shared-ini-file-loader}/types.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/index.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/types.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/index.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/decideEndpoint.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/coalesce.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttr.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/index.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/ite.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/split.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/substring.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/resolveEndpoint.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/index.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/endpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateCondition.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateConditions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateErrorRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateRules.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointHeaders.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperties.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getReferenceValue.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/index.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/EventStreamCodec.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/TestVectors.fixture.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/splitMessage.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpRequest.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpResponse.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/isValidHostname.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/protocols/querystring-parser/parseQueryString.js} +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-es → core/dist-es/submodules/retry/service-error-classification}/constants.js +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-es/index.js → core/dist-es/submodules/retry/service-error-classification/service-error-classification.js} +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryToken.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js → @smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js} +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
- /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
- /package/node_modules/@smithy/{util-body-length-browser/dist-es/calculateBodyLength.js → core/dist-es/submodules/serde/util-body-length/calculateBodyLength.browser.js} +0 -0
- /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/fromUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUint8Array.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUtf8.browser.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/client/util-middleware}/normalizeProvider.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-types → core/dist-types/submodules/config/defaults-mode}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
- /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/index.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/types.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/bdd/BinaryDecisionDiagram.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/index.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/coalesce.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/index.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isValidHostLabel.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/ite.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/split.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/index.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/shared.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/endpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateConditions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getReferenceValue.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/index.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/TestVectors.fixture.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/vectorTypes.fixture.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-content-length/dist-types/index.d.ts → core/dist-types/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts} +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/httpResponse.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/isValidHostname.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
- /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-parser/parseQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/protocols/url-parser/parseUrl.d.ts} +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-types/index.d.ts → core/dist-types/submodules/retry/service-error-classification/service-error-classification.d.ts} +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/ConfiguredRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryToken.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/StandardRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
- /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts → @smithy/core/dist-types/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types/constants.browser.d.ts → core/dist-types/submodules/serde/util-base64/constants-for-browser.d.ts} +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-body-length-browser/dist-types/calculateBodyLength.d.ts → core/dist-types/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts} +0 -0
- /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
- /package/node_modules/@smithy/{util-hex-encoding/dist-types/index.d.ts → core/dist-types/submodules/serde/util-hex-encoding/hex-encoding.d.ts} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/fromUtf8.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUint8Array.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha256-browser/node_modules/@smithy → @smithy}/util-utf8/dist-cjs/toUtf8.js +0 -0
|
@@ -1,2596 +0,0 @@
|
|
|
1
|
-
> pi can create extensions. Ask it to build one for your use case.
|
|
2
|
-
|
|
3
|
-
# Extensions
|
|
4
|
-
|
|
5
|
-
Extensions are TypeScript modules that extend pi's behavior. They can subscribe to lifecycle events, register custom tools callable by the LLM, add commands, and more.
|
|
6
|
-
|
|
7
|
-
> **Placement for /reload:** Put extensions in `~/.pi/agent/extensions/` (global) or `.pi/extensions/` (project-local) for auto-discovery. Use `pi -e ./path.ts` only for quick tests. Extensions in auto-discovered locations can be hot-reloaded with `/reload`.
|
|
8
|
-
|
|
9
|
-
**Key capabilities:**
|
|
10
|
-
- **Custom tools** - Register tools the LLM can call via `pi.registerTool()`
|
|
11
|
-
- **Event interception** - Block or modify tool calls, inject context, customize compaction
|
|
12
|
-
- **User interaction** - Prompt users via `ctx.ui` (select, confirm, input, notify)
|
|
13
|
-
- **Custom UI components** - Full TUI components with keyboard input via `ctx.ui.custom()` for complex interactions
|
|
14
|
-
- **Custom commands** - Register commands like `/mycommand` via `pi.registerCommand()`
|
|
15
|
-
- **Session persistence** - Store state that survives restarts via `pi.appendEntry()`
|
|
16
|
-
- **Custom rendering** - Control how tool calls/results and messages appear in TUI
|
|
17
|
-
|
|
18
|
-
**Example use cases:**
|
|
19
|
-
- Permission gates (confirm before `rm -rf`, `sudo`, etc.)
|
|
20
|
-
- Git checkpointing (stash at each turn, restore on branch)
|
|
21
|
-
- Path protection (block writes to `.env`, `node_modules/`)
|
|
22
|
-
- Custom compaction (summarize conversation your way)
|
|
23
|
-
- Conversation summaries (see `summarize.ts` example)
|
|
24
|
-
- Interactive tools (questions, wizards, custom dialogs)
|
|
25
|
-
- Stateful tools (todo lists, connection pools)
|
|
26
|
-
- External integrations (file watchers, webhooks, CI triggers)
|
|
27
|
-
- Games while you wait (see `snake.ts` example)
|
|
28
|
-
|
|
29
|
-
See [examples/extensions/](../examples/extensions/) for working implementations.
|
|
30
|
-
|
|
31
|
-
## Table of Contents
|
|
32
|
-
|
|
33
|
-
- [Quick Start](#quick-start)
|
|
34
|
-
- [Extension Locations](#extension-locations)
|
|
35
|
-
- [Available Imports](#available-imports)
|
|
36
|
-
- [Writing an Extension](#writing-an-extension)
|
|
37
|
-
- [Extension Styles](#extension-styles)
|
|
38
|
-
- [Events](#events)
|
|
39
|
-
- [Lifecycle Overview](#lifecycle-overview)
|
|
40
|
-
- [Resource Events](#resource-events)
|
|
41
|
-
- [Session Events](#session-events)
|
|
42
|
-
- [Agent Events](#agent-events)
|
|
43
|
-
- [Model Events](#model-events)
|
|
44
|
-
- [Tool Events](#tool-events)
|
|
45
|
-
- [ExtensionContext](#extensioncontext)
|
|
46
|
-
- [ExtensionCommandContext](#extensioncommandcontext)
|
|
47
|
-
- [ExtensionAPI Methods](#extensionapi-methods)
|
|
48
|
-
- [State Management](#state-management)
|
|
49
|
-
- [Custom Tools](#custom-tools)
|
|
50
|
-
- [Custom UI](#custom-ui)
|
|
51
|
-
- [Error Handling](#error-handling)
|
|
52
|
-
- [Mode Behavior](#mode-behavior)
|
|
53
|
-
- [Examples Reference](#examples-reference)
|
|
54
|
-
|
|
55
|
-
## Quick Start
|
|
56
|
-
|
|
57
|
-
Create `~/.pi/agent/extensions/my-extension.ts`:
|
|
58
|
-
|
|
59
|
-
```typescript
|
|
60
|
-
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
61
|
-
import { Type } from "typebox";
|
|
62
|
-
|
|
63
|
-
export default function (pi: ExtensionAPI) {
|
|
64
|
-
// React to events
|
|
65
|
-
pi.on("session_start", async (_event, ctx) => {
|
|
66
|
-
ctx.ui.notify("Extension loaded!", "info");
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
pi.on("tool_call", async (event, ctx) => {
|
|
70
|
-
if (event.toolName === "bash" && event.input.command?.includes("rm -rf")) {
|
|
71
|
-
const ok = await ctx.ui.confirm("Dangerous!", "Allow rm -rf?");
|
|
72
|
-
if (!ok) return { block: true, reason: "Blocked by user" };
|
|
73
|
-
}
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
// Register a custom tool
|
|
77
|
-
pi.registerTool({
|
|
78
|
-
name: "greet",
|
|
79
|
-
label: "Greet",
|
|
80
|
-
description: "Greet someone by name",
|
|
81
|
-
parameters: Type.Object({
|
|
82
|
-
name: Type.String({ description: "Name to greet" }),
|
|
83
|
-
}),
|
|
84
|
-
async execute(toolCallId, params, signal, onUpdate, ctx) {
|
|
85
|
-
return {
|
|
86
|
-
content: [{ type: "text", text: `Hello, ${params.name}!` }],
|
|
87
|
-
details: {},
|
|
88
|
-
};
|
|
89
|
-
},
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
// Register a command
|
|
93
|
-
pi.registerCommand("hello", {
|
|
94
|
-
description: "Say hello",
|
|
95
|
-
handler: async (args, ctx) => {
|
|
96
|
-
ctx.ui.notify(`Hello ${args || "world"}!`, "info");
|
|
97
|
-
},
|
|
98
|
-
});
|
|
99
|
-
}
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
Test with `--extension` (or `-e`) flag:
|
|
103
|
-
|
|
104
|
-
```bash
|
|
105
|
-
pi -e ./my-extension.ts
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## Extension Locations
|
|
109
|
-
|
|
110
|
-
> **Security:** Extensions run with your full system permissions and can execute arbitrary code. Only install from sources you trust.
|
|
111
|
-
|
|
112
|
-
Extensions are auto-discovered from:
|
|
113
|
-
|
|
114
|
-
| Location | Scope |
|
|
115
|
-
|----------|-------|
|
|
116
|
-
| `~/.pi/agent/extensions/*.ts` | Global (all projects) |
|
|
117
|
-
| `~/.pi/agent/extensions/*/index.ts` | Global (subdirectory) |
|
|
118
|
-
| `.pi/extensions/*.ts` | Project-local |
|
|
119
|
-
| `.pi/extensions/*/index.ts` | Project-local (subdirectory) |
|
|
120
|
-
|
|
121
|
-
Additional paths via `settings.json`:
|
|
122
|
-
|
|
123
|
-
```json
|
|
124
|
-
{
|
|
125
|
-
"packages": [
|
|
126
|
-
"npm:@foo/bar@1.0.0",
|
|
127
|
-
"git:github.com/user/repo@v1"
|
|
128
|
-
],
|
|
129
|
-
"extensions": [
|
|
130
|
-
"/path/to/local/extension.ts",
|
|
131
|
-
"/path/to/local/extension/dir"
|
|
132
|
-
]
|
|
133
|
-
}
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
To share extensions via npm or git as pi packages, see [packages.md](packages.md).
|
|
137
|
-
|
|
138
|
-
## Available Imports
|
|
139
|
-
|
|
140
|
-
| Package | Purpose |
|
|
141
|
-
|---------|---------|
|
|
142
|
-
| `@earendil-works/pi-coding-agent` | Extension types (`ExtensionAPI`, `ExtensionContext`, events) |
|
|
143
|
-
| `typebox` | Schema definitions for tool parameters |
|
|
144
|
-
| `@earendil-works/pi-ai` | AI utilities (`StringEnum` for Google-compatible enums) |
|
|
145
|
-
| `@earendil-works/pi-tui` | TUI components for custom rendering |
|
|
146
|
-
|
|
147
|
-
npm dependencies work too. Add a `package.json` next to your extension (or in a parent directory), run `npm install`, and imports from `node_modules/` are resolved automatically.
|
|
148
|
-
|
|
149
|
-
For distributed pi packages installed with `pi install` (npm or git), runtime deps must be in `dependencies`. Package installation uses production installs (`npm install --omit=dev`) by default, so `devDependencies` are not available at runtime; when `npmCommand` is configured, git packages use plain `install` for compatibility with wrappers.
|
|
150
|
-
|
|
151
|
-
Node.js built-ins (`node:fs`, `node:path`, etc.) are also available.
|
|
152
|
-
|
|
153
|
-
## Writing an Extension
|
|
154
|
-
|
|
155
|
-
An extension exports a default factory function that receives `ExtensionAPI`. The factory can be synchronous or asynchronous:
|
|
156
|
-
|
|
157
|
-
```typescript
|
|
158
|
-
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
159
|
-
|
|
160
|
-
export default function (pi: ExtensionAPI) {
|
|
161
|
-
// Subscribe to events
|
|
162
|
-
pi.on("event_name", async (event, ctx) => {
|
|
163
|
-
// ctx.ui for user interaction
|
|
164
|
-
const ok = await ctx.ui.confirm("Title", "Are you sure?");
|
|
165
|
-
ctx.ui.notify("Done!", "success");
|
|
166
|
-
ctx.ui.setStatus("my-ext", "Processing..."); // Footer status
|
|
167
|
-
ctx.ui.setWidget("my-ext", ["Line 1", "Line 2"]); // Widget above editor (default)
|
|
168
|
-
});
|
|
169
|
-
|
|
170
|
-
// Register tools, commands, shortcuts, flags
|
|
171
|
-
pi.registerTool({ ... });
|
|
172
|
-
pi.registerCommand("name", { ... });
|
|
173
|
-
pi.registerShortcut("ctrl+x", { ... });
|
|
174
|
-
pi.registerFlag("my-flag", { ... });
|
|
175
|
-
}
|
|
176
|
-
```
|
|
177
|
-
|
|
178
|
-
Extensions are loaded via [jiti](https://github.com/unjs/jiti), so TypeScript works without compilation.
|
|
179
|
-
|
|
180
|
-
If the factory returns a `Promise`, pi awaits it before continuing startup. That means async initialization completes before `session_start`, before `resources_discover`, and before provider registrations queued via `pi.registerProvider()` are flushed.
|
|
181
|
-
|
|
182
|
-
### Async factory functions
|
|
183
|
-
|
|
184
|
-
Use an async factory for one-time startup work such as fetching remote configuration or dynamically discovering available models.
|
|
185
|
-
|
|
186
|
-
```typescript
|
|
187
|
-
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
188
|
-
|
|
189
|
-
export default async function (pi: ExtensionAPI) {
|
|
190
|
-
const response = await fetch("http://localhost:1234/v1/models");
|
|
191
|
-
const payload = (await response.json()) as {
|
|
192
|
-
data: Array<{
|
|
193
|
-
id: string;
|
|
194
|
-
name?: string;
|
|
195
|
-
context_window?: number;
|
|
196
|
-
max_tokens?: number;
|
|
197
|
-
}>;
|
|
198
|
-
};
|
|
199
|
-
|
|
200
|
-
pi.registerProvider("local-openai", {
|
|
201
|
-
baseUrl: "http://localhost:1234/v1",
|
|
202
|
-
apiKey: "LOCAL_OPENAI_API_KEY",
|
|
203
|
-
api: "openai-completions",
|
|
204
|
-
models: payload.data.map((model) => ({
|
|
205
|
-
id: model.id,
|
|
206
|
-
name: model.name ?? model.id,
|
|
207
|
-
reasoning: false,
|
|
208
|
-
input: ["text"],
|
|
209
|
-
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
210
|
-
contextWindow: model.context_window ?? 128000,
|
|
211
|
-
maxTokens: model.max_tokens ?? 4096,
|
|
212
|
-
})),
|
|
213
|
-
});
|
|
214
|
-
}
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
This pattern makes the fetched models available during normal startup and to `pi --list-models`.
|
|
218
|
-
|
|
219
|
-
### Extension Styles
|
|
220
|
-
|
|
221
|
-
**Single file** - simplest, for small extensions:
|
|
222
|
-
|
|
223
|
-
```
|
|
224
|
-
~/.pi/agent/extensions/
|
|
225
|
-
└── my-extension.ts
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
**Directory with index.ts** - for multi-file extensions:
|
|
229
|
-
|
|
230
|
-
```
|
|
231
|
-
~/.pi/agent/extensions/
|
|
232
|
-
└── my-extension/
|
|
233
|
-
├── index.ts # Entry point (exports default function)
|
|
234
|
-
├── tools.ts # Helper module
|
|
235
|
-
└── utils.ts # Helper module
|
|
236
|
-
```
|
|
237
|
-
|
|
238
|
-
**Package with dependencies** - for extensions that need npm packages:
|
|
239
|
-
|
|
240
|
-
```
|
|
241
|
-
~/.pi/agent/extensions/
|
|
242
|
-
└── my-extension/
|
|
243
|
-
├── package.json # Declares dependencies and entry points
|
|
244
|
-
├── package-lock.json
|
|
245
|
-
├── node_modules/ # After npm install
|
|
246
|
-
└── src/
|
|
247
|
-
└── index.ts
|
|
248
|
-
```
|
|
249
|
-
|
|
250
|
-
```json
|
|
251
|
-
// package.json
|
|
252
|
-
{
|
|
253
|
-
"name": "my-extension",
|
|
254
|
-
"dependencies": {
|
|
255
|
-
"zod": "^3.0.0",
|
|
256
|
-
"chalk": "^5.0.0"
|
|
257
|
-
},
|
|
258
|
-
"pi": {
|
|
259
|
-
"extensions": ["./src/index.ts"]
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
```
|
|
263
|
-
|
|
264
|
-
Run `npm install` in the extension directory, then imports from `node_modules/` work automatically.
|
|
265
|
-
|
|
266
|
-
## Events
|
|
267
|
-
|
|
268
|
-
### Lifecycle Overview
|
|
269
|
-
|
|
270
|
-
```
|
|
271
|
-
pi starts
|
|
272
|
-
│
|
|
273
|
-
├─► session_start { reason: "startup" }
|
|
274
|
-
└─► resources_discover { reason: "startup" }
|
|
275
|
-
│
|
|
276
|
-
▼
|
|
277
|
-
user sends prompt ─────────────────────────────────────────┐
|
|
278
|
-
│ │
|
|
279
|
-
├─► (extension commands checked first, bypass if found) │
|
|
280
|
-
├─► input (can intercept, transform, or handle) │
|
|
281
|
-
├─► (skill/template expansion if not handled) │
|
|
282
|
-
├─► before_agent_start (can inject message, modify system prompt)
|
|
283
|
-
├─► agent_start │
|
|
284
|
-
├─► message_start / message_update / message_end │
|
|
285
|
-
│ │
|
|
286
|
-
│ ┌─── turn (repeats while LLM calls tools) ───┐ │
|
|
287
|
-
│ │ │ │
|
|
288
|
-
│ ├─► turn_start │ │
|
|
289
|
-
│ ├─► context (can modify messages) │ │
|
|
290
|
-
│ ├─► before_provider_request (can inspect or replace payload)
|
|
291
|
-
│ ├─► after_provider_response (status + headers, before stream consume)
|
|
292
|
-
│ │ │ │
|
|
293
|
-
│ │ LLM responds, may call tools: │ │
|
|
294
|
-
│ │ ├─► tool_execution_start │ │
|
|
295
|
-
│ │ ├─► tool_call (can block) │ │
|
|
296
|
-
│ │ ├─► tool_execution_update │ │
|
|
297
|
-
│ │ ├─► tool_result (can modify) │ │
|
|
298
|
-
│ │ └─► tool_execution_end │ │
|
|
299
|
-
│ │ │ │
|
|
300
|
-
│ └─► turn_end │ │
|
|
301
|
-
│ │
|
|
302
|
-
└─► agent_end │
|
|
303
|
-
│
|
|
304
|
-
user sends another prompt ◄────────────────────────────────┘
|
|
305
|
-
|
|
306
|
-
/new (new session) or /resume (switch session)
|
|
307
|
-
├─► session_before_switch (can cancel)
|
|
308
|
-
├─► session_shutdown
|
|
309
|
-
├─► session_start { reason: "new" | "resume", previousSessionFile? }
|
|
310
|
-
└─► resources_discover { reason: "startup" }
|
|
311
|
-
|
|
312
|
-
/fork or /clone
|
|
313
|
-
├─► session_before_fork (can cancel)
|
|
314
|
-
├─► session_shutdown
|
|
315
|
-
├─► session_start { reason: "fork", previousSessionFile }
|
|
316
|
-
└─► resources_discover { reason: "startup" }
|
|
317
|
-
|
|
318
|
-
/compact or auto-compaction
|
|
319
|
-
├─► session_before_compact (can cancel or customize)
|
|
320
|
-
└─► session_compact
|
|
321
|
-
|
|
322
|
-
/tree navigation
|
|
323
|
-
├─► session_before_tree (can cancel or customize)
|
|
324
|
-
└─► session_tree
|
|
325
|
-
|
|
326
|
-
/model or Ctrl+P (model selection/cycling)
|
|
327
|
-
├─► thinking_level_select (if model change changes/clamps thinking level)
|
|
328
|
-
└─► model_select
|
|
329
|
-
|
|
330
|
-
thinking level changes (settings, keybinding, pi.setThinkingLevel())
|
|
331
|
-
└─► thinking_level_select
|
|
332
|
-
|
|
333
|
-
exit (Ctrl+C, Ctrl+D, SIGHUP, SIGTERM)
|
|
334
|
-
└─► session_shutdown
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
### Resource Events
|
|
338
|
-
|
|
339
|
-
#### resources_discover
|
|
340
|
-
|
|
341
|
-
Fired after `session_start` so extensions can contribute additional skill, prompt, and theme paths.
|
|
342
|
-
The startup path uses `reason: "startup"`. Reload uses `reason: "reload"`.
|
|
343
|
-
|
|
344
|
-
```typescript
|
|
345
|
-
pi.on("resources_discover", async (event, _ctx) => {
|
|
346
|
-
// event.cwd - current working directory
|
|
347
|
-
// event.reason - "startup" | "reload"
|
|
348
|
-
return {
|
|
349
|
-
skillPaths: ["/path/to/skills"],
|
|
350
|
-
promptPaths: ["/path/to/prompts"],
|
|
351
|
-
themePaths: ["/path/to/themes"],
|
|
352
|
-
};
|
|
353
|
-
});
|
|
354
|
-
```
|
|
355
|
-
|
|
356
|
-
### Session Events
|
|
357
|
-
|
|
358
|
-
See [Session Format](session-format.md) for session storage internals and the SessionManager API.
|
|
359
|
-
|
|
360
|
-
#### session_start
|
|
361
|
-
|
|
362
|
-
Fired when a session is started, loaded, or reloaded.
|
|
363
|
-
|
|
364
|
-
```typescript
|
|
365
|
-
pi.on("session_start", async (event, ctx) => {
|
|
366
|
-
// event.reason - "startup" | "reload" | "new" | "resume" | "fork"
|
|
367
|
-
// event.previousSessionFile - present for "new", "resume", and "fork"
|
|
368
|
-
ctx.ui.notify(`Session: ${ctx.sessionManager.getSessionFile() ?? "ephemeral"}`, "info");
|
|
369
|
-
});
|
|
370
|
-
```
|
|
371
|
-
|
|
372
|
-
#### session_before_switch
|
|
373
|
-
|
|
374
|
-
Fired before starting a new session (`/new`) or switching sessions (`/resume`).
|
|
375
|
-
|
|
376
|
-
```typescript
|
|
377
|
-
pi.on("session_before_switch", async (event, ctx) => {
|
|
378
|
-
// event.reason - "new" or "resume"
|
|
379
|
-
// event.targetSessionFile - session we're switching to (only for "resume")
|
|
380
|
-
|
|
381
|
-
if (event.reason === "new") {
|
|
382
|
-
const ok = await ctx.ui.confirm("Clear?", "Delete all messages?");
|
|
383
|
-
if (!ok) return { cancel: true };
|
|
384
|
-
}
|
|
385
|
-
});
|
|
386
|
-
```
|
|
387
|
-
|
|
388
|
-
After a successful switch or new-session action, pi emits `session_shutdown` for the old extension instance, reloads and rebinds extensions for the new session, then emits `session_start` with `reason: "new" | "resume"` and `previousSessionFile`.
|
|
389
|
-
Do cleanup work in `session_shutdown`, then reestablish any in-memory state in `session_start`.
|
|
390
|
-
|
|
391
|
-
#### session_before_fork
|
|
392
|
-
|
|
393
|
-
Fired when forking via `/fork` or cloning via `/clone`.
|
|
394
|
-
|
|
395
|
-
```typescript
|
|
396
|
-
pi.on("session_before_fork", async (event, ctx) => {
|
|
397
|
-
// event.entryId - ID of the selected entry
|
|
398
|
-
// event.position - "before" for /fork, "at" for /clone
|
|
399
|
-
return { cancel: true }; // Cancel fork/clone
|
|
400
|
-
// OR
|
|
401
|
-
return { skipConversationRestore: true }; // Reserved for future conversation restore control
|
|
402
|
-
});
|
|
403
|
-
```
|
|
404
|
-
|
|
405
|
-
After a successful fork or clone, pi emits `session_shutdown` for the old extension instance, reloads and rebinds extensions for the new session, then emits `session_start` with `reason: "fork"` and `previousSessionFile`.
|
|
406
|
-
Do cleanup work in `session_shutdown`, then reestablish any in-memory state in `session_start`.
|
|
407
|
-
|
|
408
|
-
#### session_before_compact / session_compact
|
|
409
|
-
|
|
410
|
-
Fired on compaction. See [compaction.md](compaction.md) for details.
|
|
411
|
-
|
|
412
|
-
```typescript
|
|
413
|
-
pi.on("session_before_compact", async (event, ctx) => {
|
|
414
|
-
const { preparation, branchEntries, customInstructions, signal } = event;
|
|
415
|
-
|
|
416
|
-
// Cancel:
|
|
417
|
-
return { cancel: true };
|
|
418
|
-
|
|
419
|
-
// Custom summary:
|
|
420
|
-
return {
|
|
421
|
-
compaction: {
|
|
422
|
-
summary: "...",
|
|
423
|
-
firstKeptEntryId: preparation.firstKeptEntryId,
|
|
424
|
-
tokensBefore: preparation.tokensBefore,
|
|
425
|
-
}
|
|
426
|
-
};
|
|
427
|
-
});
|
|
428
|
-
|
|
429
|
-
pi.on("session_compact", async (event, ctx) => {
|
|
430
|
-
// event.compactionEntry - the saved compaction
|
|
431
|
-
// event.fromExtension - whether extension provided it
|
|
432
|
-
});
|
|
433
|
-
```
|
|
434
|
-
|
|
435
|
-
#### session_before_tree / session_tree
|
|
436
|
-
|
|
437
|
-
Fired on `/tree` navigation. See [Sessions](sessions.md) for tree navigation concepts.
|
|
438
|
-
|
|
439
|
-
```typescript
|
|
440
|
-
pi.on("session_before_tree", async (event, ctx) => {
|
|
441
|
-
const { preparation, signal } = event;
|
|
442
|
-
return { cancel: true };
|
|
443
|
-
// OR provide custom summary:
|
|
444
|
-
return { summary: { summary: "...", details: {} } };
|
|
445
|
-
});
|
|
446
|
-
|
|
447
|
-
pi.on("session_tree", async (event, ctx) => {
|
|
448
|
-
// event.newLeafId, oldLeafId, summaryEntry, fromExtension
|
|
449
|
-
});
|
|
450
|
-
```
|
|
451
|
-
|
|
452
|
-
#### session_shutdown
|
|
453
|
-
|
|
454
|
-
Fired before an extension runtime is torn down.
|
|
455
|
-
|
|
456
|
-
```typescript
|
|
457
|
-
pi.on("session_shutdown", async (event, ctx) => {
|
|
458
|
-
// event.reason - "quit" | "reload" | "new" | "resume" | "fork"
|
|
459
|
-
// event.targetSessionFile - destination session for session replacement flows
|
|
460
|
-
// Cleanup, save state, etc.
|
|
461
|
-
});
|
|
462
|
-
```
|
|
463
|
-
|
|
464
|
-
### Agent Events
|
|
465
|
-
|
|
466
|
-
#### before_agent_start
|
|
467
|
-
|
|
468
|
-
Fired after user submits prompt, before agent loop. Can inject a message and/or modify the system prompt.
|
|
469
|
-
|
|
470
|
-
```typescript
|
|
471
|
-
pi.on("before_agent_start", async (event, ctx) => {
|
|
472
|
-
// event.prompt - user's prompt text
|
|
473
|
-
// event.images - attached images (if any)
|
|
474
|
-
// event.systemPrompt - current chained system prompt for this handler
|
|
475
|
-
// (includes changes from earlier before_agent_start handlers)
|
|
476
|
-
// event.systemPromptOptions - structured options used to build the system prompt
|
|
477
|
-
// .customPrompt - any custom system prompt (from --system-prompt, SYSTEM.md, or custom templates)
|
|
478
|
-
// .selectedTools - tools currently active in the prompt
|
|
479
|
-
// .toolSnippets - one-line descriptions for each tool
|
|
480
|
-
// .promptGuidelines - custom guideline bullets
|
|
481
|
-
// .appendSystemPrompt - text from --append-system-prompt flags
|
|
482
|
-
// .cwd - working directory
|
|
483
|
-
// .contextFiles - AGENTS.md files and other loaded context files
|
|
484
|
-
// .skills - loaded skills
|
|
485
|
-
|
|
486
|
-
return {
|
|
487
|
-
// Inject a persistent message (stored in session, sent to LLM)
|
|
488
|
-
message: {
|
|
489
|
-
customType: "my-extension",
|
|
490
|
-
content: "Additional context for the LLM",
|
|
491
|
-
display: true,
|
|
492
|
-
},
|
|
493
|
-
// Replace the system prompt for this turn (chained across extensions)
|
|
494
|
-
systemPrompt: event.systemPrompt + "\n\nExtra instructions for this turn...",
|
|
495
|
-
};
|
|
496
|
-
});
|
|
497
|
-
```
|
|
498
|
-
|
|
499
|
-
The `systemPromptOptions` field gives extensions access to the same structured data Pi uses to build the system prompt. This lets you inspect what Pi has loaded — custom prompts, guidelines, tool snippets, context files, skills — without re-discovering resources or re-parsing flags. Use it when your extension needs to make deep, informed changes to the system prompt while respecting user-provided configuration.
|
|
500
|
-
|
|
501
|
-
Inside `before_agent_start`, `event.systemPrompt` and `ctx.getSystemPrompt()` both reflect the chained system prompt as of the current handler. Later `before_agent_start` handlers can still modify it again.
|
|
502
|
-
|
|
503
|
-
#### agent_start / agent_end
|
|
504
|
-
|
|
505
|
-
Fired once per user prompt.
|
|
506
|
-
|
|
507
|
-
```typescript
|
|
508
|
-
pi.on("agent_start", async (_event, ctx) => {});
|
|
509
|
-
|
|
510
|
-
pi.on("agent_end", async (event, ctx) => {
|
|
511
|
-
// event.messages - messages from this prompt
|
|
512
|
-
});
|
|
513
|
-
```
|
|
514
|
-
|
|
515
|
-
#### turn_start / turn_end
|
|
516
|
-
|
|
517
|
-
Fired for each turn (one LLM response + tool calls).
|
|
518
|
-
|
|
519
|
-
```typescript
|
|
520
|
-
pi.on("turn_start", async (event, ctx) => {
|
|
521
|
-
// event.turnIndex, event.timestamp
|
|
522
|
-
});
|
|
523
|
-
|
|
524
|
-
pi.on("turn_end", async (event, ctx) => {
|
|
525
|
-
// event.turnIndex, event.message, event.toolResults
|
|
526
|
-
});
|
|
527
|
-
```
|
|
528
|
-
|
|
529
|
-
#### message_start / message_update / message_end
|
|
530
|
-
|
|
531
|
-
Fired for message lifecycle updates.
|
|
532
|
-
|
|
533
|
-
- `message_start` and `message_end` fire for user, assistant, and toolResult messages.
|
|
534
|
-
- `message_update` fires for assistant streaming updates.
|
|
535
|
-
- `message_end` handlers can return `{ message }` to replace the finalized message. The replacement must keep the same `role`.
|
|
536
|
-
|
|
537
|
-
```typescript
|
|
538
|
-
pi.on("message_start", async (event, ctx) => {
|
|
539
|
-
// event.message
|
|
540
|
-
});
|
|
541
|
-
|
|
542
|
-
pi.on("message_update", async (event, ctx) => {
|
|
543
|
-
// event.message
|
|
544
|
-
// event.assistantMessageEvent (token-by-token stream event)
|
|
545
|
-
});
|
|
546
|
-
|
|
547
|
-
pi.on("message_end", async (event, ctx) => {
|
|
548
|
-
if (event.message.role !== "assistant") return;
|
|
549
|
-
|
|
550
|
-
return {
|
|
551
|
-
message: {
|
|
552
|
-
...event.message,
|
|
553
|
-
usage: {
|
|
554
|
-
...event.message.usage,
|
|
555
|
-
cost: {
|
|
556
|
-
...event.message.usage.cost,
|
|
557
|
-
total: 0.123,
|
|
558
|
-
},
|
|
559
|
-
},
|
|
560
|
-
},
|
|
561
|
-
};
|
|
562
|
-
});
|
|
563
|
-
```
|
|
564
|
-
|
|
565
|
-
#### tool_execution_start / tool_execution_update / tool_execution_end
|
|
566
|
-
|
|
567
|
-
Fired for tool execution lifecycle updates.
|
|
568
|
-
|
|
569
|
-
In parallel tool mode:
|
|
570
|
-
- `tool_execution_start` is emitted in assistant source order during the preflight phase
|
|
571
|
-
- `tool_execution_update` events may interleave across tools
|
|
572
|
-
- `tool_execution_end` is emitted in tool completion order after each tool is finalized
|
|
573
|
-
- final `toolResult` message events are still emitted later in assistant source order
|
|
574
|
-
|
|
575
|
-
```typescript
|
|
576
|
-
pi.on("tool_execution_start", async (event, ctx) => {
|
|
577
|
-
// event.toolCallId, event.toolName, event.args
|
|
578
|
-
});
|
|
579
|
-
|
|
580
|
-
pi.on("tool_execution_update", async (event, ctx) => {
|
|
581
|
-
// event.toolCallId, event.toolName, event.args, event.partialResult
|
|
582
|
-
});
|
|
583
|
-
|
|
584
|
-
pi.on("tool_execution_end", async (event, ctx) => {
|
|
585
|
-
// event.toolCallId, event.toolName, event.result, event.isError
|
|
586
|
-
});
|
|
587
|
-
```
|
|
588
|
-
|
|
589
|
-
#### context
|
|
590
|
-
|
|
591
|
-
Fired before each LLM call. Modify messages non-destructively. See [Session Format](session-format.md) for message types.
|
|
592
|
-
|
|
593
|
-
```typescript
|
|
594
|
-
pi.on("context", async (event, ctx) => {
|
|
595
|
-
// event.messages - deep copy, safe to modify
|
|
596
|
-
const filtered = event.messages.filter(m => !shouldPrune(m));
|
|
597
|
-
return { messages: filtered };
|
|
598
|
-
});
|
|
599
|
-
```
|
|
600
|
-
|
|
601
|
-
#### before_provider_request
|
|
602
|
-
|
|
603
|
-
Fired after the provider-specific payload is built, right before the request is sent. Handlers run in extension load order. Returning `undefined` keeps the payload unchanged. Returning any other value replaces the payload for later handlers and for the actual request.
|
|
604
|
-
|
|
605
|
-
This hook can rewrite provider-level system instructions or remove them entirely. Those payload-level changes are not reflected by `ctx.getSystemPrompt()`, which reports Pi's system prompt string rather than the final serialized provider payload.
|
|
606
|
-
|
|
607
|
-
```typescript
|
|
608
|
-
pi.on("before_provider_request", (event, ctx) => {
|
|
609
|
-
console.log(JSON.stringify(event.payload, null, 2));
|
|
610
|
-
|
|
611
|
-
// Optional: replace payload
|
|
612
|
-
// return { ...event.payload, temperature: 0 };
|
|
613
|
-
});
|
|
614
|
-
```
|
|
615
|
-
|
|
616
|
-
This is mainly useful for debugging provider serialization and cache behavior.
|
|
617
|
-
|
|
618
|
-
#### after_provider_response
|
|
619
|
-
|
|
620
|
-
Fired after an HTTP response is received and before its stream body is consumed. Handlers run in extension load order.
|
|
621
|
-
|
|
622
|
-
```typescript
|
|
623
|
-
pi.on("after_provider_response", (event, ctx) => {
|
|
624
|
-
// event.status - HTTP status code
|
|
625
|
-
// event.headers - normalized response headers
|
|
626
|
-
if (event.status === 429) {
|
|
627
|
-
console.log("rate limited", event.headers["retry-after"]);
|
|
628
|
-
}
|
|
629
|
-
});
|
|
630
|
-
```
|
|
631
|
-
|
|
632
|
-
Header availability depends on provider and transport. Providers that abstract HTTP responses may not expose headers.
|
|
633
|
-
|
|
634
|
-
### Model Events
|
|
635
|
-
|
|
636
|
-
#### model_select
|
|
637
|
-
|
|
638
|
-
Fired when the model changes via `/model` command, model cycling (`Ctrl+P`), or session restore.
|
|
639
|
-
|
|
640
|
-
```typescript
|
|
641
|
-
pi.on("model_select", async (event, ctx) => {
|
|
642
|
-
// event.model - newly selected model
|
|
643
|
-
// event.previousModel - previous model (undefined if first selection)
|
|
644
|
-
// event.source - "set" | "cycle" | "restore"
|
|
645
|
-
|
|
646
|
-
const prev = event.previousModel
|
|
647
|
-
? `${event.previousModel.provider}/${event.previousModel.id}`
|
|
648
|
-
: "none";
|
|
649
|
-
const next = `${event.model.provider}/${event.model.id}`;
|
|
650
|
-
|
|
651
|
-
ctx.ui.notify(`Model changed (${event.source}): ${prev} -> ${next}`, "info");
|
|
652
|
-
});
|
|
653
|
-
```
|
|
654
|
-
|
|
655
|
-
Use this to update UI elements (status bars, footers) or perform model-specific initialization when the active model changes.
|
|
656
|
-
|
|
657
|
-
#### thinking_level_select
|
|
658
|
-
|
|
659
|
-
Fired when the thinking level changes. This is notification-only; handler return values are ignored.
|
|
660
|
-
|
|
661
|
-
```typescript
|
|
662
|
-
pi.on("thinking_level_select", async (event, ctx) => {
|
|
663
|
-
// event.level - newly selected thinking level
|
|
664
|
-
// event.previousLevel - previous thinking level
|
|
665
|
-
|
|
666
|
-
ctx.ui.setStatus("thinking", `thinking: ${event.level}`);
|
|
667
|
-
});
|
|
668
|
-
```
|
|
669
|
-
|
|
670
|
-
Use this to update extension UI when `pi.setThinkingLevel()`, model changes, or built-in thinking-level controls change the active thinking level.
|
|
671
|
-
|
|
672
|
-
### Tool Events
|
|
673
|
-
|
|
674
|
-
#### tool_call
|
|
675
|
-
|
|
676
|
-
Fired after `tool_execution_start`, before the tool executes. **Can block.** Use `isToolCallEventType` to narrow and get typed inputs.
|
|
677
|
-
|
|
678
|
-
Before `tool_call` runs, pi waits for previously emitted Agent events to finish draining through `AgentSession`. This means `ctx.sessionManager` is up to date through the current assistant tool-calling message.
|
|
679
|
-
|
|
680
|
-
In the default parallel tool execution mode, sibling tool calls from the same assistant message are preflighted sequentially, then executed concurrently. `tool_call` is not guaranteed to see sibling tool results from that same assistant message in `ctx.sessionManager`.
|
|
681
|
-
|
|
682
|
-
`event.input` is mutable. Mutate it in place to patch tool arguments before execution.
|
|
683
|
-
|
|
684
|
-
Behavior guarantees:
|
|
685
|
-
- Mutations to `event.input` affect the actual tool execution
|
|
686
|
-
- Later `tool_call` handlers see mutations made by earlier handlers
|
|
687
|
-
- No re-validation is performed after your mutation
|
|
688
|
-
- Return values from `tool_call` only control blocking via `{ block: true, reason?: string }`
|
|
689
|
-
|
|
690
|
-
```typescript
|
|
691
|
-
import { isToolCallEventType } from "@earendil-works/pi-coding-agent";
|
|
692
|
-
|
|
693
|
-
pi.on("tool_call", async (event, ctx) => {
|
|
694
|
-
// event.toolName - "bash", "read", "write", "edit", etc.
|
|
695
|
-
// event.toolCallId
|
|
696
|
-
// event.input - tool parameters (mutable)
|
|
697
|
-
|
|
698
|
-
// Built-in tools: no type params needed
|
|
699
|
-
if (isToolCallEventType("bash", event)) {
|
|
700
|
-
// event.input is { command: string; timeout?: number }
|
|
701
|
-
event.input.command = `source ~/.profile\n${event.input.command}`;
|
|
702
|
-
|
|
703
|
-
if (event.input.command.includes("rm -rf")) {
|
|
704
|
-
return { block: true, reason: "Dangerous command" };
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
if (isToolCallEventType("read", event)) {
|
|
709
|
-
// event.input is { path: string; offset?: number; limit?: number }
|
|
710
|
-
console.log(`Reading: ${event.input.path}`);
|
|
711
|
-
}
|
|
712
|
-
});
|
|
713
|
-
```
|
|
714
|
-
|
|
715
|
-
#### Typing custom tool input
|
|
716
|
-
|
|
717
|
-
Custom tools should export their input type:
|
|
718
|
-
|
|
719
|
-
```typescript
|
|
720
|
-
// my-extension.ts
|
|
721
|
-
export type MyToolInput = Static<typeof myToolSchema>;
|
|
722
|
-
```
|
|
723
|
-
|
|
724
|
-
Use `isToolCallEventType` with explicit type parameters:
|
|
725
|
-
|
|
726
|
-
```typescript
|
|
727
|
-
import { isToolCallEventType } from "@earendil-works/pi-coding-agent";
|
|
728
|
-
import type { MyToolInput } from "my-extension";
|
|
729
|
-
|
|
730
|
-
pi.on("tool_call", (event) => {
|
|
731
|
-
if (isToolCallEventType<"my_tool", MyToolInput>("my_tool", event)) {
|
|
732
|
-
event.input.action; // typed
|
|
733
|
-
}
|
|
734
|
-
});
|
|
735
|
-
```
|
|
736
|
-
|
|
737
|
-
#### tool_result
|
|
738
|
-
|
|
739
|
-
Fired after tool execution finishes and before `tool_execution_end` plus the final tool result message events are emitted. **Can modify result.**
|
|
740
|
-
|
|
741
|
-
In parallel tool mode, `tool_result` and `tool_execution_end` may interleave in tool completion order, while final `toolResult` message events are still emitted later in assistant source order.
|
|
742
|
-
|
|
743
|
-
`tool_result` handlers chain like middleware:
|
|
744
|
-
- Handlers run in extension load order
|
|
745
|
-
- Each handler sees the latest result after previous handler changes
|
|
746
|
-
- Handlers can return partial patches (`content`, `details`, or `isError`); omitted fields keep their current values
|
|
747
|
-
|
|
748
|
-
Use `ctx.signal` for nested async work inside the handler. This lets Esc cancel model calls, `fetch()`, and other abort-aware operations started by the extension.
|
|
749
|
-
|
|
750
|
-
```typescript
|
|
751
|
-
import { isBashToolResult } from "@earendil-works/pi-coding-agent";
|
|
752
|
-
|
|
753
|
-
pi.on("tool_result", async (event, ctx) => {
|
|
754
|
-
// event.toolName, event.toolCallId, event.input
|
|
755
|
-
// event.content, event.details, event.isError
|
|
756
|
-
|
|
757
|
-
if (isBashToolResult(event)) {
|
|
758
|
-
// event.details is typed as BashToolDetails
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
const response = await fetch("https://example.com/summarize", {
|
|
762
|
-
method: "POST",
|
|
763
|
-
body: JSON.stringify({ content: event.content }),
|
|
764
|
-
signal: ctx.signal,
|
|
765
|
-
});
|
|
766
|
-
|
|
767
|
-
// Modify result:
|
|
768
|
-
return { content: [...], details: {...}, isError: false };
|
|
769
|
-
});
|
|
770
|
-
```
|
|
771
|
-
|
|
772
|
-
### User Bash Events
|
|
773
|
-
|
|
774
|
-
#### user_bash
|
|
775
|
-
|
|
776
|
-
Fired when user executes `!` or `!!` commands. **Can intercept.**
|
|
777
|
-
|
|
778
|
-
```typescript
|
|
779
|
-
import { createLocalBashOperations } from "@earendil-works/pi-coding-agent";
|
|
780
|
-
|
|
781
|
-
pi.on("user_bash", (event, ctx) => {
|
|
782
|
-
// event.command - the bash command
|
|
783
|
-
// event.excludeFromContext - true if !! prefix
|
|
784
|
-
// event.cwd - working directory
|
|
785
|
-
|
|
786
|
-
// Option 1: Provide custom operations (e.g., SSH)
|
|
787
|
-
return { operations: remoteBashOps };
|
|
788
|
-
|
|
789
|
-
// Option 2: Wrap pi's built-in local bash backend
|
|
790
|
-
const local = createLocalBashOperations();
|
|
791
|
-
return {
|
|
792
|
-
operations: {
|
|
793
|
-
exec(command, cwd, options) {
|
|
794
|
-
return local.exec(`source ~/.profile\n${command}`, cwd, options);
|
|
795
|
-
}
|
|
796
|
-
}
|
|
797
|
-
};
|
|
798
|
-
|
|
799
|
-
// Option 3: Full replacement - return result directly
|
|
800
|
-
return { result: { output: "...", exitCode: 0, cancelled: false, truncated: false } };
|
|
801
|
-
});
|
|
802
|
-
```
|
|
803
|
-
|
|
804
|
-
### Input Events
|
|
805
|
-
|
|
806
|
-
#### input
|
|
807
|
-
|
|
808
|
-
Fired when user input is received, after extension commands are checked but before skill and template expansion. The event sees the raw input text, so `/skill:foo` and `/template` are not yet expanded.
|
|
809
|
-
|
|
810
|
-
**Processing order:**
|
|
811
|
-
1. Extension commands (`/cmd`) checked first - if found, handler runs and input event is skipped
|
|
812
|
-
2. `input` event fires - can intercept, transform, or handle
|
|
813
|
-
3. If not handled: skill commands (`/skill:name`) expanded to skill content
|
|
814
|
-
4. If not handled: prompt templates (`/template`) expanded to template content
|
|
815
|
-
5. Agent processing begins (`before_agent_start`, etc.)
|
|
816
|
-
|
|
817
|
-
```typescript
|
|
818
|
-
pi.on("input", async (event, ctx) => {
|
|
819
|
-
// event.text - raw input (before skill/template expansion)
|
|
820
|
-
// event.images - attached images, if any
|
|
821
|
-
// event.source - "interactive" (typed), "rpc" (API), or "extension" (via sendUserMessage)
|
|
822
|
-
|
|
823
|
-
// Transform: rewrite input before expansion
|
|
824
|
-
if (event.text.startsWith("?quick "))
|
|
825
|
-
return { action: "transform", text: `Respond briefly: ${event.text.slice(7)}` };
|
|
826
|
-
|
|
827
|
-
// Handle: respond without LLM (extension shows its own feedback)
|
|
828
|
-
if (event.text === "ping") {
|
|
829
|
-
ctx.ui.notify("pong", "info");
|
|
830
|
-
return { action: "handled" };
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
// Route by source: skip processing for extension-injected messages
|
|
834
|
-
if (event.source === "extension") return { action: "continue" };
|
|
835
|
-
|
|
836
|
-
// Intercept skill commands before expansion
|
|
837
|
-
if (event.text.startsWith("/skill:")) {
|
|
838
|
-
// Could transform, block, or let pass through
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
return { action: "continue" }; // Default: pass through to expansion
|
|
842
|
-
});
|
|
843
|
-
```
|
|
844
|
-
|
|
845
|
-
**Results:**
|
|
846
|
-
- `continue` - pass through unchanged (default if handler returns nothing)
|
|
847
|
-
- `transform` - modify text/images, then continue to expansion
|
|
848
|
-
- `handled` - skip agent entirely (first handler to return this wins)
|
|
849
|
-
|
|
850
|
-
Transforms chain across handlers. See [input-transform.ts](../examples/extensions/input-transform.ts).
|
|
851
|
-
|
|
852
|
-
## ExtensionContext
|
|
853
|
-
|
|
854
|
-
All handlers receive `ctx: ExtensionContext`.
|
|
855
|
-
|
|
856
|
-
### ctx.ui
|
|
857
|
-
|
|
858
|
-
UI methods for user interaction. See [Custom UI](#custom-ui) for full details.
|
|
859
|
-
|
|
860
|
-
### ctx.hasUI
|
|
861
|
-
|
|
862
|
-
`false` in print mode (`-p`) and JSON mode. `true` in interactive and RPC mode. In RPC mode, dialog methods (`select`, `confirm`, `input`, `editor`) work via the extension UI sub-protocol, and fire-and-forget methods (`notify`, `setStatus`, `setWidget`, `setTitle`, `setEditorText`) emit requests to the client. Some TUI-specific methods are no-ops or return defaults (see [rpc.md](rpc.md#extension-ui-protocol)).
|
|
863
|
-
|
|
864
|
-
### ctx.cwd
|
|
865
|
-
|
|
866
|
-
Current working directory.
|
|
867
|
-
|
|
868
|
-
### ctx.sessionManager
|
|
869
|
-
|
|
870
|
-
Read-only access to session state. See [Session Format](session-format.md) for the full SessionManager API and entry types.
|
|
871
|
-
|
|
872
|
-
For `tool_call`, this state is synchronized through the current assistant message before handlers run. In parallel tool execution mode it is still not guaranteed to include sibling tool results from the same assistant message.
|
|
873
|
-
|
|
874
|
-
```typescript
|
|
875
|
-
ctx.sessionManager.getEntries() // All entries
|
|
876
|
-
ctx.sessionManager.getBranch() // Current branch
|
|
877
|
-
ctx.sessionManager.getLeafId() // Current leaf entry ID
|
|
878
|
-
```
|
|
879
|
-
|
|
880
|
-
### ctx.modelRegistry / ctx.model
|
|
881
|
-
|
|
882
|
-
Access to models and API keys.
|
|
883
|
-
|
|
884
|
-
### ctx.signal
|
|
885
|
-
|
|
886
|
-
The current agent abort signal, or `undefined` when no agent turn is active.
|
|
887
|
-
|
|
888
|
-
Use this for abort-aware nested work started by extension handlers, for example:
|
|
889
|
-
- `fetch(..., { signal: ctx.signal })`
|
|
890
|
-
- model calls that accept `signal`
|
|
891
|
-
- file or process helpers that accept `AbortSignal`
|
|
892
|
-
|
|
893
|
-
`ctx.signal` is typically defined during active turn events such as `tool_call`, `tool_result`, `message_update`, and `turn_end`.
|
|
894
|
-
It is usually `undefined` in idle or non-turn contexts such as session events, extension commands, and shortcuts fired while pi is idle.
|
|
895
|
-
|
|
896
|
-
```typescript
|
|
897
|
-
pi.on("tool_result", async (event, ctx) => {
|
|
898
|
-
const response = await fetch("https://example.com/api", {
|
|
899
|
-
method: "POST",
|
|
900
|
-
body: JSON.stringify(event),
|
|
901
|
-
signal: ctx.signal,
|
|
902
|
-
});
|
|
903
|
-
|
|
904
|
-
const data = await response.json();
|
|
905
|
-
return { details: data };
|
|
906
|
-
});
|
|
907
|
-
```
|
|
908
|
-
|
|
909
|
-
### ctx.isIdle() / ctx.abort() / ctx.hasPendingMessages()
|
|
910
|
-
|
|
911
|
-
Control flow helpers.
|
|
912
|
-
|
|
913
|
-
### ctx.shutdown()
|
|
914
|
-
|
|
915
|
-
Request a graceful shutdown of pi.
|
|
916
|
-
|
|
917
|
-
- **Interactive mode:** Deferred until the agent becomes idle (after processing all queued steering and follow-up messages).
|
|
918
|
-
- **RPC mode:** Deferred until the next idle state (after completing the current command response, when waiting for the next command).
|
|
919
|
-
- **Print mode:** No-op. The process exits automatically when all prompts are processed.
|
|
920
|
-
|
|
921
|
-
Emits `session_shutdown` event to all extensions before exiting. Available in all contexts (event handlers, tools, commands, shortcuts).
|
|
922
|
-
|
|
923
|
-
```typescript
|
|
924
|
-
pi.on("tool_call", (event, ctx) => {
|
|
925
|
-
if (isFatal(event.input)) {
|
|
926
|
-
ctx.shutdown();
|
|
927
|
-
}
|
|
928
|
-
});
|
|
929
|
-
```
|
|
930
|
-
|
|
931
|
-
### ctx.getContextUsage()
|
|
932
|
-
|
|
933
|
-
Returns current context usage for the active model. Uses last assistant usage when available, then estimates tokens for trailing messages.
|
|
934
|
-
|
|
935
|
-
```typescript
|
|
936
|
-
const usage = ctx.getContextUsage();
|
|
937
|
-
if (usage && usage.tokens > 100_000) {
|
|
938
|
-
// ...
|
|
939
|
-
}
|
|
940
|
-
```
|
|
941
|
-
|
|
942
|
-
### ctx.compact()
|
|
943
|
-
|
|
944
|
-
Trigger compaction without awaiting completion. Use `onComplete` and `onError` for follow-up actions.
|
|
945
|
-
|
|
946
|
-
```typescript
|
|
947
|
-
ctx.compact({
|
|
948
|
-
customInstructions: "Focus on recent changes",
|
|
949
|
-
onComplete: (result) => {
|
|
950
|
-
ctx.ui.notify("Compaction completed", "info");
|
|
951
|
-
},
|
|
952
|
-
onError: (error) => {
|
|
953
|
-
ctx.ui.notify(`Compaction failed: ${error.message}`, "error");
|
|
954
|
-
},
|
|
955
|
-
});
|
|
956
|
-
```
|
|
957
|
-
|
|
958
|
-
### ctx.getSystemPrompt()
|
|
959
|
-
|
|
960
|
-
Returns Pi's current system prompt string.
|
|
961
|
-
|
|
962
|
-
- During `before_agent_start`, this reflects chained system-prompt changes made so far for the current turn.
|
|
963
|
-
- It does not include later `context` message mutations.
|
|
964
|
-
- It does not include `before_provider_request` payload rewrites.
|
|
965
|
-
- If later-loaded extensions run after yours, they can still change what is ultimately sent.
|
|
966
|
-
|
|
967
|
-
```typescript
|
|
968
|
-
pi.on("before_agent_start", (event, ctx) => {
|
|
969
|
-
const prompt = ctx.getSystemPrompt();
|
|
970
|
-
console.log(`System prompt length: ${prompt.length}`);
|
|
971
|
-
});
|
|
972
|
-
```
|
|
973
|
-
|
|
974
|
-
## ExtensionCommandContext
|
|
975
|
-
|
|
976
|
-
Command handlers receive `ExtensionCommandContext`, which extends `ExtensionContext` with session control methods. These are only available in commands because they can deadlock if called from event handlers.
|
|
977
|
-
|
|
978
|
-
### ctx.waitForIdle()
|
|
979
|
-
|
|
980
|
-
Wait for the agent to finish streaming:
|
|
981
|
-
|
|
982
|
-
```typescript
|
|
983
|
-
pi.registerCommand("my-cmd", {
|
|
984
|
-
handler: async (args, ctx) => {
|
|
985
|
-
await ctx.waitForIdle();
|
|
986
|
-
// Agent is now idle, safe to modify session
|
|
987
|
-
},
|
|
988
|
-
});
|
|
989
|
-
```
|
|
990
|
-
|
|
991
|
-
### ctx.newSession(options?)
|
|
992
|
-
|
|
993
|
-
Create a new session:
|
|
994
|
-
|
|
995
|
-
```typescript
|
|
996
|
-
const parentSession = ctx.sessionManager.getSessionFile();
|
|
997
|
-
const kickoff = "Continue in the replacement session";
|
|
998
|
-
|
|
999
|
-
const result = await ctx.newSession({
|
|
1000
|
-
parentSession,
|
|
1001
|
-
setup: async (sm) => {
|
|
1002
|
-
sm.appendMessage({
|
|
1003
|
-
role: "user",
|
|
1004
|
-
content: [{ type: "text", text: "Context from previous session..." }],
|
|
1005
|
-
timestamp: Date.now(),
|
|
1006
|
-
});
|
|
1007
|
-
},
|
|
1008
|
-
withSession: async (ctx) => {
|
|
1009
|
-
// Use only the replacement-session ctx here.
|
|
1010
|
-
await ctx.sendUserMessage(kickoff);
|
|
1011
|
-
},
|
|
1012
|
-
});
|
|
1013
|
-
|
|
1014
|
-
if (result.cancelled) {
|
|
1015
|
-
// An extension cancelled the new session
|
|
1016
|
-
}
|
|
1017
|
-
```
|
|
1018
|
-
|
|
1019
|
-
Options:
|
|
1020
|
-
- `parentSession`: parent session file to record in the new session header
|
|
1021
|
-
- `setup`: mutate the new session's `SessionManager` before `withSession` runs
|
|
1022
|
-
- `withSession`: run post-switch work against a fresh replacement-session context. Do not use captured old `pi` / command `ctx`; see [Session replacement lifecycle and footguns](#session-replacement-lifecycle-and-footguns).
|
|
1023
|
-
|
|
1024
|
-
### ctx.fork(entryId, options?)
|
|
1025
|
-
|
|
1026
|
-
Fork from a specific entry, creating a new session file:
|
|
1027
|
-
|
|
1028
|
-
```typescript
|
|
1029
|
-
const result = await ctx.fork("entry-id-123", {
|
|
1030
|
-
withSession: async (ctx) => {
|
|
1031
|
-
// Use only the replacement-session ctx here.
|
|
1032
|
-
ctx.ui.notify("Now in the forked session", "info");
|
|
1033
|
-
},
|
|
1034
|
-
});
|
|
1035
|
-
if (result.cancelled) {
|
|
1036
|
-
// An extension cancelled the fork
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
const cloneResult = await ctx.fork("entry-id-456", { position: "at" });
|
|
1040
|
-
if (cloneResult.cancelled) {
|
|
1041
|
-
// An extension cancelled the clone
|
|
1042
|
-
}
|
|
1043
|
-
```
|
|
1044
|
-
|
|
1045
|
-
Options:
|
|
1046
|
-
- `position`: `"before"` (default) forks before the selected user message, restoring that prompt into the editor
|
|
1047
|
-
- `position`: `"at"` duplicates the active path through the selected entry without restoring editor text
|
|
1048
|
-
- `withSession`: run post-switch work against a fresh replacement-session context. Do not use captured old `pi` / command `ctx`; see [Session replacement lifecycle and footguns](#session-replacement-lifecycle-and-footguns).
|
|
1049
|
-
|
|
1050
|
-
### ctx.navigateTree(targetId, options?)
|
|
1051
|
-
|
|
1052
|
-
Navigate to a different point in the session tree:
|
|
1053
|
-
|
|
1054
|
-
```typescript
|
|
1055
|
-
const result = await ctx.navigateTree("entry-id-456", {
|
|
1056
|
-
summarize: true,
|
|
1057
|
-
customInstructions: "Focus on error handling changes",
|
|
1058
|
-
replaceInstructions: false, // true = replace default prompt entirely
|
|
1059
|
-
label: "review-checkpoint",
|
|
1060
|
-
});
|
|
1061
|
-
```
|
|
1062
|
-
|
|
1063
|
-
Options:
|
|
1064
|
-
- `summarize`: Whether to generate a summary of the abandoned branch
|
|
1065
|
-
- `customInstructions`: Custom instructions for the summarizer
|
|
1066
|
-
- `replaceInstructions`: If true, `customInstructions` replaces the default prompt instead of being appended
|
|
1067
|
-
- `label`: Label to attach to the branch summary entry (or target entry if not summarizing)
|
|
1068
|
-
|
|
1069
|
-
### ctx.switchSession(sessionPath, options?)
|
|
1070
|
-
|
|
1071
|
-
Switch to a different session file:
|
|
1072
|
-
|
|
1073
|
-
```typescript
|
|
1074
|
-
const result = await ctx.switchSession("/path/to/session.jsonl", {
|
|
1075
|
-
withSession: async (ctx) => {
|
|
1076
|
-
await ctx.sendUserMessage("Resume work in the replacement session");
|
|
1077
|
-
},
|
|
1078
|
-
});
|
|
1079
|
-
if (result.cancelled) {
|
|
1080
|
-
// An extension cancelled the switch via session_before_switch
|
|
1081
|
-
}
|
|
1082
|
-
```
|
|
1083
|
-
|
|
1084
|
-
Options:
|
|
1085
|
-
- `withSession`: run post-switch work against a fresh replacement-session context. Do not use captured old `pi` / command `ctx`; see [Session replacement lifecycle and footguns](#session-replacement-lifecycle-and-footguns).
|
|
1086
|
-
|
|
1087
|
-
To discover available sessions, use the static `SessionManager.list()` or `SessionManager.listAll()` methods:
|
|
1088
|
-
|
|
1089
|
-
```typescript
|
|
1090
|
-
import { SessionManager } from "@earendil-works/pi-coding-agent";
|
|
1091
|
-
|
|
1092
|
-
pi.registerCommand("switch", {
|
|
1093
|
-
description: "Switch to another session",
|
|
1094
|
-
handler: async (args, ctx) => {
|
|
1095
|
-
const sessions = await SessionManager.list(ctx.cwd);
|
|
1096
|
-
if (sessions.length === 0) return;
|
|
1097
|
-
const choice = await ctx.ui.select(
|
|
1098
|
-
"Pick session:",
|
|
1099
|
-
sessions.map(s => s.file),
|
|
1100
|
-
);
|
|
1101
|
-
if (choice) {
|
|
1102
|
-
await ctx.switchSession(choice, {
|
|
1103
|
-
withSession: async (ctx) => {
|
|
1104
|
-
ctx.ui.notify("Switched session", "info");
|
|
1105
|
-
},
|
|
1106
|
-
});
|
|
1107
|
-
}
|
|
1108
|
-
},
|
|
1109
|
-
});
|
|
1110
|
-
```
|
|
1111
|
-
|
|
1112
|
-
### Session replacement lifecycle and footguns
|
|
1113
|
-
|
|
1114
|
-
`withSession` receives a fresh `ReplacedSessionContext`, which extends `ExtensionCommandContext` with async `sendMessage()` and `sendUserMessage()` helpers bound to the replacement session.
|
|
1115
|
-
|
|
1116
|
-
Lifecycle and footguns:
|
|
1117
|
-
- `withSession` runs only after the old session has emitted `session_shutdown`, the old runtime has been torn down, the replacement session has been rebound, and the new extension instance has already received `session_start`.
|
|
1118
|
-
- The callback still executes in the original closure, not inside the new extension instance. That means your old extension instance may already have run its shutdown cleanup before `withSession` starts.
|
|
1119
|
-
- Captured old `pi` / old command `ctx` session-bound objects are stale after replacement and will throw if used. Use only the `ctx` passed to `withSession` for session-bound work.
|
|
1120
|
-
- Previously extracted raw objects are still your responsibility. For example, if you capture `const sm = ctx.sessionManager` before replacement, `sm` is still the old `SessionManager` object. Do not reuse it after replacement.
|
|
1121
|
-
- Code in `withSession` should assume any state invalidated by your `session_shutdown` handler is already gone. Only capture plain data that survives shutdown cleanly, such as strings, ids, and serialized config.
|
|
1122
|
-
|
|
1123
|
-
Safe pattern:
|
|
1124
|
-
|
|
1125
|
-
```typescript
|
|
1126
|
-
pi.registerCommand("handoff", {
|
|
1127
|
-
handler: async (_args, ctx) => {
|
|
1128
|
-
const kickoff = "Continue from the replacement session";
|
|
1129
|
-
await ctx.newSession({
|
|
1130
|
-
withSession: async (ctx) => {
|
|
1131
|
-
await ctx.sendUserMessage(kickoff);
|
|
1132
|
-
},
|
|
1133
|
-
});
|
|
1134
|
-
},
|
|
1135
|
-
});
|
|
1136
|
-
```
|
|
1137
|
-
|
|
1138
|
-
Unsafe pattern:
|
|
1139
|
-
|
|
1140
|
-
```typescript
|
|
1141
|
-
pi.registerCommand("handoff", {
|
|
1142
|
-
handler: async (_args, ctx) => {
|
|
1143
|
-
const oldSessionManager = ctx.sessionManager;
|
|
1144
|
-
await ctx.newSession({
|
|
1145
|
-
withSession: async (_ctx) => {
|
|
1146
|
-
// stale old objects: do not do this
|
|
1147
|
-
oldSessionManager.getSessionFile();
|
|
1148
|
-
pi.sendUserMessage("wrong");
|
|
1149
|
-
},
|
|
1150
|
-
});
|
|
1151
|
-
},
|
|
1152
|
-
});
|
|
1153
|
-
```
|
|
1154
|
-
|
|
1155
|
-
### ctx.reload()
|
|
1156
|
-
|
|
1157
|
-
Run the same reload flow as `/reload`.
|
|
1158
|
-
|
|
1159
|
-
```typescript
|
|
1160
|
-
pi.registerCommand("reload-runtime", {
|
|
1161
|
-
description: "Reload extensions, skills, prompts, and themes",
|
|
1162
|
-
handler: async (_args, ctx) => {
|
|
1163
|
-
await ctx.reload();
|
|
1164
|
-
return;
|
|
1165
|
-
},
|
|
1166
|
-
});
|
|
1167
|
-
```
|
|
1168
|
-
|
|
1169
|
-
Important behavior:
|
|
1170
|
-
- `await ctx.reload()` emits `session_shutdown` for the current extension runtime
|
|
1171
|
-
- It then reloads resources and emits `session_start` with `reason: "reload"` and `resources_discover` with reason `"reload"`
|
|
1172
|
-
- The currently running command handler still continues in the old call frame
|
|
1173
|
-
- Code after `await ctx.reload()` still runs from the pre-reload version
|
|
1174
|
-
- Code after `await ctx.reload()` must not assume old in-memory extension state is still valid
|
|
1175
|
-
- After the handler returns, future commands/events/tool calls use the new extension version
|
|
1176
|
-
|
|
1177
|
-
For predictable behavior, treat reload as terminal for that handler (`await ctx.reload(); return;`).
|
|
1178
|
-
|
|
1179
|
-
Tools run with `ExtensionContext`, so they cannot call `ctx.reload()` directly. Use a command as the reload entrypoint, then expose a tool that queues that command as a follow-up user message.
|
|
1180
|
-
|
|
1181
|
-
Example tool the LLM can call to trigger reload:
|
|
1182
|
-
|
|
1183
|
-
```typescript
|
|
1184
|
-
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
1185
|
-
import { Type } from "typebox";
|
|
1186
|
-
|
|
1187
|
-
export default function (pi: ExtensionAPI) {
|
|
1188
|
-
pi.registerCommand("reload-runtime", {
|
|
1189
|
-
description: "Reload extensions, skills, prompts, and themes",
|
|
1190
|
-
handler: async (_args, ctx) => {
|
|
1191
|
-
await ctx.reload();
|
|
1192
|
-
return;
|
|
1193
|
-
},
|
|
1194
|
-
});
|
|
1195
|
-
|
|
1196
|
-
pi.registerTool({
|
|
1197
|
-
name: "reload_runtime",
|
|
1198
|
-
label: "Reload Runtime",
|
|
1199
|
-
description: "Reload extensions, skills, prompts, and themes",
|
|
1200
|
-
parameters: Type.Object({}),
|
|
1201
|
-
async execute() {
|
|
1202
|
-
pi.sendUserMessage("/reload-runtime", { deliverAs: "followUp" });
|
|
1203
|
-
return {
|
|
1204
|
-
content: [{ type: "text", text: "Queued /reload-runtime as a follow-up command." }],
|
|
1205
|
-
};
|
|
1206
|
-
},
|
|
1207
|
-
});
|
|
1208
|
-
}
|
|
1209
|
-
```
|
|
1210
|
-
|
|
1211
|
-
## ExtensionAPI Methods
|
|
1212
|
-
|
|
1213
|
-
### pi.on(event, handler)
|
|
1214
|
-
|
|
1215
|
-
Subscribe to events. See [Events](#events) for event types and return values.
|
|
1216
|
-
|
|
1217
|
-
### pi.registerTool(definition)
|
|
1218
|
-
|
|
1219
|
-
Register a custom tool callable by the LLM. See [Custom Tools](#custom-tools) for full details.
|
|
1220
|
-
|
|
1221
|
-
`pi.registerTool()` works both during extension load and after startup. You can call it inside `session_start`, command handlers, or other event handlers. New tools are refreshed immediately in the same session, so they appear in `pi.getAllTools()` and are callable by the LLM without `/reload`.
|
|
1222
|
-
|
|
1223
|
-
Use `pi.setActiveTools()` to enable or disable tools (including dynamically added tools) at runtime.
|
|
1224
|
-
|
|
1225
|
-
Use `promptSnippet` to opt a custom tool into a one-line entry in `Available tools`, and `promptGuidelines` to append tool-specific bullets to the default `Guidelines` section when the tool is active.
|
|
1226
|
-
|
|
1227
|
-
**Important:** `promptGuidelines` bullets are appended flat to the `Guidelines` section with no tool name prefix. Each guideline must name the tool it refers to — avoid "Use this tool when..." because the LLM cannot tell which tool "this" means. Write "Use my_tool when..." instead.
|
|
1228
|
-
|
|
1229
|
-
See [dynamic-tools.ts](../examples/extensions/dynamic-tools.ts) for a full example.
|
|
1230
|
-
|
|
1231
|
-
```typescript
|
|
1232
|
-
import { Type } from "typebox";
|
|
1233
|
-
import { StringEnum } from "@earendil-works/pi-ai";
|
|
1234
|
-
|
|
1235
|
-
pi.registerTool({
|
|
1236
|
-
name: "my_tool",
|
|
1237
|
-
label: "My Tool",
|
|
1238
|
-
description: "What this tool does",
|
|
1239
|
-
promptSnippet: "Summarize or transform text according to action",
|
|
1240
|
-
promptGuidelines: ["Use my_tool when the user asks to summarize previously generated text."],
|
|
1241
|
-
parameters: Type.Object({
|
|
1242
|
-
action: StringEnum(["list", "add"] as const),
|
|
1243
|
-
text: Type.Optional(Type.String()),
|
|
1244
|
-
}),
|
|
1245
|
-
prepareArguments(args) {
|
|
1246
|
-
// Optional compatibility shim. Runs before schema validation.
|
|
1247
|
-
// Return the current schema shape, for example to fold legacy fields
|
|
1248
|
-
// into the modern parameter object.
|
|
1249
|
-
return args;
|
|
1250
|
-
},
|
|
1251
|
-
|
|
1252
|
-
async execute(toolCallId, params, signal, onUpdate, ctx) {
|
|
1253
|
-
// Stream progress
|
|
1254
|
-
onUpdate?.({ content: [{ type: "text", text: "Working..." }] });
|
|
1255
|
-
|
|
1256
|
-
return {
|
|
1257
|
-
content: [{ type: "text", text: "Done" }],
|
|
1258
|
-
details: { result: "..." },
|
|
1259
|
-
};
|
|
1260
|
-
},
|
|
1261
|
-
|
|
1262
|
-
// Optional: Custom rendering
|
|
1263
|
-
renderCall(args, theme, context) { ... },
|
|
1264
|
-
renderResult(result, options, theme, context) { ... },
|
|
1265
|
-
});
|
|
1266
|
-
```
|
|
1267
|
-
|
|
1268
|
-
### pi.sendMessage(message, options?)
|
|
1269
|
-
|
|
1270
|
-
Inject a custom message into the session.
|
|
1271
|
-
|
|
1272
|
-
```typescript
|
|
1273
|
-
pi.sendMessage({
|
|
1274
|
-
customType: "my-extension",
|
|
1275
|
-
content: "Message text",
|
|
1276
|
-
display: true,
|
|
1277
|
-
details: { ... },
|
|
1278
|
-
}, {
|
|
1279
|
-
triggerTurn: true,
|
|
1280
|
-
deliverAs: "steer",
|
|
1281
|
-
});
|
|
1282
|
-
```
|
|
1283
|
-
|
|
1284
|
-
**Options:**
|
|
1285
|
-
- `deliverAs` - Delivery mode:
|
|
1286
|
-
- `"steer"` (default) - Queues the message while streaming. Delivered after the current assistant turn finishes executing its tool calls, before the next LLM call.
|
|
1287
|
-
- `"followUp"` - Waits for agent to finish. Delivered only when agent has no more tool calls.
|
|
1288
|
-
- `"nextTurn"` - Queued for next user prompt. Does not interrupt or trigger anything.
|
|
1289
|
-
- `triggerTurn: true` - If agent is idle, trigger an LLM response immediately. Only applies to `"steer"` and `"followUp"` modes (ignored for `"nextTurn"`).
|
|
1290
|
-
|
|
1291
|
-
### pi.sendUserMessage(content, options?)
|
|
1292
|
-
|
|
1293
|
-
Send a user message to the agent. Unlike `sendMessage()` which sends custom messages, this sends an actual user message that appears as if typed by the user. Always triggers a turn.
|
|
1294
|
-
|
|
1295
|
-
```typescript
|
|
1296
|
-
// Simple text message
|
|
1297
|
-
pi.sendUserMessage("What is 2+2?");
|
|
1298
|
-
|
|
1299
|
-
// With content array (text + images)
|
|
1300
|
-
pi.sendUserMessage([
|
|
1301
|
-
{ type: "text", text: "Describe this image:" },
|
|
1302
|
-
{ type: "image", source: { type: "base64", mediaType: "image/png", data: "..." } },
|
|
1303
|
-
]);
|
|
1304
|
-
|
|
1305
|
-
// During streaming - must specify delivery mode
|
|
1306
|
-
pi.sendUserMessage("Focus on error handling", { deliverAs: "steer" });
|
|
1307
|
-
pi.sendUserMessage("And then summarize", { deliverAs: "followUp" });
|
|
1308
|
-
```
|
|
1309
|
-
|
|
1310
|
-
**Options:**
|
|
1311
|
-
- `deliverAs` - Required when agent is streaming:
|
|
1312
|
-
- `"steer"` - Queues the message for delivery after the current assistant turn finishes executing its tool calls
|
|
1313
|
-
- `"followUp"` - Waits for agent to finish all tools
|
|
1314
|
-
|
|
1315
|
-
When not streaming, the message is sent immediately and triggers a new turn. When streaming without `deliverAs`, throws an error.
|
|
1316
|
-
|
|
1317
|
-
See [send-user-message.ts](../examples/extensions/send-user-message.ts) for a complete example.
|
|
1318
|
-
|
|
1319
|
-
### pi.appendEntry(customType, data?)
|
|
1320
|
-
|
|
1321
|
-
Persist extension state (does NOT participate in LLM context).
|
|
1322
|
-
|
|
1323
|
-
```typescript
|
|
1324
|
-
pi.appendEntry("my-state", { count: 42 });
|
|
1325
|
-
|
|
1326
|
-
// Restore on reload
|
|
1327
|
-
pi.on("session_start", async (_event, ctx) => {
|
|
1328
|
-
for (const entry of ctx.sessionManager.getEntries()) {
|
|
1329
|
-
if (entry.type === "custom" && entry.customType === "my-state") {
|
|
1330
|
-
// Reconstruct from entry.data
|
|
1331
|
-
}
|
|
1332
|
-
}
|
|
1333
|
-
});
|
|
1334
|
-
```
|
|
1335
|
-
|
|
1336
|
-
### pi.setSessionName(name)
|
|
1337
|
-
|
|
1338
|
-
Set the session display name (shown in session selector instead of first message).
|
|
1339
|
-
|
|
1340
|
-
```typescript
|
|
1341
|
-
pi.setSessionName("Refactor auth module");
|
|
1342
|
-
```
|
|
1343
|
-
|
|
1344
|
-
### pi.getSessionName()
|
|
1345
|
-
|
|
1346
|
-
Get the current session name, if set.
|
|
1347
|
-
|
|
1348
|
-
```typescript
|
|
1349
|
-
const name = pi.getSessionName();
|
|
1350
|
-
if (name) {
|
|
1351
|
-
console.log(`Session: ${name}`);
|
|
1352
|
-
}
|
|
1353
|
-
```
|
|
1354
|
-
|
|
1355
|
-
### pi.setLabel(entryId, label)
|
|
1356
|
-
|
|
1357
|
-
Set or clear a label on an entry. Labels are user-defined markers for bookmarking and navigation (shown in `/tree` selector).
|
|
1358
|
-
|
|
1359
|
-
```typescript
|
|
1360
|
-
// Set a label
|
|
1361
|
-
pi.setLabel(entryId, "checkpoint-before-refactor");
|
|
1362
|
-
|
|
1363
|
-
// Clear a label
|
|
1364
|
-
pi.setLabel(entryId, undefined);
|
|
1365
|
-
|
|
1366
|
-
// Read labels via sessionManager
|
|
1367
|
-
const label = ctx.sessionManager.getLabel(entryId);
|
|
1368
|
-
```
|
|
1369
|
-
|
|
1370
|
-
Labels persist in the session and survive restarts. Use them to mark important points (turns, checkpoints) in the conversation tree.
|
|
1371
|
-
|
|
1372
|
-
### pi.registerCommand(name, options)
|
|
1373
|
-
|
|
1374
|
-
Register a command.
|
|
1375
|
-
|
|
1376
|
-
If multiple extensions register the same command name, pi keeps them all and assigns numeric invocation suffixes in load order, for example `/review:1` and `/review:2`.
|
|
1377
|
-
|
|
1378
|
-
```typescript
|
|
1379
|
-
pi.registerCommand("stats", {
|
|
1380
|
-
description: "Show session statistics",
|
|
1381
|
-
handler: async (args, ctx) => {
|
|
1382
|
-
const count = ctx.sessionManager.getEntries().length;
|
|
1383
|
-
ctx.ui.notify(`${count} entries`, "info");
|
|
1384
|
-
}
|
|
1385
|
-
});
|
|
1386
|
-
```
|
|
1387
|
-
|
|
1388
|
-
Optional: add argument auto-completion for `/command ...`:
|
|
1389
|
-
|
|
1390
|
-
```typescript
|
|
1391
|
-
import type { AutocompleteItem } from "@earendil-works/pi-tui";
|
|
1392
|
-
|
|
1393
|
-
pi.registerCommand("deploy", {
|
|
1394
|
-
description: "Deploy to an environment",
|
|
1395
|
-
getArgumentCompletions: (prefix: string): AutocompleteItem[] | null => {
|
|
1396
|
-
const envs = ["dev", "staging", "prod"];
|
|
1397
|
-
const items = envs.map((e) => ({ value: e, label: e }));
|
|
1398
|
-
const filtered = items.filter((i) => i.value.startsWith(prefix));
|
|
1399
|
-
return filtered.length > 0 ? filtered : null;
|
|
1400
|
-
},
|
|
1401
|
-
handler: async (args, ctx) => {
|
|
1402
|
-
ctx.ui.notify(`Deploying: ${args}`, "info");
|
|
1403
|
-
},
|
|
1404
|
-
});
|
|
1405
|
-
```
|
|
1406
|
-
|
|
1407
|
-
### pi.getCommands()
|
|
1408
|
-
|
|
1409
|
-
Get the slash commands available for invocation via `prompt` in the current session. Includes extension commands, prompt templates, and skill commands.
|
|
1410
|
-
The list matches the RPC `get_commands` ordering: extensions first, then templates, then skills.
|
|
1411
|
-
|
|
1412
|
-
```typescript
|
|
1413
|
-
const commands = pi.getCommands();
|
|
1414
|
-
const bySource = commands.filter((command) => command.source === "extension");
|
|
1415
|
-
const userScoped = commands.filter((command) => command.sourceInfo.scope === "user");
|
|
1416
|
-
```
|
|
1417
|
-
|
|
1418
|
-
Each entry has this shape:
|
|
1419
|
-
|
|
1420
|
-
```typescript
|
|
1421
|
-
{
|
|
1422
|
-
name: string; // Invokable command name without the leading slash. May be suffixed like "review:1"
|
|
1423
|
-
description?: string;
|
|
1424
|
-
source: "extension" | "prompt" | "skill";
|
|
1425
|
-
sourceInfo: {
|
|
1426
|
-
path: string;
|
|
1427
|
-
source: string;
|
|
1428
|
-
scope: "user" | "project" | "temporary";
|
|
1429
|
-
origin: "package" | "top-level";
|
|
1430
|
-
baseDir?: string;
|
|
1431
|
-
};
|
|
1432
|
-
}
|
|
1433
|
-
```
|
|
1434
|
-
|
|
1435
|
-
Use `sourceInfo` as the canonical provenance field. Do not infer ownership from command names or from ad hoc path parsing.
|
|
1436
|
-
|
|
1437
|
-
Built-in interactive commands (like `/model` and `/settings`) are not included here. They are handled only in interactive
|
|
1438
|
-
mode and would not execute if sent via `prompt`.
|
|
1439
|
-
|
|
1440
|
-
### pi.registerMessageRenderer(customType, renderer)
|
|
1441
|
-
|
|
1442
|
-
Register a custom TUI renderer for messages with your `customType`. See [Custom UI](#custom-ui).
|
|
1443
|
-
|
|
1444
|
-
### pi.registerShortcut(shortcut, options)
|
|
1445
|
-
|
|
1446
|
-
Register a keyboard shortcut. See [keybindings.md](keybindings.md) for the shortcut format and built-in keybindings.
|
|
1447
|
-
|
|
1448
|
-
```typescript
|
|
1449
|
-
pi.registerShortcut("ctrl+shift+p", {
|
|
1450
|
-
description: "Toggle plan mode",
|
|
1451
|
-
handler: async (ctx) => {
|
|
1452
|
-
ctx.ui.notify("Toggled!");
|
|
1453
|
-
},
|
|
1454
|
-
});
|
|
1455
|
-
```
|
|
1456
|
-
|
|
1457
|
-
### pi.registerFlag(name, options)
|
|
1458
|
-
|
|
1459
|
-
Register a CLI flag.
|
|
1460
|
-
|
|
1461
|
-
```typescript
|
|
1462
|
-
pi.registerFlag("plan", {
|
|
1463
|
-
description: "Start in plan mode",
|
|
1464
|
-
type: "boolean",
|
|
1465
|
-
default: false,
|
|
1466
|
-
});
|
|
1467
|
-
|
|
1468
|
-
// Check value
|
|
1469
|
-
if (pi.getFlag("plan")) {
|
|
1470
|
-
// Plan mode enabled
|
|
1471
|
-
}
|
|
1472
|
-
```
|
|
1473
|
-
|
|
1474
|
-
### pi.exec(command, args, options?)
|
|
1475
|
-
|
|
1476
|
-
Execute a shell command.
|
|
1477
|
-
|
|
1478
|
-
```typescript
|
|
1479
|
-
const result = await pi.exec("git", ["status"], { signal, timeout: 5000 });
|
|
1480
|
-
// result.stdout, result.stderr, result.code, result.killed
|
|
1481
|
-
```
|
|
1482
|
-
|
|
1483
|
-
### pi.getActiveTools() / pi.getAllTools() / pi.setActiveTools(names)
|
|
1484
|
-
|
|
1485
|
-
Manage active tools. This works for both built-in tools and dynamically registered tools.
|
|
1486
|
-
|
|
1487
|
-
```typescript
|
|
1488
|
-
const active = pi.getActiveTools();
|
|
1489
|
-
const all = pi.getAllTools();
|
|
1490
|
-
// [{
|
|
1491
|
-
// name: "read",
|
|
1492
|
-
// description: "Read file contents...",
|
|
1493
|
-
// parameters: ...,
|
|
1494
|
-
// sourceInfo: { path: "<builtin:read>", source: "builtin", scope: "temporary", origin: "top-level" }
|
|
1495
|
-
// }, ...]
|
|
1496
|
-
const names = all.map(t => t.name);
|
|
1497
|
-
const builtinTools = all.filter((t) => t.sourceInfo.source === "builtin");
|
|
1498
|
-
const extensionTools = all.filter((t) => t.sourceInfo.source !== "builtin" && t.sourceInfo.source !== "sdk");
|
|
1499
|
-
pi.setActiveTools(["read", "bash"]); // Switch to read-only
|
|
1500
|
-
```
|
|
1501
|
-
|
|
1502
|
-
`pi.getAllTools()` returns `name`, `description`, `parameters`, and `sourceInfo`.
|
|
1503
|
-
|
|
1504
|
-
Typical `sourceInfo.source` values:
|
|
1505
|
-
- `builtin` for built-in tools
|
|
1506
|
-
- `sdk` for tools passed via `createAgentSession({ customTools })`
|
|
1507
|
-
- extension source metadata for tools registered by extensions
|
|
1508
|
-
|
|
1509
|
-
### pi.setModel(model)
|
|
1510
|
-
|
|
1511
|
-
Set the current model. Returns `false` if no API key is available for the model. See [models.md](models.md) for configuring custom models.
|
|
1512
|
-
|
|
1513
|
-
```typescript
|
|
1514
|
-
const model = ctx.modelRegistry.find("anthropic", "claude-sonnet-4-5");
|
|
1515
|
-
if (model) {
|
|
1516
|
-
const success = await pi.setModel(model);
|
|
1517
|
-
if (!success) {
|
|
1518
|
-
ctx.ui.notify("No API key for this model", "error");
|
|
1519
|
-
}
|
|
1520
|
-
}
|
|
1521
|
-
```
|
|
1522
|
-
|
|
1523
|
-
### pi.getThinkingLevel() / pi.setThinkingLevel(level)
|
|
1524
|
-
|
|
1525
|
-
Get or set the thinking level. Level is clamped to model capabilities (non-reasoning models always use "off"). Changes emit `thinking_level_select`.
|
|
1526
|
-
|
|
1527
|
-
```typescript
|
|
1528
|
-
const current = pi.getThinkingLevel(); // "off" | "minimal" | "low" | "medium" | "high" | "xhigh"
|
|
1529
|
-
pi.setThinkingLevel("high");
|
|
1530
|
-
```
|
|
1531
|
-
|
|
1532
|
-
### pi.events
|
|
1533
|
-
|
|
1534
|
-
Shared event bus for communication between extensions:
|
|
1535
|
-
|
|
1536
|
-
```typescript
|
|
1537
|
-
pi.events.on("my:event", (data) => { ... });
|
|
1538
|
-
pi.events.emit("my:event", { ... });
|
|
1539
|
-
```
|
|
1540
|
-
|
|
1541
|
-
### pi.registerProvider(name, config)
|
|
1542
|
-
|
|
1543
|
-
Register or override a model provider dynamically. Useful for proxies, custom endpoints, or team-wide model configurations.
|
|
1544
|
-
|
|
1545
|
-
Calls made during the extension factory function are queued and applied once the runner initialises. Calls made after that — for example from a command handler following a user setup flow — take effect immediately without requiring a `/reload`.
|
|
1546
|
-
|
|
1547
|
-
If you need to discover models from a remote endpoint, prefer an async extension factory over deferring the fetch to `session_start`. pi waits for the factory before startup continues, so the registered models are available immediately, including to `pi --list-models`.
|
|
1548
|
-
|
|
1549
|
-
```typescript
|
|
1550
|
-
// Register a new provider with custom models
|
|
1551
|
-
pi.registerProvider("my-proxy", {
|
|
1552
|
-
name: "My Proxy",
|
|
1553
|
-
baseUrl: "https://proxy.example.com",
|
|
1554
|
-
apiKey: "PROXY_API_KEY", // env var name or literal
|
|
1555
|
-
api: "anthropic-messages",
|
|
1556
|
-
models: [
|
|
1557
|
-
{
|
|
1558
|
-
id: "claude-sonnet-4-20250514",
|
|
1559
|
-
name: "Claude 4 Sonnet (proxy)",
|
|
1560
|
-
reasoning: false,
|
|
1561
|
-
input: ["text", "image"],
|
|
1562
|
-
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
1563
|
-
contextWindow: 200000,
|
|
1564
|
-
maxTokens: 16384
|
|
1565
|
-
}
|
|
1566
|
-
]
|
|
1567
|
-
});
|
|
1568
|
-
|
|
1569
|
-
// Override baseUrl for an existing provider (keeps all models)
|
|
1570
|
-
pi.registerProvider("anthropic", {
|
|
1571
|
-
baseUrl: "https://proxy.example.com"
|
|
1572
|
-
});
|
|
1573
|
-
|
|
1574
|
-
// Register provider with OAuth support for /login
|
|
1575
|
-
pi.registerProvider("corporate-ai", {
|
|
1576
|
-
baseUrl: "https://ai.corp.com",
|
|
1577
|
-
api: "openai-responses",
|
|
1578
|
-
models: [...],
|
|
1579
|
-
oauth: {
|
|
1580
|
-
name: "Corporate AI (SSO)",
|
|
1581
|
-
async login(callbacks) {
|
|
1582
|
-
// Custom OAuth flow
|
|
1583
|
-
callbacks.onAuth({ url: "https://sso.corp.com/..." });
|
|
1584
|
-
const code = await callbacks.onPrompt({ message: "Enter code:" });
|
|
1585
|
-
return { refresh: code, access: code, expires: Date.now() + 3600000 };
|
|
1586
|
-
},
|
|
1587
|
-
async refreshToken(credentials) {
|
|
1588
|
-
// Refresh logic
|
|
1589
|
-
return credentials;
|
|
1590
|
-
},
|
|
1591
|
-
getApiKey(credentials) {
|
|
1592
|
-
return credentials.access;
|
|
1593
|
-
}
|
|
1594
|
-
}
|
|
1595
|
-
});
|
|
1596
|
-
```
|
|
1597
|
-
|
|
1598
|
-
**Config options:**
|
|
1599
|
-
- `name` - Display name for the provider in UI such as `/login`.
|
|
1600
|
-
- `baseUrl` - API endpoint URL. Required when defining models.
|
|
1601
|
-
- `apiKey` - API key or environment variable name. Required when defining models (unless `oauth` provided).
|
|
1602
|
-
- `api` - API type: `"anthropic-messages"`, `"openai-completions"`, `"openai-responses"`, etc.
|
|
1603
|
-
- `headers` - Custom headers to include in requests.
|
|
1604
|
-
- `authHeader` - If true, adds `Authorization: Bearer` header automatically.
|
|
1605
|
-
- `models` - Array of model definitions. If provided, replaces all existing models for this provider. Model definitions can set `baseUrl` to override the provider endpoint for that model.
|
|
1606
|
-
- `oauth` - OAuth provider config for `/login` support. When provided, the provider appears in the login menu.
|
|
1607
|
-
- `streamSimple` - Custom streaming implementation for non-standard APIs.
|
|
1608
|
-
|
|
1609
|
-
See [custom-provider.md](custom-provider.md) for advanced topics: custom streaming APIs, OAuth details, model definition reference.
|
|
1610
|
-
|
|
1611
|
-
### pi.unregisterProvider(name)
|
|
1612
|
-
|
|
1613
|
-
Remove a previously registered provider and its models. Built-in models that were overridden by the provider are restored. Has no effect if the provider was not registered.
|
|
1614
|
-
|
|
1615
|
-
Like `registerProvider`, this takes effect immediately when called after the initial load phase, so a `/reload` is not required.
|
|
1616
|
-
|
|
1617
|
-
```typescript
|
|
1618
|
-
pi.registerCommand("my-setup-teardown", {
|
|
1619
|
-
description: "Remove the custom proxy provider",
|
|
1620
|
-
handler: async (_args, _ctx) => {
|
|
1621
|
-
pi.unregisterProvider("my-proxy");
|
|
1622
|
-
},
|
|
1623
|
-
});
|
|
1624
|
-
```
|
|
1625
|
-
|
|
1626
|
-
## State Management
|
|
1627
|
-
|
|
1628
|
-
Extensions with state should store it in tool result `details` for proper branching support:
|
|
1629
|
-
|
|
1630
|
-
```typescript
|
|
1631
|
-
export default function (pi: ExtensionAPI) {
|
|
1632
|
-
let items: string[] = [];
|
|
1633
|
-
|
|
1634
|
-
// Reconstruct state from session
|
|
1635
|
-
pi.on("session_start", async (_event, ctx) => {
|
|
1636
|
-
items = [];
|
|
1637
|
-
for (const entry of ctx.sessionManager.getBranch()) {
|
|
1638
|
-
if (entry.type === "message" && entry.message.role === "toolResult") {
|
|
1639
|
-
if (entry.message.toolName === "my_tool") {
|
|
1640
|
-
items = entry.message.details?.items ?? [];
|
|
1641
|
-
}
|
|
1642
|
-
}
|
|
1643
|
-
}
|
|
1644
|
-
});
|
|
1645
|
-
|
|
1646
|
-
pi.registerTool({
|
|
1647
|
-
name: "my_tool",
|
|
1648
|
-
// ...
|
|
1649
|
-
async execute(toolCallId, params, signal, onUpdate, ctx) {
|
|
1650
|
-
items.push("new item");
|
|
1651
|
-
return {
|
|
1652
|
-
content: [{ type: "text", text: "Added" }],
|
|
1653
|
-
details: { items: [...items] }, // Store for reconstruction
|
|
1654
|
-
};
|
|
1655
|
-
},
|
|
1656
|
-
});
|
|
1657
|
-
}
|
|
1658
|
-
```
|
|
1659
|
-
|
|
1660
|
-
## Custom Tools
|
|
1661
|
-
|
|
1662
|
-
Register tools the LLM can call via `pi.registerTool()`. Tools appear in the system prompt and can have custom rendering.
|
|
1663
|
-
|
|
1664
|
-
Use `promptSnippet` for a short one-line entry in the `Available tools` section in the default system prompt. If omitted, custom tools are left out of that section.
|
|
1665
|
-
|
|
1666
|
-
Use `promptGuidelines` to add tool-specific bullets to the default system prompt `Guidelines` section. These bullets are included only while the tool is active (for example, after `pi.setActiveTools([...])`).
|
|
1667
|
-
|
|
1668
|
-
**Important:** `promptGuidelines` bullets are appended flat to the `Guidelines` section with no tool name prefix or grouping. Each guideline must name the tool it refers to — avoid "Use this tool when..." because the LLM cannot tell which tool "this" means. Write "Use my_tool when..." instead.
|
|
1669
|
-
|
|
1670
|
-
Note: Some models are idiots and include the @ prefix in tool path arguments. Built-in tools strip a leading @ before resolving paths. If your custom tool accepts a path, normalize a leading @ as well.
|
|
1671
|
-
|
|
1672
|
-
If your custom tool mutates files, use `withFileMutationQueue()` so it participates in the same per-file queue as built-in `edit` and `write`. This matters because tool calls run in parallel by default. Without the queue, two tools can read the same old file contents, compute different updates, and then whichever write lands last overwrites the other.
|
|
1673
|
-
|
|
1674
|
-
Example failure case: your custom tool edits `foo.ts` while built-in `edit` also changes `foo.ts` in the same assistant turn. If your tool does not participate in the queue, both can read the original `foo.ts`, apply separate changes, and one of those changes is lost.
|
|
1675
|
-
|
|
1676
|
-
Pass the real target file path to `withFileMutationQueue()`, not the raw user argument. Resolve it to an absolute path first, relative to `ctx.cwd` or your tool's working directory. For existing files, the helper canonicalizes through `realpath()`, so symlink aliases for the same file share one queue. For new files, it falls back to the resolved absolute path because there is nothing to `realpath()` yet.
|
|
1677
|
-
|
|
1678
|
-
Queue the entire mutation window on that target path. That includes read-modify-write logic, not just the final write.
|
|
1679
|
-
|
|
1680
|
-
```typescript
|
|
1681
|
-
import { withFileMutationQueue } from "@earendil-works/pi-coding-agent";
|
|
1682
|
-
import { mkdir, readFile, writeFile } from "node:fs/promises";
|
|
1683
|
-
import { dirname, resolve } from "node:path";
|
|
1684
|
-
|
|
1685
|
-
async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
|
|
1686
|
-
const absolutePath = resolve(ctx.cwd, params.path);
|
|
1687
|
-
|
|
1688
|
-
return withFileMutationQueue(absolutePath, async () => {
|
|
1689
|
-
await mkdir(dirname(absolutePath), { recursive: true });
|
|
1690
|
-
const current = await readFile(absolutePath, "utf8");
|
|
1691
|
-
const next = current.replace(params.oldText, params.newText);
|
|
1692
|
-
await writeFile(absolutePath, next, "utf8");
|
|
1693
|
-
|
|
1694
|
-
return {
|
|
1695
|
-
content: [{ type: "text", text: `Updated ${params.path}` }],
|
|
1696
|
-
details: {},
|
|
1697
|
-
};
|
|
1698
|
-
});
|
|
1699
|
-
}
|
|
1700
|
-
```
|
|
1701
|
-
|
|
1702
|
-
### Tool Definition
|
|
1703
|
-
|
|
1704
|
-
```typescript
|
|
1705
|
-
import { Type } from "typebox";
|
|
1706
|
-
import { StringEnum } from "@earendil-works/pi-ai";
|
|
1707
|
-
import { Text } from "@earendil-works/pi-tui";
|
|
1708
|
-
|
|
1709
|
-
pi.registerTool({
|
|
1710
|
-
name: "my_tool",
|
|
1711
|
-
label: "My Tool",
|
|
1712
|
-
description: "What this tool does (shown to LLM)",
|
|
1713
|
-
promptSnippet: "List or add items in the project todo list",
|
|
1714
|
-
promptGuidelines: [
|
|
1715
|
-
"Use my_tool for todo planning instead of direct file edits when the user asks for a task list."
|
|
1716
|
-
],
|
|
1717
|
-
parameters: Type.Object({
|
|
1718
|
-
action: StringEnum(["list", "add"] as const), // Use StringEnum for Google compatibility
|
|
1719
|
-
text: Type.Optional(Type.String()),
|
|
1720
|
-
}),
|
|
1721
|
-
prepareArguments(args) {
|
|
1722
|
-
if (!args || typeof args !== "object") return args;
|
|
1723
|
-
const input = args as { action?: string; oldAction?: string };
|
|
1724
|
-
if (typeof input.oldAction === "string" && input.action === undefined) {
|
|
1725
|
-
return { ...input, action: input.oldAction };
|
|
1726
|
-
}
|
|
1727
|
-
return args;
|
|
1728
|
-
},
|
|
1729
|
-
|
|
1730
|
-
async execute(toolCallId, params, signal, onUpdate, ctx) {
|
|
1731
|
-
// Check for cancellation
|
|
1732
|
-
if (signal?.aborted) {
|
|
1733
|
-
return { content: [{ type: "text", text: "Cancelled" }] };
|
|
1734
|
-
}
|
|
1735
|
-
|
|
1736
|
-
// Stream progress updates
|
|
1737
|
-
onUpdate?.({
|
|
1738
|
-
content: [{ type: "text", text: "Working..." }],
|
|
1739
|
-
details: { progress: 50 },
|
|
1740
|
-
});
|
|
1741
|
-
|
|
1742
|
-
// Run commands via pi.exec (captured from extension closure)
|
|
1743
|
-
const result = await pi.exec("some-command", [], { signal });
|
|
1744
|
-
|
|
1745
|
-
// Return result
|
|
1746
|
-
return {
|
|
1747
|
-
content: [{ type: "text", text: "Done" }], // Sent to LLM
|
|
1748
|
-
details: { data: result }, // For rendering & state
|
|
1749
|
-
// Optional: stop after this tool batch when every finalized tool result
|
|
1750
|
-
// in the batch also returns terminate: true.
|
|
1751
|
-
terminate: true,
|
|
1752
|
-
};
|
|
1753
|
-
},
|
|
1754
|
-
|
|
1755
|
-
// Optional: Custom rendering
|
|
1756
|
-
renderCall(args, theme, context) { ... },
|
|
1757
|
-
renderResult(result, options, theme, context) { ... },
|
|
1758
|
-
});
|
|
1759
|
-
```
|
|
1760
|
-
|
|
1761
|
-
**Signaling errors:** To mark a tool execution as failed (sets `isError: true` on the result and reports it to the LLM), throw an error from `execute`. Returning a value never sets the error flag regardless of what properties you include in the return object.
|
|
1762
|
-
|
|
1763
|
-
**Early termination:** Return `terminate: true` from `execute()` to hint that the automatic follow-up LLM call should be skipped after the current tool batch. This only takes effect when every finalized tool result in that batch is terminating. See [examples/extensions/structured-output.ts](../examples/extensions/structured-output.ts) for a minimal example where the agent ends on a final structured-output tool call.
|
|
1764
|
-
|
|
1765
|
-
```typescript
|
|
1766
|
-
// Correct: throw to signal an error
|
|
1767
|
-
async execute(toolCallId, params) {
|
|
1768
|
-
if (!isValid(params.input)) {
|
|
1769
|
-
throw new Error(`Invalid input: ${params.input}`);
|
|
1770
|
-
}
|
|
1771
|
-
return { content: [{ type: "text", text: "OK" }], details: {} };
|
|
1772
|
-
}
|
|
1773
|
-
```
|
|
1774
|
-
|
|
1775
|
-
**Important:** Use `StringEnum` from `@earendil-works/pi-ai` for string enums. `Type.Union`/`Type.Literal` doesn't work with Google's API.
|
|
1776
|
-
|
|
1777
|
-
**Argument preparation:** `prepareArguments(args)` is optional. If defined, it runs before schema validation and before `execute()`. Use it to mimic an older accepted input shape when pi resumes an older session whose stored tool call arguments no longer match the current schema. Return the object you want validated against `parameters`. Keep the public schema strict. Do not add deprecated compatibility fields to `parameters` just to keep old resumed sessions working.
|
|
1778
|
-
|
|
1779
|
-
Example: an older session may contain an `edit` tool call with top-level `oldText` and `newText`, while the current schema only accepts `edits: [{ oldText, newText }]`.
|
|
1780
|
-
|
|
1781
|
-
```typescript
|
|
1782
|
-
pi.registerTool({
|
|
1783
|
-
name: "edit",
|
|
1784
|
-
label: "Edit",
|
|
1785
|
-
description: "Edit a single file using exact text replacement",
|
|
1786
|
-
parameters: Type.Object({
|
|
1787
|
-
path: Type.String(),
|
|
1788
|
-
edits: Type.Array(
|
|
1789
|
-
Type.Object({
|
|
1790
|
-
oldText: Type.String(),
|
|
1791
|
-
newText: Type.String(),
|
|
1792
|
-
}),
|
|
1793
|
-
),
|
|
1794
|
-
}),
|
|
1795
|
-
prepareArguments(args) {
|
|
1796
|
-
if (!args || typeof args !== "object") return args;
|
|
1797
|
-
|
|
1798
|
-
const input = args as {
|
|
1799
|
-
path?: string;
|
|
1800
|
-
edits?: Array<{ oldText: string; newText: string }>;
|
|
1801
|
-
oldText?: unknown;
|
|
1802
|
-
newText?: unknown;
|
|
1803
|
-
};
|
|
1804
|
-
|
|
1805
|
-
if (typeof input.oldText !== "string" || typeof input.newText !== "string") {
|
|
1806
|
-
return args;
|
|
1807
|
-
}
|
|
1808
|
-
|
|
1809
|
-
return {
|
|
1810
|
-
...input,
|
|
1811
|
-
edits: [...(input.edits ?? []), { oldText: input.oldText, newText: input.newText }],
|
|
1812
|
-
};
|
|
1813
|
-
},
|
|
1814
|
-
async execute(toolCallId, params, signal, onUpdate, ctx) {
|
|
1815
|
-
// params now matches the current schema
|
|
1816
|
-
return {
|
|
1817
|
-
content: [{ type: "text", text: `Applying ${params.edits.length} edit block(s)` }],
|
|
1818
|
-
details: {},
|
|
1819
|
-
};
|
|
1820
|
-
},
|
|
1821
|
-
});
|
|
1822
|
-
```
|
|
1823
|
-
|
|
1824
|
-
### Overriding Built-in Tools
|
|
1825
|
-
|
|
1826
|
-
Extensions can override built-in tools (`read`, `bash`, `edit`, `write`, `grep`, `find`, `ls`) by registering a tool with the same name. Interactive mode displays a warning when this happens.
|
|
1827
|
-
|
|
1828
|
-
```bash
|
|
1829
|
-
# Extension's read tool replaces built-in read
|
|
1830
|
-
pi -e ./tool-override.ts
|
|
1831
|
-
```
|
|
1832
|
-
|
|
1833
|
-
Alternatively, use `--no-builtin-tools` to start without any built-in tools while keeping extension tools enabled:
|
|
1834
|
-
```bash
|
|
1835
|
-
# No built-in tools, only extension tools
|
|
1836
|
-
pi --no-builtin-tools -e ./my-extension.ts
|
|
1837
|
-
```
|
|
1838
|
-
|
|
1839
|
-
See [examples/extensions/tool-override.ts](../examples/extensions/tool-override.ts) for a complete example that overrides `read` with logging and access control.
|
|
1840
|
-
|
|
1841
|
-
**Rendering:** Built-in renderer inheritance is resolved per slot. Execution override and rendering override are independent. If your override omits `renderCall`, the built-in `renderCall` is used. If your override omits `renderResult`, the built-in `renderResult` is used. If your override omits both, the built-in renderer is used automatically (syntax highlighting, diffs, etc.). This lets you wrap built-in tools for logging or access control without reimplementing the UI.
|
|
1842
|
-
|
|
1843
|
-
**Prompt metadata:** `promptSnippet` and `promptGuidelines` are not inherited from the built-in tool. If your override should keep those prompt instructions, define them on the override explicitly.
|
|
1844
|
-
|
|
1845
|
-
**Your implementation must match the exact result shape**, including the `details` type. The UI and session logic depend on these shapes for rendering and state tracking.
|
|
1846
|
-
|
|
1847
|
-
Built-in tool implementations:
|
|
1848
|
-
- [read.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/read.ts) - `ReadToolDetails`
|
|
1849
|
-
- [bash.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/bash.ts) - `BashToolDetails`
|
|
1850
|
-
- [edit.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/edit.ts)
|
|
1851
|
-
- [write.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/write.ts)
|
|
1852
|
-
- [grep.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/grep.ts) - `GrepToolDetails`
|
|
1853
|
-
- [find.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/find.ts) - `FindToolDetails`
|
|
1854
|
-
- [ls.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/core/tools/ls.ts) - `LsToolDetails`
|
|
1855
|
-
|
|
1856
|
-
### Remote Execution
|
|
1857
|
-
|
|
1858
|
-
Built-in tools support pluggable operations for delegating to remote systems (SSH, containers, etc.):
|
|
1859
|
-
|
|
1860
|
-
```typescript
|
|
1861
|
-
import { createReadTool, createBashTool, type ReadOperations } from "@earendil-works/pi-coding-agent";
|
|
1862
|
-
|
|
1863
|
-
// Create tool with custom operations
|
|
1864
|
-
const remoteRead = createReadTool(cwd, {
|
|
1865
|
-
operations: {
|
|
1866
|
-
readFile: (path) => sshExec(remote, `cat ${path}`),
|
|
1867
|
-
access: (path) => sshExec(remote, `test -r ${path}`).then(() => {}),
|
|
1868
|
-
}
|
|
1869
|
-
});
|
|
1870
|
-
|
|
1871
|
-
// Register, checking flag at execution time
|
|
1872
|
-
pi.registerTool({
|
|
1873
|
-
...remoteRead,
|
|
1874
|
-
async execute(id, params, signal, onUpdate, _ctx) {
|
|
1875
|
-
const ssh = getSshConfig();
|
|
1876
|
-
if (ssh) {
|
|
1877
|
-
const tool = createReadTool(cwd, { operations: createRemoteOps(ssh) });
|
|
1878
|
-
return tool.execute(id, params, signal, onUpdate);
|
|
1879
|
-
}
|
|
1880
|
-
return localRead.execute(id, params, signal, onUpdate);
|
|
1881
|
-
},
|
|
1882
|
-
});
|
|
1883
|
-
```
|
|
1884
|
-
|
|
1885
|
-
**Operations interfaces:** `ReadOperations`, `WriteOperations`, `EditOperations`, `BashOperations`, `LsOperations`, `GrepOperations`, `FindOperations`
|
|
1886
|
-
|
|
1887
|
-
For `user_bash`, extensions can reuse pi's local shell backend via `createLocalBashOperations()` instead of reimplementing local process spawning, shell resolution, and process-tree termination.
|
|
1888
|
-
|
|
1889
|
-
The bash tool also supports a spawn hook to adjust the command, cwd, or env before execution:
|
|
1890
|
-
|
|
1891
|
-
```typescript
|
|
1892
|
-
import { createBashTool } from "@earendil-works/pi-coding-agent";
|
|
1893
|
-
|
|
1894
|
-
const bashTool = createBashTool(cwd, {
|
|
1895
|
-
spawnHook: ({ command, cwd, env }) => ({
|
|
1896
|
-
command: `source ~/.profile\n${command}`,
|
|
1897
|
-
cwd: `/mnt/sandbox${cwd}`,
|
|
1898
|
-
env: { ...env, CI: "1" },
|
|
1899
|
-
}),
|
|
1900
|
-
});
|
|
1901
|
-
```
|
|
1902
|
-
|
|
1903
|
-
See [examples/extensions/ssh.ts](../examples/extensions/ssh.ts) for a complete SSH example with `--ssh` flag.
|
|
1904
|
-
|
|
1905
|
-
### Output Truncation
|
|
1906
|
-
|
|
1907
|
-
**Tools MUST truncate their output** to avoid overwhelming the LLM context. Large outputs can cause:
|
|
1908
|
-
- Context overflow errors (prompt too long)
|
|
1909
|
-
- Compaction failures
|
|
1910
|
-
- Degraded model performance
|
|
1911
|
-
|
|
1912
|
-
The built-in limit is **50KB** (~10k tokens) and **2000 lines**, whichever is hit first. Use the exported truncation utilities:
|
|
1913
|
-
|
|
1914
|
-
```typescript
|
|
1915
|
-
import {
|
|
1916
|
-
truncateHead, // Keep first N lines/bytes (good for file reads, search results)
|
|
1917
|
-
truncateTail, // Keep last N lines/bytes (good for logs, command output)
|
|
1918
|
-
truncateLine, // Truncate a single line to maxBytes with ellipsis
|
|
1919
|
-
formatSize, // Human-readable size (e.g., "50KB", "1.5MB")
|
|
1920
|
-
DEFAULT_MAX_BYTES, // 50KB
|
|
1921
|
-
DEFAULT_MAX_LINES, // 2000
|
|
1922
|
-
} from "@earendil-works/pi-coding-agent";
|
|
1923
|
-
|
|
1924
|
-
async execute(toolCallId, params, signal, onUpdate, ctx) {
|
|
1925
|
-
const output = await runCommand();
|
|
1926
|
-
|
|
1927
|
-
// Apply truncation
|
|
1928
|
-
const truncation = truncateHead(output, {
|
|
1929
|
-
maxLines: DEFAULT_MAX_LINES,
|
|
1930
|
-
maxBytes: DEFAULT_MAX_BYTES,
|
|
1931
|
-
});
|
|
1932
|
-
|
|
1933
|
-
let result = truncation.content;
|
|
1934
|
-
|
|
1935
|
-
if (truncation.truncated) {
|
|
1936
|
-
// Write full output to temp file
|
|
1937
|
-
const tempFile = writeTempFile(output);
|
|
1938
|
-
|
|
1939
|
-
// Inform the LLM where to find complete output
|
|
1940
|
-
result += `\n\n[Output truncated: ${truncation.outputLines} of ${truncation.totalLines} lines`;
|
|
1941
|
-
result += ` (${formatSize(truncation.outputBytes)} of ${formatSize(truncation.totalBytes)}).`;
|
|
1942
|
-
result += ` Full output saved to: ${tempFile}]`;
|
|
1943
|
-
}
|
|
1944
|
-
|
|
1945
|
-
return { content: [{ type: "text", text: result }] };
|
|
1946
|
-
}
|
|
1947
|
-
```
|
|
1948
|
-
|
|
1949
|
-
**Key points:**
|
|
1950
|
-
- Use `truncateHead` for content where the beginning matters (search results, file reads)
|
|
1951
|
-
- Use `truncateTail` for content where the end matters (logs, command output)
|
|
1952
|
-
- Always inform the LLM when output is truncated and where to find the full version
|
|
1953
|
-
- Document the truncation limits in your tool's description
|
|
1954
|
-
|
|
1955
|
-
See [examples/extensions/truncated-tool.ts](../examples/extensions/truncated-tool.ts) for a complete example wrapping `rg` (ripgrep) with proper truncation.
|
|
1956
|
-
|
|
1957
|
-
### Multiple Tools
|
|
1958
|
-
|
|
1959
|
-
One extension can register multiple tools with shared state:
|
|
1960
|
-
|
|
1961
|
-
```typescript
|
|
1962
|
-
export default function (pi: ExtensionAPI) {
|
|
1963
|
-
let connection = null;
|
|
1964
|
-
|
|
1965
|
-
pi.registerTool({ name: "db_connect", ... });
|
|
1966
|
-
pi.registerTool({ name: "db_query", ... });
|
|
1967
|
-
pi.registerTool({ name: "db_close", ... });
|
|
1968
|
-
|
|
1969
|
-
pi.on("session_shutdown", async () => {
|
|
1970
|
-
connection?.close();
|
|
1971
|
-
});
|
|
1972
|
-
}
|
|
1973
|
-
```
|
|
1974
|
-
|
|
1975
|
-
### Custom Rendering
|
|
1976
|
-
|
|
1977
|
-
Tools can provide `renderCall` and `renderResult` for custom TUI display. See [tui.md](tui.md) for the full component API and [tool-execution.ts](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/src/modes/interactive/components/tool-execution.ts) for how tool rows are composed.
|
|
1978
|
-
|
|
1979
|
-
By default, tool output is wrapped in a `Box` that handles padding and background. A defined `renderCall` or `renderResult` must return a `Component`. If a slot renderer is not defined, `tool-execution.ts` uses fallback rendering for that slot.
|
|
1980
|
-
|
|
1981
|
-
Set `renderShell: "self"` when the tool should render its own shell instead of using the default `Box`. This is useful for tools that need complete control over framing or background behavior, for example large previews that must stay visually stable after the tool settles.
|
|
1982
|
-
|
|
1983
|
-
```typescript
|
|
1984
|
-
pi.registerTool({
|
|
1985
|
-
name: "my_tool",
|
|
1986
|
-
label: "My Tool",
|
|
1987
|
-
description: "Custom shell example",
|
|
1988
|
-
parameters: Type.Object({}),
|
|
1989
|
-
renderShell: "self",
|
|
1990
|
-
async execute() {
|
|
1991
|
-
return { content: [{ type: "text", text: "ok" }], details: undefined };
|
|
1992
|
-
},
|
|
1993
|
-
renderCall(args, theme, context) {
|
|
1994
|
-
return new Text(theme.fg("accent", "my custom shell"), 0, 0);
|
|
1995
|
-
},
|
|
1996
|
-
});
|
|
1997
|
-
```
|
|
1998
|
-
|
|
1999
|
-
`renderCall` and `renderResult` each receive a `context` object with:
|
|
2000
|
-
- `args` - the current tool call arguments
|
|
2001
|
-
- `state` - shared row-local state across `renderCall` and `renderResult`
|
|
2002
|
-
- `lastComponent` - the previously returned component for that slot, if any
|
|
2003
|
-
- `invalidate()` - request a rerender of this tool row
|
|
2004
|
-
- `toolCallId`, `cwd`, `executionStarted`, `argsComplete`, `isPartial`, `expanded`, `showImages`, `isError`
|
|
2005
|
-
|
|
2006
|
-
Use `context.state` for cross-slot shared state. Keep slot-local caches on the returned component instance when you want to reuse and mutate the same component across renders.
|
|
2007
|
-
|
|
2008
|
-
#### renderCall
|
|
2009
|
-
|
|
2010
|
-
Renders the tool call or header:
|
|
2011
|
-
|
|
2012
|
-
```typescript
|
|
2013
|
-
import { Text } from "@earendil-works/pi-tui";
|
|
2014
|
-
|
|
2015
|
-
renderCall(args, theme, context) {
|
|
2016
|
-
const text = (context.lastComponent as Text | undefined) ?? new Text("", 0, 0);
|
|
2017
|
-
let content = theme.fg("toolTitle", theme.bold("my_tool "));
|
|
2018
|
-
content += theme.fg("muted", args.action);
|
|
2019
|
-
if (args.text) {
|
|
2020
|
-
content += " " + theme.fg("dim", `"${args.text}"`);
|
|
2021
|
-
}
|
|
2022
|
-
text.setText(content);
|
|
2023
|
-
return text;
|
|
2024
|
-
}
|
|
2025
|
-
```
|
|
2026
|
-
|
|
2027
|
-
#### renderResult
|
|
2028
|
-
|
|
2029
|
-
Renders the tool result or output:
|
|
2030
|
-
|
|
2031
|
-
```typescript
|
|
2032
|
-
renderResult(result, { expanded, isPartial }, theme, context) {
|
|
2033
|
-
if (isPartial) {
|
|
2034
|
-
return new Text(theme.fg("warning", "Processing..."), 0, 0);
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
if (result.details?.error) {
|
|
2038
|
-
return new Text(theme.fg("error", `Error: ${result.details.error}`), 0, 0);
|
|
2039
|
-
}
|
|
2040
|
-
|
|
2041
|
-
let text = theme.fg("success", "✓ Done");
|
|
2042
|
-
if (expanded && result.details?.items) {
|
|
2043
|
-
for (const item of result.details.items) {
|
|
2044
|
-
text += "\n " + theme.fg("dim", item);
|
|
2045
|
-
}
|
|
2046
|
-
}
|
|
2047
|
-
return new Text(text, 0, 0);
|
|
2048
|
-
}
|
|
2049
|
-
```
|
|
2050
|
-
|
|
2051
|
-
If a slot intentionally has no visible content, return an empty `Component` such as an empty `Container`.
|
|
2052
|
-
|
|
2053
|
-
#### Keybinding Hints
|
|
2054
|
-
|
|
2055
|
-
Use `keyHint()` to display keybinding hints that respect the active keybinding configuration:
|
|
2056
|
-
|
|
2057
|
-
```typescript
|
|
2058
|
-
import { keyHint } from "@earendil-works/pi-coding-agent";
|
|
2059
|
-
|
|
2060
|
-
renderResult(result, { expanded }, theme, context) {
|
|
2061
|
-
let text = theme.fg("success", "✓ Done");
|
|
2062
|
-
if (!expanded) {
|
|
2063
|
-
text += ` (${keyHint("app.tools.expand", "to expand")})`;
|
|
2064
|
-
}
|
|
2065
|
-
return new Text(text, 0, 0);
|
|
2066
|
-
}
|
|
2067
|
-
```
|
|
2068
|
-
|
|
2069
|
-
Available functions:
|
|
2070
|
-
- `keyHint(keybinding, description)` - Formats a configured keybinding id such as `"app.tools.expand"` or `"tui.select.confirm"`
|
|
2071
|
-
- `keyText(keybinding)` - Returns the raw configured key text for a keybinding id
|
|
2072
|
-
- `rawKeyHint(key, description)` - Format a raw key string
|
|
2073
|
-
|
|
2074
|
-
Use namespaced keybinding ids:
|
|
2075
|
-
- Coding-agent ids use the `app.*` namespace, for example `app.tools.expand`, `app.editor.external`, `app.session.rename`
|
|
2076
|
-
- Shared TUI ids use the `tui.*` namespace, for example `tui.select.confirm`, `tui.select.cancel`, `tui.input.tab`
|
|
2077
|
-
|
|
2078
|
-
For the exhaustive list of keybinding ids and defaults, see [keybindings.md](keybindings.md). `keybindings.json` uses those same namespaced ids.
|
|
2079
|
-
|
|
2080
|
-
Custom editors and `ctx.ui.custom()` components receive `keybindings: KeybindingsManager` as an injected argument. They should use that injected manager directly instead of calling `getKeybindings()` or `setKeybindings()`.
|
|
2081
|
-
|
|
2082
|
-
#### Best Practices
|
|
2083
|
-
|
|
2084
|
-
- Use `Text` with padding `(0, 0)`. The default Box handles padding.
|
|
2085
|
-
- Use `\n` for multi-line content.
|
|
2086
|
-
- Handle `isPartial` for streaming progress.
|
|
2087
|
-
- Support `expanded` for detail on demand.
|
|
2088
|
-
- Keep default view compact.
|
|
2089
|
-
- Read `context.args` in `renderResult` instead of copying args into `context.state`.
|
|
2090
|
-
- Use `context.state` only for data that must be shared across call and result slots.
|
|
2091
|
-
- Reuse `context.lastComponent` when the same component instance can be updated in place.
|
|
2092
|
-
- Use `renderShell: "self"` only when the default boxed shell gets in the way. In self-shell mode the tool is responsible for its own framing, padding, and background.
|
|
2093
|
-
|
|
2094
|
-
#### Fallback
|
|
2095
|
-
|
|
2096
|
-
If a slot renderer is not defined or throws:
|
|
2097
|
-
- `renderCall`: Shows the tool name
|
|
2098
|
-
- `renderResult`: Shows raw text from `content`
|
|
2099
|
-
|
|
2100
|
-
## Custom UI
|
|
2101
|
-
|
|
2102
|
-
Extensions can interact with users via `ctx.ui` methods and customize how messages/tools render.
|
|
2103
|
-
|
|
2104
|
-
**For custom components, see [tui.md](tui.md)** which has copy-paste patterns for:
|
|
2105
|
-
- Selection dialogs (SelectList)
|
|
2106
|
-
- Async operations with cancel (BorderedLoader)
|
|
2107
|
-
- Settings toggles (SettingsList)
|
|
2108
|
-
- Status indicators (setStatus)
|
|
2109
|
-
- Working message, visibility, and indicator during streaming (`setWorkingMessage`, `setWorkingVisible`, `setWorkingIndicator`)
|
|
2110
|
-
- Widgets above/below editor (setWidget)
|
|
2111
|
-
- Autocomplete providers layered on top of built-in slash/path completion (addAutocompleteProvider)
|
|
2112
|
-
- Custom footers (setFooter)
|
|
2113
|
-
|
|
2114
|
-
### Dialogs
|
|
2115
|
-
|
|
2116
|
-
```typescript
|
|
2117
|
-
// Select from options
|
|
2118
|
-
const choice = await ctx.ui.select("Pick one:", ["A", "B", "C"]);
|
|
2119
|
-
|
|
2120
|
-
// Confirm dialog
|
|
2121
|
-
const ok = await ctx.ui.confirm("Delete?", "This cannot be undone");
|
|
2122
|
-
|
|
2123
|
-
// Text input
|
|
2124
|
-
const name = await ctx.ui.input("Name:", "placeholder");
|
|
2125
|
-
|
|
2126
|
-
// Multi-line editor
|
|
2127
|
-
const text = await ctx.ui.editor("Edit:", "prefilled text");
|
|
2128
|
-
|
|
2129
|
-
// Notification (non-blocking)
|
|
2130
|
-
ctx.ui.notify("Done!", "info"); // "info" | "warning" | "error"
|
|
2131
|
-
```
|
|
2132
|
-
|
|
2133
|
-
#### Timed Dialogs with Countdown
|
|
2134
|
-
|
|
2135
|
-
Dialogs support a `timeout` option that auto-dismisses with a live countdown display:
|
|
2136
|
-
|
|
2137
|
-
```typescript
|
|
2138
|
-
// Dialog shows "Title (5s)" → "Title (4s)" → ... → auto-dismisses at 0
|
|
2139
|
-
const confirmed = await ctx.ui.confirm(
|
|
2140
|
-
"Timed Confirmation",
|
|
2141
|
-
"This dialog will auto-cancel in 5 seconds. Confirm?",
|
|
2142
|
-
{ timeout: 5000 }
|
|
2143
|
-
);
|
|
2144
|
-
|
|
2145
|
-
if (confirmed) {
|
|
2146
|
-
// User confirmed
|
|
2147
|
-
} else {
|
|
2148
|
-
// User cancelled or timed out
|
|
2149
|
-
}
|
|
2150
|
-
```
|
|
2151
|
-
|
|
2152
|
-
**Return values on timeout:**
|
|
2153
|
-
- `select()` returns `undefined`
|
|
2154
|
-
- `confirm()` returns `false`
|
|
2155
|
-
- `input()` returns `undefined`
|
|
2156
|
-
|
|
2157
|
-
#### Manual Dismissal with AbortSignal
|
|
2158
|
-
|
|
2159
|
-
For more control (e.g., to distinguish timeout from user cancel), use `AbortSignal`:
|
|
2160
|
-
|
|
2161
|
-
```typescript
|
|
2162
|
-
const controller = new AbortController();
|
|
2163
|
-
const timeoutId = setTimeout(() => controller.abort(), 5000);
|
|
2164
|
-
|
|
2165
|
-
const confirmed = await ctx.ui.confirm(
|
|
2166
|
-
"Timed Confirmation",
|
|
2167
|
-
"This dialog will auto-cancel in 5 seconds. Confirm?",
|
|
2168
|
-
{ signal: controller.signal }
|
|
2169
|
-
);
|
|
2170
|
-
|
|
2171
|
-
clearTimeout(timeoutId);
|
|
2172
|
-
|
|
2173
|
-
if (confirmed) {
|
|
2174
|
-
// User confirmed
|
|
2175
|
-
} else if (controller.signal.aborted) {
|
|
2176
|
-
// Dialog timed out
|
|
2177
|
-
} else {
|
|
2178
|
-
// User cancelled (pressed Escape or selected "No")
|
|
2179
|
-
}
|
|
2180
|
-
```
|
|
2181
|
-
|
|
2182
|
-
See [examples/extensions/timed-confirm.ts](../examples/extensions/timed-confirm.ts) for complete examples.
|
|
2183
|
-
|
|
2184
|
-
### Widgets, Status, and Footer
|
|
2185
|
-
|
|
2186
|
-
```typescript
|
|
2187
|
-
// Status in footer (persistent until cleared)
|
|
2188
|
-
ctx.ui.setStatus("my-ext", "Processing...");
|
|
2189
|
-
ctx.ui.setStatus("my-ext", undefined); // Clear
|
|
2190
|
-
|
|
2191
|
-
// Working loader (shown during streaming)
|
|
2192
|
-
ctx.ui.setWorkingMessage("Thinking deeply...");
|
|
2193
|
-
ctx.ui.setWorkingMessage(); // Restore default
|
|
2194
|
-
ctx.ui.setWorkingVisible(false); // Hide the built-in working loader row entirely
|
|
2195
|
-
ctx.ui.setWorkingVisible(true); // Show the built-in working loader row
|
|
2196
|
-
|
|
2197
|
-
// Working indicator (shown during streaming)
|
|
2198
|
-
ctx.ui.setWorkingIndicator({ frames: [ctx.ui.theme.fg("accent", "●")] }); // Static dot
|
|
2199
|
-
ctx.ui.setWorkingIndicator({
|
|
2200
|
-
frames: [
|
|
2201
|
-
ctx.ui.theme.fg("dim", "·"),
|
|
2202
|
-
ctx.ui.theme.fg("muted", "•"),
|
|
2203
|
-
ctx.ui.theme.fg("accent", "●"),
|
|
2204
|
-
ctx.ui.theme.fg("muted", "•"),
|
|
2205
|
-
],
|
|
2206
|
-
intervalMs: 120,
|
|
2207
|
-
});
|
|
2208
|
-
ctx.ui.setWorkingIndicator({ frames: [] }); // Hide indicator
|
|
2209
|
-
ctx.ui.setWorkingIndicator(); // Restore default spinner
|
|
2210
|
-
|
|
2211
|
-
// Widget above editor (default)
|
|
2212
|
-
ctx.ui.setWidget("my-widget", ["Line 1", "Line 2"]);
|
|
2213
|
-
// Widget below editor
|
|
2214
|
-
ctx.ui.setWidget("my-widget", ["Line 1", "Line 2"], { placement: "belowEditor" });
|
|
2215
|
-
ctx.ui.setWidget("my-widget", (tui, theme) => new Text(theme.fg("accent", "Custom"), 0, 0));
|
|
2216
|
-
ctx.ui.setWidget("my-widget", undefined); // Clear
|
|
2217
|
-
|
|
2218
|
-
// Custom footer (replaces built-in footer entirely)
|
|
2219
|
-
ctx.ui.setFooter((tui, theme) => ({
|
|
2220
|
-
render(width) { return [theme.fg("dim", "Custom footer")]; },
|
|
2221
|
-
invalidate() {},
|
|
2222
|
-
}));
|
|
2223
|
-
ctx.ui.setFooter(undefined); // Restore built-in footer
|
|
2224
|
-
|
|
2225
|
-
// Terminal title
|
|
2226
|
-
ctx.ui.setTitle("pi - my-project");
|
|
2227
|
-
|
|
2228
|
-
// Editor text
|
|
2229
|
-
ctx.ui.setEditorText("Prefill text");
|
|
2230
|
-
const current = ctx.ui.getEditorText();
|
|
2231
|
-
|
|
2232
|
-
// Paste into editor (triggers paste handling, including collapse for large content)
|
|
2233
|
-
ctx.ui.pasteToEditor("pasted content");
|
|
2234
|
-
|
|
2235
|
-
// Stack custom autocomplete behavior on top of the built-in provider
|
|
2236
|
-
ctx.ui.addAutocompleteProvider((current) => ({
|
|
2237
|
-
async getSuggestions(lines, line, col, options) {
|
|
2238
|
-
const beforeCursor = (lines[line] ?? "").slice(0, col);
|
|
2239
|
-
const match = beforeCursor.match(/(?:^|[ \t])#([^\s#]*)$/);
|
|
2240
|
-
if (!match) {
|
|
2241
|
-
return current.getSuggestions(lines, line, col, options);
|
|
2242
|
-
}
|
|
2243
|
-
|
|
2244
|
-
return {
|
|
2245
|
-
prefix: `#${match[1] ?? ""}`,
|
|
2246
|
-
items: [{ value: "#2983", label: "#2983", description: "Extension API for autocomplete" }],
|
|
2247
|
-
};
|
|
2248
|
-
},
|
|
2249
|
-
applyCompletion(lines, line, col, item, prefix) {
|
|
2250
|
-
return current.applyCompletion(lines, line, col, item, prefix);
|
|
2251
|
-
},
|
|
2252
|
-
shouldTriggerFileCompletion(lines, line, col) {
|
|
2253
|
-
return current.shouldTriggerFileCompletion?.(lines, line, col) ?? true;
|
|
2254
|
-
},
|
|
2255
|
-
}));
|
|
2256
|
-
|
|
2257
|
-
// Tool output expansion
|
|
2258
|
-
const wasExpanded = ctx.ui.getToolsExpanded();
|
|
2259
|
-
ctx.ui.setToolsExpanded(true);
|
|
2260
|
-
ctx.ui.setToolsExpanded(wasExpanded);
|
|
2261
|
-
|
|
2262
|
-
// Custom editor (vim mode, emacs mode, etc.)
|
|
2263
|
-
ctx.ui.setEditorComponent((tui, theme, keybindings) => new VimEditor(tui, theme, keybindings));
|
|
2264
|
-
const currentEditor = ctx.ui.getEditorComponent();
|
|
2265
|
-
ctx.ui.setEditorComponent((tui, theme, keybindings) =>
|
|
2266
|
-
new WrappedEditor(tui, theme, keybindings, currentEditor?.(tui, theme, keybindings))
|
|
2267
|
-
);
|
|
2268
|
-
ctx.ui.setEditorComponent(undefined); // Restore default editor
|
|
2269
|
-
|
|
2270
|
-
// Theme management (see themes.md for creating themes)
|
|
2271
|
-
const themes = ctx.ui.getAllThemes(); // [{ name: "dark", path: "/..." | undefined }, ...]
|
|
2272
|
-
const lightTheme = ctx.ui.getTheme("light"); // Load without switching
|
|
2273
|
-
const result = ctx.ui.setTheme("light"); // Switch by name
|
|
2274
|
-
if (!result.success) {
|
|
2275
|
-
ctx.ui.notify(`Failed: ${result.error}`, "error");
|
|
2276
|
-
}
|
|
2277
|
-
ctx.ui.setTheme(lightTheme!); // Or switch by Theme object
|
|
2278
|
-
ctx.ui.theme.fg("accent", "styled text"); // Access current theme
|
|
2279
|
-
```
|
|
2280
|
-
|
|
2281
|
-
Custom working-indicator frames are rendered verbatim. If you want colors, add them to the frame strings yourself, for example with `ctx.ui.theme.fg(...)`.
|
|
2282
|
-
|
|
2283
|
-
### Autocomplete Providers
|
|
2284
|
-
|
|
2285
|
-
Use `ctx.ui.addAutocompleteProvider()` to stack custom autocomplete logic on top of the built-in slash-command and path provider.
|
|
2286
|
-
|
|
2287
|
-
Typical pattern:
|
|
2288
|
-
|
|
2289
|
-
- inspect the text before the cursor
|
|
2290
|
-
- return your own suggestions when your extension-specific syntax matches
|
|
2291
|
-
- otherwise delegate to `current.getSuggestions(...)`
|
|
2292
|
-
- delegate `applyCompletion(...)` unless you need custom insertion behavior
|
|
2293
|
-
|
|
2294
|
-
```typescript
|
|
2295
|
-
pi.on("session_start", (_event, ctx) => {
|
|
2296
|
-
ctx.ui.addAutocompleteProvider((current) => ({
|
|
2297
|
-
async getSuggestions(lines, cursorLine, cursorCol, options) {
|
|
2298
|
-
const line = lines[cursorLine] ?? "";
|
|
2299
|
-
const beforeCursor = line.slice(0, cursorCol);
|
|
2300
|
-
const match = beforeCursor.match(/(?:^|[ \t])#([^\s#]*)$/);
|
|
2301
|
-
if (!match) {
|
|
2302
|
-
return current.getSuggestions(lines, cursorLine, cursorCol, options);
|
|
2303
|
-
}
|
|
2304
|
-
|
|
2305
|
-
return {
|
|
2306
|
-
prefix: `#${match[1] ?? ""}`,
|
|
2307
|
-
items: [
|
|
2308
|
-
{ value: "#2983", label: "#2983", description: "Extension API for registering custom @ autocomplete providers" },
|
|
2309
|
-
{ value: "#2753", label: "#2753", description: "Reload stale resource settings" },
|
|
2310
|
-
],
|
|
2311
|
-
};
|
|
2312
|
-
},
|
|
2313
|
-
|
|
2314
|
-
applyCompletion(lines, cursorLine, cursorCol, item, prefix) {
|
|
2315
|
-
return current.applyCompletion(lines, cursorLine, cursorCol, item, prefix);
|
|
2316
|
-
},
|
|
2317
|
-
|
|
2318
|
-
shouldTriggerFileCompletion(lines, cursorLine, cursorCol) {
|
|
2319
|
-
return current.shouldTriggerFileCompletion?.(lines, cursorLine, cursorCol) ?? true;
|
|
2320
|
-
},
|
|
2321
|
-
}));
|
|
2322
|
-
});
|
|
2323
|
-
```
|
|
2324
|
-
|
|
2325
|
-
See [github-issue-autocomplete.ts](../examples/extensions/github-issue-autocomplete.ts) for a complete example that preloads the latest open GitHub issues with `gh issue list` and filters them locally for fast `#...` completion. It requires GitHub CLI (`gh`) and a GitHub repository checkout.
|
|
2326
|
-
|
|
2327
|
-
### Custom Components
|
|
2328
|
-
|
|
2329
|
-
For complex UI, use `ctx.ui.custom()`. This temporarily replaces the editor with your component until `done()` is called:
|
|
2330
|
-
|
|
2331
|
-
```typescript
|
|
2332
|
-
import { Text, Component } from "@earendil-works/pi-tui";
|
|
2333
|
-
|
|
2334
|
-
const result = await ctx.ui.custom<boolean>((tui, theme, keybindings, done) => {
|
|
2335
|
-
const text = new Text("Press Enter to confirm, Escape to cancel", 1, 1);
|
|
2336
|
-
|
|
2337
|
-
text.onKey = (key) => {
|
|
2338
|
-
if (key === "return") done(true);
|
|
2339
|
-
if (key === "escape") done(false);
|
|
2340
|
-
return true;
|
|
2341
|
-
};
|
|
2342
|
-
|
|
2343
|
-
return text;
|
|
2344
|
-
});
|
|
2345
|
-
|
|
2346
|
-
if (result) {
|
|
2347
|
-
// User pressed Enter
|
|
2348
|
-
}
|
|
2349
|
-
```
|
|
2350
|
-
|
|
2351
|
-
The callback receives:
|
|
2352
|
-
- `tui` - TUI instance (for screen dimensions, focus management)
|
|
2353
|
-
- `theme` - Current theme for styling
|
|
2354
|
-
- `keybindings` - App keybinding manager (for checking shortcuts)
|
|
2355
|
-
- `done(value)` - Call to close component and return value
|
|
2356
|
-
|
|
2357
|
-
See [tui.md](tui.md) for the full component API.
|
|
2358
|
-
|
|
2359
|
-
#### Overlay Mode (Experimental)
|
|
2360
|
-
|
|
2361
|
-
Pass `{ overlay: true }` to render the component as a floating modal on top of existing content, without clearing the screen:
|
|
2362
|
-
|
|
2363
|
-
```typescript
|
|
2364
|
-
const result = await ctx.ui.custom<string | null>(
|
|
2365
|
-
(tui, theme, keybindings, done) => new MyOverlayComponent({ onClose: done }),
|
|
2366
|
-
{ overlay: true }
|
|
2367
|
-
);
|
|
2368
|
-
```
|
|
2369
|
-
|
|
2370
|
-
For advanced positioning (anchors, margins, percentages, responsive visibility), pass `overlayOptions`. Use `onHandle` to control visibility programmatically:
|
|
2371
|
-
|
|
2372
|
-
```typescript
|
|
2373
|
-
const result = await ctx.ui.custom<string | null>(
|
|
2374
|
-
(tui, theme, keybindings, done) => new MyOverlayComponent({ onClose: done }),
|
|
2375
|
-
{
|
|
2376
|
-
overlay: true,
|
|
2377
|
-
overlayOptions: { anchor: "top-right", width: "50%", margin: 2 },
|
|
2378
|
-
onHandle: (handle) => { /* handle.setHidden(true/false) */ }
|
|
2379
|
-
}
|
|
2380
|
-
);
|
|
2381
|
-
```
|
|
2382
|
-
|
|
2383
|
-
See [tui.md](tui.md) for the full `OverlayOptions` API and [overlay-qa-tests.ts](../examples/extensions/overlay-qa-tests.ts) for examples.
|
|
2384
|
-
|
|
2385
|
-
### Custom Editor
|
|
2386
|
-
|
|
2387
|
-
Replace the main input editor with a custom implementation (vim mode, emacs mode, etc.):
|
|
2388
|
-
|
|
2389
|
-
```typescript
|
|
2390
|
-
import { CustomEditor, type ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2391
|
-
import { matchesKey } from "@earendil-works/pi-tui";
|
|
2392
|
-
|
|
2393
|
-
class VimEditor extends CustomEditor {
|
|
2394
|
-
private mode: "normal" | "insert" = "insert";
|
|
2395
|
-
|
|
2396
|
-
handleInput(data: string): void {
|
|
2397
|
-
if (matchesKey(data, "escape") && this.mode === "insert") {
|
|
2398
|
-
this.mode = "normal";
|
|
2399
|
-
return;
|
|
2400
|
-
}
|
|
2401
|
-
if (this.mode === "normal" && data === "i") {
|
|
2402
|
-
this.mode = "insert";
|
|
2403
|
-
return;
|
|
2404
|
-
}
|
|
2405
|
-
super.handleInput(data); // App keybindings + text editing
|
|
2406
|
-
}
|
|
2407
|
-
}
|
|
2408
|
-
|
|
2409
|
-
export default function (pi: ExtensionAPI) {
|
|
2410
|
-
pi.on("session_start", (_event, ctx) => {
|
|
2411
|
-
ctx.ui.setEditorComponent((_tui, theme, keybindings) =>
|
|
2412
|
-
new VimEditor(theme, keybindings)
|
|
2413
|
-
);
|
|
2414
|
-
});
|
|
2415
|
-
}
|
|
2416
|
-
```
|
|
2417
|
-
|
|
2418
|
-
**Key points:**
|
|
2419
|
-
- Extend `CustomEditor` (not base `Editor`) to get app keybindings (escape to abort, ctrl+d, model switching)
|
|
2420
|
-
- Call `super.handleInput(data)` for keys you don't handle
|
|
2421
|
-
- Factory receives `theme` and `keybindings` from the app
|
|
2422
|
-
- Use `ctx.ui.getEditorComponent()` before `setEditorComponent()` to wrap the previously configured custom editor
|
|
2423
|
-
- Pass `undefined` to restore default: `ctx.ui.setEditorComponent(undefined)`
|
|
2424
|
-
|
|
2425
|
-
To compose with another extension that already replaced the editor, capture the previous factory before setting yours:
|
|
2426
|
-
|
|
2427
|
-
```typescript
|
|
2428
|
-
const previous = ctx.ui.getEditorComponent();
|
|
2429
|
-
ctx.ui.setEditorComponent((tui, theme, keybindings) =>
|
|
2430
|
-
new MyEditor(tui, theme, keybindings, { base: previous?.(tui, theme, keybindings) })
|
|
2431
|
-
);
|
|
2432
|
-
```
|
|
2433
|
-
|
|
2434
|
-
See [tui.md](tui.md) Pattern 7 for a complete example with mode indicator.
|
|
2435
|
-
|
|
2436
|
-
### Message Rendering
|
|
2437
|
-
|
|
2438
|
-
Register a custom renderer for messages with your `customType`:
|
|
2439
|
-
|
|
2440
|
-
```typescript
|
|
2441
|
-
import { Text } from "@earendil-works/pi-tui";
|
|
2442
|
-
|
|
2443
|
-
pi.registerMessageRenderer("my-extension", (message, options, theme) => {
|
|
2444
|
-
const { expanded } = options;
|
|
2445
|
-
let text = theme.fg("accent", `[${message.customType}] `);
|
|
2446
|
-
text += message.content;
|
|
2447
|
-
|
|
2448
|
-
if (expanded && message.details) {
|
|
2449
|
-
text += "\n" + theme.fg("dim", JSON.stringify(message.details, null, 2));
|
|
2450
|
-
}
|
|
2451
|
-
|
|
2452
|
-
return new Text(text, 0, 0);
|
|
2453
|
-
});
|
|
2454
|
-
```
|
|
2455
|
-
|
|
2456
|
-
Messages are sent via `pi.sendMessage()`:
|
|
2457
|
-
|
|
2458
|
-
```typescript
|
|
2459
|
-
pi.sendMessage({
|
|
2460
|
-
customType: "my-extension", // Matches registerMessageRenderer
|
|
2461
|
-
content: "Status update",
|
|
2462
|
-
display: true, // Show in TUI
|
|
2463
|
-
details: { ... }, // Available in renderer
|
|
2464
|
-
});
|
|
2465
|
-
```
|
|
2466
|
-
|
|
2467
|
-
### Theme Colors
|
|
2468
|
-
|
|
2469
|
-
All render functions receive a `theme` object. See [themes.md](themes.md) for creating custom themes and the full color palette.
|
|
2470
|
-
|
|
2471
|
-
```typescript
|
|
2472
|
-
// Foreground colors
|
|
2473
|
-
theme.fg("toolTitle", text) // Tool names
|
|
2474
|
-
theme.fg("accent", text) // Highlights
|
|
2475
|
-
theme.fg("success", text) // Success (green)
|
|
2476
|
-
theme.fg("error", text) // Errors (red)
|
|
2477
|
-
theme.fg("warning", text) // Warnings (yellow)
|
|
2478
|
-
theme.fg("muted", text) // Secondary text
|
|
2479
|
-
theme.fg("dim", text) // Tertiary text
|
|
2480
|
-
|
|
2481
|
-
// Text styles
|
|
2482
|
-
theme.bold(text)
|
|
2483
|
-
theme.italic(text)
|
|
2484
|
-
theme.strikethrough(text)
|
|
2485
|
-
```
|
|
2486
|
-
|
|
2487
|
-
For syntax highlighting in custom tool renderers:
|
|
2488
|
-
|
|
2489
|
-
```typescript
|
|
2490
|
-
import { highlightCode, getLanguageFromPath } from "@earendil-works/pi-coding-agent";
|
|
2491
|
-
|
|
2492
|
-
// Highlight code with explicit language
|
|
2493
|
-
const highlighted = highlightCode("const x = 1;", "typescript", theme);
|
|
2494
|
-
|
|
2495
|
-
// Auto-detect language from file path
|
|
2496
|
-
const lang = getLanguageFromPath("/path/to/file.rs"); // "rust"
|
|
2497
|
-
const highlighted = highlightCode(code, lang, theme);
|
|
2498
|
-
```
|
|
2499
|
-
|
|
2500
|
-
## Error Handling
|
|
2501
|
-
|
|
2502
|
-
- Extension errors are logged, agent continues
|
|
2503
|
-
- `tool_call` errors block the tool (fail-safe)
|
|
2504
|
-
- Tool `execute` errors must be signaled by throwing; the thrown error is caught, reported to the LLM with `isError: true`, and execution continues
|
|
2505
|
-
|
|
2506
|
-
## Mode Behavior
|
|
2507
|
-
|
|
2508
|
-
| Mode | UI Methods | Notes |
|
|
2509
|
-
|------|-----------|-------|
|
|
2510
|
-
| Interactive | Full TUI | Normal operation |
|
|
2511
|
-
| RPC (`--mode rpc`) | JSON protocol | Host handles UI, see [rpc.md](rpc.md) |
|
|
2512
|
-
| JSON (`--mode json`) | No-op | Event stream to stdout, see [json.md](json.md) |
|
|
2513
|
-
| Print (`-p`) | No-op | Extensions run but can't prompt |
|
|
2514
|
-
|
|
2515
|
-
In non-interactive modes, check `ctx.hasUI` before using UI methods.
|
|
2516
|
-
|
|
2517
|
-
## Examples Reference
|
|
2518
|
-
|
|
2519
|
-
All examples in [examples/extensions/](../examples/extensions/).
|
|
2520
|
-
|
|
2521
|
-
| Example | Description | Key APIs |
|
|
2522
|
-
|---------|-------------|----------|
|
|
2523
|
-
| **Tools** |||
|
|
2524
|
-
| `hello.ts` | Minimal tool registration | `registerTool` |
|
|
2525
|
-
| `question.ts` | Tool with user interaction | `registerTool`, `ui.select` |
|
|
2526
|
-
| `questionnaire.ts` | Multi-step wizard tool | `registerTool`, `ui.custom` |
|
|
2527
|
-
| `todo.ts` | Stateful tool with persistence | `registerTool`, `appendEntry`, `renderResult`, session events |
|
|
2528
|
-
| `dynamic-tools.ts` | Register tools after startup and during commands | `registerTool`, `session_start`, `registerCommand` |
|
|
2529
|
-
| `structured-output.ts` | Final structured-output tool with `terminate: true` | `registerTool`, terminating tool results |
|
|
2530
|
-
| `truncated-tool.ts` | Output truncation example | `registerTool`, `truncateHead` |
|
|
2531
|
-
| `tool-override.ts` | Override built-in read tool | `registerTool` (same name as built-in) |
|
|
2532
|
-
| **Commands** |||
|
|
2533
|
-
| `pirate.ts` | Modify system prompt per-turn | `registerCommand`, `before_agent_start` |
|
|
2534
|
-
| `summarize.ts` | Conversation summary command | `registerCommand`, `ui.custom` |
|
|
2535
|
-
| `handoff.ts` | Cross-provider model handoff | `registerCommand`, `ui.editor`, `ui.custom` |
|
|
2536
|
-
| `qna.ts` | Q&A with custom UI | `registerCommand`, `ui.custom`, `setEditorText` |
|
|
2537
|
-
| `send-user-message.ts` | Inject user messages | `registerCommand`, `sendUserMessage` |
|
|
2538
|
-
| `reload-runtime.ts` | Reload command and LLM tool handoff | `registerCommand`, `ctx.reload()`, `sendUserMessage` |
|
|
2539
|
-
| `shutdown-command.ts` | Graceful shutdown command | `registerCommand`, `shutdown()` |
|
|
2540
|
-
| **Events & Gates** |||
|
|
2541
|
-
| `permission-gate.ts` | Block dangerous commands | `on("tool_call")`, `ui.confirm` |
|
|
2542
|
-
| `protected-paths.ts` | Block writes to specific paths | `on("tool_call")` |
|
|
2543
|
-
| `confirm-destructive.ts` | Confirm session changes | `on("session_before_switch")`, `on("session_before_fork")` |
|
|
2544
|
-
| `dirty-repo-guard.ts` | Warn on dirty git repo | `on("session_before_*")`, `exec` |
|
|
2545
|
-
| `input-transform.ts` | Transform user input | `on("input")` |
|
|
2546
|
-
| `model-status.ts` | React to model changes | `on("model_select")`, `setStatus` |
|
|
2547
|
-
| `provider-payload.ts` | Inspect payloads and provider response headers | `on("before_provider_request")`, `on("after_provider_response")` |
|
|
2548
|
-
| `system-prompt-header.ts` | Display system prompt info | `on("agent_start")`, `getSystemPrompt` |
|
|
2549
|
-
| `claude-rules.ts` | Load rules from files | `on("session_start")`, `on("before_agent_start")` |
|
|
2550
|
-
| `prompt-customizer.ts` | Add context-aware tool guidance using `systemPromptOptions` | `on("before_agent_start")`, `BuildSystemPromptOptions` |
|
|
2551
|
-
| `file-trigger.ts` | File watcher triggers messages | `sendMessage` |
|
|
2552
|
-
| **Compaction & Sessions** |||
|
|
2553
|
-
| `custom-compaction.ts` | Custom compaction summary | `on("session_before_compact")` |
|
|
2554
|
-
| `trigger-compact.ts` | Trigger compaction manually | `compact()` |
|
|
2555
|
-
| `git-checkpoint.ts` | Git stash on turns | `on("turn_start")`, `on("session_before_fork")`, `exec` |
|
|
2556
|
-
| `auto-commit-on-exit.ts` | Commit on shutdown | `on("session_shutdown")`, `exec` |
|
|
2557
|
-
| **UI Components** |||
|
|
2558
|
-
| `status-line.ts` | Footer status indicator | `setStatus`, session events |
|
|
2559
|
-
| `working-indicator.ts` | Customize the streaming working indicator | `setWorkingIndicator`, `registerCommand` |
|
|
2560
|
-
| `github-issue-autocomplete.ts` | Add `#1234` issue completions on top of built-in autocomplete by preloading recent open issues from `gh issue list` | `addAutocompleteProvider`, `on("session_start")`, `exec` |
|
|
2561
|
-
| `custom-footer.ts` | Replace footer entirely | `registerCommand`, `setFooter` |
|
|
2562
|
-
| `custom-header.ts` | Replace startup header | `on("session_start")`, `setHeader` |
|
|
2563
|
-
| `modal-editor.ts` | Vim-style modal editor | `setEditorComponent`, `CustomEditor` |
|
|
2564
|
-
| `rainbow-editor.ts` | Custom editor styling | `setEditorComponent` |
|
|
2565
|
-
| `widget-placement.ts` | Widget above/below editor | `setWidget` |
|
|
2566
|
-
| `overlay-test.ts` | Overlay components | `ui.custom` with overlay options |
|
|
2567
|
-
| `overlay-qa-tests.ts` | Comprehensive overlay tests | `ui.custom`, all overlay options |
|
|
2568
|
-
| `notify.ts` | Simple notifications | `ui.notify` |
|
|
2569
|
-
| `timed-confirm.ts` | Dialogs with timeout | `ui.confirm` with timeout/signal |
|
|
2570
|
-
| `mac-system-theme.ts` | Auto-switch theme | `setTheme`, `exec` |
|
|
2571
|
-
| **Complex Extensions** |||
|
|
2572
|
-
| `plan-mode/` | Full plan mode implementation | All event types, `registerCommand`, `registerShortcut`, `registerFlag`, `setStatus`, `setWidget`, `sendMessage`, `setActiveTools` |
|
|
2573
|
-
| `preset.ts` | Saveable presets (model, tools, thinking) | `registerCommand`, `registerShortcut`, `registerFlag`, `setModel`, `setActiveTools`, `setThinkingLevel`, `appendEntry` |
|
|
2574
|
-
| `tools.ts` | Toggle tools on/off UI | `registerCommand`, `setActiveTools`, `SettingsList`, session events |
|
|
2575
|
-
| **Remote & Sandbox** |||
|
|
2576
|
-
| `ssh.ts` | SSH remote execution | `registerFlag`, `on("user_bash")`, `on("before_agent_start")`, tool operations |
|
|
2577
|
-
| `interactive-shell.ts` | Persistent shell session | `on("user_bash")` |
|
|
2578
|
-
| `sandbox/` | Sandboxed tool execution | Tool operations |
|
|
2579
|
-
| `subagent/` | Spawn sub-agents | `registerTool`, `exec` |
|
|
2580
|
-
| **Games** |||
|
|
2581
|
-
| `snake.ts` | Snake game | `registerCommand`, `ui.custom`, keyboard handling |
|
|
2582
|
-
| `space-invaders.ts` | Space Invaders game | `registerCommand`, `ui.custom` |
|
|
2583
|
-
| `doom-overlay/` | Doom in overlay | `ui.custom` with overlay |
|
|
2584
|
-
| **Providers** |||
|
|
2585
|
-
| `custom-provider-anthropic/` | Custom Anthropic proxy | `registerProvider` |
|
|
2586
|
-
| `custom-provider-gitlab-duo/` | GitLab Duo integration | `registerProvider` with OAuth |
|
|
2587
|
-
| **Messages & Communication** |||
|
|
2588
|
-
| `message-renderer.ts` | Custom message rendering | `registerMessageRenderer`, `sendMessage` |
|
|
2589
|
-
| `event-bus.ts` | Inter-extension events | `pi.events` |
|
|
2590
|
-
| **Session Metadata** |||
|
|
2591
|
-
| `session-name.ts` | Name sessions for selector | `setSessionName`, `getSessionName` |
|
|
2592
|
-
| `bookmark.ts` | Bookmark entries for /tree | `setLabel` |
|
|
2593
|
-
| **Misc** |||
|
|
2594
|
-
| `inline-bash.ts` | Inline bash in tool calls | `on("tool_call")` |
|
|
2595
|
-
| `bash-spawn-hook.ts` | Adjust bash command, cwd, and env before execution | `createBashTool`, `spawnHook` |
|
|
2596
|
-
| `with-deps/` | Extension with npm dependencies | Package structure with `package.json` |
|