@auto-ai/agent 2.1.98 → 2.1.101
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/dist/404.html +1 -1
- package/dist/_next/static/chunks/61a0a3d64729e396.js +5 -0
- package/dist/_next/static/chunks/{52e2164e45febae6.js → 709b3b8b804968f9.js} +1 -1
- package/dist/_next/static/chunks/ca9f8762dcc69f96.js +1 -0
- package/dist/_next/static/chunks/e070f5d18cd33b41.js +5 -0
- package/dist/_next/static/chunks/e520aa06a5014225.js +1 -0
- package/dist/_next/static/chunks/f2835908a39a5ecd.js +1 -0
- package/dist/_next/static/chunks/{turbopack-3d84668fefd38b4b.js → turbopack-c6738ed405f889d3.js} +1 -1
- package/dist/_next/static/chunks/{turbopack-8b41433c9a94981f.js → turbopack-d89adea5a8b1dc47.js} +1 -1
- package/dist/_next/static/chunks/{turbopack-be468c2a89b10d33.js → turbopack-fd992622892ef26f.js} +1 -1
- package/dist/_next/static/{cTHBIunE3OANgRkUnrMUo → sZLdRgbBZICVvq28FwOCR}/_buildManifest.js +1 -1
- package/dist/index.html +1 -1
- package/dist/index.txt +25 -27
- package/dist/manage/{about/index.html → about.html} +2 -2
- package/dist/manage/about.txt +38 -0
- package/dist/manage/add-account/{index.html → basic.html} +2 -2
- package/dist/manage/add-account/basic.txt +36 -0
- package/dist/manage/add-account/{prompt/index.html → prompt.html} +2 -2
- package/dist/manage/add-account/prompt.txt +37 -0
- package/dist/manage/{add-account/basic/index.html → add-account.html} +2 -2
- package/dist/manage/add-account.txt +42 -0
- package/dist/manage/{agent-teams/index.html → agent-teams.html} +2 -2
- package/dist/manage/agent-teams.txt +42 -0
- package/dist/manage/{env/index.html → env.html} +2 -2
- package/dist/manage/env.txt +41 -0
- package/dist/manage/{permissions/index.html → general.html} +2 -2
- package/dist/manage/general.txt +39 -0
- package/dist/manage/{mcp/index.html → mcp.html} +2 -2
- package/dist/manage/mcp.txt +41 -0
- package/dist/manage/{general/index.html → permissions.html} +2 -2
- package/dist/manage/permissions.txt +39 -0
- package/dist/manage/{skills/index.html → skills.html} +2 -2
- package/dist/manage/skills.txt +41 -0
- package/dist/manage/{task/index.html → task.html} +2 -2
- package/dist/manage/task.txt +39 -0
- package/dist/manage/teams.html +1 -0
- package/dist/manage/teams.txt +38 -0
- package/dist/manage/{tools/index.html → tools.html} +2 -2
- package/dist/manage/tools.txt +41 -0
- package/dist/manage.html +1 -0
- package/dist/manage.txt +35 -0
- package/lib/launcher-env.js +63 -4
- package/package.json +8 -6
- package/skills-runtime/geelib/SKILL.md +229 -0
- package/skills-runtime/geelib/build.mjs +15 -0
- package/skills-runtime/geelib/cli/args.ts +67 -0
- package/skills-runtime/geelib/cli/auth.ts +159 -0
- package/skills-runtime/geelib/cli/client.ts +56 -0
- package/skills-runtime/geelib/cli/commands/comment.ts +25 -0
- package/skills-runtime/geelib/cli/commands/matter.ts +167 -0
- package/skills-runtime/geelib/cli/commands/poll.ts +322 -0
- package/skills-runtime/geelib/cli/commands/project.ts +98 -0
- package/skills-runtime/geelib/cli/commands/user.ts +5 -0
- package/skills-runtime/geelib/cli/index.ts +171 -0
- package/skills-runtime/geelib/geelib-poller-state.json +17 -0
- package/skills-runtime/geelib/geelib.mjs +762 -0
- package/skills-runtime/geelib/node_modules/.package-lock.json +67 -0
- package/skills-runtime/geelib/node_modules/@esbuild/linux-x64/README.md +3 -0
- package/skills-runtime/geelib/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/skills-runtime/geelib/node_modules/@esbuild/linux-x64/package.json +20 -0
- package/skills-runtime/geelib/node_modules/esbuild/LICENSE.md +21 -0
- package/skills-runtime/geelib/node_modules/esbuild/README.md +3 -0
- package/skills-runtime/geelib/node_modules/esbuild/bin/esbuild +0 -0
- package/skills-runtime/geelib/node_modules/esbuild/install.js +289 -0
- package/skills-runtime/geelib/node_modules/esbuild/lib/main.d.ts +716 -0
- package/skills-runtime/geelib/node_modules/esbuild/lib/main.js +2242 -0
- package/skills-runtime/geelib/node_modules/esbuild/package.json +49 -0
- package/skills-runtime/geelib/package-lock.json +499 -0
- package/skills-runtime/geelib/package.json +12 -0
- package/tools-runtime/code-tool/build-cli.ts +10 -0
- package/tools-runtime/code-tool/build.ts +10 -0
- package/tools-runtime/code-tool/bun.lock +15 -0
- package/tools-runtime/code-tool/code-tool.mjs +292 -0
- package/tools-runtime/code-tool/index.cjs +15179 -0
- package/tools-runtime/code-tool/node_modules/zod/LICENSE +21 -0
- package/tools-runtime/code-tool/node_modules/zod/README.md +191 -0
- package/tools-runtime/code-tool/node_modules/zod/index.cjs +33 -0
- package/tools-runtime/code-tool/node_modules/zod/index.d.cts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/index.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/index.js +4 -0
- package/tools-runtime/code-tool/node_modules/zod/locales/index.cjs +17 -0
- package/tools-runtime/code-tool/node_modules/zod/locales/index.d.cts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/locales/index.d.ts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/locales/index.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/locales/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/mini/index.cjs +32 -0
- package/tools-runtime/code-tool/node_modules/zod/mini/index.d.cts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/mini/index.d.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/mini/index.js +3 -0
- package/tools-runtime/code-tool/node_modules/zod/mini/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/package.json +135 -0
- package/tools-runtime/code-tool/node_modules/zod/src/index.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/src/locales/index.ts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/src/mini/index.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/errors.ts +13 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/external.ts +6 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/index.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/function.test.ts +261 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v3/types.ts +5138 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/checks.ts +32 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/compat.ts +70 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/errors.ts +82 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/external.ts +52 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/from-json-schema.ts +659 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/parse.ts +82 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/schemas.ts +2672 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/assignability.test.ts +216 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/catch.test.ts +326 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/codec.test.ts +703 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/default.test.ts +409 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/detached-methods.test.ts +197 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +694 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +807 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +895 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/global-config.test.ts +39 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/jitless-allows-eval.test.ts +46 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/locales_ka.test.ts +29 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/locales_ro.test.ts +24 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/number.test.ts +325 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/object.test.ts +717 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/optional.test.ts +333 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/partial.test.ts +450 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/preprocess-types.test.ts +26 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +351 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/record.test.ts +717 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +631 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/refine.test.ts +633 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/string.test.ts +1224 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +3125 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/transform.test.ts +378 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/tuple.test.ts +496 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/union.test.ts +273 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/api.ts +1823 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/checks.ts +1293 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/config.ts +15 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/core.ts +153 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/errors.ts +455 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/index.ts +16 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/json-schema-processors.ts +666 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/json-schema.ts +147 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/parse.ts +195 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/regexes.ts +190 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/registries.ts +105 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/schemas.ts +4730 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/el.test.ts +215 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/fr.test.ts +72 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/hr.test.ts +163 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +105 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +125 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/to-json-schema.ts +622 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/util.ts +983 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/index.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ar.ts +115 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/az.ts +111 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/be.ts +176 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/bg.ts +128 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ca.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/cs.ts +118 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/da.ts +123 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/de.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/el.ts +121 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/en.ts +123 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/eo.ts +118 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/es.ts +141 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/fa.ts +126 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/fi.ts +121 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/fr.ts +132 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/he.ts +246 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/hr.ts +131 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/hu.ts +117 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/hy.ts +164 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/id.ts +115 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/index.ts +52 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/is.ts +119 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/it.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ja.ts +114 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ka.ts +123 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/kh.ts +7 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/km.ts +119 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ko.ts +121 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/lt.ts +239 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/mk.ts +118 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ms.ts +115 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/nl.ts +121 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/no.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ota.ts +117 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/pl.ts +118 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ps.ts +126 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/pt.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ro.ts +129 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ru.ts +176 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/sl.ts +118 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/sv.ts +119 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ta.ts +118 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/th.ts +119 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/tr.ts +111 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ua.ts +7 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/uk.ts +117 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/ur.ts +119 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/uz.ts +117 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/vi.ts +117 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/yo.ts +124 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/coerce.ts +27 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/external.ts +41 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/iso.ts +66 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/parse.ts +14 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/schemas.ts +1947 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/codec.test.ts +548 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/index.test.ts +993 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +325 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4/mini/tests/string.test.ts +352 -0
- package/tools-runtime/code-tool/node_modules/zod/src/v4-mini/index.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/ZodError.cjs +138 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/ZodError.js +133 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/errors.cjs +17 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/errors.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/errors.d.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/errors.js +9 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/external.cjs +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/external.d.cts +6 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/external.d.ts +6 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/external.js +6 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/helpers/util.js +133 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/index.cjs +33 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/index.d.cts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/index.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/index.js +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/locales/en.cjs +112 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/locales/en.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/standard-schema.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/types.cjs +3777 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/types.d.cts +1034 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/types.d.ts +1034 -0
- package/tools-runtime/code-tool/node_modules/zod/v3/types.js +3695 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/checks.cjs +33 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/checks.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/coerce.js +17 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/compat.cjs +61 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/compat.d.cts +50 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/compat.d.ts +50 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/compat.js +31 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/errors.cjs +74 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/errors.js +48 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/external.cjs +73 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/external.d.cts +16 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/external.d.ts +16 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/external.js +20 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/from-json-schema.cjs +625 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/from-json-schema.js +599 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/index.cjs +33 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/index.js +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/iso.js +30 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/parse.cjs +41 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/parse.d.cts +31 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/parse.d.ts +31 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/parse.js +15 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/schemas.cjs +1511 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/schemas.d.cts +767 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/schemas.d.ts +767 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/classic/schemas.js +1395 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/api.cjs +1227 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/api.d.cts +325 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/api.d.ts +325 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/api.js +1087 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/checks.cjs +601 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/checks.js +575 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/core.cjs +85 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/core.d.cts +70 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/core.d.ts +70 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/core.js +78 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/doc.cjs +39 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/doc.js +35 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/errors.cjs +216 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/errors.d.cts +221 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/errors.d.ts +221 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/errors.js +185 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/index.cjs +47 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/index.d.cts +16 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/index.d.ts +16 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/index.js +16 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-generator.js +95 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-processors.cjs +644 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema-processors.js +601 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema.d.cts +88 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema.d.ts +88 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/json-schema.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/parse.cjs +131 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/parse.d.cts +49 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/parse.d.ts +49 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/parse.js +93 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/regexes.cjs +172 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/regexes.d.cts +85 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/regexes.d.ts +85 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/regexes.js +139 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/registries.cjs +56 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/registries.js +51 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/schemas.cjs +2270 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/schemas.d.cts +1184 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/schemas.d.ts +1184 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/schemas.js +2239 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/to-json-schema.cjs +457 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/to-json-schema.js +448 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/util.cjs +734 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/util.d.cts +200 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/util.d.ts +200 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/util.js +674 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/versions.cjs +8 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/core/versions.js +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/index.cjs +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/index.d.cts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/index.d.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/index.js +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ar.cjs +133 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ar.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ar.js +106 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/az.cjs +132 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/az.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/az.js +105 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/be.cjs +183 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/be.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/be.js +156 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/bg.cjs +147 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/bg.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/bg.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/bg.js +120 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ca.cjs +134 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ca.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ca.js +107 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/cs.cjs +138 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/cs.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/cs.js +111 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/da.cjs +142 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/da.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/da.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/da.js +115 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/de.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/de.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/de.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/el.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/el.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/el.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/el.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/en.cjs +140 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/en.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/en.js +113 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/eo.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/eo.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/eo.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/es.cjs +159 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/es.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/es.js +132 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fa.cjs +141 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fa.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fa.js +114 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fi.cjs +139 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fi.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fi.js +112 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr-CA.js +107 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr.cjs +152 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/fr.js +125 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/he.cjs +241 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/he.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/he.js +214 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hr.cjs +149 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hr.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hr.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hr.js +122 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hu.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hu.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hu.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hy.cjs +174 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hy.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hy.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/hy.js +147 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/id.cjs +133 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/id.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/id.js +106 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/index.cjs +111 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/index.d.cts +52 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/index.d.ts +52 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/index.js +52 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/is.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/is.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/is.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/is.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/it.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/it.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/it.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ja.cjs +134 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ja.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ja.js +107 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ka.cjs +139 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ka.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ka.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ka.js +112 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/kh.cjs +12 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/kh.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/kh.d.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/kh.js +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/km.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/km.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/km.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/km.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ko.cjs +138 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ko.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ko.js +111 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/lt.cjs +230 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/lt.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/lt.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/lt.js +203 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/mk.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/mk.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/mk.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ms.cjs +134 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ms.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ms.js +107 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/nl.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/nl.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/nl.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/no.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/no.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/no.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ota.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ota.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ota.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pl.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pl.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pl.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ps.cjs +141 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ps.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ps.js +114 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pt.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pt.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/pt.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ro.cjs +146 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ro.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ro.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ro.js +119 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ru.cjs +183 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ru.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ru.js +156 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sl.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sl.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sl.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sv.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sv.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/sv.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ta.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ta.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ta.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/th.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/th.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/th.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/tr.cjs +132 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/tr.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/tr.js +105 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ua.cjs +12 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ua.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ua.d.ts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ua.js +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uk.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uk.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uk.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uk.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ur.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ur.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/ur.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uz.cjs +137 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uz.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uz.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/uz.js +110 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/vi.cjs +135 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/vi.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/vi.js +108 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/yo.cjs +134 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/yo.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/yo.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/yo.js +107 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-CN.js +109 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/locales/zh-TW.js +107 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/checks.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/coerce.cjs +52 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/coerce.js +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/external.cjs +63 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/external.d.cts +13 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/external.d.ts +13 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/external.js +14 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/index.cjs +32 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/index.js +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/iso.cjs +64 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/iso.js +34 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/parse.cjs +16 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/parse.js +1 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/schemas.cjs +1083 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/schemas.d.cts +445 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/schemas.d.ts +445 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/mini/schemas.js +961 -0
- package/tools-runtime/code-tool/node_modules/zod/v4/package.json +7 -0
- package/tools-runtime/code-tool/node_modules/zod/v4-mini/index.cjs +32 -0
- package/tools-runtime/code-tool/node_modules/zod/v4-mini/index.d.cts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4-mini/index.d.ts +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4-mini/index.js +3 -0
- package/tools-runtime/code-tool/node_modules/zod/v4-mini/package.json +7 -0
- package/tools-runtime/code-tool/package.json +12 -0
- package/tools-runtime/code-tool/src/actions/apply.ts +32 -0
- package/tools-runtime/code-tool/src/actions/inspect.ts +30 -0
- package/tools-runtime/code-tool/src/actions/prepare.ts +22 -0
- package/tools-runtime/code-tool/src/actions/read.ts +22 -0
- package/tools-runtime/code-tool/src/actions/record.ts +37 -0
- package/tools-runtime/code-tool/src/actions/run.ts +54 -0
- package/tools-runtime/code-tool/src/actions/search.ts +46 -0
- package/tools-runtime/code-tool/src/actions/status.ts +35 -0
- package/tools-runtime/code-tool/src/agentConfig.test.ts +16 -0
- package/tools-runtime/code-tool/src/agentConfig.ts +28 -0
- package/tools-runtime/code-tool/src/cli.ts +42 -0
- package/tools-runtime/code-tool/src/codeMdTemplate.ts +33 -0
- package/tools-runtime/code-tool/src/hooks.ts +33 -0
- package/tools-runtime/code-tool/src/index.ts +204 -0
- package/tools-runtime/code-tool/src/memory/constants.ts +13 -0
- package/tools-runtime/code-tool/src/memory/loadCodeMd.ts +194 -0
- package/tools-runtime/code-tool/src/memory/types.ts +9 -0
- package/tools-runtime/code-tool/src/mergeSection.test.ts +28 -0
- package/tools-runtime/code-tool/src/mergeSection.ts +68 -0
- package/tools-runtime/code-tool/src/pathGuard.ts +31 -0
- package/tools-runtime/code-tool/src/projectScan.ts +61 -0
- package/tools-runtime/code-tool/src/sessionAppend.ts +38 -0
- package/tools-runtime/code-tool/src/workspace.ts +24 -0
- package/tools-runtime/code-tool/src/wsInit.ts +53 -0
- package/tools-runtime/git-tool/build.ts +24 -0
- package/tools-runtime/git-tool/bun.lock +15 -0
- package/tools-runtime/git-tool/index.cjs +14210 -0
- package/tools-runtime/git-tool/package.json +12 -0
- package/tools-runtime/git-tool/src/agentConfig.test.ts +16 -0
- package/tools-runtime/git-tool/src/agentConfig.ts +34 -0
- package/tools-runtime/git-tool/src/hooks.ts +32 -0
- package/tools-runtime/git-tool/src/index.ts +505 -0
- package/tools-runtime/git-tool/src/workspace.test.ts +143 -0
- package/tools-runtime/git-tool/src/workspace.ts +277 -0
- package/tools-runtime/git-tool/src/wsInit.ts +25 -0
- package/tools-runtime/schedule-tool/build.ts +10 -0
- package/tools-runtime/schedule-tool/index.cjs +14078 -0
- package/tools-runtime/schedule-tool/package.json +12 -0
- package/tools-runtime/schedule-tool/src/agentConfig.test.ts +16 -0
- package/tools-runtime/schedule-tool/src/agentConfig.ts +28 -0
- package/tools-runtime/schedule-tool/src/cron.ts +152 -0
- package/tools-runtime/schedule-tool/src/index.test.ts +36 -0
- package/tools-runtime/schedule-tool/src/index.ts +517 -0
- package/dist/404/index.html +0 -1
- package/dist/_next/static/chunks/40268f8e3ff0314e.js +0 -1
- package/dist/_next/static/chunks/442d298f96035d5d.js +0 -1
- package/dist/_next/static/chunks/6fa420f0e5f24320.js +0 -1
- package/dist/_next/static/chunks/ad4ba491cf12423f.js +0 -5
- package/dist/_next/static/chunks/ebcd85ff4a1db0dc.js +0 -5
- package/dist/manage/about/index.txt +0 -40
- package/dist/manage/add-account/basic/index.txt +0 -37
- package/dist/manage/add-account/index.txt +0 -38
- package/dist/manage/add-account/prompt/index.txt +0 -38
- package/dist/manage/agent-teams/index.txt +0 -38
- package/dist/manage/env/index.txt +0 -42
- package/dist/manage/general/index.txt +0 -40
- package/dist/manage/index.html +0 -1
- package/dist/manage/index.txt +0 -36
- package/dist/manage/mcp/index.txt +0 -42
- package/dist/manage/permissions/index.txt +0 -35
- package/dist/manage/skills/index.txt +0 -43
- package/dist/manage/task/index.txt +0 -40
- package/dist/manage/teams/index.html +0 -1
- package/dist/manage/teams/index.txt +0 -40
- package/dist/manage/tools/index.txt +0 -43
- /package/dist/_next/static/{cTHBIunE3OANgRkUnrMUo → sZLdRgbBZICVvq28FwOCR}/_clientMiddlewareManifest.json +0 -0
- /package/dist/_next/static/{cTHBIunE3OANgRkUnrMUo → sZLdRgbBZICVvq28FwOCR}/_ssgManifest.js +0 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { afterEach, describe, expect, it } from 'bun:test'
|
|
2
|
+
import { mkdtemp, mkdir } from 'node:fs/promises'
|
|
3
|
+
import { join } from 'node:path'
|
|
4
|
+
import { tmpdir } from 'node:os'
|
|
5
|
+
import { resetConfigure } from './hooks.js'
|
|
6
|
+
import {
|
|
7
|
+
buildGitCredentialEnv,
|
|
8
|
+
prepareForAgent,
|
|
9
|
+
readGitCredentials,
|
|
10
|
+
redactUrlCredentials,
|
|
11
|
+
resolveGitWorkDir,
|
|
12
|
+
withHttpsCredentials,
|
|
13
|
+
} from './workspace.js'
|
|
14
|
+
|
|
15
|
+
const ENV_KEYS = [
|
|
16
|
+
'WS_GIT_REPO_URL',
|
|
17
|
+
'WS_GIT_WORK_DIR',
|
|
18
|
+
'WS_GIT_USERNAME',
|
|
19
|
+
'WS_GIT_PASSWORD',
|
|
20
|
+
] as const
|
|
21
|
+
|
|
22
|
+
function clearGitEnv(): void {
|
|
23
|
+
for (const key of ENV_KEYS) {
|
|
24
|
+
delete process.env[key]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function saveGitEnv(): Record<string, string | undefined> {
|
|
29
|
+
const saved: Record<string, string | undefined> = {}
|
|
30
|
+
for (const key of ENV_KEYS) {
|
|
31
|
+
saved[key] = process.env[key]
|
|
32
|
+
}
|
|
33
|
+
return saved
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function restoreGitEnv(saved: Record<string, string | undefined>): void {
|
|
37
|
+
for (const key of ENV_KEYS) {
|
|
38
|
+
const value = saved[key]
|
|
39
|
+
if (value === undefined) {
|
|
40
|
+
delete process.env[key]
|
|
41
|
+
} else {
|
|
42
|
+
process.env[key] = value
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
describe('git-tool workspace helpers', () => {
|
|
48
|
+
let savedEnv: Record<string, string | undefined> = {}
|
|
49
|
+
|
|
50
|
+
afterEach(() => {
|
|
51
|
+
restoreGitEnv(savedEnv)
|
|
52
|
+
resetConfigure()
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
it('resolveGitWorkDir 未设置时默认 operWorkspaceDir/repo', () => {
|
|
56
|
+
savedEnv = saveGitEnv()
|
|
57
|
+
clearGitEnv()
|
|
58
|
+
expect(resolveGitWorkDir('/tmp/agent/workspace')).toBe(
|
|
59
|
+
'/tmp/agent/workspace/repo',
|
|
60
|
+
)
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
it('resolveGitWorkDir 支持相对与绝对路径', () => {
|
|
64
|
+
savedEnv = saveGitEnv()
|
|
65
|
+
clearGitEnv()
|
|
66
|
+
process.env.WS_GIT_WORK_DIR = 'checkout'
|
|
67
|
+
expect(resolveGitWorkDir('/tmp/agent/workspace')).toBe(
|
|
68
|
+
'/tmp/agent/workspace/checkout',
|
|
69
|
+
)
|
|
70
|
+
process.env.WS_GIT_WORK_DIR = '/data/repo'
|
|
71
|
+
expect(resolveGitWorkDir('/tmp/agent/workspace')).toBe('/data/repo')
|
|
72
|
+
})
|
|
73
|
+
|
|
74
|
+
it('readGitCredentials 均未设置返回 null', () => {
|
|
75
|
+
savedEnv = saveGitEnv()
|
|
76
|
+
clearGitEnv()
|
|
77
|
+
expect(readGitCredentials()).toBe(null)
|
|
78
|
+
})
|
|
79
|
+
|
|
80
|
+
it('readGitCredentials 仅设置其一抛错', () => {
|
|
81
|
+
savedEnv = saveGitEnv()
|
|
82
|
+
clearGitEnv()
|
|
83
|
+
process.env.WS_GIT_USERNAME = 'user'
|
|
84
|
+
expect(() => readGitCredentials()).toThrow(
|
|
85
|
+
'WS_GIT_USERNAME 与 WS_GIT_PASSWORD 必须成对设置',
|
|
86
|
+
)
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
it('withHttpsCredentials 注入 HTTPS 凭据', () => {
|
|
90
|
+
const url = withHttpsCredentials('https://git.example.com/a/b.git', {
|
|
91
|
+
username: 'bot',
|
|
92
|
+
password: 'secret',
|
|
93
|
+
})
|
|
94
|
+
expect(url).toContain('bot')
|
|
95
|
+
expect(url).toContain('secret')
|
|
96
|
+
expect(
|
|
97
|
+
withHttpsCredentials('git@github.com:org/repo.git', {
|
|
98
|
+
username: 'bot',
|
|
99
|
+
password: 'secret',
|
|
100
|
+
}),
|
|
101
|
+
).toBe('git@github.com:org/repo.git')
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
it('buildGitCredentialEnv 含 inline credential.helper', () => {
|
|
105
|
+
const env = buildGitCredentialEnv({ username: 'u', password: 'p' })
|
|
106
|
+
expect(env.GIT_TERMINAL_PROMPT).toBe('0')
|
|
107
|
+
expect(env.GIT_CONFIG_COUNT).toBe('1')
|
|
108
|
+
expect(env.GIT_CONFIG_VALUE_0).toContain('username=u')
|
|
109
|
+
expect(env.GIT_CONFIG_VALUE_0).toContain('password=p')
|
|
110
|
+
})
|
|
111
|
+
|
|
112
|
+
it('redactUrlCredentials 脱敏 http(s) 凭据', () => {
|
|
113
|
+
expect(
|
|
114
|
+
redactUrlCredentials('https://user:token@git.example.com/r.git'),
|
|
115
|
+
).toBe('https://***:***@git.example.com/r.git')
|
|
116
|
+
})
|
|
117
|
+
})
|
|
118
|
+
|
|
119
|
+
describe('prepareForAgent', () => {
|
|
120
|
+
let savedEnv: Record<string, string | undefined> = {}
|
|
121
|
+
|
|
122
|
+
afterEach(() => {
|
|
123
|
+
restoreGitEnv(savedEnv)
|
|
124
|
+
resetConfigure()
|
|
125
|
+
})
|
|
126
|
+
|
|
127
|
+
it('无 URL 且默认 repo/ 非 git 目录时返回 skipped', async () => {
|
|
128
|
+
savedEnv = saveGitEnv()
|
|
129
|
+
clearGitEnv()
|
|
130
|
+
const operWorkspaceDir = await mkdtemp(join(tmpdir(), 'ws-git-missing-'))
|
|
131
|
+
await expect(prepareForAgent({ operWorkspaceDir })).resolves.toBe('skipped')
|
|
132
|
+
})
|
|
133
|
+
|
|
134
|
+
it('WS_GIT_WORK_DIR 非 git 目录且无 URL 时返回 skipped', async () => {
|
|
135
|
+
savedEnv = saveGitEnv()
|
|
136
|
+
clearGitEnv()
|
|
137
|
+
const operWorkspaceDir = await mkdtemp(join(tmpdir(), 'ws-git-notrepo-'))
|
|
138
|
+
const notRepo = join(operWorkspaceDir, 'not-git')
|
|
139
|
+
await mkdir(notRepo, { recursive: true })
|
|
140
|
+
process.env.WS_GIT_WORK_DIR = notRepo
|
|
141
|
+
await expect(prepareForAgent({ operWorkspaceDir })).resolves.toBe('skipped')
|
|
142
|
+
})
|
|
143
|
+
})
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Git 工作区准备:读 WS_GIT_* 环境变量、clone/pull、探测工作区。
|
|
3
|
+
* WS init 由 prepareForAgent 调用;与 CodeTool 仅通过环境变量约定解耦。
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { spawn } from 'node:child_process'
|
|
7
|
+
import { access } from 'node:fs/promises'
|
|
8
|
+
import { isAbsolute, join } from 'node:path'
|
|
9
|
+
import { configure, getCachedConfigure, resetConfigure } from './hooks.js'
|
|
10
|
+
|
|
11
|
+
const GIT_REPO_SUBDIR = 'repo'
|
|
12
|
+
const DEFAULT_GIT_TIMEOUT_MS = 120 * 1000
|
|
13
|
+
|
|
14
|
+
const GIT_NO_PROMPT_ENV: Record<string, string> = {
|
|
15
|
+
GIT_TERMINAL_PROMPT: '0',
|
|
16
|
+
GIT_ASKPASS: '',
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export type GitCredentials = {
|
|
20
|
+
username: string
|
|
21
|
+
password: string
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export type PrepareForAgentResult = 'ready' | 'skipped'
|
|
25
|
+
|
|
26
|
+
function getGitTimeoutMs(): number {
|
|
27
|
+
const envValue = process.env.CLAUDE_CODE_PLUGIN_GIT_TIMEOUT_MS
|
|
28
|
+
if (envValue) {
|
|
29
|
+
const parsed = parseInt(envValue, 10)
|
|
30
|
+
if (!Number.isNaN(parsed) && parsed > 0) {
|
|
31
|
+
return parsed
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return DEFAULT_GIT_TIMEOUT_MS
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/** 日志脱敏:隐藏 http(s) URL 中的 user:pass */
|
|
38
|
+
export function redactUrlCredentials(urlString: string): string {
|
|
39
|
+
try {
|
|
40
|
+
const parsed = new URL(urlString)
|
|
41
|
+
const isHttp = parsed.protocol === 'http:' || parsed.protocol === 'https:'
|
|
42
|
+
if (isHttp && (parsed.username || parsed.password)) {
|
|
43
|
+
if (parsed.username) parsed.username = '***'
|
|
44
|
+
if (parsed.password) parsed.password = '***'
|
|
45
|
+
return parsed.toString()
|
|
46
|
+
}
|
|
47
|
+
} catch {
|
|
48
|
+
// 非 URL 原样返回
|
|
49
|
+
}
|
|
50
|
+
return urlString
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* 读取 WS_GIT_USERNAME / WS_GIT_PASSWORD。
|
|
55
|
+
* 业务语义:两者均设置才生效;仅设置其一则 fail-fast。
|
|
56
|
+
*/
|
|
57
|
+
export function readGitCredentials(): GitCredentials | null {
|
|
58
|
+
const username = process.env.WS_GIT_USERNAME?.trim() ?? ''
|
|
59
|
+
const password = process.env.WS_GIT_PASSWORD?.trim() ?? ''
|
|
60
|
+
if (!username && !password) {
|
|
61
|
+
return null
|
|
62
|
+
}
|
|
63
|
+
if (!username || !password) {
|
|
64
|
+
throw new Error(
|
|
65
|
+
'WS_GIT_USERNAME 与 WS_GIT_PASSWORD 必须成对设置',
|
|
66
|
+
)
|
|
67
|
+
}
|
|
68
|
+
return { username, password }
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** HTTPS URL 注入 user:pass;SSH URL(git@)原样返回 */
|
|
72
|
+
export function withHttpsCredentials(
|
|
73
|
+
url: string,
|
|
74
|
+
creds: GitCredentials | null,
|
|
75
|
+
): string {
|
|
76
|
+
if (!creds) {
|
|
77
|
+
return url
|
|
78
|
+
}
|
|
79
|
+
try {
|
|
80
|
+
const parsed = new URL(url)
|
|
81
|
+
if (parsed.protocol !== 'http:' && parsed.protocol !== 'https:') {
|
|
82
|
+
return url
|
|
83
|
+
}
|
|
84
|
+
parsed.username = encodeURIComponent(creds.username)
|
|
85
|
+
parsed.password = encodeURIComponent(creds.password)
|
|
86
|
+
return parsed.toString()
|
|
87
|
+
} catch {
|
|
88
|
+
return url
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/** 构造 git 命令额外 env:防交互 + 可选 inline credential.helper */
|
|
93
|
+
export function buildGitCredentialEnv(
|
|
94
|
+
creds: GitCredentials | null,
|
|
95
|
+
): Record<string, string> {
|
|
96
|
+
const env: Record<string, string> = { ...GIT_NO_PROMPT_ENV }
|
|
97
|
+
if (!creds) {
|
|
98
|
+
return env
|
|
99
|
+
}
|
|
100
|
+
env.GIT_CONFIG_COUNT = '1'
|
|
101
|
+
env.GIT_CONFIG_KEY_0 = 'credential.helper'
|
|
102
|
+
env.GIT_CONFIG_VALUE_0 =
|
|
103
|
+
`!f() { echo username=${creds.username}; echo password=${creds.password}; }; f`
|
|
104
|
+
return env
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* 解析 Git 工作目录:WS_GIT_WORK_DIR 优先,否则默认 operWorkspaceDir/repo。
|
|
109
|
+
* 与 CodeTool 共用同一 env 约定,两包互不 import。
|
|
110
|
+
*/
|
|
111
|
+
export function resolveGitWorkDir(operWorkspaceDir: string): string {
|
|
112
|
+
const workDir = process.env.WS_GIT_WORK_DIR?.trim() ?? ''
|
|
113
|
+
if (!workDir) {
|
|
114
|
+
return join(operWorkspaceDir, GIT_REPO_SUBDIR)
|
|
115
|
+
}
|
|
116
|
+
return isAbsolute(workDir) ? workDir : join(operWorkspaceDir, workDir)
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
async function pathExists(path: string): Promise<boolean> {
|
|
120
|
+
try {
|
|
121
|
+
await access(path)
|
|
122
|
+
return true
|
|
123
|
+
} catch {
|
|
124
|
+
return false
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
type GitExecResult = {
|
|
129
|
+
code: number
|
|
130
|
+
stdout: string
|
|
131
|
+
stderr: string
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/** 在指定 cwd 执行 git 子进程 */
|
|
135
|
+
function execGit(
|
|
136
|
+
args: string[],
|
|
137
|
+
options: { cwd?: string; env?: Record<string, string> },
|
|
138
|
+
): Promise<GitExecResult> {
|
|
139
|
+
return new Promise((resolve, reject) => {
|
|
140
|
+
const proc = spawn('git', args, {
|
|
141
|
+
cwd: options.cwd,
|
|
142
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
143
|
+
env: { ...process.env, ...options.env },
|
|
144
|
+
})
|
|
145
|
+
let stdout = ''
|
|
146
|
+
let stderr = ''
|
|
147
|
+
const timer = setTimeout(() => {
|
|
148
|
+
proc.kill('SIGKILL')
|
|
149
|
+
reject(new Error(`git ${args.join(' ')} timed out`))
|
|
150
|
+
}, getGitTimeoutMs())
|
|
151
|
+
proc.stdout.on('data', c => (stdout += String(c)))
|
|
152
|
+
proc.stderr.on('data', c => (stderr += String(c)))
|
|
153
|
+
proc.on('error', err => {
|
|
154
|
+
clearTimeout(timer)
|
|
155
|
+
reject(err)
|
|
156
|
+
})
|
|
157
|
+
proc.on('close', code => {
|
|
158
|
+
clearTimeout(timer)
|
|
159
|
+
resolve({
|
|
160
|
+
code: typeof code === 'number' ? code : 1,
|
|
161
|
+
stdout,
|
|
162
|
+
stderr,
|
|
163
|
+
})
|
|
164
|
+
})
|
|
165
|
+
})
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/** 探测目录是否为 git 工作区 */
|
|
169
|
+
async function isGitWorkTree(
|
|
170
|
+
dir: string,
|
|
171
|
+
gitEnv: Record<string, string>,
|
|
172
|
+
): Promise<boolean> {
|
|
173
|
+
const result = await execGit(['rev-parse', '--is-inside-work-tree'], {
|
|
174
|
+
cwd: dir,
|
|
175
|
+
env: gitEnv,
|
|
176
|
+
})
|
|
177
|
+
return result.code === 0 && result.stdout.trim() === 'true'
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/** git clone 到目标目录(浅克隆) */
|
|
181
|
+
async function wsGitClone(params: {
|
|
182
|
+
url: string
|
|
183
|
+
targetPath: string
|
|
184
|
+
gitEnv: Record<string, string>
|
|
185
|
+
}): Promise<void> {
|
|
186
|
+
const args = [
|
|
187
|
+
'-c',
|
|
188
|
+
'core.sshCommand=ssh -o BatchMode=yes -o StrictHostKeyChecking=yes',
|
|
189
|
+
'clone',
|
|
190
|
+
'--depth',
|
|
191
|
+
'1',
|
|
192
|
+
'--recurse-submodules',
|
|
193
|
+
'--shallow-submodules',
|
|
194
|
+
]
|
|
195
|
+
args.push(params.url, params.targetPath)
|
|
196
|
+
|
|
197
|
+
console.warn(
|
|
198
|
+
`[git-tool] clone url=${redactUrlCredentials(params.url)} target=${params.targetPath}`,
|
|
199
|
+
)
|
|
200
|
+
|
|
201
|
+
const result = await execGit(args, { env: params.gitEnv })
|
|
202
|
+
if (result.code !== 0) {
|
|
203
|
+
const stderr = redactUrlCredentials(result.stderr)
|
|
204
|
+
throw new Error(
|
|
205
|
+
`git clone 失败: url=${redactUrlCredentials(params.url)} exit=${result.code}\n${stderr}`.trim(),
|
|
206
|
+
)
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/** 在已有仓库目录执行 git pull */
|
|
211
|
+
async function wsGitPull(params: {
|
|
212
|
+
cwd: string
|
|
213
|
+
gitEnv: Record<string, string>
|
|
214
|
+
}): Promise<void> {
|
|
215
|
+
console.warn(`[git-tool] pull cwd=${params.cwd}`)
|
|
216
|
+
const result = await execGit(['pull', 'origin', 'HEAD'], {
|
|
217
|
+
cwd: params.cwd,
|
|
218
|
+
env: params.gitEnv,
|
|
219
|
+
})
|
|
220
|
+
if (result.code !== 0) {
|
|
221
|
+
throw new Error(
|
|
222
|
+
`git pull 失败: cwd=${params.cwd} exit=${result.code}\n${result.stderr}`.trim(),
|
|
223
|
+
)
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* WS init:按环境变量准备 git 工作区并 configure GitTool。
|
|
229
|
+
* 未配置 WS_GIT_REPO_URL 且本地无 git 工作区时返回 skipped,不抛错。
|
|
230
|
+
*/
|
|
231
|
+
export async function prepareForAgent(params: {
|
|
232
|
+
operWorkspaceDir: string
|
|
233
|
+
}): Promise<PrepareForAgentResult> {
|
|
234
|
+
const repoUrl = process.env.WS_GIT_REPO_URL?.trim() ?? ''
|
|
235
|
+
const creds = readGitCredentials()
|
|
236
|
+
const gitWorkDir = resolveGitWorkDir(params.operWorkspaceDir)
|
|
237
|
+
const gitEnv = buildGitCredentialEnv(creds)
|
|
238
|
+
|
|
239
|
+
if (repoUrl) {
|
|
240
|
+
const cloneUrl = withHttpsCredentials(repoUrl, creds)
|
|
241
|
+
const repoExists = await pathExists(gitWorkDir)
|
|
242
|
+
if (!repoExists) {
|
|
243
|
+
await wsGitClone({
|
|
244
|
+
url: cloneUrl,
|
|
245
|
+
targetPath: gitWorkDir,
|
|
246
|
+
gitEnv,
|
|
247
|
+
})
|
|
248
|
+
} else {
|
|
249
|
+
await wsGitPull({ cwd: gitWorkDir, gitEnv })
|
|
250
|
+
}
|
|
251
|
+
} else {
|
|
252
|
+
const repoReady =
|
|
253
|
+
(await pathExists(gitWorkDir)) &&
|
|
254
|
+
(await isGitWorkTree(gitWorkDir, gitEnv))
|
|
255
|
+
if (!repoReady) {
|
|
256
|
+
console.warn(
|
|
257
|
+
`[git-tool] WS_GIT_REPO_URL 未配置且 ${gitWorkDir} 不是有效 git 工作区,跳过 GitTool 运行时配置`,
|
|
258
|
+
)
|
|
259
|
+
resetConfigure()
|
|
260
|
+
return 'skipped'
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
configure({
|
|
265
|
+
getGitWorkDir: () => gitWorkDir,
|
|
266
|
+
getGitCommandEnv: () => gitEnv,
|
|
267
|
+
})
|
|
268
|
+
return 'ready'
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/** runtime 重载 git-tool 模块时恢复已 prepare 的 hooks */
|
|
272
|
+
export function ensureConfigured(): void {
|
|
273
|
+
const cached = getCachedConfigure()
|
|
274
|
+
if (cached) {
|
|
275
|
+
configure(cached)
|
|
276
|
+
}
|
|
277
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WS 子进程 init:由 runtimeToolLoader 通用入口调用,不经过主工程 git 胶水层。
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { isEnabledInAgentConfig } from './agentConfig.js'
|
|
6
|
+
import { resetConfigure } from './hooks.js'
|
|
7
|
+
import { prepareForAgent } from './workspace.js'
|
|
8
|
+
|
|
9
|
+
export type GitToolWsInitContext = {
|
|
10
|
+
agentHomeDir: string
|
|
11
|
+
operWorkspaceDir: string
|
|
12
|
+
agent: {
|
|
13
|
+
tools: string[]
|
|
14
|
+
disallowedTools?: string[]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/** WS init:按 agent 白名单与环境变量准备 git 工作区 */
|
|
19
|
+
export async function initWsSession(ctx: GitToolWsInitContext): Promise<void> {
|
|
20
|
+
if (!isEnabledInAgentConfig(ctx.agent)) {
|
|
21
|
+
resetConfigure()
|
|
22
|
+
return
|
|
23
|
+
}
|
|
24
|
+
await prepareForAgent({ operWorkspaceDir: ctx.operWorkspaceDir })
|
|
25
|
+
}
|