@atelierai/uco 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/LICENSE +21 -0
- package/README.md +377 -0
- package/bin/server.mjs +16 -0
- package/bin/stub-plugin.mjs +33 -0
- package/bin/uco.mjs +6 -0
- package/dist/catalog.d.ts +6 -0
- package/dist/catalog.js +54 -0
- package/dist/catalog.js.map +1 -0
- package/dist/codegen/coerce.d.ts +16 -0
- package/dist/codegen/coerce.js +117 -0
- package/dist/codegen/coerce.js.map +1 -0
- package/dist/codegen/emit.d.ts +2 -0
- package/dist/codegen/emit.js +213 -0
- package/dist/codegen/emit.js.map +1 -0
- package/dist/codegen/fetch.d.ts +9 -0
- package/dist/codegen/fetch.js +30 -0
- package/dist/codegen/fetch.js.map +1 -0
- package/dist/codegen/refs.d.ts +9 -0
- package/dist/codegen/refs.js +38 -0
- package/dist/codegen/refs.js.map +1 -0
- package/dist/codegen/types.d.ts +40 -0
- package/dist/codegen/types.js +3 -0
- package/dist/codegen/types.js.map +1 -0
- package/dist/commands/call.d.ts +10 -0
- package/dist/commands/call.js +137 -0
- package/dist/commands/call.js.map +1 -0
- package/dist/commands/devops/_helpers.d.ts +27 -0
- package/dist/commands/devops/_helpers.js +49 -0
- package/dist/commands/devops/_helpers.js.map +1 -0
- package/dist/commands/devops/_unity-command-line.d.ts +26 -0
- package/dist/commands/devops/_unity-command-line.js +227 -0
- package/dist/commands/devops/_unity-command-line.js.map +1 -0
- package/dist/commands/devops/_unity-operations.d.ts +14 -0
- package/dist/commands/devops/_unity-operations.js +56 -0
- package/dist/commands/devops/_unity-operations.js.map +1 -0
- package/dist/commands/devops/build.d.ts +36 -0
- package/dist/commands/devops/build.js +142 -0
- package/dist/commands/devops/build.js.map +1 -0
- package/dist/commands/devops/close.d.ts +2 -0
- package/dist/commands/devops/close.js +121 -0
- package/dist/commands/devops/close.js.map +1 -0
- package/dist/commands/devops/configure.d.ts +2 -0
- package/dist/commands/devops/configure.js +62 -0
- package/dist/commands/devops/configure.js.map +1 -0
- package/dist/commands/devops/create-project.d.ts +32 -0
- package/dist/commands/devops/create-project.js +170 -0
- package/dist/commands/devops/create-project.js.map +1 -0
- package/dist/commands/devops/editors.d.ts +8 -0
- package/dist/commands/devops/editors.js +30 -0
- package/dist/commands/devops/editors.js.map +1 -0
- package/dist/commands/devops/index.d.ts +2 -0
- package/dist/commands/devops/index.js +36 -0
- package/dist/commands/devops/index.js.map +1 -0
- package/dist/commands/devops/install-plugin.d.ts +2 -0
- package/dist/commands/devops/install-plugin.js +41 -0
- package/dist/commands/devops/install-plugin.js.map +1 -0
- package/dist/commands/devops/install-unity.d.ts +17 -0
- package/dist/commands/devops/install-unity.js +115 -0
- package/dist/commands/devops/install-unity.js.map +1 -0
- package/dist/commands/devops/login.d.ts +2 -0
- package/dist/commands/devops/login.js +29 -0
- package/dist/commands/devops/login.js.map +1 -0
- package/dist/commands/devops/open.d.ts +2 -0
- package/dist/commands/devops/open.js +85 -0
- package/dist/commands/devops/open.js.map +1 -0
- package/dist/commands/devops/remove-plugin.d.ts +2 -0
- package/dist/commands/devops/remove-plugin.js +21 -0
- package/dist/commands/devops/remove-plugin.js.map +1 -0
- package/dist/commands/devops/setup-mcp.d.ts +2 -0
- package/dist/commands/devops/setup-mcp.js +41 -0
- package/dist/commands/devops/setup-mcp.js.map +1 -0
- package/dist/commands/devops/setup-skills.d.ts +13 -0
- package/dist/commands/devops/setup-skills.js +72 -0
- package/dist/commands/devops/setup-skills.js.map +1 -0
- package/dist/commands/devops/setup-unity-cli.d.ts +8 -0
- package/dist/commands/devops/setup-unity-cli.js +35 -0
- package/dist/commands/devops/setup-unity-cli.js.map +1 -0
- package/dist/commands/devops/status.d.ts +2 -0
- package/dist/commands/devops/status.js +97 -0
- package/dist/commands/devops/status.js.map +1 -0
- package/dist/commands/devops/test.d.ts +29 -0
- package/dist/commands/devops/test.js +88 -0
- package/dist/commands/devops/test.js.map +1 -0
- package/dist/commands/devops/wait-for-ready.d.ts +4 -0
- package/dist/commands/devops/wait-for-ready.js +297 -0
- package/dist/commands/devops/wait-for-ready.js.map +1 -0
- package/dist/commands/exec.d.ts +16 -0
- package/dist/commands/exec.js +78 -0
- package/dist/commands/exec.js.map +1 -0
- package/dist/commands/gen.d.ts +2 -0
- package/dist/commands/gen.js +46 -0
- package/dist/commands/gen.js.map +1 -0
- package/dist/commands/init.d.ts +2 -0
- package/dist/commands/init.js +313 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/install.d.ts +2 -0
- package/dist/commands/install.js +161 -0
- package/dist/commands/install.js.map +1 -0
- package/dist/commands/list.d.ts +2 -0
- package/dist/commands/list.js +40 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/ping.d.ts +2 -0
- package/dist/commands/ping.js +25 -0
- package/dist/commands/ping.js.map +1 -0
- package/dist/commands/prompt.d.ts +2 -0
- package/dist/commands/prompt.js +45 -0
- package/dist/commands/prompt.js.map +1 -0
- package/dist/commands/resource.d.ts +2 -0
- package/dist/commands/resource.js +30 -0
- package/dist/commands/resource.js.map +1 -0
- package/dist/commands/update.d.ts +2 -0
- package/dist/commands/update.js +132 -0
- package/dist/commands/update.js.map +1 -0
- package/dist/config/port.d.ts +1 -0
- package/dist/config/port.js +19 -0
- package/dist/config/port.js.map +1 -0
- package/dist/config/resolve.d.ts +24 -0
- package/dist/config/resolve.js +78 -0
- package/dist/config/resolve.js.map +1 -0
- package/dist/devops/commands-upstream/bootstrap-local.d.ts +17 -0
- package/dist/devops/commands-upstream/bootstrap-local.js +87 -0
- package/dist/devops/commands-upstream/bootstrap-local.js.map +1 -0
- package/dist/devops/commands-upstream/close.d.ts +57 -0
- package/dist/devops/commands-upstream/close.js +188 -0
- package/dist/devops/commands-upstream/close.js.map +1 -0
- package/dist/devops/commands-upstream/configure.d.ts +2 -0
- package/dist/devops/commands-upstream/configure.js +87 -0
- package/dist/devops/commands-upstream/configure.js.map +1 -0
- package/dist/devops/commands-upstream/create-project.d.ts +2 -0
- package/dist/devops/commands-upstream/create-project.js +43 -0
- package/dist/devops/commands-upstream/create-project.js.map +1 -0
- package/dist/devops/commands-upstream/install-plugin.d.ts +2 -0
- package/dist/devops/commands-upstream/install-plugin.js +64 -0
- package/dist/devops/commands-upstream/install-plugin.js.map +1 -0
- package/dist/devops/commands-upstream/install-unity.d.ts +2 -0
- package/dist/devops/commands-upstream/install-unity.js +72 -0
- package/dist/devops/commands-upstream/install-unity.js.map +1 -0
- package/dist/devops/commands-upstream/login.d.ts +2 -0
- package/dist/devops/commands-upstream/login.js +33 -0
- package/dist/devops/commands-upstream/login.js.map +1 -0
- package/dist/devops/commands-upstream/open.d.ts +32 -0
- package/dist/devops/commands-upstream/open.js +282 -0
- package/dist/devops/commands-upstream/open.js.map +1 -0
- package/dist/devops/commands-upstream/remove-plugin.d.ts +2 -0
- package/dist/devops/commands-upstream/remove-plugin.js +41 -0
- package/dist/devops/commands-upstream/remove-plugin.js.map +1 -0
- package/dist/devops/commands-upstream/run-system-tool.d.ts +1 -0
- package/dist/devops/commands-upstream/run-system-tool.js +13 -0
- package/dist/devops/commands-upstream/run-system-tool.js.map +1 -0
- package/dist/devops/commands-upstream/run-tool-builder.d.ts +25 -0
- package/dist/devops/commands-upstream/run-tool-builder.js +125 -0
- package/dist/devops/commands-upstream/run-tool-builder.js.map +1 -0
- package/dist/devops/commands-upstream/run-tool.d.ts +1 -0
- package/dist/devops/commands-upstream/run-tool.js +13 -0
- package/dist/devops/commands-upstream/run-tool.js.map +1 -0
- package/dist/devops/commands-upstream/setup-mcp.d.ts +2 -0
- package/dist/devops/commands-upstream/setup-mcp.js +68 -0
- package/dist/devops/commands-upstream/setup-mcp.js.map +1 -0
- package/dist/devops/commands-upstream/setup-skills.d.ts +2 -0
- package/dist/devops/commands-upstream/setup-skills.js +167 -0
- package/dist/devops/commands-upstream/setup-skills.js.map +1 -0
- package/dist/devops/commands-upstream/status.d.ts +2 -0
- package/dist/devops/commands-upstream/status.js +87 -0
- package/dist/devops/commands-upstream/status.js.map +1 -0
- package/dist/devops/commands-upstream/update.d.ts +2 -0
- package/dist/devops/commands-upstream/update.js +77 -0
- package/dist/devops/commands-upstream/update.js.map +1 -0
- package/dist/devops/commands-upstream/wait-for-ready.d.ts +2 -0
- package/dist/devops/commands-upstream/wait-for-ready.js +93 -0
- package/dist/devops/commands-upstream/wait-for-ready.js.map +1 -0
- package/dist/devops/lib/configure.d.ts +14 -0
- package/dist/devops/lib/configure.js +91 -0
- package/dist/devops/lib/configure.js.map +1 -0
- package/dist/devops/lib/install-plugin.d.ts +18 -0
- package/dist/devops/lib/install-plugin.js +115 -0
- package/dist/devops/lib/install-plugin.js.map +1 -0
- package/dist/devops/lib/install.d.ts +35 -0
- package/dist/devops/lib/install.js +472 -0
- package/dist/devops/lib/install.js.map +1 -0
- package/dist/devops/lib/logger.d.ts +7 -0
- package/dist/devops/lib/logger.js +18 -0
- package/dist/devops/lib/logger.js.map +1 -0
- package/dist/devops/lib/open.d.ts +97 -0
- package/dist/devops/lib/open.js +522 -0
- package/dist/devops/lib/open.js.map +1 -0
- package/dist/devops/lib/owned-node-server.d.ts +54 -0
- package/dist/devops/lib/owned-node-server.js +779 -0
- package/dist/devops/lib/owned-node-server.js.map +1 -0
- package/dist/devops/lib/progress.d.ts +7 -0
- package/dist/devops/lib/progress.js +16 -0
- package/dist/devops/lib/progress.js.map +1 -0
- package/dist/devops/lib/remove-plugin.d.ts +11 -0
- package/dist/devops/lib/remove-plugin.js +58 -0
- package/dist/devops/lib/remove-plugin.js.map +1 -0
- package/dist/devops/lib/run-tool.d.ts +15 -0
- package/dist/devops/lib/run-tool.js +356 -0
- package/dist/devops/lib/run-tool.js.map +1 -0
- package/dist/devops/lib/setup-mcp.d.ts +35 -0
- package/dist/devops/lib/setup-mcp.js +172 -0
- package/dist/devops/lib/setup-mcp.js.map +1 -0
- package/dist/devops/lib/setup-unity-cli.d.ts +129 -0
- package/dist/devops/lib/setup-unity-cli.js +567 -0
- package/dist/devops/lib/setup-unity-cli.js.map +1 -0
- package/dist/devops/lib/types.d.ts +623 -0
- package/dist/devops/lib/types.js +8 -0
- package/dist/devops/lib/types.js.map +1 -0
- package/dist/devops/lib/unity-lifecycle.d.ts +102 -0
- package/dist/devops/lib/unity-lifecycle.js +313 -0
- package/dist/devops/lib/unity-lifecycle.js.map +1 -0
- package/dist/devops/lib/update.d.ts +84 -0
- package/dist/devops/lib/update.js +405 -0
- package/dist/devops/lib/update.js.map +1 -0
- package/dist/devops/lib/validation.d.ts +37 -0
- package/dist/devops/lib/validation.js +50 -0
- package/dist/devops/lib/validation.js.map +1 -0
- package/dist/devops/utils/agents.d.ts +61 -0
- package/dist/devops/utils/agents.js +640 -0
- package/dist/devops/utils/agents.js.map +1 -0
- package/dist/devops/utils/auth.d.ts +28 -0
- package/dist/devops/utils/auth.js +111 -0
- package/dist/devops/utils/auth.js.map +1 -0
- package/dist/devops/utils/browser.d.ts +5 -0
- package/dist/devops/utils/browser.js +32 -0
- package/dist/devops/utils/browser.js.map +1 -0
- package/dist/devops/utils/cloud-login.d.ts +7 -0
- package/dist/devops/utils/cloud-login.js +56 -0
- package/dist/devops/utils/cloud-login.js.map +1 -0
- package/dist/devops/utils/config.d.ts +81 -0
- package/dist/devops/utils/config.js +190 -0
- package/dist/devops/utils/config.js.map +1 -0
- package/dist/devops/utils/connection.d.ts +34 -0
- package/dist/devops/utils/connection.js +77 -0
- package/dist/devops/utils/connection.js.map +1 -0
- package/dist/devops/utils/editor-cache.d.ts +16 -0
- package/dist/devops/utils/editor-cache.js +81 -0
- package/dist/devops/utils/editor-cache.js.map +1 -0
- package/dist/devops/utils/input.d.ts +13 -0
- package/dist/devops/utils/input.js +72 -0
- package/dist/devops/utils/input.js.map +1 -0
- package/dist/devops/utils/json-parse.d.ts +36 -0
- package/dist/devops/utils/json-parse.js +105 -0
- package/dist/devops/utils/json-parse.js.map +1 -0
- package/dist/devops/utils/launch-error-dismiss.d.ts +159 -0
- package/dist/devops/utils/launch-error-dismiss.js +440 -0
- package/dist/devops/utils/launch-error-dismiss.js.map +1 -0
- package/dist/devops/utils/manifest.d.ts +124 -0
- package/dist/devops/utils/manifest.js +403 -0
- package/dist/devops/utils/manifest.js.map +1 -0
- package/dist/devops/utils/port.d.ts +6 -0
- package/dist/devops/utils/port.js +19 -0
- package/dist/devops/utils/port.js.map +1 -0
- package/dist/devops/utils/probe.d.ts +15 -0
- package/dist/devops/utils/probe.js +58 -0
- package/dist/devops/utils/probe.js.map +1 -0
- package/dist/devops/utils/semver.d.ts +4 -0
- package/dist/devops/utils/semver.js +75 -0
- package/dist/devops/utils/semver.js.map +1 -0
- package/dist/devops/utils/ui.d.ts +70 -0
- package/dist/devops/utils/ui.js +288 -0
- package/dist/devops/utils/ui.js.map +1 -0
- package/dist/devops/utils/unity-cli.d.ts +192 -0
- package/dist/devops/utils/unity-cli.js +1102 -0
- package/dist/devops/utils/unity-cli.js.map +1 -0
- package/dist/devops/utils/unity-editor.d.ts +50 -0
- package/dist/devops/utils/unity-editor.js +306 -0
- package/dist/devops/utils/unity-editor.js.map +1 -0
- package/dist/devops/utils/unity-hub.d.ts +100 -0
- package/dist/devops/utils/unity-hub.js +696 -0
- package/dist/devops/utils/unity-hub.js.map +1 -0
- package/dist/devops/utils/unity-process.d.ts +17 -0
- package/dist/devops/utils/unity-process.js +90 -0
- package/dist/devops/utils/unity-process.js.map +1 -0
- package/dist/devops/utils/unity-shutdown.d.ts +87 -0
- package/dist/devops/utils/unity-shutdown.js +241 -0
- package/dist/devops/utils/unity-shutdown.js.map +1 -0
- package/dist/devops/utils/update-check.d.ts +19 -0
- package/dist/devops/utils/update-check.js +92 -0
- package/dist/devops/utils/update-check.js.map +1 -0
- package/dist/devops/utils/vendor.d.ts +21 -0
- package/dist/devops/utils/vendor.js +64 -0
- package/dist/devops/utils/vendor.js.map +1 -0
- package/dist/generated/tools.d.ts +5 -0
- package/dist/generated/tools.js +4299 -0
- package/dist/generated/tools.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/dist/program.d.ts +2 -0
- package/dist/program.js +102 -0
- package/dist/program.js.map +1 -0
- package/dist/server/app.d.ts +42 -0
- package/dist/server/app.js +109 -0
- package/dist/server/app.js.map +1 -0
- package/dist/server/calls/call-record-store.d.ts +99 -0
- package/dist/server/calls/call-record-store.js +240 -0
- package/dist/server/calls/call-record-store.js.map +1 -0
- package/dist/server/config.d.ts +44 -0
- package/dist/server/config.js +146 -0
- package/dist/server/config.js.map +1 -0
- package/dist/server/index.d.ts +18 -0
- package/dist/server/index.js +139 -0
- package/dist/server/index.js.map +1 -0
- package/dist/server/origin.d.ts +3 -0
- package/dist/server/origin.js +8 -0
- package/dist/server/origin.js.map +1 -0
- package/dist/server/rest/auth.d.ts +23 -0
- package/dist/server/rest/auth.js +57 -0
- package/dist/server/rest/auth.js.map +1 -0
- package/dist/server/rest/calls.d.ts +13 -0
- package/dist/server/rest/calls.js +54 -0
- package/dist/server/rest/calls.js.map +1 -0
- package/dist/server/rest/context.d.ts +41 -0
- package/dist/server/rest/context.js +194 -0
- package/dist/server/rest/context.js.map +1 -0
- package/dist/server/rest/forward.d.ts +66 -0
- package/dist/server/rest/forward.js +396 -0
- package/dist/server/rest/forward.js.map +1 -0
- package/dist/server/rest/health.d.ts +4 -0
- package/dist/server/rest/health.js +96 -0
- package/dist/server/rest/health.js.map +1 -0
- package/dist/server/rest/help.d.ts +7 -0
- package/dist/server/rest/help.js +33 -0
- package/dist/server/rest/help.js.map +1 -0
- package/dist/server/rest/instances.d.ts +13 -0
- package/dist/server/rest/instances.js +88 -0
- package/dist/server/rest/instances.js.map +1 -0
- package/dist/server/rest/prompts.d.ts +11 -0
- package/dist/server/rest/prompts.js +131 -0
- package/dist/server/rest/prompts.js.map +1 -0
- package/dist/server/rest/resources.d.ts +13 -0
- package/dist/server/rest/resources.js +156 -0
- package/dist/server/rest/resources.js.map +1 -0
- package/dist/server/rest/router.d.ts +10 -0
- package/dist/server/rest/router.js +158 -0
- package/dist/server/rest/router.js.map +1 -0
- package/dist/server/rest/session.d.ts +16 -0
- package/dist/server/rest/session.js +108 -0
- package/dist/server/rest/session.js.map +1 -0
- package/dist/server/rest/system-tools.d.ts +11 -0
- package/dist/server/rest/system-tools.js +150 -0
- package/dist/server/rest/system-tools.js.map +1 -0
- package/dist/server/rest/tools.d.ts +11 -0
- package/dist/server/rest/tools.js +383 -0
- package/dist/server/rest/tools.js.map +1 -0
- package/dist/server/session/store.d.ts +36 -0
- package/dist/server/session/store.js +75 -0
- package/dist/server/session/store.js.map +1 -0
- package/dist/server/stub-client/index.d.ts +54 -0
- package/dist/server/stub-client/index.js +275 -0
- package/dist/server/stub-client/index.js.map +1 -0
- package/dist/server/stub-client/scenarios.d.ts +23 -0
- package/dist/server/stub-client/scenarios.js +150 -0
- package/dist/server/stub-client/scenarios.js.map +1 -0
- package/dist/server/types.d.ts +224 -0
- package/dist/server/types.js +54 -0
- package/dist/server/types.js.map +1 -0
- package/dist/server/ws/envelope.d.ts +81 -0
- package/dist/server/ws/envelope.js +138 -0
- package/dist/server/ws/envelope.js.map +1 -0
- package/dist/server/ws/hub.d.ts +77 -0
- package/dist/server/ws/hub.js +386 -0
- package/dist/server/ws/hub.js.map +1 -0
- package/dist/server/ws/pending.d.ts +47 -0
- package/dist/server/ws/pending.js +242 -0
- package/dist/server/ws/pending.js.map +1 -0
- package/dist/server/ws/registry.d.ts +117 -0
- package/dist/server/ws/registry.js +300 -0
- package/dist/server/ws/registry.js.map +1 -0
- package/dist/server/ws/rpc.d.ts +38 -0
- package/dist/server/ws/rpc.js +157 -0
- package/dist/server/ws/rpc.js.map +1 -0
- package/dist/skills/bundle.d.ts +146 -0
- package/dist/skills/bundle.js +1020 -0
- package/dist/skills/bundle.js.map +1 -0
- package/dist/skills/install-manifest.d.ts +136 -0
- package/dist/skills/install-manifest.js +355 -0
- package/dist/skills/install-manifest.js.map +1 -0
- package/dist/tool-call-control.d.ts +255 -0
- package/dist/tool-call-control.js +802 -0
- package/dist/tool-call-control.js.map +1 -0
- package/dist/transport/index.d.ts +90 -0
- package/dist/transport/index.js +13 -0
- package/dist/transport/index.js.map +1 -0
- package/dist/transport/rest.d.ts +35 -0
- package/dist/transport/rest.js +415 -0
- package/dist/transport/rest.js.map +1 -0
- package/dist/util/call-control.d.ts +30 -0
- package/dist/util/call-control.js +123 -0
- package/dist/util/call-control.js.map +1 -0
- package/dist/util/cli-context.d.ts +35 -0
- package/dist/util/cli-context.js +316 -0
- package/dist/util/cli-context.js.map +1 -0
- package/dist/util/errors.d.ts +31 -0
- package/dist/util/errors.js +52 -0
- package/dist/util/errors.js.map +1 -0
- package/dist/util/idle-wait.d.ts +17 -0
- package/dist/util/idle-wait.js +93 -0
- package/dist/util/idle-wait.js.map +1 -0
- package/dist/util/input.d.ts +10 -0
- package/dist/util/input.js +86 -0
- package/dist/util/input.js.map +1 -0
- package/dist/util/multi-select.d.ts +29 -0
- package/dist/util/multi-select.js +108 -0
- package/dist/util/multi-select.js.map +1 -0
- package/dist/util/operation-wait.d.ts +35 -0
- package/dist/util/operation-wait.js +96 -0
- package/dist/util/operation-wait.js.map +1 -0
- package/dist/util/output.d.ts +8 -0
- package/dist/util/output.js +302 -0
- package/dist/util/output.js.map +1 -0
- package/dist/util/readiness.d.ts +18 -0
- package/dist/util/readiness.js +129 -0
- package/dist/util/readiness.js.map +1 -0
- package/dist/util/redaction.d.ts +3 -0
- package/dist/util/redaction.js +59 -0
- package/dist/util/redaction.js.map +1 -0
- package/dist/util/timeout.d.ts +9 -0
- package/dist/util/timeout.js +16 -0
- package/dist/util/timeout.js.map +1 -0
- package/dist/util/tool-payload.d.ts +8 -0
- package/dist/util/tool-payload.js +58 -0
- package/dist/util/tool-payload.js.map +1 -0
- package/docs/INSTALL.zh-CN.md +175 -0
- package/node_modules/chalk/license +9 -0
- package/node_modules/chalk/package.json +83 -0
- package/node_modules/chalk/readme.md +297 -0
- package/node_modules/chalk/source/index.d.ts +325 -0
- package/node_modules/chalk/source/index.js +225 -0
- package/node_modules/chalk/source/utilities.js +33 -0
- package/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
- package/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
- package/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
- package/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
- package/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +1157 -0
- package/node_modules/commander/esm.mjs +16 -0
- package/node_modules/commander/index.js +24 -0
- package/node_modules/commander/lib/argument.js +149 -0
- package/node_modules/commander/lib/command.js +2509 -0
- package/node_modules/commander/lib/error.js +39 -0
- package/node_modules/commander/lib/help.js +520 -0
- package/node_modules/commander/lib/option.js +330 -0
- package/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/commander/package-support.json +16 -0
- package/node_modules/commander/package.json +84 -0
- package/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/commander/typings/index.d.ts +969 -0
- package/node_modules/kleur/colors.d.ts +38 -0
- package/node_modules/kleur/colors.js +53 -0
- package/node_modules/kleur/colors.mjs +53 -0
- package/node_modules/kleur/index.d.ts +45 -0
- package/node_modules/kleur/index.js +110 -0
- package/node_modules/kleur/index.mjs +110 -0
- package/node_modules/kleur/license +21 -0
- package/node_modules/kleur/package.json +51 -0
- package/node_modules/kleur/readme.md +232 -0
- package/node_modules/ws/LICENSE +20 -0
- package/node_modules/ws/README.md +548 -0
- package/node_modules/ws/browser.js +8 -0
- package/node_modules/ws/index.js +22 -0
- package/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/ws/lib/permessage-deflate.js +530 -0
- package/node_modules/ws/lib/receiver.js +743 -0
- package/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/ws/lib/websocket-server.js +562 -0
- package/node_modules/ws/lib/websocket.js +1407 -0
- package/node_modules/ws/package.json +74 -0
- package/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/yocto-spinner/index.d.ts +162 -0
- package/node_modules/yocto-spinner/index.js +428 -0
- package/node_modules/yocto-spinner/license +9 -0
- package/node_modules/yocto-spinner/package.json +64 -0
- package/node_modules/yocto-spinner/readme.md +237 -0
- package/node_modules/yoctocolors/base.d.ts +47 -0
- package/node_modules/yoctocolors/base.js +94 -0
- package/node_modules/yoctocolors/index.d.ts +2 -0
- package/node_modules/yoctocolors/index.js +2 -0
- package/node_modules/yoctocolors/license +9 -0
- package/node_modules/yoctocolors/package.json +69 -0
- package/node_modules/yoctocolors/readme.md +138 -0
- package/package.json +83 -0
- package/skills/uco-setup/SKILL.md +52 -0
- package/skills/uco-setup/agents/openai.yaml +7 -0
- package/skills/uco-setup/references/recovery.md +24 -0
- package/skills/unity-cli/SKILL.md +39 -0
- package/skills/unity-cli/agents/openai.yaml +7 -0
- package/skills/unity-cli/references/automation-services.md +49 -0
- package/skills/unity-cli/references/installation-projects.md +47 -0
- package/skills/unity-editor/SKILL.md +50 -0
- package/skills/unity-editor/agents/openai.yaml +7 -0
- package/skills/unity-editor/references/authoring.md +7 -0
- package/skills/unity-editor/references/build-and-tests.md +11 -0
- package/skills/unity-editor/references/code.md +7 -0
- package/skills/unity-editor/references/diagnostics.md +7 -0
- package/skills/unity-editor/references/physics.md +7 -0
- package/skills/unity-editor/references/prompts.md +7 -0
- package/skills/unity-editor/references/resources.md +7 -0
- package/skills/unity-editor/references/visuals.md +7 -0
- package/skills/unity-editor/scripts/tool-info.mjs +37 -0
- package/skills/unity-editor/scripts/uco.mjs +27 -0
- package/vendor/nuget/.nuget-installed.json +200 -0
- package/vendor/nuget/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
- package/vendor/nuget/Microsoft.Bcl.AsyncInterfaces.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Bcl.Memory.dll +0 -0
- package/vendor/nuget/Microsoft.Bcl.Memory.dll.meta +33 -0
- package/vendor/nuget/Microsoft.Bcl.TimeProvider.dll +0 -0
- package/vendor/nuget/Microsoft.Bcl.TimeProvider.dll.meta +39 -0
- package/vendor/nuget/Microsoft.CodeAnalysis.CSharp.dll +0 -0
- package/vendor/nuget/Microsoft.CodeAnalysis.CSharp.dll.meta +33 -0
- package/vendor/nuget/Microsoft.CodeAnalysis.dll +0 -0
- package/vendor/nuget/Microsoft.CodeAnalysis.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Caching.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Caching.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Configuration.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.DependencyInjection.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.DependencyInjection.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Diagnostics.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Features.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Features.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.FileProviders.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Hosting.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Logging.Abstractions.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Logging.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Logging.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Options.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Options.dll.meta +39 -0
- package/vendor/nuget/Microsoft.Extensions.Primitives.dll +0 -0
- package/vendor/nuget/Microsoft.Extensions.Primitives.dll.meta +39 -0
- package/vendor/nuget/R3.dll +0 -0
- package/vendor/nuget/R3.dll.meta +39 -0
- package/vendor/nuget/ReflectorNet.dll +0 -0
- package/vendor/nuget/ReflectorNet.dll.meta +39 -0
- package/vendor/nuget/System.Buffers.dll +0 -0
- package/vendor/nuget/System.Buffers.dll.meta +39 -0
- package/vendor/nuget/System.Collections.Immutable.dll +0 -0
- package/vendor/nuget/System.Collections.Immutable.dll.meta +39 -0
- package/vendor/nuget/System.ComponentModel.Annotations.dll +0 -0
- package/vendor/nuget/System.ComponentModel.Annotations.dll.meta +39 -0
- package/vendor/nuget/System.Diagnostics.DiagnosticSource.dll +0 -0
- package/vendor/nuget/System.Diagnostics.DiagnosticSource.dll.meta +39 -0
- package/vendor/nuget/System.IO.Pipelines.dll +0 -0
- package/vendor/nuget/System.IO.Pipelines.dll.meta +39 -0
- package/vendor/nuget/System.Memory.dll +0 -0
- package/vendor/nuget/System.Memory.dll.meta +39 -0
- package/vendor/nuget/System.Numerics.Vectors.dll +0 -0
- package/vendor/nuget/System.Numerics.Vectors.dll.meta +39 -0
- package/vendor/nuget/System.Reflection.Metadata.dll +0 -0
- package/vendor/nuget/System.Reflection.Metadata.dll.meta +39 -0
- package/vendor/nuget/System.Runtime.CompilerServices.Unsafe.dll +0 -0
- package/vendor/nuget/System.Runtime.CompilerServices.Unsafe.dll.meta +39 -0
- package/vendor/nuget/System.Text.Encoding.CodePages.dll +0 -0
- package/vendor/nuget/System.Text.Encoding.CodePages.dll.meta +39 -0
- package/vendor/nuget/System.Text.Encodings.Web.dll +0 -0
- package/vendor/nuget/System.Text.Encodings.Web.dll.meta +39 -0
- package/vendor/nuget/System.Text.Json.dll +0 -0
- package/vendor/nuget/System.Text.Json.dll.meta +39 -0
- package/vendor/nuget/System.Threading.Channels.dll +0 -0
- package/vendor/nuget/System.Threading.Channels.dll.meta +39 -0
- package/vendor/nuget/System.Threading.Tasks.Extensions.dll +0 -0
- package/vendor/nuget/System.Threading.Tasks.Extensions.dll.meta +39 -0
- package/vendor/nuget/Uco.Framework.Common.dll +0 -0
- package/vendor/nuget/Uco.Framework.Common.dll.meta +39 -0
- package/vendor/nuget/Uco.Framework.dll +0 -0
- package/vendor/nuget/Uco.Framework.dll.meta +39 -0
- package/vendor/plugin/com.atelierai.unity.copilot/CHANGELOG.md +16 -0
- package/vendor/plugin/com.atelierai.unity.copilot/CHANGELOG.md.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/AssemblyInfo.cs +13 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/AssemblyInfo.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetCache.cs +43 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetCache.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetConfig.cs +132 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetConfig.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDependencyResolver.cs +237 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDependencyResolver.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDownloader.cs +82 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDownloader.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetExtractor.cs +414 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetExtractor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetInstallManifest.cs +546 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetInstallManifest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLegacyMigration.cs +265 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLegacyMigration.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLongPathPreflight.cs +163 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLongPathPreflight.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackage.cs +59 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackage.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageInstaller.cs +542 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageInstaller.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageRestorer.cs +267 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageRestorer.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPluginConfigurator.cs +241 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPluginConfigurator.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetResolverMenu.cs +60 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetResolverMenu.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/RecompileGate.cs +168 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/RecompileGate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/UnityAssemblyResolver.cs +110 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/UnityAssemblyResolver.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/com.AtelierAI.Unity.Copilot.DependencyResolver.asmdef +16 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/com.AtelierAI.Unity.Copilot.DependencyResolver.asmdef.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/.gitignore +2 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/antigravity-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/antigravity-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/claude-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/claude-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cline-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cline-64.png.meta +191 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/codex-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/codex-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cursor-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cursor-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/gemini-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/gemini-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/github-copilot-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/github-copilot-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/kilo-code-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/kilo-code-64.png.meta +153 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/open-code-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/open-code-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/rider-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/rider-64.png.meta +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/unity-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/unity-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/visual-studio-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/visual-studio-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/vs-code-64.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/vs-code-64.png.meta +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/discord_icon.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/discord_icon.png.meta +114 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/github_icon.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/github_icon.png.meta +114 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/icon.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/icon.png.meta +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo.png.meta +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_305.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_305.png.meta +114 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_512.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_512.png.meta +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_script_icon.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_script_icon.png.meta +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_window_icon.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_window_icon.png.meta +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/star_icon.png +0 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/star_icon.png.meta +114 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/.gitignore +2 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AnimationTimeline.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AnimationTimeline.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AssetManagement.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AssetManagement.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/DebuggingTesting.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/DebuggingTesting.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/GameObjectComponent.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/GameObjectComponent.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/SceneManagement.cs +63 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/SceneManagement.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/ScriptingCode.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/ScriptingCode.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorState.cs +195 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorState.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorWindows.cs +205 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorWindows.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/GameObject.Hierarchy.cs +78 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/GameObject.Hierarchy.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/MenuItems.cs +247 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/MenuItems.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectInfo.cs +141 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectInfo.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectLayers.cs +116 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectLayers.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectTags.cs +150 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectTags.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ToolGroups.cs +153 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ToolGroups.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/UnityInstances.cs +67 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/UnityInstances.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Ping.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Ping.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.SkillBody.cs +155 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.SkillBody.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.cs +268 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.cs +20 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Copy.cs +96 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Copy.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.CreateFolders.cs +133 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.CreateFolders.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Delete.cs +97 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Delete.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Find.cs +95 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Find.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.FindBuiltIn.cs +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.FindBuiltIn.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.GetData.cs +119 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.GetData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.Create.cs +90 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.cs +23 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.cs +148 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.pre-Unity.6.5.cs +141 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Move.cs +89 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Move.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Close.cs +79 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Close.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Create.cs +154 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Instantiate.cs +95 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Instantiate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Open.cs +80 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Open.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Save.cs +66 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Save.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.cs +40 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Refresh.cs +165 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Refresh.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.GetData.cs +263 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.GetData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.ListAll.cs +50 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.ListAll.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.cs +20 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.Execute.cs +870 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.Execute.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.cs +152 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobCancel.cs +25 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobCancel.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobGet.cs +58 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobGet.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobList.cs +54 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobList.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.Player.cs +192 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.Player.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneAdd.cs +103 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneAdd.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneList.cs +55 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneList.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneRemove.cs +73 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneRemove.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SwitchPlatform.cs +98 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SwitchPlatform.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.cs +451 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.Blend.cs +137 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.Blend.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamConfigure.cs +252 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamConfigure.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamPriority.cs +117 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamPriority.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Configure.cs +161 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Configure.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.GetData.cs +89 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.GetData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.ListAll.cs +81 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.ListAll.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.cs +264 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.ClearLogs.cs +132 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.ClearLogs.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.GetLogs.cs +96 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.GetLogs.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.cs +28 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/AddComponentResponse.cs +36 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/AddComponentResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ComponentListResult.cs +39 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ComponentListResult.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CopyAssetsResponse.cs +25 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CopyAssetsResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderInput.cs +29 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderInput.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderResponse.cs +29 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DeleteAssetsResponse.cs +29 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DeleteAssetsResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyComponentsResponse.cs +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyComponentsResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.cs +35 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.pre-Unity.6.5.cs +35 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/EditorStatsData.cs +104 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/EditorStatsData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.pre-Unity.6.5.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyComponentResponse.cs +38 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyComponentResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyObjectResponse.cs +45 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyObjectResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/MoveAssetsResponse.cs +29 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/MoveAssetsResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageData.cs +56 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageSearchResult.cs +46 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageSearchResult.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PassData.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PassData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ScriptExecuteResult.cs +44 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ScriptExecuteResult.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.cs +67 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.pre-Unity.6.5.cs +69 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderData.cs +61 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderMessageData.cs +36 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderMessageData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderPropertyData.cs +51 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderPropertyData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SubshaderData.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SubshaderData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInfoData.cs +37 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInfoData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInputData.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInputData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleInput.cs +30 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleInput.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleResult.cs +30 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleResult.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/UnloadSceneResult.cs +29 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/UnloadSceneResult.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetManual.cs +116 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetManual.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetPackage.cs +100 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetPackage.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetScriptReference.cs +163 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetScriptReference.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HtmlParser.cs +519 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HtmlParser.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HttpFetcher.cs +139 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HttpFetcher.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.Lookup.cs +209 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.Lookup.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.cs +158 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.GetState.cs +102 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.GetState.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.SetState.cs +70 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.SetState.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.ExecuteMenuItem.cs +149 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.ExecuteMenuItem.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.cs +82 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.pre-Unity.6.5.cs +90 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.cs +54 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.pre-Unity.6.5.cs +54 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.cs +74 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.pre-Unity.6.5.cs +73 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.cs +29 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Add.cs +142 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Add.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Destroy.cs +116 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Destroy.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.cs +168 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.pre-Unity.6.5.cs +168 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.ListAll.cs +98 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.ListAll.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Modify.cs +200 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Create.cs +123 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.cs +90 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.pre-Unity.6.5.cs +90 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Duplicate.cs +111 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Duplicate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Find.cs +135 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Find.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Modify.cs +202 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.SetParent.cs +118 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.SetParent.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.cs +116 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.pre-Unity.6.5.cs +116 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.LightBake.cs +366 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.LightBake.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.RenderingStats.cs +166 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.RenderingStats.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpAsset.cs +489 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpAsset.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpRendererFeature.cs +725 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpRendererFeature.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.AddOverride.cs +156 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.AddOverride.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.Create.cs +221 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.List.cs +177 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.List.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.RemoveOverride.cs +129 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.RemoveOverride.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.SetField.cs +261 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.SetField.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.cs +778 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.GetCurrent.cs +70 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.GetCurrent.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.ListAll.cs +72 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.ListAll.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.cs +50 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.GetData.cs +109 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.GetData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.Modify.cs +155 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.cs +24 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Operations.cs +37 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Operations.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Add.cs +111 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Add.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.List.cs +135 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.List.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Remove.cs +133 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Remove.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Search.cs +198 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Search.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.cs +60 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/PathReadHelper.cs +106 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/PathReadHelper.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.CollisionMatrix.cs +224 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.CollisionMatrix.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Force.cs +276 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Force.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Add.cs +360 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Add.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Configure.cs +701 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Configure.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Remove.cs +182 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Remove.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Linecast.cs +79 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Linecast.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Material.cs +495 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Material.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Overlap.cs +215 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Overlap.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Raycast.cs +360 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Raycast.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Rigidbody.cs +490 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Rigidbody.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Settings.cs +378 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Settings.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Shapecast.cs +246 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Shapecast.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Simulate.cs +184 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Simulate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Validate.cs +374 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Validate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.cs +339 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Counters.cs +417 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Counters.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.FrameDebugger.cs +436 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.FrameDebugger.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Memory.cs +386 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Memory.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Session.cs +222 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Session.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.cs +72 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodCall.cs +206 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodCall.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodFind.cs +112 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodFind.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.cs +166 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Create.cs +95 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.GetData.cs +123 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.GetData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.ListOpened.cs +49 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.ListOpened.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Open.cs +81 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Open.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Save.cs +108 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Save.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.SetActive.cs +92 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.SetActive.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Unload.cs +99 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Unload.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.cs +42 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Camera.cs +126 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Camera.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.GameView.cs +128 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.GameView.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Isolated.cs +733 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Isolated.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.SceneView.cs +112 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.SceneView.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.cs +672 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.ApplyEdits.cs +591 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.ApplyEdits.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.CSharpTokenizer.cs +704 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.CSharpTokenizer.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Delete.cs +94 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Delete.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Execute.cs +466 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Execute.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.FindInFile.cs +526 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.FindInFile.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.GetSha.cs +137 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.GetSha.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Read.cs +81 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Read.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.UpdateOrCreate.cs +100 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.UpdateOrCreate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Validate.cs +252 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Validate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.cs +42 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/CombinedTestResultCollector.cs +159 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/CombinedTestResultCollector.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestFilterParameters.cs +51 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestFilterParameters.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestLogEntry.cs +69 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestLogEntry.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultCollector.cs +537 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultCollector.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultData.cs +24 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultStatus.cs +20 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultStatus.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunResponse.cs +41 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunResponse.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunStatus.cs +21 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunStatus.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestSummaryData.cs +41 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestSummaryData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Jobs.cs +48 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Jobs.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Run.cs +665 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Run.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.cs +400 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateChecker.cs +99 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateChecker.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateGradient.cs +136 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateGradient.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateNoise.cs +157 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateNoise.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateSolid.cs +78 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateSolid.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.Read.cs +110 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.Read.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.cs +255 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.List.cs +207 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.List.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.SetEnabledState.cs +111 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.SetEnabledState.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.cs +76 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.List.cs +94 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.List.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.SetEnabled.cs +92 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.SetEnabled.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.cs +149 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.GetJsonSchema.cs +160 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.GetJsonSchema.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.ListMembers.cs +243 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.ListMembers.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.cs +39 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Attach.cs +174 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Attach.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Detach.cs +94 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Detach.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Element.Query.cs +276 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Element.Query.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Create.cs +87 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Modify.cs +224 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Read.cs +83 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Read.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Create.cs +88 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Create.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Modify.cs +398 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Read.cs +84 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Read.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.cs +356 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Graph.Configure.cs +377 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Graph.Configure.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Configure.cs +231 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Configure.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Control.cs +128 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Control.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.GetData.cs +88 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.GetData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Trail.Configure.cs +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Trail.Configure.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.cs +386 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/AssemblyInfo.cs +13 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/AssemblyInfo.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Branding/ProductInfo.cs +63 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Branding/ProductInfo.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Branding.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/CopilotServerManager.cs +1044 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/CopilotServerManager.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.cs +103 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.pre-Unity.6.5.cs +102 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthFlow.cs +133 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthFlow.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthService.cs +84 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthService.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Skills/Skill_InitialSetup.cs +197 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Skills/Skill_InitialSetup.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Skills.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.Editor.cs +201 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.cs +67 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/AlertPanel.cs +115 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/AlertPanel.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/ExtensionPanel.cs +379 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/ExtensionPanel.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Controls/SegmentedControl.cs +229 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Controls/SegmentedControl.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Controls.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/MenuItems.cs +132 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/MenuItems.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/OpenWindowButton.cs +39 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/OpenWindowButton.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/SceneViewToolbarOverlay.cs +35 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/SceneViewToolbarOverlay.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/UnityCopilotProjectSettingsProvider.cs +64 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/UnityCopilotProjectSettingsProvider.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UICopilotUtils.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UICopilotUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UITemplate.cs +30 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UITemplate.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotListWindowBase.cs +393 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotListWindowBase.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotWindowBase.cs +113 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotWindowBase.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Connection.cs +409 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Connection.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotFeatures.cs +195 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotFeatures.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotServer.cs +372 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotServer.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CreateGUI.cs +361 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CreateGUI.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Extensions.cs +110 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Extensions.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.cs +148 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.cs.meta +14 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowInitializer.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowInitializer.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/NotificationPopupWindow.cs +114 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/NotificationPopupWindow.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/SerializationCheckWindow.cs +190 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/SerializationCheckWindow.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/UpdatePopupWindow.cs +252 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/UpdatePopupWindow.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Build.cs +91 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Build.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Config.cs +293 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Config.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Static.cs +299 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Static.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.cs +69 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/BuiltInAssetCache.cs +178 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/BuiltInAssetCache.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ConsoleDiagnosticsSettings.cs +39 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ConsoleDiagnosticsSettings.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorAssetLoader.cs +75 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorAssetLoader.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwnerRegistry.cs +721 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwnerRegistry.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwners.cs +176 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwners.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationRegistry.cs +854 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationRegistry.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.cs +488 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.pre-Unity.6.5.cs +477 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorToolExecutionScheduler.cs +512 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorToolExecutionScheduler.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorUtils.cs +31 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/LinkExtractor.cs +176 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/LinkExtractor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PackageUtils.cs +168 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PackageUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PlayerPrefsValues.cs +90 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PlayerPrefsValues.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PrefsKeyMigration.cs +119 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PrefsKeyMigration.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/SafeDefaultsGuard.cs +180 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/SafeDefaultsGuard.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ScriptUtils.cs +230 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ScriptUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolGroupRegistry.cs +460 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolGroupRegistry.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolsManifestGenerator.cs +200 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolsManifestGenerator.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringAdapters.cs +1467 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringAdapters.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringSafetyReloadGuard.cs +65 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringSafetyReloadGuard.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityBridgeHandshakeIdentity.cs +86 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityBridgeHandshakeIdentity.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityCopilotUpdateProjectSettings.cs +66 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityCopilotUpdateProjectSettings.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityInstanceRegistry.cs +351 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityInstanceRegistry.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnixUtils.cs +57 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnixUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UpdateChecker.cs +421 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UpdateChecker.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/com.AtelierAI.Unity.Copilot.Editor.asmdef +32 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/com.AtelierAI.Unity.Copilot.Editor.asmdef.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotPromptsWindow.uss +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotPromptsWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotResourcesWindow.uss +16 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotResourcesWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotToolsWindow.uss +36 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotToolsWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/MainWindow.uss +184 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/MainWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/NotificationPopupWindow.uss +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/NotificationPopupWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/SerializationCheckWindow.uss +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/SerializationCheckWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/UpdatePopupWindow.uss +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/UpdatePopupWindow.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_animations.uss +26 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_animations.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_base.uss +108 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_base.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_buttons.uss +246 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_buttons.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_foldout.uss +51 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_foldout.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_forms.uss +207 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_forms.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_list-view.uss +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_list-view.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_mcp-list-window.uss +18 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_mcp-list-window.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_segmented-control.uss +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_segmented-control.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_status-indicators.uss +56 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_status-indicators.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_toggle-switch.uss +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_toggle-switch.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_typography.uss +159 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_typography.uss.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ClientConfigPanel.uxml +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ClientConfigPanel.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotPromptsWindow.uxml +18 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotPromptsWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotResourcesWindow.uxml +18 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotResourcesWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotToolsWindow.uxml +18 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotToolsWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ExtensionItem.uxml +9 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ExtensionItem.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/MainWindow.uxml +115 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/MainWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/NotificationPopupWindow.uxml +9 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/NotificationPopupWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/PromptItem.uxml +22 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/PromptItem.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ResourceItem.uxml +18 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ResourceItem.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/SerializationCheckWindow.uxml +25 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/SerializationCheckWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ToolItem.uxml +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ToolItem.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/UpdatePopupWindow.uxml +23 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/UpdatePopupWindow.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/elements/TemplateAlertPanel.uxml +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/elements/TemplateAlertPanel.uxml.meta +10 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/elements.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Editor.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/LICENSE +177 -0
- package/vendor/plugin/com.atelierai.unity.copilot/LICENSE.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/README.md +88 -0
- package/vendor/plugin/com.atelierai.unity.copilot/README.md.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/.gitignore +2 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Attributes/ToolGroupAttribute.cs +87 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Attributes/ToolGroupAttribute.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Attributes.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsConverter.cs +108 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsIntConverter.cs +156 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsIntConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Color32Converter.cs +113 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Color32Converter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/ColorConverter.cs +112 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/ColorConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/EntityIdConverter.cs +120 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/EntityIdConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientAlphaKeyConverter.cs +93 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientAlphaKeyConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientColorKeyConverter.cs +92 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientColorKeyConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientConverter.cs +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/JsonFloatHelper.cs +116 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/JsonFloatHelper.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Matrix4x4Converter.cs +134 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Matrix4x4Converter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/QuaternionConverter.cs +92 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/QuaternionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectConverter.cs +92 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectIntConverter.cs +93 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectIntConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2Converter.cs +82 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2Converter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2IntConverter.cs +83 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2IntConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3Converter.cs +46 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3Converter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3IntConverter.cs +88 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3IntConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector4Converter.cs +92 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector4Converter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.cs +106 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.pre-Unity.6.5.cs +103 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.cs +95 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.pre-Unity.6.5.cs +91 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.cs +115 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.pre-Unity.6.5.cs +111 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.cs +82 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.pre-Unity.6.5.cs +79 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.cs +96 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.pre-Unity.6.5.cs +93 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.cs +82 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.pre-Unity.6.5.cs +87 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Runtime.cs +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Runtime.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.cs +20 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.cs +83 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.pre-Unity.6.5.cs +87 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Runtime.cs +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Runtime.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.cs +20 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.cs +131 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.pre-Unity.6.5.cs +135 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Runtime.cs +70 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Runtime.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.cs +19 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_TextAsset_ReflectionConverter.cs +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_TextAsset_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityArrayReflectionConverter.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityArrayReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityGenericReflectionConverter.cs +279 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityGenericReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Collider_ReflectionConverter.cs +34 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Collider_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Component_ReflectionConverter.cs +19 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Component_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_MeshFilter_ReflectionConverter.cs +26 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_MeshFilter_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Renderer_ReflectionConverter.cs +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Renderer_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Transform_ReflectionConverter.cs +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Transform_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/UnityEngine_GenericComponent_ReflectionConverter.cs +54 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/UnityEngine_GenericComponent_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngineDataStructReflectionConverters.cs +36 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngineDataStructReflectionConverters.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_EntityId_ReflectionConverter.cs +66 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_EntityId_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_Scene_ReflectionConverter.cs +50 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_Scene_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityGenericNoPropertiesReflectionConverter.cs +31 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityGenericNoPropertiesReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityStructReflectionConverter.cs +19 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityStructReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.cs +233 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.pre-Unity.6.5.cs +231 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Gradient_ReflectionConverter.cs +65 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Gradient_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Editor.cs +162 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Runtime.cs +130 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Runtime.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.cs +392 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.pre-Unity.6.5.cs +392 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Deserialize.cs +83 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Deserialize.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Modify.cs +223 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Modify.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Serialize.cs +88 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Serialize.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.cs +38 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.cs +148 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.pre-Unity.6.5.cs +148 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentData.cs +57 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.cs +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.pre-Unity.6.5.cs +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.cs +93 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.pre-Unity.6.5.cs +93 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRefList.cs +42 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRefList.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRef.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRefList.cs +43 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRefList.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectData.cs +100 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.cs +110 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.pre-Unity.6.5.cs +110 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.cs +103 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.pre-Unity.6.5.cs +104 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRefList.cs +41 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRefList.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.cs +62 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.pre-Unity.6.5.cs +61 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/PathPatch.cs +51 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/PathPatch.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneData.cs +72 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneDataShallow.cs +60 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneDataShallow.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.cs +51 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.pre-Unity.6.5.cs +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.cs +44 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.pre-Unity.6.5.cs +44 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsCompositeDisposable.cs +26 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsCompositeDisposable.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsJsonElement.cs +183 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsJsonElement.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsLogLevel.cs +32 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsLogLevel.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsNotificationData.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsNotificationData.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsObject.cs +30 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsObject.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRequestCallTool.cs +36 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRequestCallTool.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.cs +125 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.pre-Unity.6.5.cs +137 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeGameObjectRef.cs +45 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeGameObjectRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObject.cs +65 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObject.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.cs +38 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.pre-Unity.6.5.cs +42 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsString.cs +35 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsString.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/PluginDiagnostics.cs +140 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/PluginDiagnostics.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLogger.cs +171 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLogger.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerFactory.cs +37 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerFactory.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerProvider.cs +21 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerProvider.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/BufferedFileLogStorage.cs +207 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/BufferedFileLogStorage.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/FileLogStorage.cs +547 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/FileLogStorage.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/ILogStorage.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/ILogStorage.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/LogEntry.cs +99 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/LogEntry.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/UnityLogCollector.cs +280 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/UnityLogCollector.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Serialization/TestSerialization.cs +74 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Serialization/TestSerialization.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Serialization.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Build.cs +243 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Build.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Config.cs +226 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Config.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Converters.cs +173 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Converters.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Log.cs +59 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Log.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.cs +295 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginBuilder.cs +105 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginBuilder.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.Static.cs +155 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.Static.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.cs +59 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EntityIdUtils.cs +102 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EntityIdUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EnvironmentUtils.cs +386 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EnvironmentUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ErrorUtils.cs +44 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ErrorUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.cs +57 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.pre-Unity.6.5.cs +62 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.cs +46 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.pre-Unity.6.5.cs +46 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.cs +292 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.pre-Unity6.5.cs +292 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.pre-Unity6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogCallScope.cs +99 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogCallScope.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogLevel.cs +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogLevel.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Editor.cs +107 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Player.cs +72 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Player.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThreadDispatcher.cs +77 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThreadDispatcher.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/Safe.cs +127 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/Safe.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.Editor.cs +32 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.cs +32 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.Editor.cs +32 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.Editor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.cs +25 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/WeakAction.cs +137 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/WeakAction.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/com.AtelierAI.Unity.Copilot.Runtime.asmdef +25 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/com.AtelierAI.Unity.Copilot.Runtime.asmdef.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/link.xml +30 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime/link.xml.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Runtime.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/BlacklistTestScript.cs +54 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/BlacklistTestScript.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScript.cs +24 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScript.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScriptableObject.cs +24 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScriptableObject.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScript.cs +24 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScript.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScriptableObject.cs +24 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScriptableObject.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/GradientTest.cs +20 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/GradientTest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/SolarSystem.cs +57 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/SolarSystem.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/StructFieldPopulationTestScript.cs +44 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/StructFieldPopulationTestScript.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/com.AtelierAI.Unity.Copilot.TestFiles.asmdef +16 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/com.AtelierAI.Unity.Copilot.TestFiles.asmdef.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/TestFiles.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/.gitignore +2 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/AtomicApiTestFixtures.cs +99 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/AtomicApiTestFixtures.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryModifyAtTests.cs +227 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryModifyAtTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryPatchTests.cs +204 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryPatchTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryReadAtTests.cs +163 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryReadAtTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/ViewAndGrepTests.cs +224 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/ViewAndGrepTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AuthoringSafetyPilotTests.cs +1050 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AuthoringSafetyPilotTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/BaseTest.cs +395 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/BaseTest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConnectionManagerTests.cs +247 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConnectionManagerTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConsoleDiagnosticsTests.cs +216 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConsoleDiagnosticsTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/CopilotServerManagerAutoStartTests.cs +43 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/CopilotServerManagerAutoStartTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DemoTest.cs +41 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DemoTest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorDevelopmentDependencyTests.cs +148 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorDevelopmentDependencyTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorFlatLayoutTests.cs +166 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorFlatLayoutTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetInstallManifestTests.cs +436 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetInstallManifestTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLegacyMigrationTests.cs +304 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLegacyMigrationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLongPathPreflightTests.cs +142 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLongPathPreflightTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetPackageInstallerStaleVersionCleanupTests.cs +200 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetPackageInstallerStaleVersionCleanupTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationOwnerIntegrationTests.cs +132 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationOwnerIntegrationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationSchedulingTests.cs +313 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationSchedulingTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/EnvironmentUtilsTests.cs +320 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/EnvironmentUtilsTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/TestEnvironment.cs +52 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/TestEnvironment.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/FeedbackRegressionTests.cs +1014 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/FeedbackRegressionTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/BoundsConverterTests.cs +120 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/BoundsConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/ColorConverterTests.cs +132 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/ColorConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GameObjectRefConverterTests.cs +317 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GameObjectRefConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GradientConverterTests.cs +143 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GradientConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/MatrixConverterTests.cs +125 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/MatrixConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/QuaternionConverterTests.cs +91 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/QuaternionConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/RectConverterTests.cs +115 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/RectConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/TestUtils.cs +88 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/TestUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/VectorConverterTests.cs +449 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/VectorConverterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/McpPluginTests.cs +105 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/McpPluginTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Project/VersionTest.cs +106 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Project/VersionTest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Project.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/AssetObjectRefTests.cs +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/AssetObjectRefTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/BaseRefTests.cs +31 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/BaseRefTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/GameObjectRefTests.cs +27 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/GameObjectRefTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/ObjectRefTests.cs +26 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/ObjectRefTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/BlacklistTypeTests.cs +416 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/BlacklistTypeTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.cs +172 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.pre-Unity.6.5.cs +169 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.cs +182 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.pre-Unity.6.5.cs +179 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.cs +175 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.pre-Unity.6.5.cs +174 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.cs +171 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.pre-Unity.6.5.cs +170 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/StructPopulationTests.cs +344 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/StructPopulationTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RunToolTests.cs +275 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RunToolTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SceneSandboxHygieneTests.cs +243 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SceneSandboxHygieneTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ScriptExecuteFailureSurfacingTests.cs +60 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ScriptExecuteFailureSurfacingTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SpriteConverterTest.cs +103 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SpriteConverterTest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestGameObjectUtils.cs +65 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestGameObjectUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestInfrastructureValidation.cs +45 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestInfrastructureValidation.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestsOperationProvenanceTests.cs +166 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestsOperationProvenanceTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsCreateFolderTests.cs +243 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsCreateFolderTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsFindBuiltInTests.cs +550 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsFindBuiltInTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsGetDataWithBuiltInTests.cs +66 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsGetDataWithBuiltInTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialModifyTests.cs +81 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialModifyTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialTests.cs +101 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.cs +348 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.pre-Unity.6.5.cs +348 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsShaderTests.cs +194 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsShaderTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestLogUtils.cs +608 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestLogUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsole.cs +480 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsole.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsoleIntegration.cs +305 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsoleIntegration.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Docs/DocsUrlAndParserTests.cs +195 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Docs/DocsUrlAndParserTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Docs.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSchema.cs +199 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSchema.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSerialize.cs +101 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSerialize.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestSerializer.cs +208 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestSerializer.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestStringUtils.cs +53 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestStringUtils.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ComponentListAll.cs +247 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ComponentListAll.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.cs +451 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.pre-Unity.6.5.cs +451 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.cs +91 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.pre-Unity.6.5.cs +91 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.cs +150 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.pre-Unity.6.5.cs +150 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.cs +565 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.pre-Unity.6.5.cs +565 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.cs +38 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodCall.cs +211 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodCall.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodFind.cs +63 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodFind.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.cs +298 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.pre-Unity.6.5.cs +298 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectModifyTests.cs +146 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectModifyTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.cs +573 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.pre-Unity.6.5.cs +513 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/RunToolStructuredContentTests.cs +759 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/RunToolStructuredContentTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.cs +154 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.pre-Unity.6.5.cs +154 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotGameViewTests.cs +164 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotGameViewTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotIsolatedTests.cs +325 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotIsolatedTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotSceneViewTests.cs +155 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotSceneViewTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/CSharpTokenizerTests.cs +219 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/CSharpTokenizerTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptApplyEditsTests.cs +349 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptApplyEditsTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptExecuteTests.cs +401 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptExecuteTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tests/TestsRunDirtySceneTests.cs +122 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tests/TestsRunDirtySceneTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tests.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolListTests.cs +362 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolListTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolSetEnabledStateTests.cs +410 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolSetEnabledStateTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolParameterTests.cs +56 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolParameterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.cs +651 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.pre-Unity.6.5.cs +651 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Type/TypeGetJsonSchemaTests.cs +320 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Type/TypeGetJsonSchemaTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Type.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolBatchExecutionIntegrationTests.cs +407 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolBatchExecutionIntegrationTests.cs.meta +2 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolsManifestGeneratorTests.cs +200 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolsManifestGeneratorTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/MainWindowEditor.StatusLogicTests.cs +301 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/MainWindowEditor.StatusLogicTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/SceneViewToolbarOverlayTests.cs +75 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/SceneViewToolbarOverlayTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/TokenCounterTests.cs +85 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/TokenCounterTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/BuiltInAssetCacheTests.cs +79 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/BuiltInAssetCacheTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.cs +81 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.pre-Unity.6.5.cs +81 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/BaseCreateAssetExecutor.cs +38 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/BaseCreateAssetExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CallToolExecutor.cs +59 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CallToolExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.Composition.cs +211 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.Composition.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.cs +171 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateFolderExecutor.cs +87 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateFolderExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.cs +137 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.pre-Unity.6.5.cs +137 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.pre-Unity.6.5.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateMaterialExecutor.cs +38 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateMaterialExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreatePrefabExecutor.cs +67 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreatePrefabExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateScriptableObjectExecutor.cs +45 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateScriptableObjectExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateShaderExecutor.cs +39 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateShaderExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateSpriteExecutor.cs +70 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateSpriteExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateTextureExecutor.cs +61 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateTextureExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/DynamicCallToolExecutor.cs +60 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/DynamicCallToolExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/ValidateToolResultExecutor.cs +47 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/ValidateToolResultExecutor.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/JsonFiller.cs +90 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/JsonFiller.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/PlayerPrefsValuesTests.cs +147 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/PlayerPrefsValuesTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/UpdateCheckerTests.cs +549 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/UpdateCheckerTests.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/com.AtelierAI.Unity.Copilot.Editor.Tests.asmdef +34 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/com.AtelierAI.Unity.Copilot.Editor.Tests.asmdef.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/.gitignore +2 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/DemoTest.cs +44 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/DemoTest.cs.meta +11 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/com.AtelierAI.Unity.Copilot.Tests.asmdef +31 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/com.AtelierAI.Unity.Copilot.Tests.asmdef.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/Tests.meta +8 -0
- package/vendor/plugin/com.atelierai.unity.copilot/package.json +33 -0
- package/vendor/plugin/com.atelierai.unity.copilot/package.json.meta +7 -0
- package/vendor/plugin/com.atelierai.unity.copilot/tools-manifest.json +20551 -0
- package/vendor/plugin/com.atelierai.unity.copilot/tools-manifest.json.meta +7 -0
|
@@ -0,0 +1,1157 @@
|
|
|
1
|
+
# Commander.js
|
|
2
|
+
|
|
3
|
+
[](https://github.com/tj/commander.js/actions?query=workflow%3A%22build%22)
|
|
4
|
+
[](https://www.npmjs.org/package/commander)
|
|
5
|
+
[](https://npmcharts.com/compare/commander?minimal=true)
|
|
6
|
+
[](https://packagephobia.now.sh/result?p=commander)
|
|
7
|
+
|
|
8
|
+
The complete solution for [node.js](http://nodejs.org) command-line interfaces.
|
|
9
|
+
|
|
10
|
+
Read this in other languages: English | [简体中文](./Readme_zh-CN.md)
|
|
11
|
+
|
|
12
|
+
- [Commander.js](#commanderjs)
|
|
13
|
+
- [Installation](#installation)
|
|
14
|
+
- [Quick Start](#quick-start)
|
|
15
|
+
- [Declaring _program_ variable](#declaring-program-variable)
|
|
16
|
+
- [Options](#options)
|
|
17
|
+
- [Common option types, boolean and value](#common-option-types-boolean-and-value)
|
|
18
|
+
- [Default option value](#default-option-value)
|
|
19
|
+
- [Other option types, negatable boolean and boolean|value](#other-option-types-negatable-boolean-and-booleanvalue)
|
|
20
|
+
- [Required option](#required-option)
|
|
21
|
+
- [Variadic option](#variadic-option)
|
|
22
|
+
- [Version option](#version-option)
|
|
23
|
+
- [More configuration](#more-configuration)
|
|
24
|
+
- [Custom option processing](#custom-option-processing)
|
|
25
|
+
- [Commands](#commands)
|
|
26
|
+
- [Command-arguments](#command-arguments)
|
|
27
|
+
- [More configuration](#more-configuration-1)
|
|
28
|
+
- [Custom argument processing](#custom-argument-processing)
|
|
29
|
+
- [Action handler](#action-handler)
|
|
30
|
+
- [Stand-alone executable (sub)commands](#stand-alone-executable-subcommands)
|
|
31
|
+
- [Life cycle hooks](#life-cycle-hooks)
|
|
32
|
+
- [Automated help](#automated-help)
|
|
33
|
+
- [Custom help](#custom-help)
|
|
34
|
+
- [Display help after errors](#display-help-after-errors)
|
|
35
|
+
- [Display help from code](#display-help-from-code)
|
|
36
|
+
- [.name](#name)
|
|
37
|
+
- [.usage](#usage)
|
|
38
|
+
- [.description and .summary](#description-and-summary)
|
|
39
|
+
- [.helpOption(flags, description)](#helpoptionflags-description)
|
|
40
|
+
- [.helpCommand()](#helpcommand)
|
|
41
|
+
- [More configuration](#more-configuration-2)
|
|
42
|
+
- [Custom event listeners](#custom-event-listeners)
|
|
43
|
+
- [Bits and pieces](#bits-and-pieces)
|
|
44
|
+
- [.parse() and .parseAsync()](#parse-and-parseasync)
|
|
45
|
+
- [Parsing Configuration](#parsing-configuration)
|
|
46
|
+
- [Legacy options as properties](#legacy-options-as-properties)
|
|
47
|
+
- [TypeScript](#typescript)
|
|
48
|
+
- [createCommand()](#createcommand)
|
|
49
|
+
- [Node options such as `--harmony`](#node-options-such-as---harmony)
|
|
50
|
+
- [Debugging stand-alone executable subcommands](#debugging-stand-alone-executable-subcommands)
|
|
51
|
+
- [npm run-script](#npm-run-script)
|
|
52
|
+
- [Display error](#display-error)
|
|
53
|
+
- [Override exit and output handling](#override-exit-and-output-handling)
|
|
54
|
+
- [Additional documentation](#additional-documentation)
|
|
55
|
+
- [Support](#support)
|
|
56
|
+
- [Commander for enterprise](#commander-for-enterprise)
|
|
57
|
+
|
|
58
|
+
For information about terms used in this document see: [terminology](./docs/terminology.md)
|
|
59
|
+
|
|
60
|
+
## Installation
|
|
61
|
+
|
|
62
|
+
```sh
|
|
63
|
+
npm install commander
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Quick Start
|
|
67
|
+
|
|
68
|
+
You write code to describe your command line interface.
|
|
69
|
+
Commander looks after parsing the arguments into options and command-arguments,
|
|
70
|
+
displays usage errors for problems, and implements a help system.
|
|
71
|
+
|
|
72
|
+
Commander is strict and displays an error for unrecognised options.
|
|
73
|
+
The two most used option types are a boolean option, and an option which takes its value from the following argument.
|
|
74
|
+
|
|
75
|
+
Example file: [split.js](./examples/split.js)
|
|
76
|
+
|
|
77
|
+
```js
|
|
78
|
+
const { program } = require('commander');
|
|
79
|
+
|
|
80
|
+
program
|
|
81
|
+
.option('--first')
|
|
82
|
+
.option('-s, --separator <char>');
|
|
83
|
+
|
|
84
|
+
program.parse();
|
|
85
|
+
|
|
86
|
+
const options = program.opts();
|
|
87
|
+
const limit = options.first ? 1 : undefined;
|
|
88
|
+
console.log(program.args[0].split(options.separator, limit));
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
```console
|
|
92
|
+
$ node split.js -s / --fits a/b/c
|
|
93
|
+
error: unknown option '--fits'
|
|
94
|
+
(Did you mean --first?)
|
|
95
|
+
$ node split.js -s / --first a/b/c
|
|
96
|
+
[ 'a' ]
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Here is a more complete program using a subcommand and with descriptions for the help. In a multi-command program, you have an action handler for each command (or stand-alone executables for the commands).
|
|
100
|
+
|
|
101
|
+
Example file: [string-util.js](./examples/string-util.js)
|
|
102
|
+
|
|
103
|
+
```js
|
|
104
|
+
const { Command } = require('commander');
|
|
105
|
+
const program = new Command();
|
|
106
|
+
|
|
107
|
+
program
|
|
108
|
+
.name('string-util')
|
|
109
|
+
.description('CLI to some JavaScript string utilities')
|
|
110
|
+
.version('0.8.0');
|
|
111
|
+
|
|
112
|
+
program.command('split')
|
|
113
|
+
.description('Split a string into substrings and display as an array')
|
|
114
|
+
.argument('<string>', 'string to split')
|
|
115
|
+
.option('--first', 'display just the first substring')
|
|
116
|
+
.option('-s, --separator <char>', 'separator character', ',')
|
|
117
|
+
.action((str, options) => {
|
|
118
|
+
const limit = options.first ? 1 : undefined;
|
|
119
|
+
console.log(str.split(options.separator, limit));
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
program.parse();
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
```console
|
|
126
|
+
$ node string-util.js help split
|
|
127
|
+
Usage: string-util split [options] <string>
|
|
128
|
+
|
|
129
|
+
Split a string into substrings and display as an array.
|
|
130
|
+
|
|
131
|
+
Arguments:
|
|
132
|
+
string string to split
|
|
133
|
+
|
|
134
|
+
Options:
|
|
135
|
+
--first display just the first substring
|
|
136
|
+
-s, --separator <char> separator character (default: ",")
|
|
137
|
+
-h, --help display help for command
|
|
138
|
+
|
|
139
|
+
$ node string-util.js split --separator=/ a/b/c
|
|
140
|
+
[ 'a', 'b', 'c' ]
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
More samples can be found in the [examples](https://github.com/tj/commander.js/tree/master/examples) directory.
|
|
144
|
+
|
|
145
|
+
## Declaring _program_ variable
|
|
146
|
+
|
|
147
|
+
Commander exports a global object which is convenient for quick programs.
|
|
148
|
+
This is used in the examples in this README for brevity.
|
|
149
|
+
|
|
150
|
+
```js
|
|
151
|
+
// CommonJS (.cjs)
|
|
152
|
+
const { program } = require('commander');
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
For larger programs which may use commander in multiple ways, including unit testing, it is better to create a local Command object to use.
|
|
156
|
+
|
|
157
|
+
```js
|
|
158
|
+
// CommonJS (.cjs)
|
|
159
|
+
const { Command } = require('commander');
|
|
160
|
+
const program = new Command();
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
```js
|
|
164
|
+
// ECMAScript (.mjs)
|
|
165
|
+
import { Command } from 'commander';
|
|
166
|
+
const program = new Command();
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
```ts
|
|
170
|
+
// TypeScript (.ts)
|
|
171
|
+
import { Command } from 'commander';
|
|
172
|
+
const program = new Command();
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
## Options
|
|
176
|
+
|
|
177
|
+
Options are defined with the `.option()` method, also serving as documentation for the options. Each option can have a short flag (single character) and a long name, separated by a comma or space or vertical bar ('|').
|
|
178
|
+
|
|
179
|
+
The parsed options can be accessed by calling `.opts()` on a `Command` object, and are passed to the action handler.
|
|
180
|
+
|
|
181
|
+
Multi-word options such as "--template-engine" are camel-cased, becoming `program.opts().templateEngine` etc.
|
|
182
|
+
|
|
183
|
+
An option and its option-argument can be separated by a space, or combined into the same argument. The option-argument can follow the short option directly or follow an `=` for a long option.
|
|
184
|
+
|
|
185
|
+
```sh
|
|
186
|
+
serve -p 80
|
|
187
|
+
serve -p80
|
|
188
|
+
serve --port 80
|
|
189
|
+
serve --port=80
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
You can use `--` to indicate the end of the options, and any remaining arguments will be used without being interpreted.
|
|
193
|
+
|
|
194
|
+
By default, options on the command line are not positional, and can be specified before or after other arguments.
|
|
195
|
+
|
|
196
|
+
There are additional related routines for when `.opts()` is not enough:
|
|
197
|
+
|
|
198
|
+
- `.optsWithGlobals()` returns merged local and global option values
|
|
199
|
+
- `.getOptionValue()` and `.setOptionValue()` work with a single option value
|
|
200
|
+
- `.getOptionValueSource()` and `.setOptionValueWithSource()` include where the option value came from
|
|
201
|
+
|
|
202
|
+
### Common option types, boolean and value
|
|
203
|
+
|
|
204
|
+
The two most used option types are a boolean option, and an option which takes its value
|
|
205
|
+
from the following argument (declared with angle brackets like `--expect <value>`). Both are `undefined` unless specified on command line.
|
|
206
|
+
|
|
207
|
+
Example file: [options-common.js](./examples/options-common.js)
|
|
208
|
+
|
|
209
|
+
```js
|
|
210
|
+
program
|
|
211
|
+
.option('-d, --debug', 'output extra debugging')
|
|
212
|
+
.option('-s, --small', 'small pizza size')
|
|
213
|
+
.option('-p, --pizza-type <type>', 'flavour of pizza');
|
|
214
|
+
|
|
215
|
+
program.parse(process.argv);
|
|
216
|
+
|
|
217
|
+
const options = program.opts();
|
|
218
|
+
if (options.debug) console.log(options);
|
|
219
|
+
console.log('pizza details:');
|
|
220
|
+
if (options.small) console.log('- small pizza size');
|
|
221
|
+
if (options.pizzaType) console.log(`- ${options.pizzaType}`);
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
```console
|
|
225
|
+
$ pizza-options -p
|
|
226
|
+
error: option '-p, --pizza-type <type>' argument missing
|
|
227
|
+
$ pizza-options -d -s -p vegetarian
|
|
228
|
+
{ debug: true, small: true, pizzaType: 'vegetarian' }
|
|
229
|
+
pizza details:
|
|
230
|
+
- small pizza size
|
|
231
|
+
- vegetarian
|
|
232
|
+
$ pizza-options --pizza-type=cheese
|
|
233
|
+
pizza details:
|
|
234
|
+
- cheese
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
Multiple boolean short options may be combined following the dash, and may be followed by a single short option taking a value.
|
|
238
|
+
For example `-d -s -p cheese` may be written as `-ds -p cheese` or even `-dsp cheese`.
|
|
239
|
+
|
|
240
|
+
Options with an expected option-argument are greedy and will consume the following argument whatever the value.
|
|
241
|
+
So `--id -xyz` reads `-xyz` as the option-argument.
|
|
242
|
+
|
|
243
|
+
`program.parse(arguments)` processes the arguments, leaving any args not consumed by the program options in the `program.args` array. The parameter is optional and defaults to `process.argv`.
|
|
244
|
+
|
|
245
|
+
### Default option value
|
|
246
|
+
|
|
247
|
+
You can specify a default value for an option.
|
|
248
|
+
|
|
249
|
+
Example file: [options-defaults.js](./examples/options-defaults.js)
|
|
250
|
+
|
|
251
|
+
```js
|
|
252
|
+
program
|
|
253
|
+
.option('-c, --cheese <type>', 'add the specified type of cheese', 'blue');
|
|
254
|
+
|
|
255
|
+
program.parse();
|
|
256
|
+
|
|
257
|
+
console.log(`cheese: ${program.opts().cheese}`);
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
```console
|
|
261
|
+
$ pizza-options
|
|
262
|
+
cheese: blue
|
|
263
|
+
$ pizza-options --cheese stilton
|
|
264
|
+
cheese: stilton
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
### Other option types, negatable boolean and boolean|value
|
|
268
|
+
|
|
269
|
+
You can define a boolean option long name with a leading `no-` to set the option value to false when used.
|
|
270
|
+
Defined alone this also makes the option true by default.
|
|
271
|
+
|
|
272
|
+
If you define `--foo` first, adding `--no-foo` does not change the default value from what it would
|
|
273
|
+
otherwise be.
|
|
274
|
+
|
|
275
|
+
Example file: [options-negatable.js](./examples/options-negatable.js)
|
|
276
|
+
|
|
277
|
+
```js
|
|
278
|
+
program
|
|
279
|
+
.option('--no-sauce', 'Remove sauce')
|
|
280
|
+
.option('--cheese <flavour>', 'cheese flavour', 'mozzarella')
|
|
281
|
+
.option('--no-cheese', 'plain with no cheese')
|
|
282
|
+
.parse();
|
|
283
|
+
|
|
284
|
+
const options = program.opts();
|
|
285
|
+
const sauceStr = options.sauce ? 'sauce' : 'no sauce';
|
|
286
|
+
const cheeseStr = (options.cheese === false) ? 'no cheese' : `${options.cheese} cheese`;
|
|
287
|
+
console.log(`You ordered a pizza with ${sauceStr} and ${cheeseStr}`);
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
```console
|
|
291
|
+
$ pizza-options
|
|
292
|
+
You ordered a pizza with sauce and mozzarella cheese
|
|
293
|
+
$ pizza-options --sauce
|
|
294
|
+
error: unknown option '--sauce'
|
|
295
|
+
$ pizza-options --cheese=blue
|
|
296
|
+
You ordered a pizza with sauce and blue cheese
|
|
297
|
+
$ pizza-options --no-sauce --no-cheese
|
|
298
|
+
You ordered a pizza with no sauce and no cheese
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
You can specify an option which may be used as a boolean option but may optionally take an option-argument
|
|
302
|
+
(declared with square brackets like `--optional [value]`).
|
|
303
|
+
|
|
304
|
+
Example file: [options-boolean-or-value.js](./examples/options-boolean-or-value.js)
|
|
305
|
+
|
|
306
|
+
```js
|
|
307
|
+
program
|
|
308
|
+
.option('-c, --cheese [type]', 'Add cheese with optional type');
|
|
309
|
+
|
|
310
|
+
program.parse(process.argv);
|
|
311
|
+
|
|
312
|
+
const options = program.opts();
|
|
313
|
+
if (options.cheese === undefined) console.log('no cheese');
|
|
314
|
+
else if (options.cheese === true) console.log('add cheese');
|
|
315
|
+
else console.log(`add cheese type ${options.cheese}`);
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
```console
|
|
319
|
+
$ pizza-options
|
|
320
|
+
no cheese
|
|
321
|
+
$ pizza-options --cheese
|
|
322
|
+
add cheese
|
|
323
|
+
$ pizza-options --cheese mozzarella
|
|
324
|
+
add cheese type mozzarella
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
Options with an optional option-argument are not greedy and will ignore arguments starting with a dash.
|
|
328
|
+
So `id` behaves as a boolean option for `--id -5`, but you can use a combined form if needed like `--id=-5`.
|
|
329
|
+
|
|
330
|
+
For information about possible ambiguous cases, see [options taking varying arguments](./docs/options-in-depth.md).
|
|
331
|
+
|
|
332
|
+
### Required option
|
|
333
|
+
|
|
334
|
+
You may specify a required (mandatory) option using `.requiredOption()`. The option must have a value after parsing, usually specified on the command line, or perhaps from a default value (say from environment). The method is otherwise the same as `.option()` in format, taking flags and description, and optional default value or custom processing.
|
|
335
|
+
|
|
336
|
+
Example file: [options-required.js](./examples/options-required.js)
|
|
337
|
+
|
|
338
|
+
```js
|
|
339
|
+
program
|
|
340
|
+
.requiredOption('-c, --cheese <type>', 'pizza must have cheese');
|
|
341
|
+
|
|
342
|
+
program.parse();
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
```console
|
|
346
|
+
$ pizza
|
|
347
|
+
error: required option '-c, --cheese <type>' not specified
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
### Variadic option
|
|
351
|
+
|
|
352
|
+
You may make an option variadic by appending `...` to the value placeholder when declaring the option. On the command line you
|
|
353
|
+
can then specify multiple option-arguments, and the parsed option value will be an array. The extra arguments
|
|
354
|
+
are read until the first argument starting with a dash. The special argument `--` stops option processing entirely. If a value
|
|
355
|
+
is specified in the same argument as the option then no further values are read.
|
|
356
|
+
|
|
357
|
+
Example file: [options-variadic.js](./examples/options-variadic.js)
|
|
358
|
+
|
|
359
|
+
```js
|
|
360
|
+
program
|
|
361
|
+
.option('-n, --number <numbers...>', 'specify numbers')
|
|
362
|
+
.option('-l, --letter [letters...]', 'specify letters');
|
|
363
|
+
|
|
364
|
+
program.parse();
|
|
365
|
+
|
|
366
|
+
console.log('Options: ', program.opts());
|
|
367
|
+
console.log('Remaining arguments: ', program.args);
|
|
368
|
+
```
|
|
369
|
+
|
|
370
|
+
```console
|
|
371
|
+
$ collect -n 1 2 3 --letter a b c
|
|
372
|
+
Options: { number: [ '1', '2', '3' ], letter: [ 'a', 'b', 'c' ] }
|
|
373
|
+
Remaining arguments: []
|
|
374
|
+
$ collect --letter=A -n80 operand
|
|
375
|
+
Options: { number: [ '80' ], letter: [ 'A' ] }
|
|
376
|
+
Remaining arguments: [ 'operand' ]
|
|
377
|
+
$ collect --letter -n 1 -n 2 3 -- operand
|
|
378
|
+
Options: { number: [ '1', '2', '3' ], letter: true }
|
|
379
|
+
Remaining arguments: [ 'operand' ]
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
For information about possible ambiguous cases, see [options taking varying arguments](./docs/options-in-depth.md).
|
|
383
|
+
|
|
384
|
+
### Version option
|
|
385
|
+
|
|
386
|
+
The optional `version` method adds handling for displaying the command version. The default option flags are `-V` and `--version`, and when present the command prints the version number and exits.
|
|
387
|
+
|
|
388
|
+
```js
|
|
389
|
+
program.version('0.0.1');
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
```console
|
|
393
|
+
$ ./examples/pizza -V
|
|
394
|
+
0.0.1
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
You may change the flags and description by passing additional parameters to the `version` method, using
|
|
398
|
+
the same syntax for flags as the `option` method.
|
|
399
|
+
|
|
400
|
+
```js
|
|
401
|
+
program.version('0.0.1', '-v, --vers', 'output the current version');
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
### More configuration
|
|
405
|
+
|
|
406
|
+
You can add most options using the `.option()` method, but there are some additional features available
|
|
407
|
+
by constructing an `Option` explicitly for less common cases.
|
|
408
|
+
|
|
409
|
+
Example files: [options-extra.js](./examples/options-extra.js), [options-env.js](./examples/options-env.js), [options-conflicts.js](./examples/options-conflicts.js), [options-implies.js](./examples/options-implies.js)
|
|
410
|
+
|
|
411
|
+
```js
|
|
412
|
+
program
|
|
413
|
+
.addOption(new Option('-s, --secret').hideHelp())
|
|
414
|
+
.addOption(new Option('-t, --timeout <delay>', 'timeout in seconds').default(60, 'one minute'))
|
|
415
|
+
.addOption(new Option('-d, --drink <size>', 'drink size').choices(['small', 'medium', 'large']))
|
|
416
|
+
.addOption(new Option('-p, --port <number>', 'port number').env('PORT'))
|
|
417
|
+
.addOption(new Option('--donate [amount]', 'optional donation in dollars').preset('20').argParser(parseFloat))
|
|
418
|
+
.addOption(new Option('--disable-server', 'disables the server').conflicts('port'))
|
|
419
|
+
.addOption(new Option('--free-drink', 'small drink included free ').implies({ drink: 'small' }));
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
```console
|
|
423
|
+
$ extra --help
|
|
424
|
+
Usage: help [options]
|
|
425
|
+
|
|
426
|
+
Options:
|
|
427
|
+
-t, --timeout <delay> timeout in seconds (default: one minute)
|
|
428
|
+
-d, --drink <size> drink cup size (choices: "small", "medium", "large")
|
|
429
|
+
-p, --port <number> port number (env: PORT)
|
|
430
|
+
--donate [amount] optional donation in dollars (preset: "20")
|
|
431
|
+
--disable-server disables the server
|
|
432
|
+
--free-drink small drink included free
|
|
433
|
+
-h, --help display help for command
|
|
434
|
+
|
|
435
|
+
$ extra --drink huge
|
|
436
|
+
error: option '-d, --drink <size>' argument 'huge' is invalid. Allowed choices are small, medium, large.
|
|
437
|
+
|
|
438
|
+
$ PORT=80 extra --donate --free-drink
|
|
439
|
+
Options: { timeout: 60, donate: 20, port: '80', freeDrink: true, drink: 'small' }
|
|
440
|
+
|
|
441
|
+
$ extra --disable-server --port 8000
|
|
442
|
+
error: option '--disable-server' cannot be used with option '-p, --port <number>'
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
Specify a required (mandatory) option using the `Option` method `.makeOptionMandatory()`. This matches the `Command` method [.requiredOption()](#required-option).
|
|
446
|
+
|
|
447
|
+
### Custom option processing
|
|
448
|
+
|
|
449
|
+
You may specify a function to do custom processing of option-arguments. The callback function receives two parameters,
|
|
450
|
+
the user specified option-argument and the previous value for the option. It returns the new value for the option.
|
|
451
|
+
|
|
452
|
+
This allows you to coerce the option-argument to the desired type, or accumulate values, or do entirely custom processing.
|
|
453
|
+
|
|
454
|
+
You can optionally specify the default/starting value for the option after the function parameter.
|
|
455
|
+
|
|
456
|
+
Example file: [options-custom-processing.js](./examples/options-custom-processing.js)
|
|
457
|
+
|
|
458
|
+
```js
|
|
459
|
+
function myParseInt(value, dummyPrevious) {
|
|
460
|
+
// parseInt takes a string and a radix
|
|
461
|
+
const parsedValue = parseInt(value, 10);
|
|
462
|
+
if (isNaN(parsedValue)) {
|
|
463
|
+
throw new commander.InvalidArgumentError('Not a number.');
|
|
464
|
+
}
|
|
465
|
+
return parsedValue;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
function increaseVerbosity(dummyValue, previous) {
|
|
469
|
+
return previous + 1;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
function collect(value, previous) {
|
|
473
|
+
return previous.concat([value]);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
function commaSeparatedList(value, dummyPrevious) {
|
|
477
|
+
return value.split(',');
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
program
|
|
481
|
+
.option('-f, --float <number>', 'float argument', parseFloat)
|
|
482
|
+
.option('-i, --integer <number>', 'integer argument', myParseInt)
|
|
483
|
+
.option('-v, --verbose', 'verbosity that can be increased', increaseVerbosity, 0)
|
|
484
|
+
.option('-c, --collect <value>', 'repeatable value', collect, [])
|
|
485
|
+
.option('-l, --list <items>', 'comma separated list', commaSeparatedList)
|
|
486
|
+
;
|
|
487
|
+
|
|
488
|
+
program.parse();
|
|
489
|
+
|
|
490
|
+
const options = program.opts();
|
|
491
|
+
if (options.float !== undefined) console.log(`float: ${options.float}`);
|
|
492
|
+
if (options.integer !== undefined) console.log(`integer: ${options.integer}`);
|
|
493
|
+
if (options.verbose > 0) console.log(`verbosity: ${options.verbose}`);
|
|
494
|
+
if (options.collect.length > 0) console.log(options.collect);
|
|
495
|
+
if (options.list !== undefined) console.log(options.list);
|
|
496
|
+
```
|
|
497
|
+
|
|
498
|
+
```console
|
|
499
|
+
$ custom -f 1e2
|
|
500
|
+
float: 100
|
|
501
|
+
$ custom --integer 2
|
|
502
|
+
integer: 2
|
|
503
|
+
$ custom -v -v -v
|
|
504
|
+
verbose: 3
|
|
505
|
+
$ custom -c a -c b -c c
|
|
506
|
+
[ 'a', 'b', 'c' ]
|
|
507
|
+
$ custom --list x,y,z
|
|
508
|
+
[ 'x', 'y', 'z' ]
|
|
509
|
+
```
|
|
510
|
+
|
|
511
|
+
## Commands
|
|
512
|
+
|
|
513
|
+
You can specify (sub)commands using `.command()` or `.addCommand()`. There are two ways these can be implemented: using an action handler attached to the command, or as a stand-alone executable file (described in more detail later). The subcommands may be nested ([example](./examples/nestedCommands.js)).
|
|
514
|
+
|
|
515
|
+
In the first parameter to `.command()` you specify the command name. You may append the command-arguments after the command name, or specify them separately using `.argument()`. The arguments may be `<required>` or `[optional]`, and the last argument may also be `variadic...`.
|
|
516
|
+
|
|
517
|
+
You can use `.addCommand()` to add an already configured subcommand to the program.
|
|
518
|
+
|
|
519
|
+
For example:
|
|
520
|
+
|
|
521
|
+
```js
|
|
522
|
+
// Command implemented using action handler (description is supplied separately to `.command`)
|
|
523
|
+
// Returns new command for configuring.
|
|
524
|
+
program
|
|
525
|
+
.command('clone <source> [destination]')
|
|
526
|
+
.description('clone a repository into a newly created directory')
|
|
527
|
+
.action((source, destination) => {
|
|
528
|
+
console.log('clone command called');
|
|
529
|
+
});
|
|
530
|
+
|
|
531
|
+
// Command implemented using stand-alone executable file, indicated by adding description as second parameter to `.command`.
|
|
532
|
+
// Returns `this` for adding more commands.
|
|
533
|
+
program
|
|
534
|
+
.command('start <service>', 'start named service')
|
|
535
|
+
.command('stop [service]', 'stop named service, or all if no name supplied');
|
|
536
|
+
|
|
537
|
+
// Command prepared separately.
|
|
538
|
+
// Returns `this` for adding more commands.
|
|
539
|
+
program
|
|
540
|
+
.addCommand(build.makeBuildCommand());
|
|
541
|
+
```
|
|
542
|
+
|
|
543
|
+
Configuration options can be passed with the call to `.command()` and `.addCommand()`. Specifying `hidden: true` will
|
|
544
|
+
remove the command from the generated help output. Specifying `isDefault: true` will run the subcommand if no other
|
|
545
|
+
subcommand is specified ([example](./examples/defaultCommand.js)).
|
|
546
|
+
|
|
547
|
+
You can add alternative names for a command with `.alias()`. ([example](./examples/alias.js))
|
|
548
|
+
|
|
549
|
+
`.command()` automatically copies the inherited settings from the parent command to the newly created subcommand. This is only done during creation, any later setting changes to the parent are not inherited.
|
|
550
|
+
|
|
551
|
+
For safety, `.addCommand()` does not automatically copy the inherited settings from the parent command. There is a helper routine `.copyInheritedSettings()` for copying the settings when they are wanted.
|
|
552
|
+
|
|
553
|
+
### Command-arguments
|
|
554
|
+
|
|
555
|
+
For subcommands, you can specify the argument syntax in the call to `.command()` (as shown above). This
|
|
556
|
+
is the only method usable for subcommands implemented using a stand-alone executable, but for other subcommands
|
|
557
|
+
you can instead use the following method.
|
|
558
|
+
|
|
559
|
+
To configure a command, you can use `.argument()` to specify each expected command-argument.
|
|
560
|
+
You supply the argument name and an optional description. The argument may be `<required>` or `[optional]`.
|
|
561
|
+
You can specify a default value for an optional command-argument.
|
|
562
|
+
|
|
563
|
+
Example file: [argument.js](./examples/argument.js)
|
|
564
|
+
|
|
565
|
+
```js
|
|
566
|
+
program
|
|
567
|
+
.version('0.1.0')
|
|
568
|
+
.argument('<username>', 'user to login')
|
|
569
|
+
.argument('[password]', 'password for user, if required', 'no password given')
|
|
570
|
+
.action((username, password) => {
|
|
571
|
+
console.log('username:', username);
|
|
572
|
+
console.log('password:', password);
|
|
573
|
+
});
|
|
574
|
+
```
|
|
575
|
+
|
|
576
|
+
The last argument of a command can be variadic, and only the last argument. To make an argument variadic you
|
|
577
|
+
append `...` to the argument name. A variadic argument is passed to the action handler as an array. For example:
|
|
578
|
+
|
|
579
|
+
```js
|
|
580
|
+
program
|
|
581
|
+
.version('0.1.0')
|
|
582
|
+
.command('rmdir')
|
|
583
|
+
.argument('<dirs...>')
|
|
584
|
+
.action(function (dirs) {
|
|
585
|
+
dirs.forEach((dir) => {
|
|
586
|
+
console.log('rmdir %s', dir);
|
|
587
|
+
});
|
|
588
|
+
});
|
|
589
|
+
```
|
|
590
|
+
|
|
591
|
+
There is a convenience method to add multiple arguments at once, but without descriptions:
|
|
592
|
+
|
|
593
|
+
```js
|
|
594
|
+
program
|
|
595
|
+
.arguments('<username> <password>');
|
|
596
|
+
```
|
|
597
|
+
|
|
598
|
+
#### More configuration
|
|
599
|
+
|
|
600
|
+
There are some additional features available by constructing an `Argument` explicitly for less common cases.
|
|
601
|
+
|
|
602
|
+
Example file: [arguments-extra.js](./examples/arguments-extra.js)
|
|
603
|
+
|
|
604
|
+
```js
|
|
605
|
+
program
|
|
606
|
+
.addArgument(new commander.Argument('<drink-size>', 'drink cup size').choices(['small', 'medium', 'large']))
|
|
607
|
+
.addArgument(new commander.Argument('[timeout]', 'timeout in seconds').default(60, 'one minute'))
|
|
608
|
+
```
|
|
609
|
+
|
|
610
|
+
#### Custom argument processing
|
|
611
|
+
|
|
612
|
+
You may specify a function to do custom processing of command-arguments (like for option-arguments).
|
|
613
|
+
The callback function receives two parameters, the user specified command-argument and the previous value for the argument.
|
|
614
|
+
It returns the new value for the argument.
|
|
615
|
+
|
|
616
|
+
The processed argument values are passed to the action handler, and saved as `.processedArgs`.
|
|
617
|
+
|
|
618
|
+
You can optionally specify the default/starting value for the argument after the function parameter.
|
|
619
|
+
|
|
620
|
+
Example file: [arguments-custom-processing.js](./examples/arguments-custom-processing.js)
|
|
621
|
+
|
|
622
|
+
```js
|
|
623
|
+
program
|
|
624
|
+
.command('add')
|
|
625
|
+
.argument('<first>', 'integer argument', myParseInt)
|
|
626
|
+
.argument('[second]', 'integer argument', myParseInt, 1000)
|
|
627
|
+
.action((first, second) => {
|
|
628
|
+
console.log(`${first} + ${second} = ${first + second}`);
|
|
629
|
+
})
|
|
630
|
+
;
|
|
631
|
+
```
|
|
632
|
+
|
|
633
|
+
### Action handler
|
|
634
|
+
|
|
635
|
+
The action handler gets passed a parameter for each command-argument you declared, and two additional parameters
|
|
636
|
+
which are the parsed options and the command object itself.
|
|
637
|
+
|
|
638
|
+
Example file: [thank.js](./examples/thank.js)
|
|
639
|
+
|
|
640
|
+
```js
|
|
641
|
+
program
|
|
642
|
+
.argument('<name>')
|
|
643
|
+
.option('-t, --title <honorific>', 'title to use before name')
|
|
644
|
+
.option('-d, --debug', 'display some debugging')
|
|
645
|
+
.action((name, options, command) => {
|
|
646
|
+
if (options.debug) {
|
|
647
|
+
console.error('Called %s with options %o', command.name(), options);
|
|
648
|
+
}
|
|
649
|
+
const title = options.title ? `${options.title} ` : '';
|
|
650
|
+
console.log(`Thank-you ${title}${name}`);
|
|
651
|
+
});
|
|
652
|
+
```
|
|
653
|
+
|
|
654
|
+
If you prefer, you can work with the command directly and skip declaring the parameters for the action handler. The `this` keyword is set to the running command and can be used from a function expression (but not from an arrow function).
|
|
655
|
+
|
|
656
|
+
Example file: [action-this.js](./examples/action-this.js)
|
|
657
|
+
|
|
658
|
+
```js
|
|
659
|
+
program
|
|
660
|
+
.command('serve')
|
|
661
|
+
.argument('<script>')
|
|
662
|
+
.option('-p, --port <number>', 'port number', 80)
|
|
663
|
+
.action(function() {
|
|
664
|
+
console.error('Run script %s on port %s', this.args[0], this.opts().port);
|
|
665
|
+
});
|
|
666
|
+
```
|
|
667
|
+
|
|
668
|
+
You may supply an `async` action handler, in which case you call `.parseAsync` rather than `.parse`.
|
|
669
|
+
|
|
670
|
+
```js
|
|
671
|
+
async function run() { /* code goes here */ }
|
|
672
|
+
|
|
673
|
+
async function main() {
|
|
674
|
+
program
|
|
675
|
+
.command('run')
|
|
676
|
+
.action(run);
|
|
677
|
+
await program.parseAsync(process.argv);
|
|
678
|
+
}
|
|
679
|
+
```
|
|
680
|
+
|
|
681
|
+
A command's options and arguments on the command line are validated when the command is used. Any unknown options or missing arguments will be reported as an error. You can suppress the unknown option checks with `.allowUnknownOption()`. By default, it is not an error to
|
|
682
|
+
pass more arguments than declared, but you can make this an error with `.allowExcessArguments(false)`.
|
|
683
|
+
|
|
684
|
+
### Stand-alone executable (sub)commands
|
|
685
|
+
|
|
686
|
+
When `.command()` is invoked with a description argument, this tells Commander that you're going to use stand-alone executables for subcommands.
|
|
687
|
+
Commander will search the files in the directory of the entry script for a file with the name combination `command-subcommand`, like `pm-install` or `pm-search` in the example below. The search includes trying common file extensions, like `.js`.
|
|
688
|
+
You may specify a custom name (and path) with the `executableFile` configuration option.
|
|
689
|
+
You may specify a custom search directory for subcommands with `.executableDir()`.
|
|
690
|
+
|
|
691
|
+
You handle the options for an executable (sub)command in the executable, and don't declare them at the top-level.
|
|
692
|
+
|
|
693
|
+
Example file: [pm](./examples/pm)
|
|
694
|
+
|
|
695
|
+
```js
|
|
696
|
+
program
|
|
697
|
+
.name('pm')
|
|
698
|
+
.version('0.1.0')
|
|
699
|
+
.command('install [name]', 'install one or more packages')
|
|
700
|
+
.command('search [query]', 'search with optional query')
|
|
701
|
+
.command('update', 'update installed packages', { executableFile: 'myUpdateSubCommand' })
|
|
702
|
+
.command('list', 'list packages installed', { isDefault: true });
|
|
703
|
+
|
|
704
|
+
program.parse(process.argv);
|
|
705
|
+
```
|
|
706
|
+
|
|
707
|
+
If the program is designed to be installed globally, make sure the executables have proper modes, like `755`.
|
|
708
|
+
|
|
709
|
+
### Life cycle hooks
|
|
710
|
+
|
|
711
|
+
You can add callback hooks to a command for life cycle events.
|
|
712
|
+
|
|
713
|
+
Example file: [hook.js](./examples/hook.js)
|
|
714
|
+
|
|
715
|
+
```js
|
|
716
|
+
program
|
|
717
|
+
.option('-t, --trace', 'display trace statements for commands')
|
|
718
|
+
.hook('preAction', (thisCommand, actionCommand) => {
|
|
719
|
+
if (thisCommand.opts().trace) {
|
|
720
|
+
console.log(`About to call action handler for subcommand: ${actionCommand.name()}`);
|
|
721
|
+
console.log('arguments: %O', actionCommand.args);
|
|
722
|
+
console.log('options: %o', actionCommand.opts());
|
|
723
|
+
}
|
|
724
|
+
});
|
|
725
|
+
```
|
|
726
|
+
|
|
727
|
+
The callback hook can be `async`, in which case you call `.parseAsync` rather than `.parse`. You can add multiple hooks per event.
|
|
728
|
+
|
|
729
|
+
The supported events are:
|
|
730
|
+
|
|
731
|
+
| event name | when hook called | callback parameters |
|
|
732
|
+
| :-- | :-- | :-- |
|
|
733
|
+
| `preAction`, `postAction` | before/after action handler for this command and its nested subcommands | `(thisCommand, actionCommand)` |
|
|
734
|
+
| `preSubcommand` | before parsing direct subcommand | `(thisCommand, subcommand)` |
|
|
735
|
+
|
|
736
|
+
For an overview of the life cycle events see [parsing life cycle and hooks](./docs/parsing-and-hooks.md).
|
|
737
|
+
|
|
738
|
+
## Automated help
|
|
739
|
+
|
|
740
|
+
The help information is auto-generated based on the information commander already knows about your program. The default
|
|
741
|
+
help option is `-h,--help`.
|
|
742
|
+
|
|
743
|
+
Example file: [pizza](./examples/pizza)
|
|
744
|
+
|
|
745
|
+
```console
|
|
746
|
+
$ node ./examples/pizza --help
|
|
747
|
+
Usage: pizza [options]
|
|
748
|
+
|
|
749
|
+
An application for pizza ordering
|
|
750
|
+
|
|
751
|
+
Options:
|
|
752
|
+
-p, --peppers Add peppers
|
|
753
|
+
-c, --cheese <type> Add the specified type of cheese (default: "marble")
|
|
754
|
+
-C, --no-cheese You do not want any cheese
|
|
755
|
+
-h, --help display help for command
|
|
756
|
+
```
|
|
757
|
+
|
|
758
|
+
A `help` command is added by default if your command has subcommands. It can be used alone, or with a subcommand name to show
|
|
759
|
+
further help for the subcommand. These are effectively the same if the `shell` program has implicit help:
|
|
760
|
+
|
|
761
|
+
```sh
|
|
762
|
+
shell help
|
|
763
|
+
shell --help
|
|
764
|
+
|
|
765
|
+
shell help spawn
|
|
766
|
+
shell spawn --help
|
|
767
|
+
```
|
|
768
|
+
|
|
769
|
+
Long descriptions are wrapped to fit the available width. (However, a description that includes a line-break followed by whitespace is assumed to be pre-formatted and not wrapped.)
|
|
770
|
+
|
|
771
|
+
### Custom help
|
|
772
|
+
|
|
773
|
+
You can add extra text to be displayed along with the built-in help.
|
|
774
|
+
|
|
775
|
+
Example file: [custom-help](./examples/custom-help)
|
|
776
|
+
|
|
777
|
+
```js
|
|
778
|
+
program
|
|
779
|
+
.option('-f, --foo', 'enable some foo');
|
|
780
|
+
|
|
781
|
+
program.addHelpText('after', `
|
|
782
|
+
|
|
783
|
+
Example call:
|
|
784
|
+
$ custom-help --help`);
|
|
785
|
+
```
|
|
786
|
+
|
|
787
|
+
Yields the following help output:
|
|
788
|
+
|
|
789
|
+
```Text
|
|
790
|
+
Usage: custom-help [options]
|
|
791
|
+
|
|
792
|
+
Options:
|
|
793
|
+
-f, --foo enable some foo
|
|
794
|
+
-h, --help display help for command
|
|
795
|
+
|
|
796
|
+
Example call:
|
|
797
|
+
$ custom-help --help
|
|
798
|
+
```
|
|
799
|
+
|
|
800
|
+
The positions in order displayed are:
|
|
801
|
+
|
|
802
|
+
- `beforeAll`: add to the program for a global banner or header
|
|
803
|
+
- `before`: display extra information before built-in help
|
|
804
|
+
- `after`: display extra information after built-in help
|
|
805
|
+
- `afterAll`: add to the program for a global footer (epilog)
|
|
806
|
+
|
|
807
|
+
The positions "beforeAll" and "afterAll" apply to the command and all its subcommands.
|
|
808
|
+
|
|
809
|
+
The second parameter can be a string, or a function returning a string. The function is passed a context object for your convenience. The properties are:
|
|
810
|
+
|
|
811
|
+
- error: a boolean for whether the help is being displayed due to a usage error
|
|
812
|
+
- command: the Command which is displaying the help
|
|
813
|
+
|
|
814
|
+
### Display help after errors
|
|
815
|
+
|
|
816
|
+
The default behaviour for usage errors is to just display a short error message.
|
|
817
|
+
You can change the behaviour to show the full help or a custom help message after an error.
|
|
818
|
+
|
|
819
|
+
```js
|
|
820
|
+
program.showHelpAfterError();
|
|
821
|
+
// or
|
|
822
|
+
program.showHelpAfterError('(add --help for additional information)');
|
|
823
|
+
```
|
|
824
|
+
|
|
825
|
+
```console
|
|
826
|
+
$ pizza --unknown
|
|
827
|
+
error: unknown option '--unknown'
|
|
828
|
+
(add --help for additional information)
|
|
829
|
+
```
|
|
830
|
+
|
|
831
|
+
The default behaviour is to suggest correct spelling after an error for an unknown command or option. You
|
|
832
|
+
can disable this.
|
|
833
|
+
|
|
834
|
+
```js
|
|
835
|
+
program.showSuggestionAfterError(false);
|
|
836
|
+
```
|
|
837
|
+
|
|
838
|
+
```console
|
|
839
|
+
$ pizza --hepl
|
|
840
|
+
error: unknown option '--hepl'
|
|
841
|
+
(Did you mean --help?)
|
|
842
|
+
```
|
|
843
|
+
|
|
844
|
+
### Display help from code
|
|
845
|
+
|
|
846
|
+
`.help()`: display help information and exit immediately. You can optionally pass `{ error: true }` to display on stderr and exit with an error status.
|
|
847
|
+
|
|
848
|
+
`.outputHelp()`: output help information without exiting. You can optionally pass `{ error: true }` to display on stderr.
|
|
849
|
+
|
|
850
|
+
`.helpInformation()`: get the built-in command help information as a string for processing or displaying yourself.
|
|
851
|
+
|
|
852
|
+
### .name
|
|
853
|
+
|
|
854
|
+
The command name appears in the help, and is also used for locating stand-alone executable subcommands.
|
|
855
|
+
|
|
856
|
+
You may specify the program name using `.name()` or in the Command constructor. For the program, Commander will
|
|
857
|
+
fall back to using the script name from the full arguments passed into `.parse()`. However, the script name varies
|
|
858
|
+
depending on how your program is launched, so you may wish to specify it explicitly.
|
|
859
|
+
|
|
860
|
+
```js
|
|
861
|
+
program.name('pizza');
|
|
862
|
+
const pm = new Command('pm');
|
|
863
|
+
```
|
|
864
|
+
|
|
865
|
+
Subcommands get a name when specified using `.command()`. If you create the subcommand yourself to use with `.addCommand()`,
|
|
866
|
+
then set the name using `.name()` or in the Command constructor.
|
|
867
|
+
|
|
868
|
+
### .usage
|
|
869
|
+
|
|
870
|
+
This allows you to customise the usage description in the first line of the help. Given:
|
|
871
|
+
|
|
872
|
+
```js
|
|
873
|
+
program
|
|
874
|
+
.name("my-command")
|
|
875
|
+
.usage("[global options] command")
|
|
876
|
+
```
|
|
877
|
+
|
|
878
|
+
The help will start with:
|
|
879
|
+
|
|
880
|
+
```Text
|
|
881
|
+
Usage: my-command [global options] command
|
|
882
|
+
```
|
|
883
|
+
|
|
884
|
+
### .description and .summary
|
|
885
|
+
|
|
886
|
+
The description appears in the help for the command. You can optionally supply a shorter
|
|
887
|
+
summary to use when listed as a subcommand of the program.
|
|
888
|
+
|
|
889
|
+
```js
|
|
890
|
+
program
|
|
891
|
+
.command("duplicate")
|
|
892
|
+
.summary("make a copy")
|
|
893
|
+
.description(`Make a copy of the current project.
|
|
894
|
+
This may require additional disk space.
|
|
895
|
+
`);
|
|
896
|
+
```
|
|
897
|
+
|
|
898
|
+
### .helpOption(flags, description)
|
|
899
|
+
|
|
900
|
+
By default, every command has a help option. You may change the default help flags and description. Pass false to disable the built-in help option.
|
|
901
|
+
|
|
902
|
+
```js
|
|
903
|
+
program
|
|
904
|
+
.helpOption('-e, --HELP', 'read more information');
|
|
905
|
+
```
|
|
906
|
+
|
|
907
|
+
(Or use `.addHelpOption()` to add an option you construct yourself.)
|
|
908
|
+
|
|
909
|
+
### .helpCommand()
|
|
910
|
+
|
|
911
|
+
A help command is added by default if your command has subcommands. You can explicitly turn on or off the implicit help command with `.helpCommand(true)` and `.helpCommand(false)`.
|
|
912
|
+
|
|
913
|
+
You can both turn on and customise the help command by supplying the name and description:
|
|
914
|
+
|
|
915
|
+
```js
|
|
916
|
+
program.helpCommand('assist [command]', 'show assistance');
|
|
917
|
+
```
|
|
918
|
+
|
|
919
|
+
(Or use `.addHelpCommand()` to add a command you construct yourself.)
|
|
920
|
+
|
|
921
|
+
### More configuration
|
|
922
|
+
|
|
923
|
+
The built-in help is formatted using the Help class.
|
|
924
|
+
You can configure the Help behaviour by modifying data properties and methods using `.configureHelp()`, or by subclassing using `.createHelp()` if you prefer.
|
|
925
|
+
|
|
926
|
+
The data properties are:
|
|
927
|
+
|
|
928
|
+
- `helpWidth`: specify the wrap width, useful for unit tests
|
|
929
|
+
- `sortSubcommands`: sort the subcommands alphabetically
|
|
930
|
+
- `sortOptions`: sort the options alphabetically
|
|
931
|
+
- `showGlobalOptions`: show a section with the global options from the parent command(s)
|
|
932
|
+
|
|
933
|
+
You can override any method on the [Help](./lib/help.js) class. There are methods getting the visible lists of arguments, options, and subcommands. There are methods for formatting the items in the lists, with each item having a _term_ and _description_. Take a look at `.formatHelp()` to see how they are used.
|
|
934
|
+
|
|
935
|
+
Example file: [configure-help.js](./examples/configure-help.js)
|
|
936
|
+
|
|
937
|
+
```js
|
|
938
|
+
program.configureHelp({
|
|
939
|
+
sortSubcommands: true,
|
|
940
|
+
subcommandTerm: (cmd) => cmd.name() // Just show the name, instead of short usage.
|
|
941
|
+
});
|
|
942
|
+
```
|
|
943
|
+
|
|
944
|
+
## Custom event listeners
|
|
945
|
+
|
|
946
|
+
You can execute custom actions by listening to command and option events.
|
|
947
|
+
|
|
948
|
+
```js
|
|
949
|
+
program.on('option:verbose', function () {
|
|
950
|
+
process.env.VERBOSE = this.opts().verbose;
|
|
951
|
+
});
|
|
952
|
+
```
|
|
953
|
+
|
|
954
|
+
## Bits and pieces
|
|
955
|
+
|
|
956
|
+
### .parse() and .parseAsync()
|
|
957
|
+
|
|
958
|
+
Call with no parameters to parse `process.argv`. Detects Electron and special node options like `node --eval`. Easy mode!
|
|
959
|
+
|
|
960
|
+
Or call with an array of strings to parse, and optionally where the user arguments start by specifying where the arguments are `from`:
|
|
961
|
+
|
|
962
|
+
- `'node'`: default, `argv[0]` is the application and `argv[1]` is the script being run, with user arguments after that
|
|
963
|
+
- `'electron'`: `argv[0]` is the application and `argv[1]` varies depending on whether the electron application is packaged
|
|
964
|
+
- `'user'`: just user arguments
|
|
965
|
+
|
|
966
|
+
For example:
|
|
967
|
+
|
|
968
|
+
```js
|
|
969
|
+
program.parse(); // parse process.argv and auto-detect electron and special node flags
|
|
970
|
+
program.parse(process.argv); // assume argv[0] is app and argv[1] is script
|
|
971
|
+
program.parse(['--port', '80'], { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
|
|
972
|
+
```
|
|
973
|
+
|
|
974
|
+
Use parseAsync instead of parse if any of your action handlers are async.
|
|
975
|
+
|
|
976
|
+
If you want to parse multiple times, create a new program each time. Calling parse does not clear out any previous state.
|
|
977
|
+
|
|
978
|
+
### Parsing Configuration
|
|
979
|
+
|
|
980
|
+
If the default parsing does not suit your needs, there are some behaviours to support other usage patterns.
|
|
981
|
+
|
|
982
|
+
By default, program options are recognised before and after subcommands. To only look for program options before subcommands, use `.enablePositionalOptions()`. This lets you use
|
|
983
|
+
an option for a different purpose in subcommands.
|
|
984
|
+
|
|
985
|
+
Example file: [positional-options.js](./examples/positional-options.js)
|
|
986
|
+
|
|
987
|
+
With positional options, the `-b` is a program option in the first line and a subcommand option in the second line:
|
|
988
|
+
|
|
989
|
+
```sh
|
|
990
|
+
program -b subcommand
|
|
991
|
+
program subcommand -b
|
|
992
|
+
```
|
|
993
|
+
|
|
994
|
+
By default, options are recognised before and after command-arguments. To only process options that come
|
|
995
|
+
before the command-arguments, use `.passThroughOptions()`. This lets you pass the arguments and following options through to another program
|
|
996
|
+
without needing to use `--` to end the option processing.
|
|
997
|
+
To use pass through options in a subcommand, the program needs to enable positional options.
|
|
998
|
+
|
|
999
|
+
Example file: [pass-through-options.js](./examples/pass-through-options.js)
|
|
1000
|
+
|
|
1001
|
+
With pass through options, the `--port=80` is a program option in the first line and passed through as a command-argument in the second line:
|
|
1002
|
+
|
|
1003
|
+
```sh
|
|
1004
|
+
program --port=80 arg
|
|
1005
|
+
program arg --port=80
|
|
1006
|
+
```
|
|
1007
|
+
|
|
1008
|
+
By default, the option processing shows an error for an unknown option. To have an unknown option treated as an ordinary command-argument and continue looking for options, use `.allowUnknownOption()`. This lets you mix known and unknown options.
|
|
1009
|
+
|
|
1010
|
+
By default, the argument processing does not display an error for more command-arguments than expected.
|
|
1011
|
+
To display an error for excess arguments, use`.allowExcessArguments(false)`.
|
|
1012
|
+
|
|
1013
|
+
### Legacy options as properties
|
|
1014
|
+
|
|
1015
|
+
Before Commander 7, the option values were stored as properties on the command.
|
|
1016
|
+
This was convenient to code, but the downside was possible clashes with
|
|
1017
|
+
existing properties of `Command`. You can revert to the old behaviour to run unmodified legacy code by using `.storeOptionsAsProperties()`.
|
|
1018
|
+
|
|
1019
|
+
```js
|
|
1020
|
+
program
|
|
1021
|
+
.storeOptionsAsProperties()
|
|
1022
|
+
.option('-d, --debug')
|
|
1023
|
+
.action((commandAndOptions) => {
|
|
1024
|
+
if (commandAndOptions.debug) {
|
|
1025
|
+
console.error(`Called ${commandAndOptions.name()}`);
|
|
1026
|
+
}
|
|
1027
|
+
});
|
|
1028
|
+
```
|
|
1029
|
+
|
|
1030
|
+
### TypeScript
|
|
1031
|
+
|
|
1032
|
+
extra-typings: There is an optional project to infer extra type information from the option and argument definitions.
|
|
1033
|
+
This adds strong typing to the options returned by `.opts()` and the parameters to `.action()`.
|
|
1034
|
+
See [commander-js/extra-typings](https://github.com/commander-js/extra-typings) for more.
|
|
1035
|
+
|
|
1036
|
+
```
|
|
1037
|
+
import { Command } from '@commander-js/extra-typings';
|
|
1038
|
+
```
|
|
1039
|
+
|
|
1040
|
+
ts-node: If you use `ts-node` and stand-alone executable subcommands written as `.ts` files, you need to call your program through node to get the subcommands called correctly. e.g.
|
|
1041
|
+
|
|
1042
|
+
```sh
|
|
1043
|
+
node -r ts-node/register pm.ts
|
|
1044
|
+
```
|
|
1045
|
+
|
|
1046
|
+
### createCommand()
|
|
1047
|
+
|
|
1048
|
+
This factory function creates a new command. It is exported and may be used instead of using `new`, like:
|
|
1049
|
+
|
|
1050
|
+
```js
|
|
1051
|
+
const { createCommand } = require('commander');
|
|
1052
|
+
const program = createCommand();
|
|
1053
|
+
```
|
|
1054
|
+
|
|
1055
|
+
`createCommand` is also a method of the Command object, and creates a new command rather than a subcommand. This gets used internally
|
|
1056
|
+
when creating subcommands using `.command()`, and you may override it to
|
|
1057
|
+
customise the new subcommand (example file [custom-command-class.js](./examples/custom-command-class.js)).
|
|
1058
|
+
|
|
1059
|
+
### Node options such as `--harmony`
|
|
1060
|
+
|
|
1061
|
+
You can enable `--harmony` option in two ways:
|
|
1062
|
+
|
|
1063
|
+
- Use `#! /usr/bin/env node --harmony` in the subcommands scripts. (Note Windows does not support this pattern.)
|
|
1064
|
+
- Use the `--harmony` option when call the command, like `node --harmony examples/pm publish`. The `--harmony` option will be preserved when spawning subcommand process.
|
|
1065
|
+
|
|
1066
|
+
### Debugging stand-alone executable subcommands
|
|
1067
|
+
|
|
1068
|
+
An executable subcommand is launched as a separate child process.
|
|
1069
|
+
|
|
1070
|
+
If you are using the node inspector for [debugging](https://nodejs.org/en/docs/guides/debugging-getting-started/) executable subcommands using `node --inspect` et al.,
|
|
1071
|
+
the inspector port is incremented by 1 for the spawned subcommand.
|
|
1072
|
+
|
|
1073
|
+
If you are using VSCode to debug executable subcommands you need to set the `"autoAttachChildProcesses": true` flag in your launch.json configuration.
|
|
1074
|
+
|
|
1075
|
+
### npm run-script
|
|
1076
|
+
|
|
1077
|
+
By default, when you call your program using run-script, `npm` will parse any options on the command-line and they will not reach your program. Use
|
|
1078
|
+
`--` to stop the npm option parsing and pass through all the arguments.
|
|
1079
|
+
|
|
1080
|
+
The synopsis for [npm run-script](https://docs.npmjs.com/cli/v9/commands/npm-run-script) explicitly shows the `--` for this reason:
|
|
1081
|
+
|
|
1082
|
+
```console
|
|
1083
|
+
npm run-script <command> [-- <args>]
|
|
1084
|
+
```
|
|
1085
|
+
|
|
1086
|
+
### Display error
|
|
1087
|
+
|
|
1088
|
+
This routine is available to invoke the Commander error handling for your own error conditions. (See also the next section about exit handling.)
|
|
1089
|
+
|
|
1090
|
+
As well as the error message, you can optionally specify the `exitCode` (used with `process.exit`)
|
|
1091
|
+
and `code` (used with `CommanderError`).
|
|
1092
|
+
|
|
1093
|
+
```js
|
|
1094
|
+
program.error('Password must be longer than four characters');
|
|
1095
|
+
program.error('Custom processing has failed', { exitCode: 2, code: 'my.custom.error' });
|
|
1096
|
+
```
|
|
1097
|
+
|
|
1098
|
+
### Override exit and output handling
|
|
1099
|
+
|
|
1100
|
+
By default, Commander calls `process.exit` when it detects errors, or after displaying the help or version. You can override
|
|
1101
|
+
this behaviour and optionally supply a callback. The default override throws a `CommanderError`.
|
|
1102
|
+
|
|
1103
|
+
The override callback is passed a `CommanderError` with properties `exitCode` number, `code` string, and `message`.
|
|
1104
|
+
Commander expects the callback to terminate the normal program flow, and will call `process.exit` if the callback returns.
|
|
1105
|
+
The normal display of error messages or version or help is not affected by the override which is called after the display.
|
|
1106
|
+
|
|
1107
|
+
```js
|
|
1108
|
+
program.exitOverride();
|
|
1109
|
+
|
|
1110
|
+
try {
|
|
1111
|
+
program.parse(process.argv);
|
|
1112
|
+
} catch (err) {
|
|
1113
|
+
// custom processing...
|
|
1114
|
+
}
|
|
1115
|
+
```
|
|
1116
|
+
|
|
1117
|
+
By default, Commander is configured for a command-line application and writes to stdout and stderr.
|
|
1118
|
+
You can modify this behaviour for custom applications. In addition, you can modify the display of error messages.
|
|
1119
|
+
|
|
1120
|
+
Example file: [configure-output.js](./examples/configure-output.js)
|
|
1121
|
+
|
|
1122
|
+
```js
|
|
1123
|
+
function errorColor(str) {
|
|
1124
|
+
// Add ANSI escape codes to display text in red.
|
|
1125
|
+
return `\x1b[31m${str}\x1b[0m`;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
program
|
|
1129
|
+
.configureOutput({
|
|
1130
|
+
// Visibly override write routines as example!
|
|
1131
|
+
writeOut: (str) => process.stdout.write(`[OUT] ${str}`),
|
|
1132
|
+
writeErr: (str) => process.stdout.write(`[ERR] ${str}`),
|
|
1133
|
+
// Highlight errors in color.
|
|
1134
|
+
outputError: (str, write) => write(errorColor(str))
|
|
1135
|
+
});
|
|
1136
|
+
```
|
|
1137
|
+
|
|
1138
|
+
### Additional documentation
|
|
1139
|
+
|
|
1140
|
+
There is more information available about:
|
|
1141
|
+
|
|
1142
|
+
- [deprecated](./docs/deprecated.md) features still supported for backwards compatibility
|
|
1143
|
+
- [options taking varying arguments](./docs/options-in-depth.md)
|
|
1144
|
+
- [parsing life cycle and hooks](./docs/parsing-and-hooks.md)
|
|
1145
|
+
|
|
1146
|
+
## Support
|
|
1147
|
+
|
|
1148
|
+
The current version of Commander is fully supported on Long Term Support versions of Node.js, and requires at least v18.
|
|
1149
|
+
(For older versions of Node.js, use an older version of Commander.)
|
|
1150
|
+
|
|
1151
|
+
The main forum for free and community support is the project [Issues](https://github.com/tj/commander.js/issues) on GitHub.
|
|
1152
|
+
|
|
1153
|
+
### Commander for enterprise
|
|
1154
|
+
|
|
1155
|
+
Available as part of the Tidelift Subscription
|
|
1156
|
+
|
|
1157
|
+
The maintainers of Commander and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-commander?utm_source=npm-commander&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
|