@auto-ai/agent 2.1.97 → 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/{52b5f438315e1669.js → 91c478c455e6fe7d.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/ef1e3e3691ffdba4.js +1 -0
- package/dist/_next/static/chunks/f2835908a39a5ecd.js +1 -0
- package/dist/_next/static/chunks/fedb1cd789e83a36.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/{Y0q5wZJWOYM0DHKGzws1i → 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/dist/ws-test.html +1 -1
- package/lib/launcher-env.js +64 -4
- package/mcps-runtime/claude-tuitui/.mcp.json +2 -2
- 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/6fa420f0e5f24320.js +0 -1
- package/dist/_next/static/chunks/7cdc032fa6c9ed66.js +0 -1
- package/dist/_next/static/chunks/8febd4f373e343fe.js +0 -1
- package/dist/_next/static/chunks/ad4ba491cf12423f.js +0 -5
- package/dist/_next/static/chunks/dfa1d01a3980836a.js +0 -1
- 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/{Y0q5wZJWOYM0DHKGzws1i → sZLdRgbBZICVvq28FwOCR}/_clientMiddlewareManifest.json +0 -0
- /package/dist/_next/static/{Y0q5wZJWOYM0DHKGzws1i → sZLdRgbBZICVvq28FwOCR}/_ssgManifest.js +0 -0
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import { mkdir, writeFile } from 'node:fs/promises'
|
|
2
|
+
import { join } from 'node:path'
|
|
3
|
+
import { z } from 'zod/v4'
|
|
4
|
+
import { runApply } from './actions/apply.js'
|
|
5
|
+
import { runInspect } from './actions/inspect.js'
|
|
6
|
+
import { runPrepare } from './actions/prepare.js'
|
|
7
|
+
import { runRead } from './actions/read.js'
|
|
8
|
+
import { runRecord } from './actions/record.js'
|
|
9
|
+
import { runScript } from './actions/run.js'
|
|
10
|
+
import { runSearch } from './actions/search.js'
|
|
11
|
+
import { runStatus } from './actions/status.js'
|
|
12
|
+
import { configure, requireCodeWorkDir, resetConfigure, getCachedConfigure } from './hooks.js'
|
|
13
|
+
import { buildCodeToolSessionAppend } from './sessionAppend.js'
|
|
14
|
+
import { initWsSession } from './wsInit.js'
|
|
15
|
+
|
|
16
|
+
export { configure, resetConfigure, initWsSession, buildCodeToolSessionAppend }
|
|
17
|
+
export { resolveCodeWorkDir } from './workspace.js'
|
|
18
|
+
export type { CodeToolConfigureHooks } from './hooks.js'
|
|
19
|
+
export { isEnabledInAgentConfig } from './agentConfig.js'
|
|
20
|
+
export type { CodeToolWsInitContext, CodeToolWsInitResult } from './wsInit.js'
|
|
21
|
+
|
|
22
|
+
export function ensureConfigured(): void {
|
|
23
|
+
const cached = getCachedConfigure()
|
|
24
|
+
if (cached) {
|
|
25
|
+
configure(cached)
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const inputSchema = z.discriminatedUnion('action', [
|
|
30
|
+
z.object({
|
|
31
|
+
action: z.literal('prepare'),
|
|
32
|
+
}),
|
|
33
|
+
z.object({
|
|
34
|
+
action: z.literal('inspect'),
|
|
35
|
+
brief: z.boolean().optional(),
|
|
36
|
+
}),
|
|
37
|
+
z.object({
|
|
38
|
+
action: z.literal('record'),
|
|
39
|
+
section: z.string().min(1),
|
|
40
|
+
content: z.string().min(1),
|
|
41
|
+
mode: z.enum(['upsert', 'append']).default('upsert'),
|
|
42
|
+
}),
|
|
43
|
+
z.object({
|
|
44
|
+
action: z.literal('read'),
|
|
45
|
+
path: z.string().min(1),
|
|
46
|
+
offset: z.number().int().positive().optional(),
|
|
47
|
+
limit: z.number().int().positive().optional(),
|
|
48
|
+
}),
|
|
49
|
+
z.object({
|
|
50
|
+
action: z.literal('search'),
|
|
51
|
+
pattern: z.string().min(1),
|
|
52
|
+
glob: z.string().optional(),
|
|
53
|
+
}),
|
|
54
|
+
z.object({
|
|
55
|
+
action: z.literal('apply'),
|
|
56
|
+
patches: z
|
|
57
|
+
.array(
|
|
58
|
+
z.object({
|
|
59
|
+
path: z.string().min(1),
|
|
60
|
+
old_string: z.string(),
|
|
61
|
+
new_string: z.string(),
|
|
62
|
+
}),
|
|
63
|
+
)
|
|
64
|
+
.min(1),
|
|
65
|
+
}),
|
|
66
|
+
z.object({
|
|
67
|
+
action: z.literal('run'),
|
|
68
|
+
script: z.string().min(1),
|
|
69
|
+
}),
|
|
70
|
+
z.object({
|
|
71
|
+
action: z.literal('status'),
|
|
72
|
+
}),
|
|
73
|
+
])
|
|
74
|
+
|
|
75
|
+
async function writeResult(
|
|
76
|
+
toolResultsDir: string | undefined,
|
|
77
|
+
payload: unknown,
|
|
78
|
+
): Promise<string | undefined> {
|
|
79
|
+
if (!toolResultsDir) return undefined
|
|
80
|
+
await mkdir(toolResultsDir, { recursive: true })
|
|
81
|
+
const file = join(toolResultsDir, `code-tool-${Date.now()}.json`)
|
|
82
|
+
await writeFile(file, JSON.stringify(payload, null, 2), 'utf8')
|
|
83
|
+
return file
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export const CodeTool = {
|
|
87
|
+
name: 'CodeTool',
|
|
88
|
+
description: async () =>
|
|
89
|
+
'代码开发工作区:加载 code.md、读写仓库、record 沉淀、受控脚本',
|
|
90
|
+
prompt: async () => {
|
|
91
|
+
let dir = '(未配置)'
|
|
92
|
+
try {
|
|
93
|
+
dir = requireCodeWorkDir()
|
|
94
|
+
} catch {
|
|
95
|
+
// init 前 prompt 序列化
|
|
96
|
+
}
|
|
97
|
+
return `# CodeTool — 代码开发(唯一入口,codeWorkDir=${dir})
|
|
98
|
+
|
|
99
|
+
项目规范来自 **code.md**(本工具加载与维护)。禁止对 codeWorkDir 内业务文件使用裸 Read/Edit/Write/Glob/Grep。
|
|
100
|
+
|
|
101
|
+
## action 分工
|
|
102
|
+
| action | 用途 |
|
|
103
|
+
| prepare | 确认 codeWorkDir |
|
|
104
|
+
| inspect | 加载 code.md + 项目摘要(涉及仓库的开发/分析前必调) |
|
|
105
|
+
| read / search | 读代码、搜内容 |
|
|
106
|
+
| apply | 受控补丁改业务文件(禁止改 code.md) |
|
|
107
|
+
| run | package.json scripts 白名单 |
|
|
108
|
+
| record | 增量更新 code.md |
|
|
109
|
+
| status | git 简要状态 |
|
|
110
|
+
|
|
111
|
+
## 标准流程
|
|
112
|
+
1. prepare → inspect
|
|
113
|
+
2. 若无 code.md:record 首建 overview、commands(可据 inspect 的 tree/manifest)
|
|
114
|
+
3. read/search 理解 → apply 修改 → run 验证
|
|
115
|
+
4. 发现非显而易见信息时 record(architecture / commands / patterns / gotchas)
|
|
116
|
+
5. 任务完成前 record 收尾;需 clone/commit 等用 GitTool
|
|
117
|
+
|
|
118
|
+
## record 时机
|
|
119
|
+
- 摸清模块/调用链 → section architecture
|
|
120
|
+
- 非常规 build/test/环境 → commands、gotchas
|
|
121
|
+
- 可复用改法 → patterns
|
|
122
|
+
- 删掉后下次会做错才写,不写显而易见内容`
|
|
123
|
+
},
|
|
124
|
+
inputSchema,
|
|
125
|
+
maxResultSizeChars: 120_000,
|
|
126
|
+
isEnabled: () => true,
|
|
127
|
+
isReadOnly: (input: z.infer<typeof inputSchema>) =>
|
|
128
|
+
input.action === 'inspect' ||
|
|
129
|
+
input.action === 'read' ||
|
|
130
|
+
input.action === 'search' ||
|
|
131
|
+
input.action === 'status' ||
|
|
132
|
+
input.action === 'prepare',
|
|
133
|
+
isConcurrencySafe: (input: z.infer<typeof inputSchema>) =>
|
|
134
|
+
input.action === 'inspect' || input.action === 'read' || input.action === 'search',
|
|
135
|
+
isDestructive: (input: z.infer<typeof inputSchema>) =>
|
|
136
|
+
input.action === 'apply' || input.action === 'record' || input.action === 'run',
|
|
137
|
+
checkPermissions: async () => ({ behavior: 'ask' as const, updatedInput: {} }),
|
|
138
|
+
validateInput: async (input: unknown) => {
|
|
139
|
+
const parsed = inputSchema.safeParse(input)
|
|
140
|
+
if (!parsed.success) {
|
|
141
|
+
return {
|
|
142
|
+
result: false as const,
|
|
143
|
+
message: parsed.error.message,
|
|
144
|
+
errorCode: 0,
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
try {
|
|
148
|
+
requireCodeWorkDir()
|
|
149
|
+
return { result: true as const }
|
|
150
|
+
} catch (e) {
|
|
151
|
+
return {
|
|
152
|
+
result: false as const,
|
|
153
|
+
message: e instanceof Error ? e.message : String(e),
|
|
154
|
+
errorCode: 0,
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
call: async (input: z.infer<typeof inputSchema>, ctx: { toolResultsDir?: string }) => {
|
|
159
|
+
let data: Record<string, unknown>
|
|
160
|
+
switch (input.action) {
|
|
161
|
+
case 'prepare':
|
|
162
|
+
data = await runPrepare()
|
|
163
|
+
break
|
|
164
|
+
case 'inspect':
|
|
165
|
+
data = await runInspect(Boolean(input.brief))
|
|
166
|
+
break
|
|
167
|
+
case 'record':
|
|
168
|
+
data = await runRecord({
|
|
169
|
+
section: input.section,
|
|
170
|
+
content: input.content,
|
|
171
|
+
mode: input.mode,
|
|
172
|
+
})
|
|
173
|
+
break
|
|
174
|
+
case 'read':
|
|
175
|
+
data = await runRead(input.path, input.offset, input.limit)
|
|
176
|
+
break
|
|
177
|
+
case 'search':
|
|
178
|
+
data = await runSearch(input.pattern, input.glob)
|
|
179
|
+
break
|
|
180
|
+
case 'apply':
|
|
181
|
+
data = await runApply(input.patches)
|
|
182
|
+
break
|
|
183
|
+
case 'run':
|
|
184
|
+
data = await runScript(input.script)
|
|
185
|
+
break
|
|
186
|
+
case 'status':
|
|
187
|
+
data = await runStatus()
|
|
188
|
+
break
|
|
189
|
+
default:
|
|
190
|
+
throw new Error('unknown action')
|
|
191
|
+
}
|
|
192
|
+
const resultFile = await writeResult(ctx.toolResultsDir, data)
|
|
193
|
+
return { data: { ...data, resultFile } }
|
|
194
|
+
},
|
|
195
|
+
renderToolUseMessage: (input: { action?: string }) =>
|
|
196
|
+
`CodeTool: ${input.action ?? '…'}`,
|
|
197
|
+
renderToolResultMessage: () => 'CodeTool 完成',
|
|
198
|
+
mapToolResultToToolResultBlockParam: (output: { data?: Record<string, unknown> }) => ({
|
|
199
|
+
type: 'text' as const,
|
|
200
|
+
text: JSON.stringify(output.data ?? output, null, 2),
|
|
201
|
+
}),
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export default CodeTool
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** 项目指令文件名(替代 CLAUDE.md) */
|
|
2
|
+
export const CODE_MD = 'code.md'
|
|
3
|
+
export const CODE_LOCAL_MD = 'code.local.md'
|
|
4
|
+
export const CODE_MD_IN_CLAUDE_DIR = '.claude/code.md'
|
|
5
|
+
export const RULES_DIR = '.claude/rules'
|
|
6
|
+
|
|
7
|
+
export const MEMORY_INSTRUCTION_PROMPT =
|
|
8
|
+
'Codebase and user instructions are shown below. Be sure to adhere to these instructions. IMPORTANT: These instructions OVERRIDE any default behavior and you MUST follow them exactly as written.'
|
|
9
|
+
|
|
10
|
+
/** 与宿主 claudemd 一致的单文件体积上限 */
|
|
11
|
+
export const MAX_MEMORY_CHARACTER_COUNT = 40_000
|
|
12
|
+
|
|
13
|
+
export const MAX_INCLUDE_DEPTH = 5
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { readFile, readdir, stat } from 'node:fs/promises'
|
|
2
|
+
import { dirname, join, parse, relative } from 'node:path'
|
|
3
|
+
import {
|
|
4
|
+
CODE_LOCAL_MD,
|
|
5
|
+
CODE_MD,
|
|
6
|
+
CODE_MD_IN_CLAUDE_DIR,
|
|
7
|
+
MAX_MEMORY_CHARACTER_COUNT,
|
|
8
|
+
MEMORY_INSTRUCTION_PROMPT,
|
|
9
|
+
RULES_DIR,
|
|
10
|
+
} from './constants.js'
|
|
11
|
+
import type { MemoryFileInfo, MemoryType } from './types.js'
|
|
12
|
+
|
|
13
|
+
type LoadOptions = {
|
|
14
|
+
projectRoot: string
|
|
15
|
+
excludes?: string[]
|
|
16
|
+
maxChars?: number
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/** 简单 frontmatter 剥离(paths 行忽略,全文作为 content) */
|
|
20
|
+
function stripFrontmatter(raw: string): { content: string; globs?: string[] } {
|
|
21
|
+
if (!raw.startsWith('---')) {
|
|
22
|
+
return { content: raw }
|
|
23
|
+
}
|
|
24
|
+
const end = raw.indexOf('---', 3)
|
|
25
|
+
if (end === -1) {
|
|
26
|
+
return { content: raw }
|
|
27
|
+
}
|
|
28
|
+
const body = raw.slice(end + 3).replace(/^\n/, '')
|
|
29
|
+
const fm = raw.slice(3, end)
|
|
30
|
+
const pathsMatch = fm.match(/^paths:\s*(.+)$/m)
|
|
31
|
+
if (!pathsMatch) {
|
|
32
|
+
return { content: body }
|
|
33
|
+
}
|
|
34
|
+
const paths = pathsMatch[1]
|
|
35
|
+
.split(',')
|
|
36
|
+
.map(p => p.trim())
|
|
37
|
+
.filter(p => p.length > 0 && p !== '**')
|
|
38
|
+
return { content: body, globs: paths.length > 0 ? paths : undefined }
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function normalizePath(p: string): string {
|
|
42
|
+
return p.replaceAll('\\', '/')
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/** 路径是否被 exclude glob 命中(简单前缀/包含匹配) */
|
|
46
|
+
function isExcluded(filePath: string, excludes: string[]): boolean {
|
|
47
|
+
if (excludes.length === 0) return false
|
|
48
|
+
const norm = normalizePath(filePath)
|
|
49
|
+
for (const pat of excludes) {
|
|
50
|
+
const p = normalizePath(pat.trim())
|
|
51
|
+
if (!p) continue
|
|
52
|
+
if (p.includes('*')) {
|
|
53
|
+
if (norm.includes(p.replace(/\*\*/g, '').replace(/\*/g, ''))) return true
|
|
54
|
+
} else if (norm === p || norm.endsWith(p)) {
|
|
55
|
+
return true
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
return false
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
async function fileExists(path: string): Promise<boolean> {
|
|
62
|
+
try {
|
|
63
|
+
await stat(path)
|
|
64
|
+
return true
|
|
65
|
+
} catch {
|
|
66
|
+
return false
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
async function readMemoryFile(
|
|
71
|
+
filePath: string,
|
|
72
|
+
type: MemoryType,
|
|
73
|
+
): Promise<MemoryFileInfo | null> {
|
|
74
|
+
try {
|
|
75
|
+
const raw = await readFile(filePath, 'utf8')
|
|
76
|
+
const trimmed = raw.trim()
|
|
77
|
+
if (!trimmed) return null
|
|
78
|
+
const { content, globs } = stripFrontmatter(raw)
|
|
79
|
+
if (!content.trim()) return null
|
|
80
|
+
return { path: filePath, type, content, globs }
|
|
81
|
+
} catch {
|
|
82
|
+
return null
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/** 递归加载 .claude/rules 下无条件 .md */
|
|
87
|
+
async function loadRulesDir(
|
|
88
|
+
rulesDir: string,
|
|
89
|
+
type: MemoryType,
|
|
90
|
+
processed: Set<string>,
|
|
91
|
+
): Promise<MemoryFileInfo[]> {
|
|
92
|
+
const out: MemoryFileInfo[] = []
|
|
93
|
+
let entries: import('node:fs').Dirent[]
|
|
94
|
+
try {
|
|
95
|
+
entries = await readdir(rulesDir, { withFileTypes: true })
|
|
96
|
+
} catch {
|
|
97
|
+
return out
|
|
98
|
+
}
|
|
99
|
+
for (const e of entries) {
|
|
100
|
+
const p = join(rulesDir, e.name)
|
|
101
|
+
if (e.isDirectory()) {
|
|
102
|
+
out.push(...(await loadRulesDir(p, type, processed)))
|
|
103
|
+
} else if (e.isFile() && e.name.endsWith('.md')) {
|
|
104
|
+
const key = normalizePath(p)
|
|
105
|
+
if (processed.has(key)) continue
|
|
106
|
+
processed.add(key)
|
|
107
|
+
const info = await readMemoryFile(p, type)
|
|
108
|
+
if (info && !info.globs) out.push(info)
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
return out
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* 从 projectRoot 向上遍历,加载 code.md / code.local.md / .claude/code.md / rules。
|
|
116
|
+
* 业务语义:替代宿主 claudemd.getMemoryFiles + getClaudeMds,仅认 code.md 文件名。
|
|
117
|
+
*/
|
|
118
|
+
export async function collectMemoryFiles(
|
|
119
|
+
projectRoot: string,
|
|
120
|
+
excludes: string[] = [],
|
|
121
|
+
): Promise<MemoryFileInfo[]> {
|
|
122
|
+
const result: MemoryFileInfo[] = []
|
|
123
|
+
const processed = new Set<string>()
|
|
124
|
+
|
|
125
|
+
const dirs: string[] = []
|
|
126
|
+
let cur = projectRoot
|
|
127
|
+
const root = parse(cur).root
|
|
128
|
+
while (cur !== root) {
|
|
129
|
+
dirs.push(cur)
|
|
130
|
+
cur = dirname(cur)
|
|
131
|
+
}
|
|
132
|
+
dirs.reverse()
|
|
133
|
+
|
|
134
|
+
for (const dir of dirs) {
|
|
135
|
+
const candidates: { path: string; type: MemoryType }[] = [
|
|
136
|
+
{ path: join(dir, CODE_MD), type: 'Project' },
|
|
137
|
+
{ path: join(dir, '.claude', 'code.md'), type: 'Project' },
|
|
138
|
+
{ path: join(dir, CODE_LOCAL_MD), type: 'Local' },
|
|
139
|
+
]
|
|
140
|
+
for (const { path, type } of candidates) {
|
|
141
|
+
if (isExcluded(path, excludes)) continue
|
|
142
|
+
const key = normalizePath(path)
|
|
143
|
+
if (processed.has(key)) continue
|
|
144
|
+
if (!(await fileExists(path))) continue
|
|
145
|
+
processed.add(key)
|
|
146
|
+
const info = await readMemoryFile(path, type)
|
|
147
|
+
if (info) result.push(info)
|
|
148
|
+
}
|
|
149
|
+
const rulesPath = join(dir, RULES_DIR)
|
|
150
|
+
result.push(...(await loadRulesDir(rulesPath, 'Project', processed)))
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
return result
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export function formatCodeMd(memoryFiles: MemoryFileInfo[]): string {
|
|
157
|
+
const parts: string[] = []
|
|
158
|
+
for (const file of memoryFiles) {
|
|
159
|
+
const content = file.content.trim()
|
|
160
|
+
if (!content) continue
|
|
161
|
+
const desc =
|
|
162
|
+
file.type === 'Project'
|
|
163
|
+
? ' (project instructions, checked into the codebase)'
|
|
164
|
+
: " (user's private project instructions, not checked in)"
|
|
165
|
+
parts.push(`Contents of ${file.path}${desc}:\n\n${content}`)
|
|
166
|
+
}
|
|
167
|
+
if (parts.length === 0) return ''
|
|
168
|
+
return `${MEMORY_INSTRUCTION_PROMPT}\n\n${parts.join('\n\n')}`
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* 加载并格式化 code.md 记忆文本。
|
|
173
|
+
*/
|
|
174
|
+
export async function loadCodeMd(options: LoadOptions): Promise<string> {
|
|
175
|
+
const files = await collectMemoryFiles(
|
|
176
|
+
options.projectRoot,
|
|
177
|
+
options.excludes ?? [],
|
|
178
|
+
)
|
|
179
|
+
let text = formatCodeMd(files)
|
|
180
|
+
const max = options.maxChars ?? MAX_MEMORY_CHARACTER_COUNT
|
|
181
|
+
if (text.length > max) {
|
|
182
|
+
text = `${text.slice(0, max)}\n\n[truncated: code memory exceeded ${max} characters]`
|
|
183
|
+
}
|
|
184
|
+
return text
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/** inspect 用:是否已有根 code.md */
|
|
188
|
+
export async function hasRootCodeMd(projectRoot: string): Promise<boolean> {
|
|
189
|
+
return fileExists(join(projectRoot, CODE_MD))
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export function getCodeMdPath(projectRoot: string): string {
|
|
193
|
+
return join(projectRoot, CODE_MD)
|
|
194
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
import { mergeSectionIntoCodeMd, assertWithinSize } from './mergeSection.js'
|
|
3
|
+
import { buildInitialCodeMdTemplate } from './codeMdTemplate.js'
|
|
4
|
+
|
|
5
|
+
describe('mergeSection', () => {
|
|
6
|
+
test('upsert architecture section', () => {
|
|
7
|
+
const base = buildInitialCodeMdTemplate()
|
|
8
|
+
const out = mergeSectionIntoCodeMd(
|
|
9
|
+
base,
|
|
10
|
+
'architecture',
|
|
11
|
+
'模块 A 在 src/a',
|
|
12
|
+
'upsert',
|
|
13
|
+
)
|
|
14
|
+
expect(out).toContain('## architecture')
|
|
15
|
+
expect(out).toContain('模块 A 在 src/a')
|
|
16
|
+
})
|
|
17
|
+
|
|
18
|
+
test('append adds dated line', () => {
|
|
19
|
+
const base = '## gotchas\n\n'
|
|
20
|
+
const out = mergeSectionIntoCodeMd(base, 'gotchas', 'need env', 'append')
|
|
21
|
+
expect(out).toContain('need env')
|
|
22
|
+
expect(out).toMatch(/-\s+\d{4}-\d{2}-\d{2}:/)
|
|
23
|
+
})
|
|
24
|
+
|
|
25
|
+
test('assertWithinSize throws when too large', () => {
|
|
26
|
+
expect(() => assertWithinSize('x'.repeat(50_000))).toThrow()
|
|
27
|
+
})
|
|
28
|
+
})
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { MAX_MEMORY_CHARACTER_COUNT } from './memory/constants.js'
|
|
2
|
+
|
|
3
|
+
const KNOWN_SECTIONS = new Set([
|
|
4
|
+
'overview',
|
|
5
|
+
'architecture',
|
|
6
|
+
'commands',
|
|
7
|
+
'gotchas',
|
|
8
|
+
'patterns',
|
|
9
|
+
'learnings',
|
|
10
|
+
])
|
|
11
|
+
|
|
12
|
+
function normalizeHeading(name: string): string {
|
|
13
|
+
return name.trim().toLowerCase()
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* 将 content 合并进 markdown 的 ## section。
|
|
18
|
+
* mode=upsert 替换该节正文;append 在节末追加带日期的列表项。
|
|
19
|
+
*/
|
|
20
|
+
export function mergeSectionIntoCodeMd(
|
|
21
|
+
existing: string,
|
|
22
|
+
section: string,
|
|
23
|
+
content: string,
|
|
24
|
+
mode: 'upsert' | 'append',
|
|
25
|
+
): string {
|
|
26
|
+
const key = normalizeHeading(section)
|
|
27
|
+
const heading =
|
|
28
|
+
key === 'learnings' || !KNOWN_SECTIONS.has(key)
|
|
29
|
+
? 'Learnings'
|
|
30
|
+
: section.charAt(0).toUpperCase() + section.slice(1).toLowerCase()
|
|
31
|
+
|
|
32
|
+
const sectionRegex = new RegExp(
|
|
33
|
+
`(^##\\s+${escapeRegExp(heading)}\\s*$)([\\s\\S]*?)(?=^##\\s+|\\Z)`,
|
|
34
|
+
'im',
|
|
35
|
+
)
|
|
36
|
+
const trimmedContent = content.trim()
|
|
37
|
+
const dateLine = `- ${new Date().toISOString().slice(0, 10)}: ${trimmedContent.replace(/\n/g, ' ')}`
|
|
38
|
+
|
|
39
|
+
if (sectionRegex.test(existing)) {
|
|
40
|
+
return existing.replace(sectionRegex, (_m, h: string, body: string) => {
|
|
41
|
+
const prev = body.trim()
|
|
42
|
+
if (mode === 'append') {
|
|
43
|
+
if (prev.includes(trimmedContent)) return `${h}\n\n${prev}\n`
|
|
44
|
+
return `${h}\n\n${prev}\n${dateLine}\n`
|
|
45
|
+
}
|
|
46
|
+
return `${h}\n\n${trimmedContent}\n\n`
|
|
47
|
+
})
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const block =
|
|
51
|
+
mode === 'append'
|
|
52
|
+
? `## ${heading}\n\n${dateLine}\n`
|
|
53
|
+
: `## ${heading}\n\n${trimmedContent}\n`
|
|
54
|
+
return `${existing.trimEnd()}\n\n${block}`
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function escapeRegExp(s: string): string {
|
|
58
|
+
return s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** 合并后超过上限则抛错(fail-fast) */
|
|
62
|
+
export function assertWithinSize(text: string): void {
|
|
63
|
+
if (text.length > MAX_MEMORY_CHARACTER_COUNT) {
|
|
64
|
+
throw new Error(
|
|
65
|
+
`code.md 超过 ${MAX_MEMORY_CHARACTER_COUNT} 字符,请精简后再 record`,
|
|
66
|
+
)
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { isAbsolute, join, normalize, relative, resolve } from 'node:path'
|
|
2
|
+
import { CODE_LOCAL_MD, CODE_MD } from './memory/constants.js'
|
|
3
|
+
|
|
4
|
+
/** 业务仓库内相对路径校验,禁止逃逸 codeWorkDir */
|
|
5
|
+
export function resolveInWorkDir(
|
|
6
|
+
codeWorkDir: string,
|
|
7
|
+
relPath: string,
|
|
8
|
+
): string {
|
|
9
|
+
const base = resolve(codeWorkDir)
|
|
10
|
+
const target = resolve(base, normalize(relPath))
|
|
11
|
+
const rel = relative(base, target)
|
|
12
|
+
if (rel.startsWith('..') || isAbsolute(rel)) {
|
|
13
|
+
throw new Error(`路径越界: ${relPath}`)
|
|
14
|
+
}
|
|
15
|
+
return target
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/** apply 禁止修改 code.md / code.local.md */
|
|
19
|
+
export function assertApplyPathAllowed(relPath: string): void {
|
|
20
|
+
const norm = relPath.replaceAll('\\', '/')
|
|
21
|
+
const base = norm.split('/').pop() ?? norm
|
|
22
|
+
if (base === CODE_MD || base === CODE_LOCAL_MD) {
|
|
23
|
+
throw new Error(
|
|
24
|
+
`禁止通过 apply 修改 ${base},请使用 CodeTool action=record`,
|
|
25
|
+
)
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function getCodeMdAbsolutePath(codeWorkDir: string): string {
|
|
30
|
+
return join(resolve(codeWorkDir), CODE_MD)
|
|
31
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { readFile, readdir, stat } from 'node:fs/promises'
|
|
2
|
+
import { join } from 'node:path'
|
|
3
|
+
|
|
4
|
+
const MANIFEST_NAMES = [
|
|
5
|
+
'package.json',
|
|
6
|
+
'go.mod',
|
|
7
|
+
'Cargo.toml',
|
|
8
|
+
'pyproject.toml',
|
|
9
|
+
'pom.xml',
|
|
10
|
+
'Makefile',
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
/** 扫描项目 manifest 与浅层目录树,供 inspect 使用 */
|
|
14
|
+
export async function scanProjectBrief(
|
|
15
|
+
codeWorkDir: string,
|
|
16
|
+
maxDepth = 2,
|
|
17
|
+
): Promise<{ manifests: Record<string, string>; tree: string[] }> {
|
|
18
|
+
const manifests: Record<string, string> = {}
|
|
19
|
+
for (const name of MANIFEST_NAMES) {
|
|
20
|
+
const p = join(codeWorkDir, name)
|
|
21
|
+
try {
|
|
22
|
+
const st = await stat(p)
|
|
23
|
+
if (st.isFile()) {
|
|
24
|
+
const raw = await readFile(p, 'utf8')
|
|
25
|
+
manifests[name] = raw.length > 8000 ? `${raw.slice(0, 8000)}…` : raw
|
|
26
|
+
}
|
|
27
|
+
} catch {
|
|
28
|
+
// 不存在则跳过
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
const tree: string[] = []
|
|
32
|
+
await walkDir(codeWorkDir, '', 0, maxDepth, tree)
|
|
33
|
+
return { manifests, tree }
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
async function walkDir(
|
|
37
|
+
root: string,
|
|
38
|
+
rel: string,
|
|
39
|
+
depth: number,
|
|
40
|
+
maxDepth: number,
|
|
41
|
+
out: string[],
|
|
42
|
+
): Promise<void> {
|
|
43
|
+
if (depth > maxDepth) return
|
|
44
|
+
const full = rel ? join(root, rel) : root
|
|
45
|
+
let entries: import('node:fs').Dirent[]
|
|
46
|
+
try {
|
|
47
|
+
entries = await readdir(full, { withFileTypes: true })
|
|
48
|
+
} catch {
|
|
49
|
+
return
|
|
50
|
+
}
|
|
51
|
+
const sorted = entries
|
|
52
|
+
.filter(e => !e.name.startsWith('.') && e.name !== 'node_modules')
|
|
53
|
+
.sort((a, b) => a.name.localeCompare(b.name))
|
|
54
|
+
for (const e of sorted.slice(0, 40)) {
|
|
55
|
+
const childRel = rel ? `${rel}/${e.name}` : e.name
|
|
56
|
+
out.push(`${' '.repeat(depth)}${e.name}${e.isDirectory() ? '/' : ''}`)
|
|
57
|
+
if (e.isDirectory() && depth < maxDepth) {
|
|
58
|
+
await walkDir(root, childRel, depth + 1, maxDepth, out)
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 会话级 system append:替代 code-dev Skill 的 shell 注入。
|
|
3
|
+
* 在宿主 configureCodeRuntimeTool 之后调用。
|
|
4
|
+
*/
|
|
5
|
+
import { runInspect } from './actions/inspect.js'
|
|
6
|
+
|
|
7
|
+
/** 生成首轮 appendSystemPrompt 中的 CodeTool 上下文(inspect --brief) */
|
|
8
|
+
export async function buildCodeToolSessionAppend(): Promise<string> {
|
|
9
|
+
const data = await runInspect(true)
|
|
10
|
+
const lines: string[] = [
|
|
11
|
+
'System reminder: 本会话已启用 CodeTool,业务代码仓库是唯一开发入口。',
|
|
12
|
+
'分析/阅读/修改仓库、架构文档、code.md 时必须使用 CodeTool,禁止对 codeWorkDir 使用裸 Read/Edit/Write/Glob/Grep/Bash 改业务文件。',
|
|
13
|
+
'标准流程:prepare → inspect → read/search → apply → run;无 code.md 时用 record 首建 overview/commands;复杂 git 用 GitTool(若已启用)。',
|
|
14
|
+
`codeWorkDir: ${String(data.codeWorkDir ?? '')}`,
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
const mem = String(data.codeMemory ?? '').trim()
|
|
18
|
+
if (mem) {
|
|
19
|
+
lines.push('', '## code.md 摘要', mem)
|
|
20
|
+
} else {
|
|
21
|
+
lines.push(
|
|
22
|
+
'',
|
|
23
|
+
'(尚无 code.md;开发任务开始后请 CodeTool action=record 首建并写入 overview/commands)',
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const tree = data.tree
|
|
28
|
+
if (Array.isArray(tree) && tree.length > 0) {
|
|
29
|
+
lines.push('', '## 仓库目录(摘要)', ...tree.slice(0, 30).map(String))
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const manifests = data.manifests
|
|
33
|
+
if (Array.isArray(manifests) && manifests.length > 0) {
|
|
34
|
+
lines.push('', '## 清单文件', manifests.join(', '))
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return lines.join('\n')
|
|
38
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Code 工作目录解析:与 GitTool 共用 WS_GIT_WORK_DIR / operWorkspaceDir/repo 约定,两包互不 import。
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { isAbsolute, join } from 'node:path'
|
|
6
|
+
|
|
7
|
+
const CODE_REPO_SUBDIR = 'repo'
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* 解析代码工作目录:优先 CODE_WORK_DIR,其次 WS_GIT_WORK_DIR,默认 operWorkspaceDir/repo。
|
|
11
|
+
*/
|
|
12
|
+
export function resolveCodeWorkDir(operWorkspaceDir: string): string {
|
|
13
|
+
const fromCode = process.env.CODE_WORK_DIR?.trim() ?? ''
|
|
14
|
+
if (fromCode) {
|
|
15
|
+
return isAbsolute(fromCode)
|
|
16
|
+
? fromCode
|
|
17
|
+
: join(operWorkspaceDir, fromCode)
|
|
18
|
+
}
|
|
19
|
+
const fromGit = process.env.WS_GIT_WORK_DIR?.trim() ?? ''
|
|
20
|
+
if (!fromGit) {
|
|
21
|
+
return join(operWorkspaceDir, CODE_REPO_SUBDIR)
|
|
22
|
+
}
|
|
23
|
+
return isAbsolute(fromGit) ? fromGit : join(operWorkspaceDir, fromGit)
|
|
24
|
+
}
|