@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.
Files changed (1975) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +21 -0
  3. package/README.md +377 -0
  4. package/bin/server.mjs +16 -0
  5. package/bin/stub-plugin.mjs +33 -0
  6. package/bin/uco.mjs +6 -0
  7. package/dist/catalog.d.ts +6 -0
  8. package/dist/catalog.js +54 -0
  9. package/dist/catalog.js.map +1 -0
  10. package/dist/codegen/coerce.d.ts +16 -0
  11. package/dist/codegen/coerce.js +117 -0
  12. package/dist/codegen/coerce.js.map +1 -0
  13. package/dist/codegen/emit.d.ts +2 -0
  14. package/dist/codegen/emit.js +213 -0
  15. package/dist/codegen/emit.js.map +1 -0
  16. package/dist/codegen/fetch.d.ts +9 -0
  17. package/dist/codegen/fetch.js +30 -0
  18. package/dist/codegen/fetch.js.map +1 -0
  19. package/dist/codegen/refs.d.ts +9 -0
  20. package/dist/codegen/refs.js +38 -0
  21. package/dist/codegen/refs.js.map +1 -0
  22. package/dist/codegen/types.d.ts +40 -0
  23. package/dist/codegen/types.js +3 -0
  24. package/dist/codegen/types.js.map +1 -0
  25. package/dist/commands/call.d.ts +10 -0
  26. package/dist/commands/call.js +137 -0
  27. package/dist/commands/call.js.map +1 -0
  28. package/dist/commands/devops/_helpers.d.ts +27 -0
  29. package/dist/commands/devops/_helpers.js +49 -0
  30. package/dist/commands/devops/_helpers.js.map +1 -0
  31. package/dist/commands/devops/_unity-command-line.d.ts +26 -0
  32. package/dist/commands/devops/_unity-command-line.js +227 -0
  33. package/dist/commands/devops/_unity-command-line.js.map +1 -0
  34. package/dist/commands/devops/_unity-operations.d.ts +14 -0
  35. package/dist/commands/devops/_unity-operations.js +56 -0
  36. package/dist/commands/devops/_unity-operations.js.map +1 -0
  37. package/dist/commands/devops/build.d.ts +36 -0
  38. package/dist/commands/devops/build.js +142 -0
  39. package/dist/commands/devops/build.js.map +1 -0
  40. package/dist/commands/devops/close.d.ts +2 -0
  41. package/dist/commands/devops/close.js +121 -0
  42. package/dist/commands/devops/close.js.map +1 -0
  43. package/dist/commands/devops/configure.d.ts +2 -0
  44. package/dist/commands/devops/configure.js +62 -0
  45. package/dist/commands/devops/configure.js.map +1 -0
  46. package/dist/commands/devops/create-project.d.ts +32 -0
  47. package/dist/commands/devops/create-project.js +170 -0
  48. package/dist/commands/devops/create-project.js.map +1 -0
  49. package/dist/commands/devops/editors.d.ts +8 -0
  50. package/dist/commands/devops/editors.js +30 -0
  51. package/dist/commands/devops/editors.js.map +1 -0
  52. package/dist/commands/devops/index.d.ts +2 -0
  53. package/dist/commands/devops/index.js +36 -0
  54. package/dist/commands/devops/index.js.map +1 -0
  55. package/dist/commands/devops/install-plugin.d.ts +2 -0
  56. package/dist/commands/devops/install-plugin.js +41 -0
  57. package/dist/commands/devops/install-plugin.js.map +1 -0
  58. package/dist/commands/devops/install-unity.d.ts +17 -0
  59. package/dist/commands/devops/install-unity.js +115 -0
  60. package/dist/commands/devops/install-unity.js.map +1 -0
  61. package/dist/commands/devops/login.d.ts +2 -0
  62. package/dist/commands/devops/login.js +29 -0
  63. package/dist/commands/devops/login.js.map +1 -0
  64. package/dist/commands/devops/open.d.ts +2 -0
  65. package/dist/commands/devops/open.js +85 -0
  66. package/dist/commands/devops/open.js.map +1 -0
  67. package/dist/commands/devops/remove-plugin.d.ts +2 -0
  68. package/dist/commands/devops/remove-plugin.js +21 -0
  69. package/dist/commands/devops/remove-plugin.js.map +1 -0
  70. package/dist/commands/devops/setup-mcp.d.ts +2 -0
  71. package/dist/commands/devops/setup-mcp.js +41 -0
  72. package/dist/commands/devops/setup-mcp.js.map +1 -0
  73. package/dist/commands/devops/setup-skills.d.ts +13 -0
  74. package/dist/commands/devops/setup-skills.js +72 -0
  75. package/dist/commands/devops/setup-skills.js.map +1 -0
  76. package/dist/commands/devops/setup-unity-cli.d.ts +8 -0
  77. package/dist/commands/devops/setup-unity-cli.js +35 -0
  78. package/dist/commands/devops/setup-unity-cli.js.map +1 -0
  79. package/dist/commands/devops/status.d.ts +2 -0
  80. package/dist/commands/devops/status.js +97 -0
  81. package/dist/commands/devops/status.js.map +1 -0
  82. package/dist/commands/devops/test.d.ts +29 -0
  83. package/dist/commands/devops/test.js +88 -0
  84. package/dist/commands/devops/test.js.map +1 -0
  85. package/dist/commands/devops/wait-for-ready.d.ts +4 -0
  86. package/dist/commands/devops/wait-for-ready.js +297 -0
  87. package/dist/commands/devops/wait-for-ready.js.map +1 -0
  88. package/dist/commands/exec.d.ts +16 -0
  89. package/dist/commands/exec.js +78 -0
  90. package/dist/commands/exec.js.map +1 -0
  91. package/dist/commands/gen.d.ts +2 -0
  92. package/dist/commands/gen.js +46 -0
  93. package/dist/commands/gen.js.map +1 -0
  94. package/dist/commands/init.d.ts +2 -0
  95. package/dist/commands/init.js +313 -0
  96. package/dist/commands/init.js.map +1 -0
  97. package/dist/commands/install.d.ts +2 -0
  98. package/dist/commands/install.js +161 -0
  99. package/dist/commands/install.js.map +1 -0
  100. package/dist/commands/list.d.ts +2 -0
  101. package/dist/commands/list.js +40 -0
  102. package/dist/commands/list.js.map +1 -0
  103. package/dist/commands/ping.d.ts +2 -0
  104. package/dist/commands/ping.js +25 -0
  105. package/dist/commands/ping.js.map +1 -0
  106. package/dist/commands/prompt.d.ts +2 -0
  107. package/dist/commands/prompt.js +45 -0
  108. package/dist/commands/prompt.js.map +1 -0
  109. package/dist/commands/resource.d.ts +2 -0
  110. package/dist/commands/resource.js +30 -0
  111. package/dist/commands/resource.js.map +1 -0
  112. package/dist/commands/update.d.ts +2 -0
  113. package/dist/commands/update.js +132 -0
  114. package/dist/commands/update.js.map +1 -0
  115. package/dist/config/port.d.ts +1 -0
  116. package/dist/config/port.js +19 -0
  117. package/dist/config/port.js.map +1 -0
  118. package/dist/config/resolve.d.ts +24 -0
  119. package/dist/config/resolve.js +78 -0
  120. package/dist/config/resolve.js.map +1 -0
  121. package/dist/devops/commands-upstream/bootstrap-local.d.ts +17 -0
  122. package/dist/devops/commands-upstream/bootstrap-local.js +87 -0
  123. package/dist/devops/commands-upstream/bootstrap-local.js.map +1 -0
  124. package/dist/devops/commands-upstream/close.d.ts +57 -0
  125. package/dist/devops/commands-upstream/close.js +188 -0
  126. package/dist/devops/commands-upstream/close.js.map +1 -0
  127. package/dist/devops/commands-upstream/configure.d.ts +2 -0
  128. package/dist/devops/commands-upstream/configure.js +87 -0
  129. package/dist/devops/commands-upstream/configure.js.map +1 -0
  130. package/dist/devops/commands-upstream/create-project.d.ts +2 -0
  131. package/dist/devops/commands-upstream/create-project.js +43 -0
  132. package/dist/devops/commands-upstream/create-project.js.map +1 -0
  133. package/dist/devops/commands-upstream/install-plugin.d.ts +2 -0
  134. package/dist/devops/commands-upstream/install-plugin.js +64 -0
  135. package/dist/devops/commands-upstream/install-plugin.js.map +1 -0
  136. package/dist/devops/commands-upstream/install-unity.d.ts +2 -0
  137. package/dist/devops/commands-upstream/install-unity.js +72 -0
  138. package/dist/devops/commands-upstream/install-unity.js.map +1 -0
  139. package/dist/devops/commands-upstream/login.d.ts +2 -0
  140. package/dist/devops/commands-upstream/login.js +33 -0
  141. package/dist/devops/commands-upstream/login.js.map +1 -0
  142. package/dist/devops/commands-upstream/open.d.ts +32 -0
  143. package/dist/devops/commands-upstream/open.js +282 -0
  144. package/dist/devops/commands-upstream/open.js.map +1 -0
  145. package/dist/devops/commands-upstream/remove-plugin.d.ts +2 -0
  146. package/dist/devops/commands-upstream/remove-plugin.js +41 -0
  147. package/dist/devops/commands-upstream/remove-plugin.js.map +1 -0
  148. package/dist/devops/commands-upstream/run-system-tool.d.ts +1 -0
  149. package/dist/devops/commands-upstream/run-system-tool.js +13 -0
  150. package/dist/devops/commands-upstream/run-system-tool.js.map +1 -0
  151. package/dist/devops/commands-upstream/run-tool-builder.d.ts +25 -0
  152. package/dist/devops/commands-upstream/run-tool-builder.js +125 -0
  153. package/dist/devops/commands-upstream/run-tool-builder.js.map +1 -0
  154. package/dist/devops/commands-upstream/run-tool.d.ts +1 -0
  155. package/dist/devops/commands-upstream/run-tool.js +13 -0
  156. package/dist/devops/commands-upstream/run-tool.js.map +1 -0
  157. package/dist/devops/commands-upstream/setup-mcp.d.ts +2 -0
  158. package/dist/devops/commands-upstream/setup-mcp.js +68 -0
  159. package/dist/devops/commands-upstream/setup-mcp.js.map +1 -0
  160. package/dist/devops/commands-upstream/setup-skills.d.ts +2 -0
  161. package/dist/devops/commands-upstream/setup-skills.js +167 -0
  162. package/dist/devops/commands-upstream/setup-skills.js.map +1 -0
  163. package/dist/devops/commands-upstream/status.d.ts +2 -0
  164. package/dist/devops/commands-upstream/status.js +87 -0
  165. package/dist/devops/commands-upstream/status.js.map +1 -0
  166. package/dist/devops/commands-upstream/update.d.ts +2 -0
  167. package/dist/devops/commands-upstream/update.js +77 -0
  168. package/dist/devops/commands-upstream/update.js.map +1 -0
  169. package/dist/devops/commands-upstream/wait-for-ready.d.ts +2 -0
  170. package/dist/devops/commands-upstream/wait-for-ready.js +93 -0
  171. package/dist/devops/commands-upstream/wait-for-ready.js.map +1 -0
  172. package/dist/devops/lib/configure.d.ts +14 -0
  173. package/dist/devops/lib/configure.js +91 -0
  174. package/dist/devops/lib/configure.js.map +1 -0
  175. package/dist/devops/lib/install-plugin.d.ts +18 -0
  176. package/dist/devops/lib/install-plugin.js +115 -0
  177. package/dist/devops/lib/install-plugin.js.map +1 -0
  178. package/dist/devops/lib/install.d.ts +35 -0
  179. package/dist/devops/lib/install.js +472 -0
  180. package/dist/devops/lib/install.js.map +1 -0
  181. package/dist/devops/lib/logger.d.ts +7 -0
  182. package/dist/devops/lib/logger.js +18 -0
  183. package/dist/devops/lib/logger.js.map +1 -0
  184. package/dist/devops/lib/open.d.ts +97 -0
  185. package/dist/devops/lib/open.js +522 -0
  186. package/dist/devops/lib/open.js.map +1 -0
  187. package/dist/devops/lib/owned-node-server.d.ts +54 -0
  188. package/dist/devops/lib/owned-node-server.js +779 -0
  189. package/dist/devops/lib/owned-node-server.js.map +1 -0
  190. package/dist/devops/lib/progress.d.ts +7 -0
  191. package/dist/devops/lib/progress.js +16 -0
  192. package/dist/devops/lib/progress.js.map +1 -0
  193. package/dist/devops/lib/remove-plugin.d.ts +11 -0
  194. package/dist/devops/lib/remove-plugin.js +58 -0
  195. package/dist/devops/lib/remove-plugin.js.map +1 -0
  196. package/dist/devops/lib/run-tool.d.ts +15 -0
  197. package/dist/devops/lib/run-tool.js +356 -0
  198. package/dist/devops/lib/run-tool.js.map +1 -0
  199. package/dist/devops/lib/setup-mcp.d.ts +35 -0
  200. package/dist/devops/lib/setup-mcp.js +172 -0
  201. package/dist/devops/lib/setup-mcp.js.map +1 -0
  202. package/dist/devops/lib/setup-unity-cli.d.ts +129 -0
  203. package/dist/devops/lib/setup-unity-cli.js +567 -0
  204. package/dist/devops/lib/setup-unity-cli.js.map +1 -0
  205. package/dist/devops/lib/types.d.ts +623 -0
  206. package/dist/devops/lib/types.js +8 -0
  207. package/dist/devops/lib/types.js.map +1 -0
  208. package/dist/devops/lib/unity-lifecycle.d.ts +102 -0
  209. package/dist/devops/lib/unity-lifecycle.js +313 -0
  210. package/dist/devops/lib/unity-lifecycle.js.map +1 -0
  211. package/dist/devops/lib/update.d.ts +84 -0
  212. package/dist/devops/lib/update.js +405 -0
  213. package/dist/devops/lib/update.js.map +1 -0
  214. package/dist/devops/lib/validation.d.ts +37 -0
  215. package/dist/devops/lib/validation.js +50 -0
  216. package/dist/devops/lib/validation.js.map +1 -0
  217. package/dist/devops/utils/agents.d.ts +61 -0
  218. package/dist/devops/utils/agents.js +640 -0
  219. package/dist/devops/utils/agents.js.map +1 -0
  220. package/dist/devops/utils/auth.d.ts +28 -0
  221. package/dist/devops/utils/auth.js +111 -0
  222. package/dist/devops/utils/auth.js.map +1 -0
  223. package/dist/devops/utils/browser.d.ts +5 -0
  224. package/dist/devops/utils/browser.js +32 -0
  225. package/dist/devops/utils/browser.js.map +1 -0
  226. package/dist/devops/utils/cloud-login.d.ts +7 -0
  227. package/dist/devops/utils/cloud-login.js +56 -0
  228. package/dist/devops/utils/cloud-login.js.map +1 -0
  229. package/dist/devops/utils/config.d.ts +81 -0
  230. package/dist/devops/utils/config.js +190 -0
  231. package/dist/devops/utils/config.js.map +1 -0
  232. package/dist/devops/utils/connection.d.ts +34 -0
  233. package/dist/devops/utils/connection.js +77 -0
  234. package/dist/devops/utils/connection.js.map +1 -0
  235. package/dist/devops/utils/editor-cache.d.ts +16 -0
  236. package/dist/devops/utils/editor-cache.js +81 -0
  237. package/dist/devops/utils/editor-cache.js.map +1 -0
  238. package/dist/devops/utils/input.d.ts +13 -0
  239. package/dist/devops/utils/input.js +72 -0
  240. package/dist/devops/utils/input.js.map +1 -0
  241. package/dist/devops/utils/json-parse.d.ts +36 -0
  242. package/dist/devops/utils/json-parse.js +105 -0
  243. package/dist/devops/utils/json-parse.js.map +1 -0
  244. package/dist/devops/utils/launch-error-dismiss.d.ts +159 -0
  245. package/dist/devops/utils/launch-error-dismiss.js +440 -0
  246. package/dist/devops/utils/launch-error-dismiss.js.map +1 -0
  247. package/dist/devops/utils/manifest.d.ts +124 -0
  248. package/dist/devops/utils/manifest.js +403 -0
  249. package/dist/devops/utils/manifest.js.map +1 -0
  250. package/dist/devops/utils/port.d.ts +6 -0
  251. package/dist/devops/utils/port.js +19 -0
  252. package/dist/devops/utils/port.js.map +1 -0
  253. package/dist/devops/utils/probe.d.ts +15 -0
  254. package/dist/devops/utils/probe.js +58 -0
  255. package/dist/devops/utils/probe.js.map +1 -0
  256. package/dist/devops/utils/semver.d.ts +4 -0
  257. package/dist/devops/utils/semver.js +75 -0
  258. package/dist/devops/utils/semver.js.map +1 -0
  259. package/dist/devops/utils/ui.d.ts +70 -0
  260. package/dist/devops/utils/ui.js +288 -0
  261. package/dist/devops/utils/ui.js.map +1 -0
  262. package/dist/devops/utils/unity-cli.d.ts +192 -0
  263. package/dist/devops/utils/unity-cli.js +1102 -0
  264. package/dist/devops/utils/unity-cli.js.map +1 -0
  265. package/dist/devops/utils/unity-editor.d.ts +50 -0
  266. package/dist/devops/utils/unity-editor.js +306 -0
  267. package/dist/devops/utils/unity-editor.js.map +1 -0
  268. package/dist/devops/utils/unity-hub.d.ts +100 -0
  269. package/dist/devops/utils/unity-hub.js +696 -0
  270. package/dist/devops/utils/unity-hub.js.map +1 -0
  271. package/dist/devops/utils/unity-process.d.ts +17 -0
  272. package/dist/devops/utils/unity-process.js +90 -0
  273. package/dist/devops/utils/unity-process.js.map +1 -0
  274. package/dist/devops/utils/unity-shutdown.d.ts +87 -0
  275. package/dist/devops/utils/unity-shutdown.js +241 -0
  276. package/dist/devops/utils/unity-shutdown.js.map +1 -0
  277. package/dist/devops/utils/update-check.d.ts +19 -0
  278. package/dist/devops/utils/update-check.js +92 -0
  279. package/dist/devops/utils/update-check.js.map +1 -0
  280. package/dist/devops/utils/vendor.d.ts +21 -0
  281. package/dist/devops/utils/vendor.js +64 -0
  282. package/dist/devops/utils/vendor.js.map +1 -0
  283. package/dist/generated/tools.d.ts +5 -0
  284. package/dist/generated/tools.js +4299 -0
  285. package/dist/generated/tools.js.map +1 -0
  286. package/dist/index.d.ts +1 -0
  287. package/dist/index.js +12 -0
  288. package/dist/index.js.map +1 -0
  289. package/dist/program.d.ts +2 -0
  290. package/dist/program.js +102 -0
  291. package/dist/program.js.map +1 -0
  292. package/dist/server/app.d.ts +42 -0
  293. package/dist/server/app.js +109 -0
  294. package/dist/server/app.js.map +1 -0
  295. package/dist/server/calls/call-record-store.d.ts +99 -0
  296. package/dist/server/calls/call-record-store.js +240 -0
  297. package/dist/server/calls/call-record-store.js.map +1 -0
  298. package/dist/server/config.d.ts +44 -0
  299. package/dist/server/config.js +146 -0
  300. package/dist/server/config.js.map +1 -0
  301. package/dist/server/index.d.ts +18 -0
  302. package/dist/server/index.js +139 -0
  303. package/dist/server/index.js.map +1 -0
  304. package/dist/server/origin.d.ts +3 -0
  305. package/dist/server/origin.js +8 -0
  306. package/dist/server/origin.js.map +1 -0
  307. package/dist/server/rest/auth.d.ts +23 -0
  308. package/dist/server/rest/auth.js +57 -0
  309. package/dist/server/rest/auth.js.map +1 -0
  310. package/dist/server/rest/calls.d.ts +13 -0
  311. package/dist/server/rest/calls.js +54 -0
  312. package/dist/server/rest/calls.js.map +1 -0
  313. package/dist/server/rest/context.d.ts +41 -0
  314. package/dist/server/rest/context.js +194 -0
  315. package/dist/server/rest/context.js.map +1 -0
  316. package/dist/server/rest/forward.d.ts +66 -0
  317. package/dist/server/rest/forward.js +396 -0
  318. package/dist/server/rest/forward.js.map +1 -0
  319. package/dist/server/rest/health.d.ts +4 -0
  320. package/dist/server/rest/health.js +96 -0
  321. package/dist/server/rest/health.js.map +1 -0
  322. package/dist/server/rest/help.d.ts +7 -0
  323. package/dist/server/rest/help.js +33 -0
  324. package/dist/server/rest/help.js.map +1 -0
  325. package/dist/server/rest/instances.d.ts +13 -0
  326. package/dist/server/rest/instances.js +88 -0
  327. package/dist/server/rest/instances.js.map +1 -0
  328. package/dist/server/rest/prompts.d.ts +11 -0
  329. package/dist/server/rest/prompts.js +131 -0
  330. package/dist/server/rest/prompts.js.map +1 -0
  331. package/dist/server/rest/resources.d.ts +13 -0
  332. package/dist/server/rest/resources.js +156 -0
  333. package/dist/server/rest/resources.js.map +1 -0
  334. package/dist/server/rest/router.d.ts +10 -0
  335. package/dist/server/rest/router.js +158 -0
  336. package/dist/server/rest/router.js.map +1 -0
  337. package/dist/server/rest/session.d.ts +16 -0
  338. package/dist/server/rest/session.js +108 -0
  339. package/dist/server/rest/session.js.map +1 -0
  340. package/dist/server/rest/system-tools.d.ts +11 -0
  341. package/dist/server/rest/system-tools.js +150 -0
  342. package/dist/server/rest/system-tools.js.map +1 -0
  343. package/dist/server/rest/tools.d.ts +11 -0
  344. package/dist/server/rest/tools.js +383 -0
  345. package/dist/server/rest/tools.js.map +1 -0
  346. package/dist/server/session/store.d.ts +36 -0
  347. package/dist/server/session/store.js +75 -0
  348. package/dist/server/session/store.js.map +1 -0
  349. package/dist/server/stub-client/index.d.ts +54 -0
  350. package/dist/server/stub-client/index.js +275 -0
  351. package/dist/server/stub-client/index.js.map +1 -0
  352. package/dist/server/stub-client/scenarios.d.ts +23 -0
  353. package/dist/server/stub-client/scenarios.js +150 -0
  354. package/dist/server/stub-client/scenarios.js.map +1 -0
  355. package/dist/server/types.d.ts +224 -0
  356. package/dist/server/types.js +54 -0
  357. package/dist/server/types.js.map +1 -0
  358. package/dist/server/ws/envelope.d.ts +81 -0
  359. package/dist/server/ws/envelope.js +138 -0
  360. package/dist/server/ws/envelope.js.map +1 -0
  361. package/dist/server/ws/hub.d.ts +77 -0
  362. package/dist/server/ws/hub.js +386 -0
  363. package/dist/server/ws/hub.js.map +1 -0
  364. package/dist/server/ws/pending.d.ts +47 -0
  365. package/dist/server/ws/pending.js +242 -0
  366. package/dist/server/ws/pending.js.map +1 -0
  367. package/dist/server/ws/registry.d.ts +117 -0
  368. package/dist/server/ws/registry.js +300 -0
  369. package/dist/server/ws/registry.js.map +1 -0
  370. package/dist/server/ws/rpc.d.ts +38 -0
  371. package/dist/server/ws/rpc.js +157 -0
  372. package/dist/server/ws/rpc.js.map +1 -0
  373. package/dist/skills/bundle.d.ts +146 -0
  374. package/dist/skills/bundle.js +1020 -0
  375. package/dist/skills/bundle.js.map +1 -0
  376. package/dist/skills/install-manifest.d.ts +136 -0
  377. package/dist/skills/install-manifest.js +355 -0
  378. package/dist/skills/install-manifest.js.map +1 -0
  379. package/dist/tool-call-control.d.ts +255 -0
  380. package/dist/tool-call-control.js +802 -0
  381. package/dist/tool-call-control.js.map +1 -0
  382. package/dist/transport/index.d.ts +90 -0
  383. package/dist/transport/index.js +13 -0
  384. package/dist/transport/index.js.map +1 -0
  385. package/dist/transport/rest.d.ts +35 -0
  386. package/dist/transport/rest.js +415 -0
  387. package/dist/transport/rest.js.map +1 -0
  388. package/dist/util/call-control.d.ts +30 -0
  389. package/dist/util/call-control.js +123 -0
  390. package/dist/util/call-control.js.map +1 -0
  391. package/dist/util/cli-context.d.ts +35 -0
  392. package/dist/util/cli-context.js +316 -0
  393. package/dist/util/cli-context.js.map +1 -0
  394. package/dist/util/errors.d.ts +31 -0
  395. package/dist/util/errors.js +52 -0
  396. package/dist/util/errors.js.map +1 -0
  397. package/dist/util/idle-wait.d.ts +17 -0
  398. package/dist/util/idle-wait.js +93 -0
  399. package/dist/util/idle-wait.js.map +1 -0
  400. package/dist/util/input.d.ts +10 -0
  401. package/dist/util/input.js +86 -0
  402. package/dist/util/input.js.map +1 -0
  403. package/dist/util/multi-select.d.ts +29 -0
  404. package/dist/util/multi-select.js +108 -0
  405. package/dist/util/multi-select.js.map +1 -0
  406. package/dist/util/operation-wait.d.ts +35 -0
  407. package/dist/util/operation-wait.js +96 -0
  408. package/dist/util/operation-wait.js.map +1 -0
  409. package/dist/util/output.d.ts +8 -0
  410. package/dist/util/output.js +302 -0
  411. package/dist/util/output.js.map +1 -0
  412. package/dist/util/readiness.d.ts +18 -0
  413. package/dist/util/readiness.js +129 -0
  414. package/dist/util/readiness.js.map +1 -0
  415. package/dist/util/redaction.d.ts +3 -0
  416. package/dist/util/redaction.js +59 -0
  417. package/dist/util/redaction.js.map +1 -0
  418. package/dist/util/timeout.d.ts +9 -0
  419. package/dist/util/timeout.js +16 -0
  420. package/dist/util/timeout.js.map +1 -0
  421. package/dist/util/tool-payload.d.ts +8 -0
  422. package/dist/util/tool-payload.js +58 -0
  423. package/dist/util/tool-payload.js.map +1 -0
  424. package/docs/INSTALL.zh-CN.md +175 -0
  425. package/node_modules/chalk/license +9 -0
  426. package/node_modules/chalk/package.json +83 -0
  427. package/node_modules/chalk/readme.md +297 -0
  428. package/node_modules/chalk/source/index.d.ts +325 -0
  429. package/node_modules/chalk/source/index.js +225 -0
  430. package/node_modules/chalk/source/utilities.js +33 -0
  431. package/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  432. package/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  433. package/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  434. package/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
  435. package/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  436. package/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
  437. package/node_modules/commander/LICENSE +22 -0
  438. package/node_modules/commander/Readme.md +1157 -0
  439. package/node_modules/commander/esm.mjs +16 -0
  440. package/node_modules/commander/index.js +24 -0
  441. package/node_modules/commander/lib/argument.js +149 -0
  442. package/node_modules/commander/lib/command.js +2509 -0
  443. package/node_modules/commander/lib/error.js +39 -0
  444. package/node_modules/commander/lib/help.js +520 -0
  445. package/node_modules/commander/lib/option.js +330 -0
  446. package/node_modules/commander/lib/suggestSimilar.js +101 -0
  447. package/node_modules/commander/package-support.json +16 -0
  448. package/node_modules/commander/package.json +84 -0
  449. package/node_modules/commander/typings/esm.d.mts +3 -0
  450. package/node_modules/commander/typings/index.d.ts +969 -0
  451. package/node_modules/kleur/colors.d.ts +38 -0
  452. package/node_modules/kleur/colors.js +53 -0
  453. package/node_modules/kleur/colors.mjs +53 -0
  454. package/node_modules/kleur/index.d.ts +45 -0
  455. package/node_modules/kleur/index.js +110 -0
  456. package/node_modules/kleur/index.mjs +110 -0
  457. package/node_modules/kleur/license +21 -0
  458. package/node_modules/kleur/package.json +51 -0
  459. package/node_modules/kleur/readme.md +232 -0
  460. package/node_modules/ws/LICENSE +20 -0
  461. package/node_modules/ws/README.md +548 -0
  462. package/node_modules/ws/browser.js +8 -0
  463. package/node_modules/ws/index.js +22 -0
  464. package/node_modules/ws/lib/buffer-util.js +131 -0
  465. package/node_modules/ws/lib/constants.js +19 -0
  466. package/node_modules/ws/lib/event-target.js +292 -0
  467. package/node_modules/ws/lib/extension.js +203 -0
  468. package/node_modules/ws/lib/limiter.js +55 -0
  469. package/node_modules/ws/lib/permessage-deflate.js +530 -0
  470. package/node_modules/ws/lib/receiver.js +743 -0
  471. package/node_modules/ws/lib/sender.js +607 -0
  472. package/node_modules/ws/lib/stream.js +161 -0
  473. package/node_modules/ws/lib/subprotocol.js +62 -0
  474. package/node_modules/ws/lib/validation.js +152 -0
  475. package/node_modules/ws/lib/websocket-server.js +562 -0
  476. package/node_modules/ws/lib/websocket.js +1407 -0
  477. package/node_modules/ws/package.json +74 -0
  478. package/node_modules/ws/wrapper.mjs +21 -0
  479. package/node_modules/yocto-spinner/index.d.ts +162 -0
  480. package/node_modules/yocto-spinner/index.js +428 -0
  481. package/node_modules/yocto-spinner/license +9 -0
  482. package/node_modules/yocto-spinner/package.json +64 -0
  483. package/node_modules/yocto-spinner/readme.md +237 -0
  484. package/node_modules/yoctocolors/base.d.ts +47 -0
  485. package/node_modules/yoctocolors/base.js +94 -0
  486. package/node_modules/yoctocolors/index.d.ts +2 -0
  487. package/node_modules/yoctocolors/index.js +2 -0
  488. package/node_modules/yoctocolors/license +9 -0
  489. package/node_modules/yoctocolors/package.json +69 -0
  490. package/node_modules/yoctocolors/readme.md +138 -0
  491. package/package.json +83 -0
  492. package/skills/uco-setup/SKILL.md +52 -0
  493. package/skills/uco-setup/agents/openai.yaml +7 -0
  494. package/skills/uco-setup/references/recovery.md +24 -0
  495. package/skills/unity-cli/SKILL.md +39 -0
  496. package/skills/unity-cli/agents/openai.yaml +7 -0
  497. package/skills/unity-cli/references/automation-services.md +49 -0
  498. package/skills/unity-cli/references/installation-projects.md +47 -0
  499. package/skills/unity-editor/SKILL.md +50 -0
  500. package/skills/unity-editor/agents/openai.yaml +7 -0
  501. package/skills/unity-editor/references/authoring.md +7 -0
  502. package/skills/unity-editor/references/build-and-tests.md +11 -0
  503. package/skills/unity-editor/references/code.md +7 -0
  504. package/skills/unity-editor/references/diagnostics.md +7 -0
  505. package/skills/unity-editor/references/physics.md +7 -0
  506. package/skills/unity-editor/references/prompts.md +7 -0
  507. package/skills/unity-editor/references/resources.md +7 -0
  508. package/skills/unity-editor/references/visuals.md +7 -0
  509. package/skills/unity-editor/scripts/tool-info.mjs +37 -0
  510. package/skills/unity-editor/scripts/uco.mjs +27 -0
  511. package/vendor/nuget/.nuget-installed.json +200 -0
  512. package/vendor/nuget/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  513. package/vendor/nuget/Microsoft.Bcl.AsyncInterfaces.dll.meta +39 -0
  514. package/vendor/nuget/Microsoft.Bcl.Memory.dll +0 -0
  515. package/vendor/nuget/Microsoft.Bcl.Memory.dll.meta +33 -0
  516. package/vendor/nuget/Microsoft.Bcl.TimeProvider.dll +0 -0
  517. package/vendor/nuget/Microsoft.Bcl.TimeProvider.dll.meta +39 -0
  518. package/vendor/nuget/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  519. package/vendor/nuget/Microsoft.CodeAnalysis.CSharp.dll.meta +33 -0
  520. package/vendor/nuget/Microsoft.CodeAnalysis.dll +0 -0
  521. package/vendor/nuget/Microsoft.CodeAnalysis.dll.meta +39 -0
  522. package/vendor/nuget/Microsoft.Extensions.Caching.Abstractions.dll +0 -0
  523. package/vendor/nuget/Microsoft.Extensions.Caching.Abstractions.dll.meta +39 -0
  524. package/vendor/nuget/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  525. package/vendor/nuget/Microsoft.Extensions.Configuration.Abstractions.dll.meta +39 -0
  526. package/vendor/nuget/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  527. package/vendor/nuget/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta +39 -0
  528. package/vendor/nuget/Microsoft.Extensions.DependencyInjection.dll +0 -0
  529. package/vendor/nuget/Microsoft.Extensions.DependencyInjection.dll.meta +39 -0
  530. package/vendor/nuget/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  531. package/vendor/nuget/Microsoft.Extensions.Diagnostics.Abstractions.dll.meta +39 -0
  532. package/vendor/nuget/Microsoft.Extensions.Features.dll +0 -0
  533. package/vendor/nuget/Microsoft.Extensions.Features.dll.meta +39 -0
  534. package/vendor/nuget/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  535. package/vendor/nuget/Microsoft.Extensions.FileProviders.Abstractions.dll.meta +39 -0
  536. package/vendor/nuget/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  537. package/vendor/nuget/Microsoft.Extensions.Hosting.Abstractions.dll.meta +39 -0
  538. package/vendor/nuget/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  539. package/vendor/nuget/Microsoft.Extensions.Logging.Abstractions.dll.meta +39 -0
  540. package/vendor/nuget/Microsoft.Extensions.Logging.dll +0 -0
  541. package/vendor/nuget/Microsoft.Extensions.Logging.dll.meta +39 -0
  542. package/vendor/nuget/Microsoft.Extensions.Options.dll +0 -0
  543. package/vendor/nuget/Microsoft.Extensions.Options.dll.meta +39 -0
  544. package/vendor/nuget/Microsoft.Extensions.Primitives.dll +0 -0
  545. package/vendor/nuget/Microsoft.Extensions.Primitives.dll.meta +39 -0
  546. package/vendor/nuget/R3.dll +0 -0
  547. package/vendor/nuget/R3.dll.meta +39 -0
  548. package/vendor/nuget/ReflectorNet.dll +0 -0
  549. package/vendor/nuget/ReflectorNet.dll.meta +39 -0
  550. package/vendor/nuget/System.Buffers.dll +0 -0
  551. package/vendor/nuget/System.Buffers.dll.meta +39 -0
  552. package/vendor/nuget/System.Collections.Immutable.dll +0 -0
  553. package/vendor/nuget/System.Collections.Immutable.dll.meta +39 -0
  554. package/vendor/nuget/System.ComponentModel.Annotations.dll +0 -0
  555. package/vendor/nuget/System.ComponentModel.Annotations.dll.meta +39 -0
  556. package/vendor/nuget/System.Diagnostics.DiagnosticSource.dll +0 -0
  557. package/vendor/nuget/System.Diagnostics.DiagnosticSource.dll.meta +39 -0
  558. package/vendor/nuget/System.IO.Pipelines.dll +0 -0
  559. package/vendor/nuget/System.IO.Pipelines.dll.meta +39 -0
  560. package/vendor/nuget/System.Memory.dll +0 -0
  561. package/vendor/nuget/System.Memory.dll.meta +39 -0
  562. package/vendor/nuget/System.Numerics.Vectors.dll +0 -0
  563. package/vendor/nuget/System.Numerics.Vectors.dll.meta +39 -0
  564. package/vendor/nuget/System.Reflection.Metadata.dll +0 -0
  565. package/vendor/nuget/System.Reflection.Metadata.dll.meta +39 -0
  566. package/vendor/nuget/System.Runtime.CompilerServices.Unsafe.dll +0 -0
  567. package/vendor/nuget/System.Runtime.CompilerServices.Unsafe.dll.meta +39 -0
  568. package/vendor/nuget/System.Text.Encoding.CodePages.dll +0 -0
  569. package/vendor/nuget/System.Text.Encoding.CodePages.dll.meta +39 -0
  570. package/vendor/nuget/System.Text.Encodings.Web.dll +0 -0
  571. package/vendor/nuget/System.Text.Encodings.Web.dll.meta +39 -0
  572. package/vendor/nuget/System.Text.Json.dll +0 -0
  573. package/vendor/nuget/System.Text.Json.dll.meta +39 -0
  574. package/vendor/nuget/System.Threading.Channels.dll +0 -0
  575. package/vendor/nuget/System.Threading.Channels.dll.meta +39 -0
  576. package/vendor/nuget/System.Threading.Tasks.Extensions.dll +0 -0
  577. package/vendor/nuget/System.Threading.Tasks.Extensions.dll.meta +39 -0
  578. package/vendor/nuget/Uco.Framework.Common.dll +0 -0
  579. package/vendor/nuget/Uco.Framework.Common.dll.meta +39 -0
  580. package/vendor/nuget/Uco.Framework.dll +0 -0
  581. package/vendor/nuget/Uco.Framework.dll.meta +39 -0
  582. package/vendor/plugin/com.atelierai.unity.copilot/CHANGELOG.md +16 -0
  583. package/vendor/plugin/com.atelierai.unity.copilot/CHANGELOG.md.meta +7 -0
  584. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/AssemblyInfo.cs +13 -0
  585. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/AssemblyInfo.cs.meta +11 -0
  586. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetCache.cs +43 -0
  587. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetCache.cs.meta +11 -0
  588. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetConfig.cs +132 -0
  589. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetConfig.cs.meta +11 -0
  590. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDependencyResolver.cs +237 -0
  591. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDependencyResolver.cs.meta +11 -0
  592. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDownloader.cs +82 -0
  593. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetDownloader.cs.meta +11 -0
  594. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetExtractor.cs +414 -0
  595. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetExtractor.cs.meta +11 -0
  596. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetInstallManifest.cs +546 -0
  597. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetInstallManifest.cs.meta +11 -0
  598. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLegacyMigration.cs +265 -0
  599. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLegacyMigration.cs.meta +11 -0
  600. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLongPathPreflight.cs +163 -0
  601. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetLongPathPreflight.cs.meta +11 -0
  602. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackage.cs +59 -0
  603. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackage.cs.meta +11 -0
  604. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageInstaller.cs +542 -0
  605. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageInstaller.cs.meta +11 -0
  606. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageRestorer.cs +267 -0
  607. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPackageRestorer.cs.meta +11 -0
  608. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPluginConfigurator.cs +241 -0
  609. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetPluginConfigurator.cs.meta +11 -0
  610. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetResolverMenu.cs +60 -0
  611. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/NuGetResolverMenu.cs.meta +11 -0
  612. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/RecompileGate.cs +168 -0
  613. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/RecompileGate.cs.meta +11 -0
  614. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/UnityAssemblyResolver.cs +110 -0
  615. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/UnityAssemblyResolver.cs.meta +11 -0
  616. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/com.AtelierAI.Unity.Copilot.DependencyResolver.asmdef +16 -0
  617. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver/com.AtelierAI.Unity.Copilot.DependencyResolver.asmdef.meta +7 -0
  618. package/vendor/plugin/com.atelierai.unity.copilot/Editor/DependencyResolver.meta +8 -0
  619. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/.gitignore +2 -0
  620. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/antigravity-64.png +0 -0
  621. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/antigravity-64.png.meta +127 -0
  622. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/claude-64.png +0 -0
  623. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/claude-64.png.meta +127 -0
  624. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cline-64.png +0 -0
  625. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cline-64.png.meta +191 -0
  626. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/codex-64.png +0 -0
  627. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/codex-64.png.meta +127 -0
  628. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cursor-64.png +0 -0
  629. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/cursor-64.png.meta +127 -0
  630. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/gemini-64.png +0 -0
  631. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/gemini-64.png.meta +127 -0
  632. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/github-copilot-64.png +0 -0
  633. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/github-copilot-64.png.meta +127 -0
  634. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/kilo-code-64.png +0 -0
  635. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/kilo-code-64.png.meta +153 -0
  636. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/open-code-64.png +0 -0
  637. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/open-code-64.png.meta +127 -0
  638. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/rider-64.png +0 -0
  639. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/rider-64.png.meta +140 -0
  640. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/unity-64.png +0 -0
  641. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/unity-64.png.meta +127 -0
  642. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/visual-studio-64.png +0 -0
  643. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/visual-studio-64.png.meta +127 -0
  644. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/vs-code-64.png +0 -0
  645. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents/vs-code-64.png.meta +127 -0
  646. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/ai-agents.meta +8 -0
  647. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/discord_icon.png +0 -0
  648. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/discord_icon.png.meta +114 -0
  649. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/github_icon.png +0 -0
  650. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/github_icon.png.meta +114 -0
  651. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/icon.png +0 -0
  652. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/icon.png.meta +140 -0
  653. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo.png +0 -0
  654. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo.png.meta +140 -0
  655. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_305.png +0 -0
  656. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_305.png.meta +114 -0
  657. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_512.png +0 -0
  658. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_512.png.meta +140 -0
  659. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_script_icon.png +0 -0
  660. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_script_icon.png.meta +140 -0
  661. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_window_icon.png +0 -0
  662. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/logo_window_icon.png.meta +140 -0
  663. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/star_icon.png +0 -0
  664. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos/star_icon.png.meta +114 -0
  665. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Gizmos.meta +8 -0
  666. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/.gitignore +2 -0
  667. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AnimationTimeline.cs +77 -0
  668. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AnimationTimeline.cs.meta +11 -0
  669. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AssetManagement.cs +77 -0
  670. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/AssetManagement.cs.meta +11 -0
  671. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/DebuggingTesting.cs +77 -0
  672. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/DebuggingTesting.cs.meta +11 -0
  673. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/GameObjectComponent.cs +77 -0
  674. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/GameObjectComponent.cs.meta +11 -0
  675. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/SceneManagement.cs +63 -0
  676. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/SceneManagement.cs.meta +11 -0
  677. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/ScriptingCode.cs +77 -0
  678. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt/ScriptingCode.cs.meta +11 -0
  679. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Prompt.meta +8 -0
  680. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorState.cs +195 -0
  681. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorState.cs.meta +11 -0
  682. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorWindows.cs +205 -0
  683. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/EditorWindows.cs.meta +11 -0
  684. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/GameObject.Hierarchy.cs +78 -0
  685. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/GameObject.Hierarchy.cs.meta +11 -0
  686. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/MenuItems.cs +247 -0
  687. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/MenuItems.cs.meta +11 -0
  688. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectInfo.cs +141 -0
  689. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectInfo.cs.meta +11 -0
  690. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectLayers.cs +116 -0
  691. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectLayers.cs.meta +11 -0
  692. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectTags.cs +150 -0
  693. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ProjectTags.cs.meta +11 -0
  694. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ToolGroups.cs +153 -0
  695. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/ToolGroups.cs.meta +11 -0
  696. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/UnityInstances.cs +67 -0
  697. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource/UnityInstances.cs.meta +11 -0
  698. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Resource.meta +8 -0
  699. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Ping.cs +47 -0
  700. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Ping.cs.meta +11 -0
  701. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.SkillBody.cs +155 -0
  702. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.SkillBody.cs.meta +11 -0
  703. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.cs +268 -0
  704. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.Create.cs.meta +11 -0
  705. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.cs +20 -0
  706. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool/Skills.cs.meta +11 -0
  707. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/SystemTool.meta +8 -0
  708. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Copy.cs +96 -0
  709. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Copy.cs.meta +11 -0
  710. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.CreateFolders.cs +133 -0
  711. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.CreateFolders.cs.meta +11 -0
  712. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Delete.cs +97 -0
  713. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Delete.cs.meta +11 -0
  714. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Find.cs +95 -0
  715. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Find.cs.meta +11 -0
  716. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.FindBuiltIn.cs +140 -0
  717. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.FindBuiltIn.cs.meta +11 -0
  718. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.GetData.cs +119 -0
  719. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.GetData.cs.meta +11 -0
  720. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.Create.cs +90 -0
  721. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.Create.cs.meta +11 -0
  722. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.cs +23 -0
  723. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Material.cs.meta +11 -0
  724. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.cs +148 -0
  725. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.cs.meta +11 -0
  726. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.pre-Unity.6.5.cs +141 -0
  727. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Modify.pre-Unity.6.5.cs.meta +11 -0
  728. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Move.cs +89 -0
  729. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Move.cs.meta +11 -0
  730. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Close.cs +79 -0
  731. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Close.cs.meta +11 -0
  732. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Create.cs +154 -0
  733. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Create.cs.meta +11 -0
  734. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Instantiate.cs +95 -0
  735. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Instantiate.cs.meta +11 -0
  736. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Open.cs +80 -0
  737. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Open.cs.meta +11 -0
  738. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Save.cs +66 -0
  739. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.Save.cs.meta +11 -0
  740. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.cs +40 -0
  741. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Prefab.cs.meta +11 -0
  742. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Refresh.cs +165 -0
  743. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Refresh.cs.meta +11 -0
  744. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.GetData.cs +263 -0
  745. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.GetData.cs.meta +11 -0
  746. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.ListAll.cs +50 -0
  747. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.ListAll.cs.meta +11 -0
  748. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.cs +20 -0
  749. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.Shader.cs.meta +11 -0
  750. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.cs +77 -0
  751. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Assets.cs.meta +11 -0
  752. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.Execute.cs +870 -0
  753. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.Execute.cs.meta +11 -0
  754. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.cs +152 -0
  755. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Batch.cs.meta +11 -0
  756. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobCancel.cs +25 -0
  757. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobCancel.cs.meta +11 -0
  758. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobGet.cs +58 -0
  759. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobGet.cs.meta +11 -0
  760. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobList.cs +54 -0
  761. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.JobList.cs.meta +11 -0
  762. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.Player.cs +192 -0
  763. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.Player.cs.meta +11 -0
  764. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneAdd.cs +103 -0
  765. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneAdd.cs.meta +11 -0
  766. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneList.cs +55 -0
  767. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneList.cs.meta +11 -0
  768. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneRemove.cs +73 -0
  769. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SceneRemove.cs.meta +11 -0
  770. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SwitchPlatform.cs +98 -0
  771. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.SwitchPlatform.cs.meta +11 -0
  772. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.cs +451 -0
  773. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Build.cs.meta +11 -0
  774. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.Blend.cs +137 -0
  775. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.Blend.cs.meta +11 -0
  776. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamConfigure.cs +252 -0
  777. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamConfigure.cs.meta +11 -0
  778. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamPriority.cs +117 -0
  779. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Cinemachine.VcamPriority.cs.meta +11 -0
  780. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Configure.cs +161 -0
  781. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.Configure.cs.meta +11 -0
  782. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.GetData.cs +89 -0
  783. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.GetData.cs.meta +11 -0
  784. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.ListAll.cs +81 -0
  785. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.ListAll.cs.meta +11 -0
  786. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.cs +264 -0
  787. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Camera.cs.meta +11 -0
  788. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.ClearLogs.cs +132 -0
  789. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.ClearLogs.cs.meta +11 -0
  790. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.GetLogs.cs +96 -0
  791. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.GetLogs.cs.meta +11 -0
  792. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.cs +28 -0
  793. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Console.cs.meta +11 -0
  794. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/AddComponentResponse.cs +36 -0
  795. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/AddComponentResponse.cs.meta +11 -0
  796. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ComponentListResult.cs +39 -0
  797. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ComponentListResult.cs.meta +11 -0
  798. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CopyAssetsResponse.cs +25 -0
  799. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CopyAssetsResponse.cs.meta +11 -0
  800. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderInput.cs +29 -0
  801. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderInput.cs.meta +11 -0
  802. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderResponse.cs +29 -0
  803. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/CreateFolderResponse.cs.meta +11 -0
  804. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DeleteAssetsResponse.cs +29 -0
  805. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DeleteAssetsResponse.cs.meta +11 -0
  806. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyComponentsResponse.cs +27 -0
  807. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyComponentsResponse.cs.meta +11 -0
  808. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.cs +35 -0
  809. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.cs.meta +11 -0
  810. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.pre-Unity.6.5.cs +35 -0
  811. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/DestroyGameObjectResult.pre-Unity.6.5.cs.meta +11 -0
  812. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/EditorStatsData.cs +104 -0
  813. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/EditorStatsData.cs.meta +11 -0
  814. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.cs +47 -0
  815. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.cs.meta +11 -0
  816. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.pre-Unity.6.5.cs +47 -0
  817. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/GetComponentResponse.pre-Unity.6.5.cs.meta +11 -0
  818. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyComponentResponse.cs +38 -0
  819. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyComponentResponse.cs.meta +11 -0
  820. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyObjectResponse.cs +45 -0
  821. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ModifyObjectResponse.cs.meta +11 -0
  822. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/MoveAssetsResponse.cs +29 -0
  823. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/MoveAssetsResponse.cs.meta +11 -0
  824. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageData.cs +56 -0
  825. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageData.cs.meta +11 -0
  826. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageSearchResult.cs +46 -0
  827. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PackageSearchResult.cs.meta +11 -0
  828. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PassData.cs +33 -0
  829. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/PassData.cs.meta +11 -0
  830. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ScriptExecuteResult.cs +44 -0
  831. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ScriptExecuteResult.cs.meta +11 -0
  832. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.cs +67 -0
  833. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.cs.meta +11 -0
  834. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.pre-Unity.6.5.cs +69 -0
  835. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SelectionData.pre-Unity.6.5.cs.meta +11 -0
  836. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderData.cs +61 -0
  837. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderData.cs.meta +11 -0
  838. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderMessageData.cs +36 -0
  839. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderMessageData.cs.meta +11 -0
  840. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderPropertyData.cs +51 -0
  841. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ShaderPropertyData.cs.meta +11 -0
  842. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SubshaderData.cs +33 -0
  843. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/SubshaderData.cs.meta +11 -0
  844. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInfoData.cs +37 -0
  845. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInfoData.cs.meta +11 -0
  846. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInputData.cs +33 -0
  847. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolInputData.cs.meta +11 -0
  848. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleInput.cs +30 -0
  849. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleInput.cs.meta +11 -0
  850. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleResult.cs +30 -0
  851. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/ToolToggleResult.cs.meta +11 -0
  852. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/UnloadSceneResult.cs +29 -0
  853. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data/UnloadSceneResult.cs.meta +11 -0
  854. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Data.meta +8 -0
  855. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetManual.cs +116 -0
  856. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetManual.cs.meta +11 -0
  857. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetPackage.cs +100 -0
  858. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetPackage.cs.meta +11 -0
  859. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetScriptReference.cs +163 -0
  860. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.GetScriptReference.cs.meta +11 -0
  861. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HtmlParser.cs +519 -0
  862. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HtmlParser.cs.meta +11 -0
  863. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HttpFetcher.cs +139 -0
  864. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.HttpFetcher.cs.meta +11 -0
  865. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.Lookup.cs +209 -0
  866. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.Lookup.cs.meta +11 -0
  867. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.cs +158 -0
  868. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Docs.cs.meta +11 -0
  869. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.GetState.cs +102 -0
  870. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.GetState.cs.meta +11 -0
  871. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.SetState.cs +70 -0
  872. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Application.SetState.cs.meta +11 -0
  873. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.ExecuteMenuItem.cs +149 -0
  874. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.ExecuteMenuItem.cs.meta +11 -0
  875. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.cs +82 -0
  876. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.cs.meta +11 -0
  877. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.pre-Unity.6.5.cs +90 -0
  878. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Get.pre-Unity.6.5.cs.meta +11 -0
  879. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.cs +54 -0
  880. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.cs.meta +11 -0
  881. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.pre-Unity.6.5.cs +54 -0
  882. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.Set.pre-Unity.6.5.cs.meta +11 -0
  883. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.cs +74 -0
  884. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.cs.meta +11 -0
  885. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.pre-Unity.6.5.cs +73 -0
  886. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.Selection.pre-Unity.6.5.cs.meta +11 -0
  887. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.cs +29 -0
  888. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Editor.cs.meta +11 -0
  889. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Add.cs +142 -0
  890. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Add.cs.meta +11 -0
  891. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Destroy.cs +116 -0
  892. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Destroy.cs.meta +11 -0
  893. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.cs +168 -0
  894. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.cs.meta +11 -0
  895. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.pre-Unity.6.5.cs +168 -0
  896. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Get.pre-Unity.6.5.cs.meta +11 -0
  897. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.ListAll.cs +98 -0
  898. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.ListAll.cs.meta +11 -0
  899. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Modify.cs +200 -0
  900. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Component.Modify.cs.meta +11 -0
  901. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Create.cs +123 -0
  902. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Create.cs.meta +11 -0
  903. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.cs +90 -0
  904. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.cs.meta +11 -0
  905. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.pre-Unity.6.5.cs +90 -0
  906. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Destroy.pre-Unity.6.5.cs.meta +11 -0
  907. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Duplicate.cs +111 -0
  908. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Duplicate.cs.meta +11 -0
  909. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Find.cs +135 -0
  910. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Find.cs.meta +11 -0
  911. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Modify.cs +202 -0
  912. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.Modify.cs.meta +11 -0
  913. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.SetParent.cs +118 -0
  914. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.SetParent.cs.meta +11 -0
  915. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.cs +116 -0
  916. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.cs.meta +11 -0
  917. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.pre-Unity.6.5.cs +116 -0
  918. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/GameObject.pre-Unity.6.5.cs.meta +11 -0
  919. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.LightBake.cs +366 -0
  920. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.LightBake.cs.meta +11 -0
  921. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.RenderingStats.cs +166 -0
  922. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.RenderingStats.cs.meta +11 -0
  923. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpAsset.cs +489 -0
  924. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpAsset.cs.meta +11 -0
  925. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpRendererFeature.cs +725 -0
  926. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.UrpRendererFeature.cs.meta +11 -0
  927. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.AddOverride.cs +156 -0
  928. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.AddOverride.cs.meta +11 -0
  929. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.Create.cs +221 -0
  930. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.Create.cs.meta +11 -0
  931. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.List.cs +177 -0
  932. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.List.cs.meta +11 -0
  933. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.RemoveOverride.cs +129 -0
  934. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.RemoveOverride.cs.meta +11 -0
  935. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.SetField.cs +261 -0
  936. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.Volume.SetField.cs.meta +11 -0
  937. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.cs +778 -0
  938. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Graphics.cs.meta +11 -0
  939. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.GetCurrent.cs +70 -0
  940. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.GetCurrent.cs.meta +11 -0
  941. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.ListAll.cs +72 -0
  942. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.ListAll.cs.meta +11 -0
  943. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.cs +50 -0
  944. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Instance.cs.meta +11 -0
  945. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.GetData.cs +109 -0
  946. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.GetData.cs.meta +11 -0
  947. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.Modify.cs +155 -0
  948. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.Modify.cs.meta +11 -0
  949. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.cs +24 -0
  950. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Object.cs.meta +11 -0
  951. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Operations.cs +37 -0
  952. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Operations.cs.meta +11 -0
  953. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Add.cs +111 -0
  954. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Add.cs.meta +11 -0
  955. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.List.cs +135 -0
  956. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.List.cs.meta +11 -0
  957. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Remove.cs +133 -0
  958. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Remove.cs.meta +11 -0
  959. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Search.cs +198 -0
  960. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.Search.cs.meta +11 -0
  961. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.cs +60 -0
  962. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Package.cs.meta +11 -0
  963. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/PathReadHelper.cs +106 -0
  964. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/PathReadHelper.cs.meta +11 -0
  965. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.CollisionMatrix.cs +224 -0
  966. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.CollisionMatrix.cs.meta +11 -0
  967. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Force.cs +276 -0
  968. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Force.cs.meta +11 -0
  969. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Add.cs +360 -0
  970. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Add.cs.meta +11 -0
  971. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Configure.cs +701 -0
  972. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Configure.cs.meta +11 -0
  973. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Remove.cs +182 -0
  974. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Joint.Remove.cs.meta +11 -0
  975. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Linecast.cs +79 -0
  976. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Linecast.cs.meta +11 -0
  977. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Material.cs +495 -0
  978. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Material.cs.meta +11 -0
  979. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Overlap.cs +215 -0
  980. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Overlap.cs.meta +11 -0
  981. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Raycast.cs +360 -0
  982. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Raycast.cs.meta +11 -0
  983. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Rigidbody.cs +490 -0
  984. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Rigidbody.cs.meta +11 -0
  985. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Settings.cs +378 -0
  986. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Settings.cs.meta +11 -0
  987. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Shapecast.cs +246 -0
  988. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Shapecast.cs.meta +11 -0
  989. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Simulate.cs +184 -0
  990. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Simulate.cs.meta +11 -0
  991. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Validate.cs +374 -0
  992. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.Validate.cs.meta +11 -0
  993. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.cs +339 -0
  994. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Physics.cs.meta +11 -0
  995. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Counters.cs +417 -0
  996. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Counters.cs.meta +11 -0
  997. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.FrameDebugger.cs +436 -0
  998. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.FrameDebugger.cs.meta +11 -0
  999. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Memory.cs +386 -0
  1000. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Memory.cs.meta +11 -0
  1001. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Session.cs +222 -0
  1002. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.Session.cs.meta +11 -0
  1003. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.cs +72 -0
  1004. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Profiler.cs.meta +11 -0
  1005. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodCall.cs +206 -0
  1006. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodCall.cs.meta +11 -0
  1007. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodFind.cs +112 -0
  1008. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.MethodFind.cs.meta +11 -0
  1009. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.cs +166 -0
  1010. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Reflection.cs.meta +11 -0
  1011. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Create.cs +95 -0
  1012. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Create.cs.meta +11 -0
  1013. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.GetData.cs +123 -0
  1014. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.GetData.cs.meta +11 -0
  1015. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.ListOpened.cs +49 -0
  1016. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.ListOpened.cs.meta +11 -0
  1017. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Open.cs +81 -0
  1018. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Open.cs.meta +11 -0
  1019. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Save.cs +108 -0
  1020. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Save.cs.meta +11 -0
  1021. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.SetActive.cs +92 -0
  1022. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.SetActive.cs.meta +11 -0
  1023. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Unload.cs +99 -0
  1024. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.Unload.cs.meta +11 -0
  1025. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.cs +42 -0
  1026. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Scene.cs.meta +11 -0
  1027. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Camera.cs +126 -0
  1028. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Camera.cs.meta +11 -0
  1029. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.GameView.cs +128 -0
  1030. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.GameView.cs.meta +11 -0
  1031. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Isolated.cs +733 -0
  1032. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.Isolated.cs.meta +11 -0
  1033. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.SceneView.cs +112 -0
  1034. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.SceneView.cs.meta +11 -0
  1035. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.cs +672 -0
  1036. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Screenshot.cs.meta +11 -0
  1037. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.ApplyEdits.cs +591 -0
  1038. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.ApplyEdits.cs.meta +11 -0
  1039. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.CSharpTokenizer.cs +704 -0
  1040. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.CSharpTokenizer.cs.meta +11 -0
  1041. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Delete.cs +94 -0
  1042. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Delete.cs.meta +11 -0
  1043. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Execute.cs +466 -0
  1044. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Execute.cs.meta +11 -0
  1045. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.FindInFile.cs +526 -0
  1046. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.FindInFile.cs.meta +11 -0
  1047. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.GetSha.cs +137 -0
  1048. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.GetSha.cs.meta +11 -0
  1049. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Read.cs +81 -0
  1050. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Read.cs.meta +11 -0
  1051. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.UpdateOrCreate.cs +100 -0
  1052. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.UpdateOrCreate.cs.meta +11 -0
  1053. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Validate.cs +252 -0
  1054. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.Validate.cs.meta +11 -0
  1055. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.cs +42 -0
  1056. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Script.cs.meta +11 -0
  1057. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/CombinedTestResultCollector.cs +159 -0
  1058. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/CombinedTestResultCollector.cs.meta +11 -0
  1059. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestFilterParameters.cs +51 -0
  1060. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestFilterParameters.cs.meta +11 -0
  1061. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestLogEntry.cs +69 -0
  1062. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestLogEntry.cs.meta +11 -0
  1063. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultCollector.cs +537 -0
  1064. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultCollector.cs.meta +11 -0
  1065. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultData.cs +24 -0
  1066. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultData.cs.meta +11 -0
  1067. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultStatus.cs +20 -0
  1068. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestResultStatus.cs.meta +11 -0
  1069. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunResponse.cs +41 -0
  1070. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunResponse.cs.meta +11 -0
  1071. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunStatus.cs +21 -0
  1072. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestRunStatus.cs.meta +11 -0
  1073. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestSummaryData.cs +41 -0
  1074. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests/TestSummaryData.cs.meta +11 -0
  1075. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Jobs.cs +48 -0
  1076. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Jobs.cs.meta +11 -0
  1077. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Run.cs +665 -0
  1078. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.Run.cs.meta +11 -0
  1079. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.cs +400 -0
  1080. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.cs.meta +11 -0
  1081. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tests.meta +8 -0
  1082. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateChecker.cs +99 -0
  1083. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateChecker.cs.meta +11 -0
  1084. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateGradient.cs +136 -0
  1085. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateGradient.cs.meta +11 -0
  1086. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateNoise.cs +157 -0
  1087. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateNoise.cs.meta +11 -0
  1088. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateSolid.cs +78 -0
  1089. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.CreateSolid.cs.meta +11 -0
  1090. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.Read.cs +110 -0
  1091. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.Read.cs.meta +11 -0
  1092. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.cs +255 -0
  1093. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Texture.cs.meta +11 -0
  1094. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.List.cs +207 -0
  1095. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.List.cs.meta +11 -0
  1096. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.SetEnabledState.cs +111 -0
  1097. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.SetEnabledState.cs.meta +11 -0
  1098. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.cs +76 -0
  1099. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Tool.cs.meta +11 -0
  1100. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.List.cs +94 -0
  1101. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.List.cs.meta +11 -0
  1102. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.SetEnabled.cs +92 -0
  1103. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.SetEnabled.cs.meta +11 -0
  1104. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.cs +149 -0
  1105. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.cs.meta +11 -0
  1106. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.GetJsonSchema.cs +160 -0
  1107. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.GetJsonSchema.cs.meta +11 -0
  1108. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.ListMembers.cs +243 -0
  1109. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.ListMembers.cs.meta +11 -0
  1110. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.cs +39 -0
  1111. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Type.cs.meta +11 -0
  1112. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Attach.cs +174 -0
  1113. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Attach.cs.meta +11 -0
  1114. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Detach.cs +94 -0
  1115. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Document.Detach.cs.meta +11 -0
  1116. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Element.Query.cs +276 -0
  1117. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Element.Query.cs.meta +11 -0
  1118. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Create.cs +87 -0
  1119. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Create.cs.meta +11 -0
  1120. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Modify.cs +224 -0
  1121. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Modify.cs.meta +11 -0
  1122. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Read.cs +83 -0
  1123. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uss.Read.cs.meta +11 -0
  1124. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Create.cs +88 -0
  1125. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Create.cs.meta +11 -0
  1126. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Modify.cs +398 -0
  1127. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Modify.cs.meta +11 -0
  1128. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Read.cs +84 -0
  1129. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.Uxml.Read.cs.meta +11 -0
  1130. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.cs +356 -0
  1131. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/UI.cs.meta +11 -0
  1132. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Graph.Configure.cs +377 -0
  1133. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Graph.Configure.cs.meta +11 -0
  1134. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Configure.cs +231 -0
  1135. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Configure.cs.meta +11 -0
  1136. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Control.cs +128 -0
  1137. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.Control.cs.meta +11 -0
  1138. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.GetData.cs +88 -0
  1139. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Particle.GetData.cs.meta +11 -0
  1140. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Trail.Configure.cs +140 -0
  1141. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.Trail.Configure.cs.meta +11 -0
  1142. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.cs +386 -0
  1143. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/Vfx.cs.meta +11 -0
  1144. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool.meta +8 -0
  1145. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API.meta +8 -0
  1146. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/AssemblyInfo.cs +13 -0
  1147. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/AssemblyInfo.cs.meta +11 -0
  1148. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Branding/ProductInfo.cs +63 -0
  1149. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Branding/ProductInfo.cs.meta +11 -0
  1150. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Branding.meta +8 -0
  1151. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/CopilotServerManager.cs +1044 -0
  1152. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/CopilotServerManager.cs.meta +11 -0
  1153. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.cs +103 -0
  1154. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.cs.meta +11 -0
  1155. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.pre-Unity.6.5.cs +102 -0
  1156. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions/ExtensionsSerializedMember.pre-Unity.6.5.cs.meta +11 -0
  1157. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Extensions.meta +8 -0
  1158. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthFlow.cs +133 -0
  1159. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthFlow.cs.meta +11 -0
  1160. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthService.cs +84 -0
  1161. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services/DeviceAuthService.cs.meta +11 -0
  1162. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Services.meta +8 -0
  1163. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Skills/Skill_InitialSetup.cs +197 -0
  1164. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Skills/Skill_InitialSetup.cs.meta +11 -0
  1165. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Skills.meta +8 -0
  1166. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.Editor.cs +201 -0
  1167. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.Editor.cs.meta +11 -0
  1168. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.cs +67 -0
  1169. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.cs.meta +11 -0
  1170. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/AlertPanel.cs +115 -0
  1171. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/AlertPanel.cs.meta +11 -0
  1172. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/ExtensionPanel.cs +379 -0
  1173. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components/ExtensionPanel.cs.meta +11 -0
  1174. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Components.meta +8 -0
  1175. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Controls/SegmentedControl.cs +229 -0
  1176. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Controls/SegmentedControl.cs.meta +11 -0
  1177. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Controls.meta +8 -0
  1178. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/MenuItems.cs +132 -0
  1179. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/MenuItems.cs.meta +11 -0
  1180. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/OpenWindowButton.cs +39 -0
  1181. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/OpenWindowButton.cs.meta +11 -0
  1182. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/SceneViewToolbarOverlay.cs +35 -0
  1183. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay/SceneViewToolbarOverlay.cs.meta +11 -0
  1184. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Overlay.meta +8 -0
  1185. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/UnityCopilotProjectSettingsProvider.cs +64 -0
  1186. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/UnityCopilotProjectSettingsProvider.cs.meta +11 -0
  1187. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UICopilotUtils.cs +33 -0
  1188. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UICopilotUtils.cs.meta +11 -0
  1189. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UITemplate.cs +30 -0
  1190. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils/UITemplate.cs.meta +11 -0
  1191. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Utils.meta +8 -0
  1192. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotListWindowBase.cs +393 -0
  1193. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotListWindowBase.cs.meta +11 -0
  1194. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotWindowBase.cs +113 -0
  1195. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/CopilotWindowBase.cs.meta +11 -0
  1196. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Connection.cs +409 -0
  1197. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Connection.cs.meta +11 -0
  1198. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotFeatures.cs +195 -0
  1199. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotFeatures.cs.meta +11 -0
  1200. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotServer.cs +372 -0
  1201. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotServer.cs.meta +11 -0
  1202. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CreateGUI.cs +361 -0
  1203. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CreateGUI.cs.meta +11 -0
  1204. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Extensions.cs +110 -0
  1205. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.Extensions.cs.meta +11 -0
  1206. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.cs +148 -0
  1207. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.cs.meta +14 -0
  1208. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowInitializer.cs +47 -0
  1209. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowInitializer.cs.meta +11 -0
  1210. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/NotificationPopupWindow.cs +114 -0
  1211. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/NotificationPopupWindow.cs.meta +11 -0
  1212. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/SerializationCheckWindow.cs +190 -0
  1213. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/SerializationCheckWindow.cs.meta +11 -0
  1214. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/UpdatePopupWindow.cs +252 -0
  1215. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/UpdatePopupWindow.cs.meta +11 -0
  1216. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window.meta +8 -0
  1217. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI.meta +8 -0
  1218. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Build.cs +91 -0
  1219. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Build.cs.meta +11 -0
  1220. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Config.cs +293 -0
  1221. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Config.cs.meta +11 -0
  1222. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Static.cs +299 -0
  1223. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.Static.cs.meta +11 -0
  1224. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.cs +69 -0
  1225. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UnityCopilotPluginEditor.cs.meta +11 -0
  1226. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/BuiltInAssetCache.cs +178 -0
  1227. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/BuiltInAssetCache.cs.meta +11 -0
  1228. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ConsoleDiagnosticsSettings.cs +39 -0
  1229. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ConsoleDiagnosticsSettings.cs.meta +11 -0
  1230. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorAssetLoader.cs +75 -0
  1231. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorAssetLoader.cs.meta +11 -0
  1232. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwnerRegistry.cs +721 -0
  1233. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwnerRegistry.cs.meta +11 -0
  1234. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwners.cs +176 -0
  1235. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationOwners.cs.meta +11 -0
  1236. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationRegistry.cs +854 -0
  1237. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorOperationRegistry.cs.meta +11 -0
  1238. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.cs +488 -0
  1239. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.cs.meta +11 -0
  1240. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.pre-Unity.6.5.cs +477 -0
  1241. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorSceneSandbox.pre-Unity.6.5.cs.meta +11 -0
  1242. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorToolExecutionScheduler.cs +512 -0
  1243. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorToolExecutionScheduler.cs.meta +11 -0
  1244. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorUtils.cs +31 -0
  1245. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/EditorUtils.cs.meta +11 -0
  1246. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/LinkExtractor.cs +176 -0
  1247. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/LinkExtractor.cs.meta +11 -0
  1248. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PackageUtils.cs +168 -0
  1249. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PackageUtils.cs.meta +11 -0
  1250. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PlayerPrefsValues.cs +90 -0
  1251. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PlayerPrefsValues.cs.meta +11 -0
  1252. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PrefsKeyMigration.cs +119 -0
  1253. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/PrefsKeyMigration.cs.meta +11 -0
  1254. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/SafeDefaultsGuard.cs +180 -0
  1255. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/SafeDefaultsGuard.cs.meta +11 -0
  1256. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ScriptUtils.cs +230 -0
  1257. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ScriptUtils.cs.meta +11 -0
  1258. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolGroupRegistry.cs +460 -0
  1259. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolGroupRegistry.cs.meta +11 -0
  1260. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolsManifestGenerator.cs +200 -0
  1261. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolsManifestGenerator.cs.meta +11 -0
  1262. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringAdapters.cs +1467 -0
  1263. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringAdapters.cs.meta +11 -0
  1264. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringSafetyReloadGuard.cs +65 -0
  1265. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityAuthoringSafetyReloadGuard.cs.meta +11 -0
  1266. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityBridgeHandshakeIdentity.cs +86 -0
  1267. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityBridgeHandshakeIdentity.cs.meta +11 -0
  1268. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityCopilotUpdateProjectSettings.cs +66 -0
  1269. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityCopilotUpdateProjectSettings.cs.meta +11 -0
  1270. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityInstanceRegistry.cs +351 -0
  1271. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnityInstanceRegistry.cs.meta +11 -0
  1272. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnixUtils.cs +57 -0
  1273. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UnixUtils.cs.meta +11 -0
  1274. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UpdateChecker.cs +421 -0
  1275. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/UpdateChecker.cs.meta +11 -0
  1276. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils.meta +8 -0
  1277. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/com.AtelierAI.Unity.Copilot.Editor.asmdef +32 -0
  1278. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/com.AtelierAI.Unity.Copilot.Editor.asmdef.meta +7 -0
  1279. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts.meta +8 -0
  1280. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotPromptsWindow.uss +11 -0
  1281. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotPromptsWindow.uss.meta +11 -0
  1282. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotResourcesWindow.uss +16 -0
  1283. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotResourcesWindow.uss.meta +11 -0
  1284. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotToolsWindow.uss +36 -0
  1285. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotToolsWindow.uss.meta +11 -0
  1286. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/MainWindow.uss +184 -0
  1287. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/MainWindow.uss.meta +11 -0
  1288. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/NotificationPopupWindow.uss +8 -0
  1289. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/NotificationPopupWindow.uss.meta +11 -0
  1290. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/SerializationCheckWindow.uss +47 -0
  1291. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/SerializationCheckWindow.uss.meta +11 -0
  1292. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/UpdatePopupWindow.uss +10 -0
  1293. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/UpdatePopupWindow.uss.meta +11 -0
  1294. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_animations.uss +26 -0
  1295. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_animations.uss.meta +11 -0
  1296. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_base.uss +108 -0
  1297. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_base.uss.meta +11 -0
  1298. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_buttons.uss +246 -0
  1299. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_buttons.uss.meta +11 -0
  1300. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_foldout.uss +51 -0
  1301. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_foldout.uss.meta +11 -0
  1302. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_forms.uss +207 -0
  1303. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_forms.uss.meta +11 -0
  1304. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_list-view.uss +77 -0
  1305. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_list-view.uss.meta +11 -0
  1306. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_mcp-list-window.uss +18 -0
  1307. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_mcp-list-window.uss.meta +11 -0
  1308. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_segmented-control.uss +52 -0
  1309. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_segmented-control.uss.meta +11 -0
  1310. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_status-indicators.uss +56 -0
  1311. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_status-indicators.uss.meta +11 -0
  1312. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_toggle-switch.uss +47 -0
  1313. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_toggle-switch.uss.meta +11 -0
  1314. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_typography.uss +159 -0
  1315. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_typography.uss.meta +11 -0
  1316. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common.meta +8 -0
  1317. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss.meta +8 -0
  1318. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ClientConfigPanel.uxml +7 -0
  1319. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ClientConfigPanel.uxml.meta +10 -0
  1320. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotPromptsWindow.uxml +18 -0
  1321. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotPromptsWindow.uxml.meta +10 -0
  1322. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotResourcesWindow.uxml +18 -0
  1323. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotResourcesWindow.uxml.meta +10 -0
  1324. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotToolsWindow.uxml +18 -0
  1325. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotToolsWindow.uxml.meta +10 -0
  1326. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ExtensionItem.uxml +9 -0
  1327. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ExtensionItem.uxml.meta +10 -0
  1328. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/MainWindow.uxml +115 -0
  1329. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/MainWindow.uxml.meta +10 -0
  1330. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/NotificationPopupWindow.uxml +9 -0
  1331. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/NotificationPopupWindow.uxml.meta +10 -0
  1332. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/PromptItem.uxml +22 -0
  1333. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/PromptItem.uxml.meta +10 -0
  1334. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ResourceItem.uxml +18 -0
  1335. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ResourceItem.uxml.meta +10 -0
  1336. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/SerializationCheckWindow.uxml +25 -0
  1337. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/SerializationCheckWindow.uxml.meta +10 -0
  1338. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ToolItem.uxml +27 -0
  1339. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/ToolItem.uxml.meta +10 -0
  1340. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/UpdatePopupWindow.uxml +23 -0
  1341. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/UpdatePopupWindow.uxml.meta +10 -0
  1342. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/elements/TemplateAlertPanel.uxml +8 -0
  1343. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/elements/TemplateAlertPanel.uxml.meta +10 -0
  1344. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/elements.meta +8 -0
  1345. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml.meta +8 -0
  1346. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI.meta +8 -0
  1347. package/vendor/plugin/com.atelierai.unity.copilot/Editor.meta +8 -0
  1348. package/vendor/plugin/com.atelierai.unity.copilot/LICENSE +177 -0
  1349. package/vendor/plugin/com.atelierai.unity.copilot/LICENSE.meta +7 -0
  1350. package/vendor/plugin/com.atelierai.unity.copilot/README.md +88 -0
  1351. package/vendor/plugin/com.atelierai.unity.copilot/README.md.meta +7 -0
  1352. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/.gitignore +2 -0
  1353. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Attributes/ToolGroupAttribute.cs +87 -0
  1354. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Attributes/ToolGroupAttribute.cs.meta +11 -0
  1355. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Attributes.meta +8 -0
  1356. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsConverter.cs +108 -0
  1357. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsConverter.cs.meta +11 -0
  1358. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsIntConverter.cs +156 -0
  1359. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/BoundsIntConverter.cs.meta +11 -0
  1360. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Color32Converter.cs +113 -0
  1361. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Color32Converter.cs.meta +11 -0
  1362. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/ColorConverter.cs +112 -0
  1363. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/ColorConverter.cs.meta +11 -0
  1364. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/EntityIdConverter.cs +120 -0
  1365. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/EntityIdConverter.cs.meta +11 -0
  1366. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientAlphaKeyConverter.cs +93 -0
  1367. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientAlphaKeyConverter.cs.meta +11 -0
  1368. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientColorKeyConverter.cs +92 -0
  1369. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientColorKeyConverter.cs.meta +11 -0
  1370. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientConverter.cs +140 -0
  1371. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/GradientConverter.cs.meta +11 -0
  1372. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/JsonFloatHelper.cs +116 -0
  1373. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/JsonFloatHelper.cs.meta +11 -0
  1374. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Matrix4x4Converter.cs +134 -0
  1375. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Matrix4x4Converter.cs.meta +11 -0
  1376. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/QuaternionConverter.cs +92 -0
  1377. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/QuaternionConverter.cs.meta +11 -0
  1378. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectConverter.cs +92 -0
  1379. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectConverter.cs.meta +11 -0
  1380. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectIntConverter.cs +93 -0
  1381. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/RectIntConverter.cs.meta +11 -0
  1382. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2Converter.cs +82 -0
  1383. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2Converter.cs.meta +11 -0
  1384. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2IntConverter.cs +83 -0
  1385. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector2IntConverter.cs.meta +11 -0
  1386. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3Converter.cs +46 -0
  1387. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3Converter.cs.meta +11 -0
  1388. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3IntConverter.cs +88 -0
  1389. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector3IntConverter.cs.meta +11 -0
  1390. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector4Converter.cs +92 -0
  1391. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures/Vector4Converter.cs.meta +11 -0
  1392. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Structures.meta +8 -0
  1393. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.cs +106 -0
  1394. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.cs.meta +11 -0
  1395. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.pre-Unity.6.5.cs +103 -0
  1396. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/AssetObjectRefConverter.pre-Unity.6.5.cs.meta +11 -0
  1397. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.cs +95 -0
  1398. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.cs.meta +11 -0
  1399. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.pre-Unity.6.5.cs +91 -0
  1400. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ComponentRefConverter.pre-Unity.6.5.cs.meta +11 -0
  1401. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.cs +115 -0
  1402. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.cs.meta +11 -0
  1403. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.pre-Unity.6.5.cs +111 -0
  1404. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/GameObjectRefConverter.pre-Unity.6.5.cs.meta +11 -0
  1405. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.cs +82 -0
  1406. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.cs.meta +11 -0
  1407. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.pre-Unity.6.5.cs +79 -0
  1408. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/ObjectRefConverter.pre-Unity.6.5.cs.meta +11 -0
  1409. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.cs +96 -0
  1410. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.cs.meta +11 -0
  1411. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.pre-Unity.6.5.cs +93 -0
  1412. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types/SceneRefConverter.pre-Unity.6.5.cs.meta +11 -0
  1413. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json/Types.meta +8 -0
  1414. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Json.meta +8 -0
  1415. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.cs +82 -0
  1416. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.cs.meta +11 -0
  1417. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.pre-Unity.6.5.cs +87 -0
  1418. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Editor.pre-Unity.6.5.cs.meta +11 -0
  1419. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Runtime.cs +52 -0
  1420. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.Runtime.cs.meta +11 -0
  1421. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.cs +20 -0
  1422. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Sprite_ReflectionConverter.cs.meta +11 -0
  1423. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.cs +83 -0
  1424. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.cs.meta +11 -0
  1425. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.pre-Unity.6.5.cs +87 -0
  1426. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Editor.pre-Unity.6.5.cs.meta +11 -0
  1427. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Runtime.cs +52 -0
  1428. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.Runtime.cs.meta +11 -0
  1429. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.cs +20 -0
  1430. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl/UnityEngine_Texture_ReflectionConverter.cs.meta +11 -0
  1431. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/Impl.meta +8 -0
  1432. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.cs +131 -0
  1433. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.cs.meta +11 -0
  1434. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.pre-Unity.6.5.cs +135 -0
  1435. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Editor.pre-Unity.6.5.cs.meta +11 -0
  1436. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Runtime.cs +70 -0
  1437. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.Runtime.cs.meta +11 -0
  1438. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.cs +19 -0
  1439. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_Asset_ReflectionConverter.cs.meta +11 -0
  1440. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_TextAsset_ReflectionConverter.cs +27 -0
  1441. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset/UnityEngine_TextAsset_ReflectionConverter.cs.meta +11 -0
  1442. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Asset.meta +8 -0
  1443. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityArrayReflectionConverter.cs +33 -0
  1444. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityArrayReflectionConverter.cs.meta +11 -0
  1445. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityGenericReflectionConverter.cs +279 -0
  1446. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base/UnityGenericReflectionConverter.cs.meta +11 -0
  1447. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Base.meta +8 -0
  1448. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Collider_ReflectionConverter.cs +34 -0
  1449. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Collider_ReflectionConverter.cs.meta +11 -0
  1450. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Component_ReflectionConverter.cs +19 -0
  1451. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Component_ReflectionConverter.cs.meta +11 -0
  1452. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_MeshFilter_ReflectionConverter.cs +26 -0
  1453. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_MeshFilter_ReflectionConverter.cs.meta +11 -0
  1454. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Renderer_ReflectionConverter.cs +27 -0
  1455. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Renderer_ReflectionConverter.cs.meta +11 -0
  1456. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Transform_ReflectionConverter.cs +27 -0
  1457. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl/UnityEngine_Transform_ReflectionConverter.cs.meta +11 -0
  1458. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/Impl.meta +8 -0
  1459. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/UnityEngine_GenericComponent_ReflectionConverter.cs +54 -0
  1460. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component/UnityEngine_GenericComponent_ReflectionConverter.cs.meta +11 -0
  1461. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Component.meta +8 -0
  1462. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngineDataStructReflectionConverters.cs +36 -0
  1463. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngineDataStructReflectionConverters.cs.meta +11 -0
  1464. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_EntityId_ReflectionConverter.cs +66 -0
  1465. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_EntityId_ReflectionConverter.cs.meta +11 -0
  1466. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_Scene_ReflectionConverter.cs +50 -0
  1467. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityEngine_Scene_ReflectionConverter.cs.meta +11 -0
  1468. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityGenericNoPropertiesReflectionConverter.cs +31 -0
  1469. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityGenericNoPropertiesReflectionConverter.cs.meta +11 -0
  1470. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityStructReflectionConverter.cs +19 -0
  1471. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct/UnityStructReflectionConverter.cs.meta +11 -0
  1472. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/Struct.meta +8 -0
  1473. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.cs +233 -0
  1474. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.cs.meta +11 -0
  1475. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.pre-Unity.6.5.cs +231 -0
  1476. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_GameObject_ReflectionConverter.pre-Unity.6.5.cs.meta +11 -0
  1477. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Gradient_ReflectionConverter.cs +65 -0
  1478. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Gradient_ReflectionConverter.cs.meta +11 -0
  1479. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Editor.cs +162 -0
  1480. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Editor.cs.meta +11 -0
  1481. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Runtime.cs +130 -0
  1482. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.Runtime.cs.meta +11 -0
  1483. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.cs +392 -0
  1484. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.cs.meta +11 -0
  1485. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.pre-Unity.6.5.cs +392 -0
  1486. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Material_ReflectionConverter.pre-Unity.6.5.cs.meta +11 -0
  1487. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Deserialize.cs +83 -0
  1488. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Deserialize.cs.meta +11 -0
  1489. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Modify.cs +223 -0
  1490. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Modify.cs.meta +11 -0
  1491. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Serialize.cs +88 -0
  1492. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.Serialize.cs.meta +11 -0
  1493. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.cs +38 -0
  1494. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection/UnityEngine_Object_ReflectionConverter.cs.meta +11 -0
  1495. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter/Reflection.meta +8 -0
  1496. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Converter.meta +8 -0
  1497. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.cs +148 -0
  1498. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.cs.meta +11 -0
  1499. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.pre-Unity.6.5.cs +148 -0
  1500. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/AssetObjectRef.pre-Unity.6.5.cs.meta +11 -0
  1501. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentData.cs +57 -0
  1502. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentData.cs.meta +11 -0
  1503. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.cs +52 -0
  1504. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.cs.meta +11 -0
  1505. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.pre-Unity.6.5.cs +52 -0
  1506. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentDataShallow.pre-Unity.6.5.cs.meta +11 -0
  1507. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.cs +93 -0
  1508. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.cs.meta +11 -0
  1509. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.pre-Unity.6.5.cs +93 -0
  1510. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRef.pre-Unity.6.5.cs.meta +11 -0
  1511. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRefList.cs +42 -0
  1512. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ComponentRefList.cs.meta +11 -0
  1513. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRef.cs +47 -0
  1514. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRef.cs.meta +11 -0
  1515. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRefList.cs +43 -0
  1516. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectComponentsRefList.cs.meta +11 -0
  1517. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectData.cs +100 -0
  1518. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectData.cs.meta +11 -0
  1519. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.cs +110 -0
  1520. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.cs.meta +11 -0
  1521. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.pre-Unity.6.5.cs +110 -0
  1522. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectMetadata.pre-Unity.6.5.cs.meta +11 -0
  1523. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.cs +103 -0
  1524. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.cs.meta +11 -0
  1525. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.pre-Unity.6.5.cs +104 -0
  1526. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRef.pre-Unity.6.5.cs.meta +11 -0
  1527. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRefList.cs +41 -0
  1528. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/GameObjectRefList.cs.meta +11 -0
  1529. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.cs +62 -0
  1530. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.cs.meta +11 -0
  1531. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.pre-Unity.6.5.cs +61 -0
  1532. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/ObjectRef.pre-Unity.6.5.cs.meta +11 -0
  1533. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/PathPatch.cs +51 -0
  1534. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/PathPatch.cs.meta +11 -0
  1535. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneData.cs +72 -0
  1536. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneData.cs.meta +11 -0
  1537. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneDataShallow.cs +60 -0
  1538. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneDataShallow.cs.meta +11 -0
  1539. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.cs +51 -0
  1540. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.cs.meta +11 -0
  1541. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.pre-Unity.6.5.cs +52 -0
  1542. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data/SceneRef.pre-Unity.6.5.cs.meta +11 -0
  1543. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Data.meta +8 -0
  1544. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.cs +44 -0
  1545. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.cs.meta +11 -0
  1546. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.pre-Unity.6.5.cs +44 -0
  1547. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsComponentRef.pre-Unity.6.5.cs.meta +11 -0
  1548. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsCompositeDisposable.cs +26 -0
  1549. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsCompositeDisposable.cs.meta +11 -0
  1550. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsJsonElement.cs +183 -0
  1551. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsJsonElement.cs.meta +11 -0
  1552. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsLogLevel.cs +32 -0
  1553. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsLogLevel.cs.meta +11 -0
  1554. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsNotificationData.cs +33 -0
  1555. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsNotificationData.cs.meta +11 -0
  1556. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsObject.cs +30 -0
  1557. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsObject.cs.meta +11 -0
  1558. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRequestCallTool.cs +36 -0
  1559. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRequestCallTool.cs.meta +11 -0
  1560. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.cs +125 -0
  1561. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.cs.meta +11 -0
  1562. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.pre-Unity.6.5.cs +137 -0
  1563. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeAssetObjectRef.pre-Unity.6.5.cs.meta +11 -0
  1564. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeGameObjectRef.cs +45 -0
  1565. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeGameObjectRef.cs.meta +11 -0
  1566. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObject.cs +65 -0
  1567. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObject.cs.meta +11 -0
  1568. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.cs +38 -0
  1569. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.cs.meta +11 -0
  1570. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.pre-Unity.6.5.cs +42 -0
  1571. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsRuntimeObjectRef.pre-Unity.6.5.cs.meta +11 -0
  1572. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsString.cs +35 -0
  1573. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions/ExtensionsString.cs.meta +11 -0
  1574. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Extensions.meta +8 -0
  1575. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/PluginDiagnostics.cs +140 -0
  1576. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/PluginDiagnostics.cs.meta +11 -0
  1577. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLogger.cs +171 -0
  1578. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLogger.cs.meta +11 -0
  1579. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerFactory.cs +37 -0
  1580. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerFactory.cs.meta +11 -0
  1581. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerProvider.cs +21 -0
  1582. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger/UnityLoggerProvider.cs.meta +11 -0
  1583. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Logger.meta +8 -0
  1584. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/BufferedFileLogStorage.cs +207 -0
  1585. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/BufferedFileLogStorage.cs.meta +11 -0
  1586. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/FileLogStorage.cs +547 -0
  1587. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/FileLogStorage.cs.meta +11 -0
  1588. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/ILogStorage.cs +47 -0
  1589. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/ILogStorage.cs.meta +11 -0
  1590. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/LogEntry.cs +99 -0
  1591. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/LogEntry.cs.meta +11 -0
  1592. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/UnityLogCollector.cs +280 -0
  1593. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/UnityLogCollector.cs.meta +11 -0
  1594. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs.meta +8 -0
  1595. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Serialization/TestSerialization.cs +74 -0
  1596. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Serialization/TestSerialization.cs.meta +11 -0
  1597. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Serialization.meta +8 -0
  1598. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity.meta +8 -0
  1599. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Build.cs +243 -0
  1600. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Build.cs.meta +11 -0
  1601. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Config.cs +226 -0
  1602. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Config.cs.meta +11 -0
  1603. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Converters.cs +173 -0
  1604. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Converters.cs.meta +11 -0
  1605. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Log.cs +59 -0
  1606. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.Log.cs.meta +11 -0
  1607. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.cs +295 -0
  1608. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.cs.meta +11 -0
  1609. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginBuilder.cs +105 -0
  1610. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginBuilder.cs.meta +11 -0
  1611. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.Static.cs +155 -0
  1612. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.Static.cs.meta +11 -0
  1613. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.cs +59 -0
  1614. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPluginRuntime.cs.meta +11 -0
  1615. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EntityIdUtils.cs +102 -0
  1616. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EntityIdUtils.cs.meta +11 -0
  1617. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EnvironmentUtils.cs +386 -0
  1618. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/EnvironmentUtils.cs.meta +11 -0
  1619. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ErrorUtils.cs +44 -0
  1620. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ErrorUtils.cs.meta +11 -0
  1621. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.cs +57 -0
  1622. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.cs.meta +11 -0
  1623. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.pre-Unity.6.5.cs +62 -0
  1624. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Editor.pre-Unity.6.5.cs.meta +11 -0
  1625. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.cs +46 -0
  1626. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.cs.meta +11 -0
  1627. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.pre-Unity.6.5.cs +46 -0
  1628. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.Runtime.pre-Unity.6.5.cs.meta +11 -0
  1629. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.cs +292 -0
  1630. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.cs.meta +11 -0
  1631. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.pre-Unity6.5.cs +292 -0
  1632. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/GameObjectUtils.pre-Unity6.5.cs.meta +11 -0
  1633. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogCallScope.cs +99 -0
  1634. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogCallScope.cs.meta +11 -0
  1635. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogLevel.cs +33 -0
  1636. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/LogLevel.cs.meta +11 -0
  1637. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Editor.cs +107 -0
  1638. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Editor.cs.meta +11 -0
  1639. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Player.cs +72 -0
  1640. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThread.Player.cs.meta +11 -0
  1641. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThreadDispatcher.cs +77 -0
  1642. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/MainThreadDispatcher.cs.meta +11 -0
  1643. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/Safe.cs +127 -0
  1644. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/Safe.cs.meta +11 -0
  1645. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.Editor.cs +32 -0
  1646. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.Editor.cs.meta +11 -0
  1647. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.cs +32 -0
  1648. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/SceneUtils.cs.meta +11 -0
  1649. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.Editor.cs +32 -0
  1650. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.Editor.cs.meta +11 -0
  1651. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.cs +25 -0
  1652. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/ShaderUtils.cs.meta +11 -0
  1653. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/WeakAction.cs +137 -0
  1654. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils/WeakAction.cs.meta +11 -0
  1655. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Utils.meta +8 -0
  1656. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/com.AtelierAI.Unity.Copilot.Runtime.asmdef +25 -0
  1657. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/com.AtelierAI.Unity.Copilot.Runtime.asmdef.meta +7 -0
  1658. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/link.xml +30 -0
  1659. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/link.xml.meta +7 -0
  1660. package/vendor/plugin/com.atelierai.unity.copilot/Runtime.meta +8 -0
  1661. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/BlacklistTestScript.cs +54 -0
  1662. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/BlacklistTestScript.cs.meta +11 -0
  1663. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScript.cs +24 -0
  1664. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScript.cs.meta +11 -0
  1665. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScriptableObject.cs +24 -0
  1666. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataFieldPopulationTestScriptableObject.cs.meta +11 -0
  1667. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScript.cs +24 -0
  1668. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScript.cs.meta +11 -0
  1669. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScriptableObject.cs +24 -0
  1670. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/DataPropertyPopulationTestScriptableObject.cs.meta +11 -0
  1671. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/GradientTest.cs +20 -0
  1672. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/GradientTest.cs.meta +11 -0
  1673. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/SolarSystem.cs +57 -0
  1674. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/SolarSystem.cs.meta +11 -0
  1675. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/StructFieldPopulationTestScript.cs +44 -0
  1676. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts/StructFieldPopulationTestScript.cs.meta +11 -0
  1677. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/Scripts.meta +8 -0
  1678. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/com.AtelierAI.Unity.Copilot.TestFiles.asmdef +16 -0
  1679. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles/com.AtelierAI.Unity.Copilot.TestFiles.asmdef.meta +7 -0
  1680. package/vendor/plugin/com.atelierai.unity.copilot/TestFiles.meta +8 -0
  1681. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/.gitignore +2 -0
  1682. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/AtomicApiTestFixtures.cs +99 -0
  1683. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/AtomicApiTestFixtures.cs.meta +11 -0
  1684. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryModifyAtTests.cs +227 -0
  1685. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryModifyAtTests.cs.meta +11 -0
  1686. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryPatchTests.cs +204 -0
  1687. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryPatchTests.cs.meta +11 -0
  1688. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryReadAtTests.cs +163 -0
  1689. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/TryReadAtTests.cs.meta +11 -0
  1690. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/ViewAndGrepTests.cs +224 -0
  1691. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi/ViewAndGrepTests.cs.meta +11 -0
  1692. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AtomicApi.meta +8 -0
  1693. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AuthoringSafetyPilotTests.cs +1050 -0
  1694. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/AuthoringSafetyPilotTests.cs.meta +11 -0
  1695. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/BaseTest.cs +395 -0
  1696. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/BaseTest.cs.meta +11 -0
  1697. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConnectionManagerTests.cs +247 -0
  1698. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConnectionManagerTests.cs.meta +11 -0
  1699. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConsoleDiagnosticsTests.cs +216 -0
  1700. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ConsoleDiagnosticsTests.cs.meta +11 -0
  1701. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/CopilotServerManagerAutoStartTests.cs +43 -0
  1702. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/CopilotServerManagerAutoStartTests.cs.meta +11 -0
  1703. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DemoTest.cs +41 -0
  1704. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DemoTest.cs.meta +11 -0
  1705. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorDevelopmentDependencyTests.cs +148 -0
  1706. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorDevelopmentDependencyTests.cs.meta +11 -0
  1707. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorFlatLayoutTests.cs +166 -0
  1708. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorFlatLayoutTests.cs.meta +11 -0
  1709. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetInstallManifestTests.cs +436 -0
  1710. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetInstallManifestTests.cs.meta +11 -0
  1711. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLegacyMigrationTests.cs +304 -0
  1712. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLegacyMigrationTests.cs.meta +11 -0
  1713. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLongPathPreflightTests.cs +142 -0
  1714. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLongPathPreflightTests.cs.meta +11 -0
  1715. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetPackageInstallerStaleVersionCleanupTests.cs +200 -0
  1716. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetPackageInstallerStaleVersionCleanupTests.cs.meta +11 -0
  1717. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver.meta +8 -0
  1718. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationOwnerIntegrationTests.cs +132 -0
  1719. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationOwnerIntegrationTests.cs.meta +11 -0
  1720. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationSchedulingTests.cs +313 -0
  1721. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/EditorOperationSchedulingTests.cs.meta +11 -0
  1722. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/EnvironmentUtilsTests.cs +320 -0
  1723. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/EnvironmentUtilsTests.cs.meta +11 -0
  1724. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/TestEnvironment.cs +52 -0
  1725. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/TestEnvironment.cs.meta +11 -0
  1726. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment.meta +8 -0
  1727. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/FeedbackRegressionTests.cs +1014 -0
  1728. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/FeedbackRegressionTests.cs.meta +11 -0
  1729. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/BoundsConverterTests.cs +120 -0
  1730. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/BoundsConverterTests.cs.meta +11 -0
  1731. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/ColorConverterTests.cs +132 -0
  1732. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/ColorConverterTests.cs.meta +11 -0
  1733. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GameObjectRefConverterTests.cs +317 -0
  1734. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GameObjectRefConverterTests.cs.meta +11 -0
  1735. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GradientConverterTests.cs +143 -0
  1736. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/GradientConverterTests.cs.meta +11 -0
  1737. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/MatrixConverterTests.cs +125 -0
  1738. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/MatrixConverterTests.cs.meta +11 -0
  1739. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/QuaternionConverterTests.cs +91 -0
  1740. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/QuaternionConverterTests.cs.meta +11 -0
  1741. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/RectConverterTests.cs +115 -0
  1742. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/RectConverterTests.cs.meta +11 -0
  1743. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/TestUtils.cs +88 -0
  1744. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/TestUtils.cs.meta +11 -0
  1745. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/VectorConverterTests.cs +449 -0
  1746. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters/VectorConverterTests.cs.meta +11 -0
  1747. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/JsonConverters.meta +8 -0
  1748. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/McpPluginTests.cs +105 -0
  1749. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/McpPluginTests.cs.meta +11 -0
  1750. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Project/VersionTest.cs +106 -0
  1751. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Project/VersionTest.cs.meta +11 -0
  1752. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Project.meta +8 -0
  1753. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/AssetObjectRefTests.cs +27 -0
  1754. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/AssetObjectRefTests.cs.meta +11 -0
  1755. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/BaseRefTests.cs +31 -0
  1756. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/BaseRefTests.cs.meta +11 -0
  1757. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/GameObjectRefTests.cs +27 -0
  1758. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/GameObjectRefTests.cs.meta +11 -0
  1759. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/ObjectRefTests.cs +26 -0
  1760. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes/ObjectRefTests.cs.meta +11 -0
  1761. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RefTypes.meta +8 -0
  1762. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/BlacklistTypeTests.cs +416 -0
  1763. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/BlacklistTypeTests.cs.meta +11 -0
  1764. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.cs +172 -0
  1765. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.cs.meta +11 -0
  1766. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.pre-Unity.6.5.cs +169 -0
  1767. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataFieldScriptableObjectPopulationTests.pre-Unity.6.5.cs.meta +11 -0
  1768. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.cs +182 -0
  1769. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.cs.meta +11 -0
  1770. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.pre-Unity.6.5.cs +179 -0
  1771. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPopulationTests.pre-Unity.6.5.cs.meta +11 -0
  1772. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.cs +175 -0
  1773. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.cs.meta +11 -0
  1774. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.pre-Unity.6.5.cs +174 -0
  1775. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyPopulationTests.pre-Unity.6.5.cs.meta +11 -0
  1776. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.cs +171 -0
  1777. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.cs.meta +11 -0
  1778. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.pre-Unity.6.5.cs +170 -0
  1779. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/DataPropertyScriptableObjectPopulationTests.pre-Unity.6.5.cs.meta +11 -0
  1780. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/StructPopulationTests.cs +344 -0
  1781. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter/StructPopulationTests.cs.meta +11 -0
  1782. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ReflectionConverter.meta +8 -0
  1783. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RunToolTests.cs +275 -0
  1784. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/RunToolTests.cs.meta +11 -0
  1785. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SceneSandboxHygieneTests.cs +243 -0
  1786. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SceneSandboxHygieneTests.cs.meta +11 -0
  1787. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ScriptExecuteFailureSurfacingTests.cs +60 -0
  1788. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ScriptExecuteFailureSurfacingTests.cs.meta +11 -0
  1789. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SpriteConverterTest.cs +103 -0
  1790. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/SpriteConverterTest.cs.meta +11 -0
  1791. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestGameObjectUtils.cs +65 -0
  1792. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestGameObjectUtils.cs.meta +11 -0
  1793. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestInfrastructureValidation.cs +45 -0
  1794. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestInfrastructureValidation.cs.meta +11 -0
  1795. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestsOperationProvenanceTests.cs +166 -0
  1796. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/TestsOperationProvenanceTests.cs.meta +11 -0
  1797. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsCreateFolderTests.cs +243 -0
  1798. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsCreateFolderTests.cs.meta +11 -0
  1799. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsFindBuiltInTests.cs +550 -0
  1800. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsFindBuiltInTests.cs.meta +11 -0
  1801. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsGetDataWithBuiltInTests.cs +66 -0
  1802. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsGetDataWithBuiltInTests.cs.meta +11 -0
  1803. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialModifyTests.cs +81 -0
  1804. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialModifyTests.cs.meta +11 -0
  1805. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialTests.cs +101 -0
  1806. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsMaterialTests.cs.meta +11 -0
  1807. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.cs +348 -0
  1808. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.cs.meta +11 -0
  1809. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.pre-Unity.6.5.cs +348 -0
  1810. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsPrefabCreateTests.pre-Unity.6.5.cs.meta +11 -0
  1811. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsShaderTests.cs +194 -0
  1812. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets/AssetsShaderTests.cs.meta +11 -0
  1813. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Assets.meta +8 -0
  1814. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestLogUtils.cs +608 -0
  1815. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestLogUtils.cs.meta +11 -0
  1816. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsole.cs +480 -0
  1817. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsole.cs.meta +11 -0
  1818. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsoleIntegration.cs +305 -0
  1819. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console/TestToolConsoleIntegration.cs.meta +11 -0
  1820. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Console.meta +8 -0
  1821. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Docs/DocsUrlAndParserTests.cs +195 -0
  1822. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Docs/DocsUrlAndParserTests.cs.meta +11 -0
  1823. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Docs.meta +8 -0
  1824. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSchema.cs +199 -0
  1825. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSchema.cs.meta +11 -0
  1826. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSerialize.cs +101 -0
  1827. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSerialize.cs.meta +11 -0
  1828. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestSerializer.cs +208 -0
  1829. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestSerializer.cs.meta +11 -0
  1830. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestStringUtils.cs +53 -0
  1831. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestStringUtils.cs.meta +11 -0
  1832. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ComponentListAll.cs +247 -0
  1833. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ComponentListAll.cs.meta +11 -0
  1834. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.cs +451 -0
  1835. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.cs.meta +11 -0
  1836. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.pre-Unity.6.5.cs +451 -0
  1837. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.Find.pre-Unity.6.5.cs.meta +11 -0
  1838. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.cs +91 -0
  1839. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.cs.meta +11 -0
  1840. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.pre-Unity.6.5.cs +91 -0
  1841. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.GetComponents.pre-Unity.6.5.cs.meta +11 -0
  1842. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.cs +150 -0
  1843. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.cs.meta +11 -0
  1844. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.pre-Unity.6.5.cs +150 -0
  1845. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.Gradient.pre-Unity.6.5.cs.meta +11 -0
  1846. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.cs +565 -0
  1847. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.cs.meta +11 -0
  1848. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.pre-Unity.6.5.cs +565 -0
  1849. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.ModifyComponent.pre-Unity.6.5.cs.meta +11 -0
  1850. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.cs +38 -0
  1851. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolGameObject.cs.meta +11 -0
  1852. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodCall.cs +211 -0
  1853. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodCall.cs.meta +11 -0
  1854. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodFind.cs +63 -0
  1855. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestToolReflection.MethodFind.cs.meta +11 -0
  1856. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject.meta +8 -0
  1857. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.cs +298 -0
  1858. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.cs.meta +11 -0
  1859. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.pre-Unity.6.5.cs +298 -0
  1860. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectGetDataTests.pre-Unity.6.5.cs.meta +11 -0
  1861. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectModifyTests.cs +146 -0
  1862. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object/ObjectModifyTests.cs.meta +11 -0
  1863. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Object.meta +8 -0
  1864. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.cs +573 -0
  1865. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.cs.meta +11 -0
  1866. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.pre-Unity.6.5.cs +513 -0
  1867. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/PathBasedToolTests.pre-Unity.6.5.cs.meta +11 -0
  1868. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/RunToolStructuredContentTests.cs +759 -0
  1869. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/RunToolStructuredContentTests.cs.meta +11 -0
  1870. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.cs +154 -0
  1871. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.cs.meta +11 -0
  1872. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.pre-Unity.6.5.cs +154 -0
  1873. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotCameraTests.pre-Unity.6.5.cs.meta +11 -0
  1874. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotGameViewTests.cs +164 -0
  1875. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotGameViewTests.cs.meta +11 -0
  1876. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotIsolatedTests.cs +325 -0
  1877. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotIsolatedTests.cs.meta +11 -0
  1878. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotSceneViewTests.cs +155 -0
  1879. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot/ScreenshotSceneViewTests.cs.meta +11 -0
  1880. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Screenshot.meta +8 -0
  1881. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/CSharpTokenizerTests.cs +219 -0
  1882. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/CSharpTokenizerTests.cs.meta +11 -0
  1883. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptApplyEditsTests.cs +349 -0
  1884. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptApplyEditsTests.cs.meta +11 -0
  1885. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptExecuteTests.cs +401 -0
  1886. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script/ScriptExecuteTests.cs.meta +11 -0
  1887. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Script.meta +8 -0
  1888. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tests/TestsRunDirtySceneTests.cs +122 -0
  1889. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tests/TestsRunDirtySceneTests.cs.meta +11 -0
  1890. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tests.meta +8 -0
  1891. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolListTests.cs +362 -0
  1892. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolListTests.cs.meta +11 -0
  1893. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolSetEnabledStateTests.cs +410 -0
  1894. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool/ToolSetEnabledStateTests.cs.meta +11 -0
  1895. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Tool.meta +8 -0
  1896. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolParameterTests.cs +56 -0
  1897. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolParameterTests.cs.meta +11 -0
  1898. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.cs +651 -0
  1899. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.cs.meta +11 -0
  1900. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.pre-Unity.6.5.cs +651 -0
  1901. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/ToolThreadSafetyTests.pre-Unity.6.5.cs.meta +11 -0
  1902. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Type/TypeGetJsonSchemaTests.cs +320 -0
  1903. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Type/TypeGetJsonSchemaTests.cs.meta +11 -0
  1904. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/Type.meta +8 -0
  1905. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool.meta +8 -0
  1906. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolBatchExecutionIntegrationTests.cs +407 -0
  1907. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolBatchExecutionIntegrationTests.cs.meta +2 -0
  1908. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolsManifestGeneratorTests.cs +200 -0
  1909. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/ToolsManifestGeneratorTests.cs.meta +11 -0
  1910. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/MainWindowEditor.StatusLogicTests.cs +301 -0
  1911. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/MainWindowEditor.StatusLogicTests.cs.meta +11 -0
  1912. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/SceneViewToolbarOverlayTests.cs +75 -0
  1913. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/SceneViewToolbarOverlayTests.cs.meta +11 -0
  1914. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/TokenCounterTests.cs +85 -0
  1915. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI/TokenCounterTests.cs.meta +11 -0
  1916. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/UI.meta +8 -0
  1917. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/BuiltInAssetCacheTests.cs +79 -0
  1918. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/BuiltInAssetCacheTests.cs.meta +11 -0
  1919. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.cs +81 -0
  1920. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.cs.meta +11 -0
  1921. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.pre-Unity.6.5.cs +81 -0
  1922. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/AddComponentExecutor.pre-Unity.6.5.cs.meta +11 -0
  1923. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/BaseCreateAssetExecutor.cs +38 -0
  1924. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/BaseCreateAssetExecutor.cs.meta +11 -0
  1925. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CallToolExecutor.cs +59 -0
  1926. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CallToolExecutor.cs.meta +11 -0
  1927. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.Composition.cs +211 -0
  1928. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.Composition.cs.meta +11 -0
  1929. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.cs +171 -0
  1930. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core/LazyNodeExecutor.cs.meta +11 -0
  1931. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/Core.meta +8 -0
  1932. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateFolderExecutor.cs +87 -0
  1933. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateFolderExecutor.cs.meta +11 -0
  1934. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.cs +137 -0
  1935. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.cs.meta +11 -0
  1936. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.pre-Unity.6.5.cs +137 -0
  1937. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateGameObjectExecutor.pre-Unity.6.5.cs.meta +11 -0
  1938. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateMaterialExecutor.cs +38 -0
  1939. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateMaterialExecutor.cs.meta +11 -0
  1940. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreatePrefabExecutor.cs +67 -0
  1941. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreatePrefabExecutor.cs.meta +11 -0
  1942. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateScriptableObjectExecutor.cs +45 -0
  1943. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateScriptableObjectExecutor.cs.meta +11 -0
  1944. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateShaderExecutor.cs +39 -0
  1945. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateShaderExecutor.cs.meta +11 -0
  1946. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateSpriteExecutor.cs +70 -0
  1947. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateSpriteExecutor.cs.meta +11 -0
  1948. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateTextureExecutor.cs +61 -0
  1949. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/CreateTextureExecutor.cs.meta +11 -0
  1950. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/DynamicCallToolExecutor.cs +60 -0
  1951. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/DynamicCallToolExecutor.cs.meta +11 -0
  1952. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/ValidateToolResultExecutor.cs +47 -0
  1953. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor/ValidateToolResultExecutor.cs.meta +11 -0
  1954. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/Executor.meta +8 -0
  1955. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/JsonFiller.cs +90 -0
  1956. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/JsonFiller.cs.meta +11 -0
  1957. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/PlayerPrefsValuesTests.cs +147 -0
  1958. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/PlayerPrefsValuesTests.cs.meta +11 -0
  1959. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/UpdateCheckerTests.cs +549 -0
  1960. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils/UpdateCheckerTests.cs.meta +11 -0
  1961. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Utils.meta +8 -0
  1962. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/com.AtelierAI.Unity.Copilot.Editor.Tests.asmdef +34 -0
  1963. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/com.AtelierAI.Unity.Copilot.Editor.Tests.asmdef.meta +7 -0
  1964. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor.meta +8 -0
  1965. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/.gitignore +2 -0
  1966. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/DemoTest.cs +44 -0
  1967. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/DemoTest.cs.meta +11 -0
  1968. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/com.AtelierAI.Unity.Copilot.Tests.asmdef +31 -0
  1969. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime/com.AtelierAI.Unity.Copilot.Tests.asmdef.meta +7 -0
  1970. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Runtime.meta +8 -0
  1971. package/vendor/plugin/com.atelierai.unity.copilot/Tests.meta +8 -0
  1972. package/vendor/plugin/com.atelierai.unity.copilot/package.json +33 -0
  1973. package/vendor/plugin/com.atelierai.unity.copilot/package.json.meta +7 -0
  1974. package/vendor/plugin/com.atelierai.unity.copilot/tools-manifest.json +20551 -0
  1975. package/vendor/plugin/com.atelierai.unity.copilot/tools-manifest.json.meta +7 -0
@@ -0,0 +1,2509 @@
1
+ const EventEmitter = require('node:events').EventEmitter;
2
+ const childProcess = require('node:child_process');
3
+ const path = require('node:path');
4
+ const fs = require('node:fs');
5
+ const process = require('node:process');
6
+
7
+ const { Argument, humanReadableArgName } = require('./argument.js');
8
+ const { CommanderError } = require('./error.js');
9
+ const { Help } = require('./help.js');
10
+ const { Option, DualOptions } = require('./option.js');
11
+ const { suggestSimilar } = require('./suggestSimilar');
12
+
13
+ class Command extends EventEmitter {
14
+ /**
15
+ * Initialize a new `Command`.
16
+ *
17
+ * @param {string} [name]
18
+ */
19
+
20
+ constructor(name) {
21
+ super();
22
+ /** @type {Command[]} */
23
+ this.commands = [];
24
+ /** @type {Option[]} */
25
+ this.options = [];
26
+ this.parent = null;
27
+ this._allowUnknownOption = false;
28
+ this._allowExcessArguments = true;
29
+ /** @type {Argument[]} */
30
+ this.registeredArguments = [];
31
+ this._args = this.registeredArguments; // deprecated old name
32
+ /** @type {string[]} */
33
+ this.args = []; // cli args with options removed
34
+ this.rawArgs = [];
35
+ this.processedArgs = []; // like .args but after custom processing and collecting variadic
36
+ this._scriptPath = null;
37
+ this._name = name || '';
38
+ this._optionValues = {};
39
+ this._optionValueSources = {}; // default, env, cli etc
40
+ this._storeOptionsAsProperties = false;
41
+ this._actionHandler = null;
42
+ this._executableHandler = false;
43
+ this._executableFile = null; // custom name for executable
44
+ this._executableDir = null; // custom search directory for subcommands
45
+ this._defaultCommandName = null;
46
+ this._exitCallback = null;
47
+ this._aliases = [];
48
+ this._combineFlagAndOptionalValue = true;
49
+ this._description = '';
50
+ this._summary = '';
51
+ this._argsDescription = undefined; // legacy
52
+ this._enablePositionalOptions = false;
53
+ this._passThroughOptions = false;
54
+ this._lifeCycleHooks = {}; // a hash of arrays
55
+ /** @type {(boolean | string)} */
56
+ this._showHelpAfterError = false;
57
+ this._showSuggestionAfterError = true;
58
+
59
+ // see .configureOutput() for docs
60
+ this._outputConfiguration = {
61
+ writeOut: (str) => process.stdout.write(str),
62
+ writeErr: (str) => process.stderr.write(str),
63
+ getOutHelpWidth: () =>
64
+ process.stdout.isTTY ? process.stdout.columns : undefined,
65
+ getErrHelpWidth: () =>
66
+ process.stderr.isTTY ? process.stderr.columns : undefined,
67
+ outputError: (str, write) => write(str),
68
+ };
69
+
70
+ this._hidden = false;
71
+ /** @type {(Option | null | undefined)} */
72
+ this._helpOption = undefined; // Lazy created on demand. May be null if help option is disabled.
73
+ this._addImplicitHelpCommand = undefined; // undecided whether true or false yet, not inherited
74
+ /** @type {Command} */
75
+ this._helpCommand = undefined; // lazy initialised, inherited
76
+ this._helpConfiguration = {};
77
+ }
78
+
79
+ /**
80
+ * Copy settings that are useful to have in common across root command and subcommands.
81
+ *
82
+ * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)
83
+ *
84
+ * @param {Command} sourceCommand
85
+ * @return {Command} `this` command for chaining
86
+ */
87
+ copyInheritedSettings(sourceCommand) {
88
+ this._outputConfiguration = sourceCommand._outputConfiguration;
89
+ this._helpOption = sourceCommand._helpOption;
90
+ this._helpCommand = sourceCommand._helpCommand;
91
+ this._helpConfiguration = sourceCommand._helpConfiguration;
92
+ this._exitCallback = sourceCommand._exitCallback;
93
+ this._storeOptionsAsProperties = sourceCommand._storeOptionsAsProperties;
94
+ this._combineFlagAndOptionalValue =
95
+ sourceCommand._combineFlagAndOptionalValue;
96
+ this._allowExcessArguments = sourceCommand._allowExcessArguments;
97
+ this._enablePositionalOptions = sourceCommand._enablePositionalOptions;
98
+ this._showHelpAfterError = sourceCommand._showHelpAfterError;
99
+ this._showSuggestionAfterError = sourceCommand._showSuggestionAfterError;
100
+
101
+ return this;
102
+ }
103
+
104
+ /**
105
+ * @returns {Command[]}
106
+ * @private
107
+ */
108
+
109
+ _getCommandAndAncestors() {
110
+ const result = [];
111
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
112
+ for (let command = this; command; command = command.parent) {
113
+ result.push(command);
114
+ }
115
+ return result;
116
+ }
117
+
118
+ /**
119
+ * Define a command.
120
+ *
121
+ * There are two styles of command: pay attention to where to put the description.
122
+ *
123
+ * @example
124
+ * // Command implemented using action handler (description is supplied separately to `.command`)
125
+ * program
126
+ * .command('clone <source> [destination]')
127
+ * .description('clone a repository into a newly created directory')
128
+ * .action((source, destination) => {
129
+ * console.log('clone command called');
130
+ * });
131
+ *
132
+ * // Command implemented using separate executable file (description is second parameter to `.command`)
133
+ * program
134
+ * .command('start <service>', 'start named service')
135
+ * .command('stop [service]', 'stop named service, or all if no name supplied');
136
+ *
137
+ * @param {string} nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`
138
+ * @param {(object | string)} [actionOptsOrExecDesc] - configuration options (for action), or description (for executable)
139
+ * @param {object} [execOpts] - configuration options (for executable)
140
+ * @return {Command} returns new command for action handler, or `this` for executable command
141
+ */
142
+
143
+ command(nameAndArgs, actionOptsOrExecDesc, execOpts) {
144
+ let desc = actionOptsOrExecDesc;
145
+ let opts = execOpts;
146
+ if (typeof desc === 'object' && desc !== null) {
147
+ opts = desc;
148
+ desc = null;
149
+ }
150
+ opts = opts || {};
151
+ const [, name, args] = nameAndArgs.match(/([^ ]+) *(.*)/);
152
+
153
+ const cmd = this.createCommand(name);
154
+ if (desc) {
155
+ cmd.description(desc);
156
+ cmd._executableHandler = true;
157
+ }
158
+ if (opts.isDefault) this._defaultCommandName = cmd._name;
159
+ cmd._hidden = !!(opts.noHelp || opts.hidden); // noHelp is deprecated old name for hidden
160
+ cmd._executableFile = opts.executableFile || null; // Custom name for executable file, set missing to null to match constructor
161
+ if (args) cmd.arguments(args);
162
+ this._registerCommand(cmd);
163
+ cmd.parent = this;
164
+ cmd.copyInheritedSettings(this);
165
+
166
+ if (desc) return this;
167
+ return cmd;
168
+ }
169
+
170
+ /**
171
+ * Factory routine to create a new unattached command.
172
+ *
173
+ * See .command() for creating an attached subcommand, which uses this routine to
174
+ * create the command. You can override createCommand to customise subcommands.
175
+ *
176
+ * @param {string} [name]
177
+ * @return {Command} new command
178
+ */
179
+
180
+ createCommand(name) {
181
+ return new Command(name);
182
+ }
183
+
184
+ /**
185
+ * You can customise the help with a subclass of Help by overriding createHelp,
186
+ * or by overriding Help properties using configureHelp().
187
+ *
188
+ * @return {Help}
189
+ */
190
+
191
+ createHelp() {
192
+ return Object.assign(new Help(), this.configureHelp());
193
+ }
194
+
195
+ /**
196
+ * You can customise the help by overriding Help properties using configureHelp(),
197
+ * or with a subclass of Help by overriding createHelp().
198
+ *
199
+ * @param {object} [configuration] - configuration options
200
+ * @return {(Command | object)} `this` command for chaining, or stored configuration
201
+ */
202
+
203
+ configureHelp(configuration) {
204
+ if (configuration === undefined) return this._helpConfiguration;
205
+
206
+ this._helpConfiguration = configuration;
207
+ return this;
208
+ }
209
+
210
+ /**
211
+ * The default output goes to stdout and stderr. You can customise this for special
212
+ * applications. You can also customise the display of errors by overriding outputError.
213
+ *
214
+ * The configuration properties are all functions:
215
+ *
216
+ * // functions to change where being written, stdout and stderr
217
+ * writeOut(str)
218
+ * writeErr(str)
219
+ * // matching functions to specify width for wrapping help
220
+ * getOutHelpWidth()
221
+ * getErrHelpWidth()
222
+ * // functions based on what is being written out
223
+ * outputError(str, write) // used for displaying errors, and not used for displaying help
224
+ *
225
+ * @param {object} [configuration] - configuration options
226
+ * @return {(Command | object)} `this` command for chaining, or stored configuration
227
+ */
228
+
229
+ configureOutput(configuration) {
230
+ if (configuration === undefined) return this._outputConfiguration;
231
+
232
+ Object.assign(this._outputConfiguration, configuration);
233
+ return this;
234
+ }
235
+
236
+ /**
237
+ * Display the help or a custom message after an error occurs.
238
+ *
239
+ * @param {(boolean|string)} [displayHelp]
240
+ * @return {Command} `this` command for chaining
241
+ */
242
+ showHelpAfterError(displayHelp = true) {
243
+ if (typeof displayHelp !== 'string') displayHelp = !!displayHelp;
244
+ this._showHelpAfterError = displayHelp;
245
+ return this;
246
+ }
247
+
248
+ /**
249
+ * Display suggestion of similar commands for unknown commands, or options for unknown options.
250
+ *
251
+ * @param {boolean} [displaySuggestion]
252
+ * @return {Command} `this` command for chaining
253
+ */
254
+ showSuggestionAfterError(displaySuggestion = true) {
255
+ this._showSuggestionAfterError = !!displaySuggestion;
256
+ return this;
257
+ }
258
+
259
+ /**
260
+ * Add a prepared subcommand.
261
+ *
262
+ * See .command() for creating an attached subcommand which inherits settings from its parent.
263
+ *
264
+ * @param {Command} cmd - new subcommand
265
+ * @param {object} [opts] - configuration options
266
+ * @return {Command} `this` command for chaining
267
+ */
268
+
269
+ addCommand(cmd, opts) {
270
+ if (!cmd._name) {
271
+ throw new Error(`Command passed to .addCommand() must have a name
272
+ - specify the name in Command constructor or using .name()`);
273
+ }
274
+
275
+ opts = opts || {};
276
+ if (opts.isDefault) this._defaultCommandName = cmd._name;
277
+ if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing implementation
278
+
279
+ this._registerCommand(cmd);
280
+ cmd.parent = this;
281
+ cmd._checkForBrokenPassThrough();
282
+
283
+ return this;
284
+ }
285
+
286
+ /**
287
+ * Factory routine to create a new unattached argument.
288
+ *
289
+ * See .argument() for creating an attached argument, which uses this routine to
290
+ * create the argument. You can override createArgument to return a custom argument.
291
+ *
292
+ * @param {string} name
293
+ * @param {string} [description]
294
+ * @return {Argument} new argument
295
+ */
296
+
297
+ createArgument(name, description) {
298
+ return new Argument(name, description);
299
+ }
300
+
301
+ /**
302
+ * Define argument syntax for command.
303
+ *
304
+ * The default is that the argument is required, and you can explicitly
305
+ * indicate this with <> around the name. Put [] around the name for an optional argument.
306
+ *
307
+ * @example
308
+ * program.argument('<input-file>');
309
+ * program.argument('[output-file]');
310
+ *
311
+ * @param {string} name
312
+ * @param {string} [description]
313
+ * @param {(Function|*)} [fn] - custom argument processing function
314
+ * @param {*} [defaultValue]
315
+ * @return {Command} `this` command for chaining
316
+ */
317
+ argument(name, description, fn, defaultValue) {
318
+ const argument = this.createArgument(name, description);
319
+ if (typeof fn === 'function') {
320
+ argument.default(defaultValue).argParser(fn);
321
+ } else {
322
+ argument.default(fn);
323
+ }
324
+ this.addArgument(argument);
325
+ return this;
326
+ }
327
+
328
+ /**
329
+ * Define argument syntax for command, adding multiple at once (without descriptions).
330
+ *
331
+ * See also .argument().
332
+ *
333
+ * @example
334
+ * program.arguments('<cmd> [env]');
335
+ *
336
+ * @param {string} names
337
+ * @return {Command} `this` command for chaining
338
+ */
339
+
340
+ arguments(names) {
341
+ names
342
+ .trim()
343
+ .split(/ +/)
344
+ .forEach((detail) => {
345
+ this.argument(detail);
346
+ });
347
+ return this;
348
+ }
349
+
350
+ /**
351
+ * Define argument syntax for command, adding a prepared argument.
352
+ *
353
+ * @param {Argument} argument
354
+ * @return {Command} `this` command for chaining
355
+ */
356
+ addArgument(argument) {
357
+ const previousArgument = this.registeredArguments.slice(-1)[0];
358
+ if (previousArgument && previousArgument.variadic) {
359
+ throw new Error(
360
+ `only the last argument can be variadic '${previousArgument.name()}'`,
361
+ );
362
+ }
363
+ if (
364
+ argument.required &&
365
+ argument.defaultValue !== undefined &&
366
+ argument.parseArg === undefined
367
+ ) {
368
+ throw new Error(
369
+ `a default value for a required argument is never used: '${argument.name()}'`,
370
+ );
371
+ }
372
+ this.registeredArguments.push(argument);
373
+ return this;
374
+ }
375
+
376
+ /**
377
+ * Customise or override default help command. By default a help command is automatically added if your command has subcommands.
378
+ *
379
+ * @example
380
+ * program.helpCommand('help [cmd]');
381
+ * program.helpCommand('help [cmd]', 'show help');
382
+ * program.helpCommand(false); // suppress default help command
383
+ * program.helpCommand(true); // add help command even if no subcommands
384
+ *
385
+ * @param {string|boolean} enableOrNameAndArgs - enable with custom name and/or arguments, or boolean to override whether added
386
+ * @param {string} [description] - custom description
387
+ * @return {Command} `this` command for chaining
388
+ */
389
+
390
+ helpCommand(enableOrNameAndArgs, description) {
391
+ if (typeof enableOrNameAndArgs === 'boolean') {
392
+ this._addImplicitHelpCommand = enableOrNameAndArgs;
393
+ return this;
394
+ }
395
+
396
+ enableOrNameAndArgs = enableOrNameAndArgs ?? 'help [command]';
397
+ const [, helpName, helpArgs] = enableOrNameAndArgs.match(/([^ ]+) *(.*)/);
398
+ const helpDescription = description ?? 'display help for command';
399
+
400
+ const helpCommand = this.createCommand(helpName);
401
+ helpCommand.helpOption(false);
402
+ if (helpArgs) helpCommand.arguments(helpArgs);
403
+ if (helpDescription) helpCommand.description(helpDescription);
404
+
405
+ this._addImplicitHelpCommand = true;
406
+ this._helpCommand = helpCommand;
407
+
408
+ return this;
409
+ }
410
+
411
+ /**
412
+ * Add prepared custom help command.
413
+ *
414
+ * @param {(Command|string|boolean)} helpCommand - custom help command, or deprecated enableOrNameAndArgs as for `.helpCommand()`
415
+ * @param {string} [deprecatedDescription] - deprecated custom description used with custom name only
416
+ * @return {Command} `this` command for chaining
417
+ */
418
+ addHelpCommand(helpCommand, deprecatedDescription) {
419
+ // If not passed an object, call through to helpCommand for backwards compatibility,
420
+ // as addHelpCommand was originally used like helpCommand is now.
421
+ if (typeof helpCommand !== 'object') {
422
+ this.helpCommand(helpCommand, deprecatedDescription);
423
+ return this;
424
+ }
425
+
426
+ this._addImplicitHelpCommand = true;
427
+ this._helpCommand = helpCommand;
428
+ return this;
429
+ }
430
+
431
+ /**
432
+ * Lazy create help command.
433
+ *
434
+ * @return {(Command|null)}
435
+ * @package
436
+ */
437
+ _getHelpCommand() {
438
+ const hasImplicitHelpCommand =
439
+ this._addImplicitHelpCommand ??
440
+ (this.commands.length &&
441
+ !this._actionHandler &&
442
+ !this._findCommand('help'));
443
+
444
+ if (hasImplicitHelpCommand) {
445
+ if (this._helpCommand === undefined) {
446
+ this.helpCommand(undefined, undefined); // use default name and description
447
+ }
448
+ return this._helpCommand;
449
+ }
450
+ return null;
451
+ }
452
+
453
+ /**
454
+ * Add hook for life cycle event.
455
+ *
456
+ * @param {string} event
457
+ * @param {Function} listener
458
+ * @return {Command} `this` command for chaining
459
+ */
460
+
461
+ hook(event, listener) {
462
+ const allowedValues = ['preSubcommand', 'preAction', 'postAction'];
463
+ if (!allowedValues.includes(event)) {
464
+ throw new Error(`Unexpected value for event passed to hook : '${event}'.
465
+ Expecting one of '${allowedValues.join("', '")}'`);
466
+ }
467
+ if (this._lifeCycleHooks[event]) {
468
+ this._lifeCycleHooks[event].push(listener);
469
+ } else {
470
+ this._lifeCycleHooks[event] = [listener];
471
+ }
472
+ return this;
473
+ }
474
+
475
+ /**
476
+ * Register callback to use as replacement for calling process.exit.
477
+ *
478
+ * @param {Function} [fn] optional callback which will be passed a CommanderError, defaults to throwing
479
+ * @return {Command} `this` command for chaining
480
+ */
481
+
482
+ exitOverride(fn) {
483
+ if (fn) {
484
+ this._exitCallback = fn;
485
+ } else {
486
+ this._exitCallback = (err) => {
487
+ if (err.code !== 'commander.executeSubCommandAsync') {
488
+ throw err;
489
+ } else {
490
+ // Async callback from spawn events, not useful to throw.
491
+ }
492
+ };
493
+ }
494
+ return this;
495
+ }
496
+
497
+ /**
498
+ * Call process.exit, and _exitCallback if defined.
499
+ *
500
+ * @param {number} exitCode exit code for using with process.exit
501
+ * @param {string} code an id string representing the error
502
+ * @param {string} message human-readable description of the error
503
+ * @return never
504
+ * @private
505
+ */
506
+
507
+ _exit(exitCode, code, message) {
508
+ if (this._exitCallback) {
509
+ this._exitCallback(new CommanderError(exitCode, code, message));
510
+ // Expecting this line is not reached.
511
+ }
512
+ process.exit(exitCode);
513
+ }
514
+
515
+ /**
516
+ * Register callback `fn` for the command.
517
+ *
518
+ * @example
519
+ * program
520
+ * .command('serve')
521
+ * .description('start service')
522
+ * .action(function() {
523
+ * // do work here
524
+ * });
525
+ *
526
+ * @param {Function} fn
527
+ * @return {Command} `this` command for chaining
528
+ */
529
+
530
+ action(fn) {
531
+ const listener = (args) => {
532
+ // The .action callback takes an extra parameter which is the command or options.
533
+ const expectedArgsCount = this.registeredArguments.length;
534
+ const actionArgs = args.slice(0, expectedArgsCount);
535
+ if (this._storeOptionsAsProperties) {
536
+ actionArgs[expectedArgsCount] = this; // backwards compatible "options"
537
+ } else {
538
+ actionArgs[expectedArgsCount] = this.opts();
539
+ }
540
+ actionArgs.push(this);
541
+
542
+ return fn.apply(this, actionArgs);
543
+ };
544
+ this._actionHandler = listener;
545
+ return this;
546
+ }
547
+
548
+ /**
549
+ * Factory routine to create a new unattached option.
550
+ *
551
+ * See .option() for creating an attached option, which uses this routine to
552
+ * create the option. You can override createOption to return a custom option.
553
+ *
554
+ * @param {string} flags
555
+ * @param {string} [description]
556
+ * @return {Option} new option
557
+ */
558
+
559
+ createOption(flags, description) {
560
+ return new Option(flags, description);
561
+ }
562
+
563
+ /**
564
+ * Wrap parseArgs to catch 'commander.invalidArgument'.
565
+ *
566
+ * @param {(Option | Argument)} target
567
+ * @param {string} value
568
+ * @param {*} previous
569
+ * @param {string} invalidArgumentMessage
570
+ * @private
571
+ */
572
+
573
+ _callParseArg(target, value, previous, invalidArgumentMessage) {
574
+ try {
575
+ return target.parseArg(value, previous);
576
+ } catch (err) {
577
+ if (err.code === 'commander.invalidArgument') {
578
+ const message = `${invalidArgumentMessage} ${err.message}`;
579
+ this.error(message, { exitCode: err.exitCode, code: err.code });
580
+ }
581
+ throw err;
582
+ }
583
+ }
584
+
585
+ /**
586
+ * Check for option flag conflicts.
587
+ * Register option if no conflicts found, or throw on conflict.
588
+ *
589
+ * @param {Option} option
590
+ * @private
591
+ */
592
+
593
+ _registerOption(option) {
594
+ const matchingOption =
595
+ (option.short && this._findOption(option.short)) ||
596
+ (option.long && this._findOption(option.long));
597
+ if (matchingOption) {
598
+ const matchingFlag =
599
+ option.long && this._findOption(option.long)
600
+ ? option.long
601
+ : option.short;
602
+ throw new Error(`Cannot add option '${option.flags}'${this._name && ` to command '${this._name}'`} due to conflicting flag '${matchingFlag}'
603
+ - already used by option '${matchingOption.flags}'`);
604
+ }
605
+
606
+ this.options.push(option);
607
+ }
608
+
609
+ /**
610
+ * Check for command name and alias conflicts with existing commands.
611
+ * Register command if no conflicts found, or throw on conflict.
612
+ *
613
+ * @param {Command} command
614
+ * @private
615
+ */
616
+
617
+ _registerCommand(command) {
618
+ const knownBy = (cmd) => {
619
+ return [cmd.name()].concat(cmd.aliases());
620
+ };
621
+
622
+ const alreadyUsed = knownBy(command).find((name) =>
623
+ this._findCommand(name),
624
+ );
625
+ if (alreadyUsed) {
626
+ const existingCmd = knownBy(this._findCommand(alreadyUsed)).join('|');
627
+ const newCmd = knownBy(command).join('|');
628
+ throw new Error(
629
+ `cannot add command '${newCmd}' as already have command '${existingCmd}'`,
630
+ );
631
+ }
632
+
633
+ this.commands.push(command);
634
+ }
635
+
636
+ /**
637
+ * Add an option.
638
+ *
639
+ * @param {Option} option
640
+ * @return {Command} `this` command for chaining
641
+ */
642
+ addOption(option) {
643
+ this._registerOption(option);
644
+
645
+ const oname = option.name();
646
+ const name = option.attributeName();
647
+
648
+ // store default value
649
+ if (option.negate) {
650
+ // --no-foo is special and defaults foo to true, unless a --foo option is already defined
651
+ const positiveLongFlag = option.long.replace(/^--no-/, '--');
652
+ if (!this._findOption(positiveLongFlag)) {
653
+ this.setOptionValueWithSource(
654
+ name,
655
+ option.defaultValue === undefined ? true : option.defaultValue,
656
+ 'default',
657
+ );
658
+ }
659
+ } else if (option.defaultValue !== undefined) {
660
+ this.setOptionValueWithSource(name, option.defaultValue, 'default');
661
+ }
662
+
663
+ // handler for cli and env supplied values
664
+ const handleOptionValue = (val, invalidValueMessage, valueSource) => {
665
+ // val is null for optional option used without an optional-argument.
666
+ // val is undefined for boolean and negated option.
667
+ if (val == null && option.presetArg !== undefined) {
668
+ val = option.presetArg;
669
+ }
670
+
671
+ // custom processing
672
+ const oldValue = this.getOptionValue(name);
673
+ if (val !== null && option.parseArg) {
674
+ val = this._callParseArg(option, val, oldValue, invalidValueMessage);
675
+ } else if (val !== null && option.variadic) {
676
+ val = option._concatValue(val, oldValue);
677
+ }
678
+
679
+ // Fill-in appropriate missing values. Long winded but easy to follow.
680
+ if (val == null) {
681
+ if (option.negate) {
682
+ val = false;
683
+ } else if (option.isBoolean() || option.optional) {
684
+ val = true;
685
+ } else {
686
+ val = ''; // not normal, parseArg might have failed or be a mock function for testing
687
+ }
688
+ }
689
+ this.setOptionValueWithSource(name, val, valueSource);
690
+ };
691
+
692
+ this.on('option:' + oname, (val) => {
693
+ const invalidValueMessage = `error: option '${option.flags}' argument '${val}' is invalid.`;
694
+ handleOptionValue(val, invalidValueMessage, 'cli');
695
+ });
696
+
697
+ if (option.envVar) {
698
+ this.on('optionEnv:' + oname, (val) => {
699
+ const invalidValueMessage = `error: option '${option.flags}' value '${val}' from env '${option.envVar}' is invalid.`;
700
+ handleOptionValue(val, invalidValueMessage, 'env');
701
+ });
702
+ }
703
+
704
+ return this;
705
+ }
706
+
707
+ /**
708
+ * Internal implementation shared by .option() and .requiredOption()
709
+ *
710
+ * @return {Command} `this` command for chaining
711
+ * @private
712
+ */
713
+ _optionEx(config, flags, description, fn, defaultValue) {
714
+ if (typeof flags === 'object' && flags instanceof Option) {
715
+ throw new Error(
716
+ 'To add an Option object use addOption() instead of option() or requiredOption()',
717
+ );
718
+ }
719
+ const option = this.createOption(flags, description);
720
+ option.makeOptionMandatory(!!config.mandatory);
721
+ if (typeof fn === 'function') {
722
+ option.default(defaultValue).argParser(fn);
723
+ } else if (fn instanceof RegExp) {
724
+ // deprecated
725
+ const regex = fn;
726
+ fn = (val, def) => {
727
+ const m = regex.exec(val);
728
+ return m ? m[0] : def;
729
+ };
730
+ option.default(defaultValue).argParser(fn);
731
+ } else {
732
+ option.default(fn);
733
+ }
734
+
735
+ return this.addOption(option);
736
+ }
737
+
738
+ /**
739
+ * Define option with `flags`, `description`, and optional argument parsing function or `defaultValue` or both.
740
+ *
741
+ * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space. A required
742
+ * option-argument is indicated by `<>` and an optional option-argument by `[]`.
743
+ *
744
+ * See the README for more details, and see also addOption() and requiredOption().
745
+ *
746
+ * @example
747
+ * program
748
+ * .option('-p, --pepper', 'add pepper')
749
+ * .option('-p, --pizza-type <TYPE>', 'type of pizza') // required option-argument
750
+ * .option('-c, --cheese [CHEESE]', 'add extra cheese', 'mozzarella') // optional option-argument with default
751
+ * .option('-t, --tip <VALUE>', 'add tip to purchase cost', parseFloat) // custom parse function
752
+ *
753
+ * @param {string} flags
754
+ * @param {string} [description]
755
+ * @param {(Function|*)} [parseArg] - custom option processing function or default value
756
+ * @param {*} [defaultValue]
757
+ * @return {Command} `this` command for chaining
758
+ */
759
+
760
+ option(flags, description, parseArg, defaultValue) {
761
+ return this._optionEx({}, flags, description, parseArg, defaultValue);
762
+ }
763
+
764
+ /**
765
+ * Add a required option which must have a value after parsing. This usually means
766
+ * the option must be specified on the command line. (Otherwise the same as .option().)
767
+ *
768
+ * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.
769
+ *
770
+ * @param {string} flags
771
+ * @param {string} [description]
772
+ * @param {(Function|*)} [parseArg] - custom option processing function or default value
773
+ * @param {*} [defaultValue]
774
+ * @return {Command} `this` command for chaining
775
+ */
776
+
777
+ requiredOption(flags, description, parseArg, defaultValue) {
778
+ return this._optionEx(
779
+ { mandatory: true },
780
+ flags,
781
+ description,
782
+ parseArg,
783
+ defaultValue,
784
+ );
785
+ }
786
+
787
+ /**
788
+ * Alter parsing of short flags with optional values.
789
+ *
790
+ * @example
791
+ * // for `.option('-f,--flag [value]'):
792
+ * program.combineFlagAndOptionalValue(true); // `-f80` is treated like `--flag=80`, this is the default behaviour
793
+ * program.combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`
794
+ *
795
+ * @param {boolean} [combine] - if `true` or omitted, an optional value can be specified directly after the flag.
796
+ * @return {Command} `this` command for chaining
797
+ */
798
+ combineFlagAndOptionalValue(combine = true) {
799
+ this._combineFlagAndOptionalValue = !!combine;
800
+ return this;
801
+ }
802
+
803
+ /**
804
+ * Allow unknown options on the command line.
805
+ *
806
+ * @param {boolean} [allowUnknown] - if `true` or omitted, no error will be thrown for unknown options.
807
+ * @return {Command} `this` command for chaining
808
+ */
809
+ allowUnknownOption(allowUnknown = true) {
810
+ this._allowUnknownOption = !!allowUnknown;
811
+ return this;
812
+ }
813
+
814
+ /**
815
+ * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.
816
+ *
817
+ * @param {boolean} [allowExcess] - if `true` or omitted, no error will be thrown for excess arguments.
818
+ * @return {Command} `this` command for chaining
819
+ */
820
+ allowExcessArguments(allowExcess = true) {
821
+ this._allowExcessArguments = !!allowExcess;
822
+ return this;
823
+ }
824
+
825
+ /**
826
+ * Enable positional options. Positional means global options are specified before subcommands which lets
827
+ * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.
828
+ * The default behaviour is non-positional and global options may appear anywhere on the command line.
829
+ *
830
+ * @param {boolean} [positional]
831
+ * @return {Command} `this` command for chaining
832
+ */
833
+ enablePositionalOptions(positional = true) {
834
+ this._enablePositionalOptions = !!positional;
835
+ return this;
836
+ }
837
+
838
+ /**
839
+ * Pass through options that come after command-arguments rather than treat them as command-options,
840
+ * so actual command-options come before command-arguments. Turning this on for a subcommand requires
841
+ * positional options to have been enabled on the program (parent commands).
842
+ * The default behaviour is non-positional and options may appear before or after command-arguments.
843
+ *
844
+ * @param {boolean} [passThrough] for unknown options.
845
+ * @return {Command} `this` command for chaining
846
+ */
847
+ passThroughOptions(passThrough = true) {
848
+ this._passThroughOptions = !!passThrough;
849
+ this._checkForBrokenPassThrough();
850
+ return this;
851
+ }
852
+
853
+ /**
854
+ * @private
855
+ */
856
+
857
+ _checkForBrokenPassThrough() {
858
+ if (
859
+ this.parent &&
860
+ this._passThroughOptions &&
861
+ !this.parent._enablePositionalOptions
862
+ ) {
863
+ throw new Error(
864
+ `passThroughOptions cannot be used for '${this._name}' without turning on enablePositionalOptions for parent command(s)`,
865
+ );
866
+ }
867
+ }
868
+
869
+ /**
870
+ * Whether to store option values as properties on command object,
871
+ * or store separately (specify false). In both cases the option values can be accessed using .opts().
872
+ *
873
+ * @param {boolean} [storeAsProperties=true]
874
+ * @return {Command} `this` command for chaining
875
+ */
876
+
877
+ storeOptionsAsProperties(storeAsProperties = true) {
878
+ if (this.options.length) {
879
+ throw new Error('call .storeOptionsAsProperties() before adding options');
880
+ }
881
+ if (Object.keys(this._optionValues).length) {
882
+ throw new Error(
883
+ 'call .storeOptionsAsProperties() before setting option values',
884
+ );
885
+ }
886
+ this._storeOptionsAsProperties = !!storeAsProperties;
887
+ return this;
888
+ }
889
+
890
+ /**
891
+ * Retrieve option value.
892
+ *
893
+ * @param {string} key
894
+ * @return {object} value
895
+ */
896
+
897
+ getOptionValue(key) {
898
+ if (this._storeOptionsAsProperties) {
899
+ return this[key];
900
+ }
901
+ return this._optionValues[key];
902
+ }
903
+
904
+ /**
905
+ * Store option value.
906
+ *
907
+ * @param {string} key
908
+ * @param {object} value
909
+ * @return {Command} `this` command for chaining
910
+ */
911
+
912
+ setOptionValue(key, value) {
913
+ return this.setOptionValueWithSource(key, value, undefined);
914
+ }
915
+
916
+ /**
917
+ * Store option value and where the value came from.
918
+ *
919
+ * @param {string} key
920
+ * @param {object} value
921
+ * @param {string} source - expected values are default/config/env/cli/implied
922
+ * @return {Command} `this` command for chaining
923
+ */
924
+
925
+ setOptionValueWithSource(key, value, source) {
926
+ if (this._storeOptionsAsProperties) {
927
+ this[key] = value;
928
+ } else {
929
+ this._optionValues[key] = value;
930
+ }
931
+ this._optionValueSources[key] = source;
932
+ return this;
933
+ }
934
+
935
+ /**
936
+ * Get source of option value.
937
+ * Expected values are default | config | env | cli | implied
938
+ *
939
+ * @param {string} key
940
+ * @return {string}
941
+ */
942
+
943
+ getOptionValueSource(key) {
944
+ return this._optionValueSources[key];
945
+ }
946
+
947
+ /**
948
+ * Get source of option value. See also .optsWithGlobals().
949
+ * Expected values are default | config | env | cli | implied
950
+ *
951
+ * @param {string} key
952
+ * @return {string}
953
+ */
954
+
955
+ getOptionValueSourceWithGlobals(key) {
956
+ // global overwrites local, like optsWithGlobals
957
+ let source;
958
+ this._getCommandAndAncestors().forEach((cmd) => {
959
+ if (cmd.getOptionValueSource(key) !== undefined) {
960
+ source = cmd.getOptionValueSource(key);
961
+ }
962
+ });
963
+ return source;
964
+ }
965
+
966
+ /**
967
+ * Get user arguments from implied or explicit arguments.
968
+ * Side-effects: set _scriptPath if args included script. Used for default program name, and subcommand searches.
969
+ *
970
+ * @private
971
+ */
972
+
973
+ _prepareUserArgs(argv, parseOptions) {
974
+ if (argv !== undefined && !Array.isArray(argv)) {
975
+ throw new Error('first parameter to parse must be array or undefined');
976
+ }
977
+ parseOptions = parseOptions || {};
978
+
979
+ // auto-detect argument conventions if nothing supplied
980
+ if (argv === undefined && parseOptions.from === undefined) {
981
+ if (process.versions?.electron) {
982
+ parseOptions.from = 'electron';
983
+ }
984
+ // check node specific options for scenarios where user CLI args follow executable without scriptname
985
+ const execArgv = process.execArgv ?? [];
986
+ if (
987
+ execArgv.includes('-e') ||
988
+ execArgv.includes('--eval') ||
989
+ execArgv.includes('-p') ||
990
+ execArgv.includes('--print')
991
+ ) {
992
+ parseOptions.from = 'eval'; // internal usage, not documented
993
+ }
994
+ }
995
+
996
+ // default to using process.argv
997
+ if (argv === undefined) {
998
+ argv = process.argv;
999
+ }
1000
+ this.rawArgs = argv.slice();
1001
+
1002
+ // extract the user args and scriptPath
1003
+ let userArgs;
1004
+ switch (parseOptions.from) {
1005
+ case undefined:
1006
+ case 'node':
1007
+ this._scriptPath = argv[1];
1008
+ userArgs = argv.slice(2);
1009
+ break;
1010
+ case 'electron':
1011
+ // @ts-ignore: because defaultApp is an unknown property
1012
+ if (process.defaultApp) {
1013
+ this._scriptPath = argv[1];
1014
+ userArgs = argv.slice(2);
1015
+ } else {
1016
+ userArgs = argv.slice(1);
1017
+ }
1018
+ break;
1019
+ case 'user':
1020
+ userArgs = argv.slice(0);
1021
+ break;
1022
+ case 'eval':
1023
+ userArgs = argv.slice(1);
1024
+ break;
1025
+ default:
1026
+ throw new Error(
1027
+ `unexpected parse option { from: '${parseOptions.from}' }`,
1028
+ );
1029
+ }
1030
+
1031
+ // Find default name for program from arguments.
1032
+ if (!this._name && this._scriptPath)
1033
+ this.nameFromFilename(this._scriptPath);
1034
+ this._name = this._name || 'program';
1035
+
1036
+ return userArgs;
1037
+ }
1038
+
1039
+ /**
1040
+ * Parse `argv`, setting options and invoking commands when defined.
1041
+ *
1042
+ * Use parseAsync instead of parse if any of your action handlers are async.
1043
+ *
1044
+ * Call with no parameters to parse `process.argv`. Detects Electron and special node options like `node --eval`. Easy mode!
1045
+ *
1046
+ * Or call with an array of strings to parse, and optionally where the user arguments start by specifying where the arguments are `from`:
1047
+ * - `'node'`: default, `argv[0]` is the application and `argv[1]` is the script being run, with user arguments after that
1048
+ * - `'electron'`: `argv[0]` is the application and `argv[1]` varies depending on whether the electron application is packaged
1049
+ * - `'user'`: just user arguments
1050
+ *
1051
+ * @example
1052
+ * program.parse(); // parse process.argv and auto-detect electron and special node flags
1053
+ * program.parse(process.argv); // assume argv[0] is app and argv[1] is script
1054
+ * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
1055
+ *
1056
+ * @param {string[]} [argv] - optional, defaults to process.argv
1057
+ * @param {object} [parseOptions] - optionally specify style of options with from: node/user/electron
1058
+ * @param {string} [parseOptions.from] - where the args are from: 'node', 'user', 'electron'
1059
+ * @return {Command} `this` command for chaining
1060
+ */
1061
+
1062
+ parse(argv, parseOptions) {
1063
+ const userArgs = this._prepareUserArgs(argv, parseOptions);
1064
+ this._parseCommand([], userArgs);
1065
+
1066
+ return this;
1067
+ }
1068
+
1069
+ /**
1070
+ * Parse `argv`, setting options and invoking commands when defined.
1071
+ *
1072
+ * Call with no parameters to parse `process.argv`. Detects Electron and special node options like `node --eval`. Easy mode!
1073
+ *
1074
+ * Or call with an array of strings to parse, and optionally where the user arguments start by specifying where the arguments are `from`:
1075
+ * - `'node'`: default, `argv[0]` is the application and `argv[1]` is the script being run, with user arguments after that
1076
+ * - `'electron'`: `argv[0]` is the application and `argv[1]` varies depending on whether the electron application is packaged
1077
+ * - `'user'`: just user arguments
1078
+ *
1079
+ * @example
1080
+ * await program.parseAsync(); // parse process.argv and auto-detect electron and special node flags
1081
+ * await program.parseAsync(process.argv); // assume argv[0] is app and argv[1] is script
1082
+ * await program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
1083
+ *
1084
+ * @param {string[]} [argv]
1085
+ * @param {object} [parseOptions]
1086
+ * @param {string} parseOptions.from - where the args are from: 'node', 'user', 'electron'
1087
+ * @return {Promise}
1088
+ */
1089
+
1090
+ async parseAsync(argv, parseOptions) {
1091
+ const userArgs = this._prepareUserArgs(argv, parseOptions);
1092
+ await this._parseCommand([], userArgs);
1093
+
1094
+ return this;
1095
+ }
1096
+
1097
+ /**
1098
+ * Execute a sub-command executable.
1099
+ *
1100
+ * @private
1101
+ */
1102
+
1103
+ _executeSubCommand(subcommand, args) {
1104
+ args = args.slice();
1105
+ let launchWithNode = false; // Use node for source targets so do not need to get permissions correct, and on Windows.
1106
+ const sourceExt = ['.js', '.ts', '.tsx', '.mjs', '.cjs'];
1107
+
1108
+ function findFile(baseDir, baseName) {
1109
+ // Look for specified file
1110
+ const localBin = path.resolve(baseDir, baseName);
1111
+ if (fs.existsSync(localBin)) return localBin;
1112
+
1113
+ // Stop looking if candidate already has an expected extension.
1114
+ if (sourceExt.includes(path.extname(baseName))) return undefined;
1115
+
1116
+ // Try all the extensions.
1117
+ const foundExt = sourceExt.find((ext) =>
1118
+ fs.existsSync(`${localBin}${ext}`),
1119
+ );
1120
+ if (foundExt) return `${localBin}${foundExt}`;
1121
+
1122
+ return undefined;
1123
+ }
1124
+
1125
+ // Not checking for help first. Unlikely to have mandatory and executable, and can't robustly test for help flags in external command.
1126
+ this._checkForMissingMandatoryOptions();
1127
+ this._checkForConflictingOptions();
1128
+
1129
+ // executableFile and executableDir might be full path, or just a name
1130
+ let executableFile =
1131
+ subcommand._executableFile || `${this._name}-${subcommand._name}`;
1132
+ let executableDir = this._executableDir || '';
1133
+ if (this._scriptPath) {
1134
+ let resolvedScriptPath; // resolve possible symlink for installed npm binary
1135
+ try {
1136
+ resolvedScriptPath = fs.realpathSync(this._scriptPath);
1137
+ } catch (err) {
1138
+ resolvedScriptPath = this._scriptPath;
1139
+ }
1140
+ executableDir = path.resolve(
1141
+ path.dirname(resolvedScriptPath),
1142
+ executableDir,
1143
+ );
1144
+ }
1145
+
1146
+ // Look for a local file in preference to a command in PATH.
1147
+ if (executableDir) {
1148
+ let localFile = findFile(executableDir, executableFile);
1149
+
1150
+ // Legacy search using prefix of script name instead of command name
1151
+ if (!localFile && !subcommand._executableFile && this._scriptPath) {
1152
+ const legacyName = path.basename(
1153
+ this._scriptPath,
1154
+ path.extname(this._scriptPath),
1155
+ );
1156
+ if (legacyName !== this._name) {
1157
+ localFile = findFile(
1158
+ executableDir,
1159
+ `${legacyName}-${subcommand._name}`,
1160
+ );
1161
+ }
1162
+ }
1163
+ executableFile = localFile || executableFile;
1164
+ }
1165
+
1166
+ launchWithNode = sourceExt.includes(path.extname(executableFile));
1167
+
1168
+ let proc;
1169
+ if (process.platform !== 'win32') {
1170
+ if (launchWithNode) {
1171
+ args.unshift(executableFile);
1172
+ // add executable arguments to spawn
1173
+ args = incrementNodeInspectorPort(process.execArgv).concat(args);
1174
+
1175
+ proc = childProcess.spawn(process.argv[0], args, { stdio: 'inherit' });
1176
+ } else {
1177
+ proc = childProcess.spawn(executableFile, args, { stdio: 'inherit' });
1178
+ }
1179
+ } else {
1180
+ args.unshift(executableFile);
1181
+ // add executable arguments to spawn
1182
+ args = incrementNodeInspectorPort(process.execArgv).concat(args);
1183
+ proc = childProcess.spawn(process.execPath, args, { stdio: 'inherit' });
1184
+ }
1185
+
1186
+ if (!proc.killed) {
1187
+ // testing mainly to avoid leak warnings during unit tests with mocked spawn
1188
+ const signals = ['SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGINT', 'SIGHUP'];
1189
+ signals.forEach((signal) => {
1190
+ process.on(signal, () => {
1191
+ if (proc.killed === false && proc.exitCode === null) {
1192
+ // @ts-ignore because signals not typed to known strings
1193
+ proc.kill(signal);
1194
+ }
1195
+ });
1196
+ });
1197
+ }
1198
+
1199
+ // By default terminate process when spawned process terminates.
1200
+ const exitCallback = this._exitCallback;
1201
+ proc.on('close', (code) => {
1202
+ code = code ?? 1; // code is null if spawned process terminated due to a signal
1203
+ if (!exitCallback) {
1204
+ process.exit(code);
1205
+ } else {
1206
+ exitCallback(
1207
+ new CommanderError(
1208
+ code,
1209
+ 'commander.executeSubCommandAsync',
1210
+ '(close)',
1211
+ ),
1212
+ );
1213
+ }
1214
+ });
1215
+ proc.on('error', (err) => {
1216
+ // @ts-ignore: because err.code is an unknown property
1217
+ if (err.code === 'ENOENT') {
1218
+ const executableDirMessage = executableDir
1219
+ ? `searched for local subcommand relative to directory '${executableDir}'`
1220
+ : 'no directory for search for local subcommand, use .executableDir() to supply a custom directory';
1221
+ const executableMissing = `'${executableFile}' does not exist
1222
+ - if '${subcommand._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
1223
+ - if the default executable name is not suitable, use the executableFile option to supply a custom name or path
1224
+ - ${executableDirMessage}`;
1225
+ throw new Error(executableMissing);
1226
+ // @ts-ignore: because err.code is an unknown property
1227
+ } else if (err.code === 'EACCES') {
1228
+ throw new Error(`'${executableFile}' not executable`);
1229
+ }
1230
+ if (!exitCallback) {
1231
+ process.exit(1);
1232
+ } else {
1233
+ const wrappedError = new CommanderError(
1234
+ 1,
1235
+ 'commander.executeSubCommandAsync',
1236
+ '(error)',
1237
+ );
1238
+ wrappedError.nestedError = err;
1239
+ exitCallback(wrappedError);
1240
+ }
1241
+ });
1242
+
1243
+ // Store the reference to the child process
1244
+ this.runningCommand = proc;
1245
+ }
1246
+
1247
+ /**
1248
+ * @private
1249
+ */
1250
+
1251
+ _dispatchSubcommand(commandName, operands, unknown) {
1252
+ const subCommand = this._findCommand(commandName);
1253
+ if (!subCommand) this.help({ error: true });
1254
+
1255
+ let promiseChain;
1256
+ promiseChain = this._chainOrCallSubCommandHook(
1257
+ promiseChain,
1258
+ subCommand,
1259
+ 'preSubcommand',
1260
+ );
1261
+ promiseChain = this._chainOrCall(promiseChain, () => {
1262
+ if (subCommand._executableHandler) {
1263
+ this._executeSubCommand(subCommand, operands.concat(unknown));
1264
+ } else {
1265
+ return subCommand._parseCommand(operands, unknown);
1266
+ }
1267
+ });
1268
+ return promiseChain;
1269
+ }
1270
+
1271
+ /**
1272
+ * Invoke help directly if possible, or dispatch if necessary.
1273
+ * e.g. help foo
1274
+ *
1275
+ * @private
1276
+ */
1277
+
1278
+ _dispatchHelpCommand(subcommandName) {
1279
+ if (!subcommandName) {
1280
+ this.help();
1281
+ }
1282
+ const subCommand = this._findCommand(subcommandName);
1283
+ if (subCommand && !subCommand._executableHandler) {
1284
+ subCommand.help();
1285
+ }
1286
+
1287
+ // Fallback to parsing the help flag to invoke the help.
1288
+ return this._dispatchSubcommand(
1289
+ subcommandName,
1290
+ [],
1291
+ [this._getHelpOption()?.long ?? this._getHelpOption()?.short ?? '--help'],
1292
+ );
1293
+ }
1294
+
1295
+ /**
1296
+ * Check this.args against expected this.registeredArguments.
1297
+ *
1298
+ * @private
1299
+ */
1300
+
1301
+ _checkNumberOfArguments() {
1302
+ // too few
1303
+ this.registeredArguments.forEach((arg, i) => {
1304
+ if (arg.required && this.args[i] == null) {
1305
+ this.missingArgument(arg.name());
1306
+ }
1307
+ });
1308
+ // too many
1309
+ if (
1310
+ this.registeredArguments.length > 0 &&
1311
+ this.registeredArguments[this.registeredArguments.length - 1].variadic
1312
+ ) {
1313
+ return;
1314
+ }
1315
+ if (this.args.length > this.registeredArguments.length) {
1316
+ this._excessArguments(this.args);
1317
+ }
1318
+ }
1319
+
1320
+ /**
1321
+ * Process this.args using this.registeredArguments and save as this.processedArgs!
1322
+ *
1323
+ * @private
1324
+ */
1325
+
1326
+ _processArguments() {
1327
+ const myParseArg = (argument, value, previous) => {
1328
+ // Extra processing for nice error message on parsing failure.
1329
+ let parsedValue = value;
1330
+ if (value !== null && argument.parseArg) {
1331
+ const invalidValueMessage = `error: command-argument value '${value}' is invalid for argument '${argument.name()}'.`;
1332
+ parsedValue = this._callParseArg(
1333
+ argument,
1334
+ value,
1335
+ previous,
1336
+ invalidValueMessage,
1337
+ );
1338
+ }
1339
+ return parsedValue;
1340
+ };
1341
+
1342
+ this._checkNumberOfArguments();
1343
+
1344
+ const processedArgs = [];
1345
+ this.registeredArguments.forEach((declaredArg, index) => {
1346
+ let value = declaredArg.defaultValue;
1347
+ if (declaredArg.variadic) {
1348
+ // Collect together remaining arguments for passing together as an array.
1349
+ if (index < this.args.length) {
1350
+ value = this.args.slice(index);
1351
+ if (declaredArg.parseArg) {
1352
+ value = value.reduce((processed, v) => {
1353
+ return myParseArg(declaredArg, v, processed);
1354
+ }, declaredArg.defaultValue);
1355
+ }
1356
+ } else if (value === undefined) {
1357
+ value = [];
1358
+ }
1359
+ } else if (index < this.args.length) {
1360
+ value = this.args[index];
1361
+ if (declaredArg.parseArg) {
1362
+ value = myParseArg(declaredArg, value, declaredArg.defaultValue);
1363
+ }
1364
+ }
1365
+ processedArgs[index] = value;
1366
+ });
1367
+ this.processedArgs = processedArgs;
1368
+ }
1369
+
1370
+ /**
1371
+ * Once we have a promise we chain, but call synchronously until then.
1372
+ *
1373
+ * @param {(Promise|undefined)} promise
1374
+ * @param {Function} fn
1375
+ * @return {(Promise|undefined)}
1376
+ * @private
1377
+ */
1378
+
1379
+ _chainOrCall(promise, fn) {
1380
+ // thenable
1381
+ if (promise && promise.then && typeof promise.then === 'function') {
1382
+ // already have a promise, chain callback
1383
+ return promise.then(() => fn());
1384
+ }
1385
+ // callback might return a promise
1386
+ return fn();
1387
+ }
1388
+
1389
+ /**
1390
+ *
1391
+ * @param {(Promise|undefined)} promise
1392
+ * @param {string} event
1393
+ * @return {(Promise|undefined)}
1394
+ * @private
1395
+ */
1396
+
1397
+ _chainOrCallHooks(promise, event) {
1398
+ let result = promise;
1399
+ const hooks = [];
1400
+ this._getCommandAndAncestors()
1401
+ .reverse()
1402
+ .filter((cmd) => cmd._lifeCycleHooks[event] !== undefined)
1403
+ .forEach((hookedCommand) => {
1404
+ hookedCommand._lifeCycleHooks[event].forEach((callback) => {
1405
+ hooks.push({ hookedCommand, callback });
1406
+ });
1407
+ });
1408
+ if (event === 'postAction') {
1409
+ hooks.reverse();
1410
+ }
1411
+
1412
+ hooks.forEach((hookDetail) => {
1413
+ result = this._chainOrCall(result, () => {
1414
+ return hookDetail.callback(hookDetail.hookedCommand, this);
1415
+ });
1416
+ });
1417
+ return result;
1418
+ }
1419
+
1420
+ /**
1421
+ *
1422
+ * @param {(Promise|undefined)} promise
1423
+ * @param {Command} subCommand
1424
+ * @param {string} event
1425
+ * @return {(Promise|undefined)}
1426
+ * @private
1427
+ */
1428
+
1429
+ _chainOrCallSubCommandHook(promise, subCommand, event) {
1430
+ let result = promise;
1431
+ if (this._lifeCycleHooks[event] !== undefined) {
1432
+ this._lifeCycleHooks[event].forEach((hook) => {
1433
+ result = this._chainOrCall(result, () => {
1434
+ return hook(this, subCommand);
1435
+ });
1436
+ });
1437
+ }
1438
+ return result;
1439
+ }
1440
+
1441
+ /**
1442
+ * Process arguments in context of this command.
1443
+ * Returns action result, in case it is a promise.
1444
+ *
1445
+ * @private
1446
+ */
1447
+
1448
+ _parseCommand(operands, unknown) {
1449
+ const parsed = this.parseOptions(unknown);
1450
+ this._parseOptionsEnv(); // after cli, so parseArg not called on both cli and env
1451
+ this._parseOptionsImplied();
1452
+ operands = operands.concat(parsed.operands);
1453
+ unknown = parsed.unknown;
1454
+ this.args = operands.concat(unknown);
1455
+
1456
+ if (operands && this._findCommand(operands[0])) {
1457
+ return this._dispatchSubcommand(operands[0], operands.slice(1), unknown);
1458
+ }
1459
+ if (
1460
+ this._getHelpCommand() &&
1461
+ operands[0] === this._getHelpCommand().name()
1462
+ ) {
1463
+ return this._dispatchHelpCommand(operands[1]);
1464
+ }
1465
+ if (this._defaultCommandName) {
1466
+ this._outputHelpIfRequested(unknown); // Run the help for default command from parent rather than passing to default command
1467
+ return this._dispatchSubcommand(
1468
+ this._defaultCommandName,
1469
+ operands,
1470
+ unknown,
1471
+ );
1472
+ }
1473
+ if (
1474
+ this.commands.length &&
1475
+ this.args.length === 0 &&
1476
+ !this._actionHandler &&
1477
+ !this._defaultCommandName
1478
+ ) {
1479
+ // probably missing subcommand and no handler, user needs help (and exit)
1480
+ this.help({ error: true });
1481
+ }
1482
+
1483
+ this._outputHelpIfRequested(parsed.unknown);
1484
+ this._checkForMissingMandatoryOptions();
1485
+ this._checkForConflictingOptions();
1486
+
1487
+ // We do not always call this check to avoid masking a "better" error, like unknown command.
1488
+ const checkForUnknownOptions = () => {
1489
+ if (parsed.unknown.length > 0) {
1490
+ this.unknownOption(parsed.unknown[0]);
1491
+ }
1492
+ };
1493
+
1494
+ const commandEvent = `command:${this.name()}`;
1495
+ if (this._actionHandler) {
1496
+ checkForUnknownOptions();
1497
+ this._processArguments();
1498
+
1499
+ let promiseChain;
1500
+ promiseChain = this._chainOrCallHooks(promiseChain, 'preAction');
1501
+ promiseChain = this._chainOrCall(promiseChain, () =>
1502
+ this._actionHandler(this.processedArgs),
1503
+ );
1504
+ if (this.parent) {
1505
+ promiseChain = this._chainOrCall(promiseChain, () => {
1506
+ this.parent.emit(commandEvent, operands, unknown); // legacy
1507
+ });
1508
+ }
1509
+ promiseChain = this._chainOrCallHooks(promiseChain, 'postAction');
1510
+ return promiseChain;
1511
+ }
1512
+ if (this.parent && this.parent.listenerCount(commandEvent)) {
1513
+ checkForUnknownOptions();
1514
+ this._processArguments();
1515
+ this.parent.emit(commandEvent, operands, unknown); // legacy
1516
+ } else if (operands.length) {
1517
+ if (this._findCommand('*')) {
1518
+ // legacy default command
1519
+ return this._dispatchSubcommand('*', operands, unknown);
1520
+ }
1521
+ if (this.listenerCount('command:*')) {
1522
+ // skip option check, emit event for possible misspelling suggestion
1523
+ this.emit('command:*', operands, unknown);
1524
+ } else if (this.commands.length) {
1525
+ this.unknownCommand();
1526
+ } else {
1527
+ checkForUnknownOptions();
1528
+ this._processArguments();
1529
+ }
1530
+ } else if (this.commands.length) {
1531
+ checkForUnknownOptions();
1532
+ // This command has subcommands and nothing hooked up at this level, so display help (and exit).
1533
+ this.help({ error: true });
1534
+ } else {
1535
+ checkForUnknownOptions();
1536
+ this._processArguments();
1537
+ // fall through for caller to handle after calling .parse()
1538
+ }
1539
+ }
1540
+
1541
+ /**
1542
+ * Find matching command.
1543
+ *
1544
+ * @private
1545
+ * @return {Command | undefined}
1546
+ */
1547
+ _findCommand(name) {
1548
+ if (!name) return undefined;
1549
+ return this.commands.find(
1550
+ (cmd) => cmd._name === name || cmd._aliases.includes(name),
1551
+ );
1552
+ }
1553
+
1554
+ /**
1555
+ * Return an option matching `arg` if any.
1556
+ *
1557
+ * @param {string} arg
1558
+ * @return {Option}
1559
+ * @package
1560
+ */
1561
+
1562
+ _findOption(arg) {
1563
+ return this.options.find((option) => option.is(arg));
1564
+ }
1565
+
1566
+ /**
1567
+ * Display an error message if a mandatory option does not have a value.
1568
+ * Called after checking for help flags in leaf subcommand.
1569
+ *
1570
+ * @private
1571
+ */
1572
+
1573
+ _checkForMissingMandatoryOptions() {
1574
+ // Walk up hierarchy so can call in subcommand after checking for displaying help.
1575
+ this._getCommandAndAncestors().forEach((cmd) => {
1576
+ cmd.options.forEach((anOption) => {
1577
+ if (
1578
+ anOption.mandatory &&
1579
+ cmd.getOptionValue(anOption.attributeName()) === undefined
1580
+ ) {
1581
+ cmd.missingMandatoryOptionValue(anOption);
1582
+ }
1583
+ });
1584
+ });
1585
+ }
1586
+
1587
+ /**
1588
+ * Display an error message if conflicting options are used together in this.
1589
+ *
1590
+ * @private
1591
+ */
1592
+ _checkForConflictingLocalOptions() {
1593
+ const definedNonDefaultOptions = this.options.filter((option) => {
1594
+ const optionKey = option.attributeName();
1595
+ if (this.getOptionValue(optionKey) === undefined) {
1596
+ return false;
1597
+ }
1598
+ return this.getOptionValueSource(optionKey) !== 'default';
1599
+ });
1600
+
1601
+ const optionsWithConflicting = definedNonDefaultOptions.filter(
1602
+ (option) => option.conflictsWith.length > 0,
1603
+ );
1604
+
1605
+ optionsWithConflicting.forEach((option) => {
1606
+ const conflictingAndDefined = definedNonDefaultOptions.find((defined) =>
1607
+ option.conflictsWith.includes(defined.attributeName()),
1608
+ );
1609
+ if (conflictingAndDefined) {
1610
+ this._conflictingOption(option, conflictingAndDefined);
1611
+ }
1612
+ });
1613
+ }
1614
+
1615
+ /**
1616
+ * Display an error message if conflicting options are used together.
1617
+ * Called after checking for help flags in leaf subcommand.
1618
+ *
1619
+ * @private
1620
+ */
1621
+ _checkForConflictingOptions() {
1622
+ // Walk up hierarchy so can call in subcommand after checking for displaying help.
1623
+ this._getCommandAndAncestors().forEach((cmd) => {
1624
+ cmd._checkForConflictingLocalOptions();
1625
+ });
1626
+ }
1627
+
1628
+ /**
1629
+ * Parse options from `argv` removing known options,
1630
+ * and return argv split into operands and unknown arguments.
1631
+ *
1632
+ * Examples:
1633
+ *
1634
+ * argv => operands, unknown
1635
+ * --known kkk op => [op], []
1636
+ * op --known kkk => [op], []
1637
+ * sub --unknown uuu op => [sub], [--unknown uuu op]
1638
+ * sub -- --unknown uuu op => [sub --unknown uuu op], []
1639
+ *
1640
+ * @param {string[]} argv
1641
+ * @return {{operands: string[], unknown: string[]}}
1642
+ */
1643
+
1644
+ parseOptions(argv) {
1645
+ const operands = []; // operands, not options or values
1646
+ const unknown = []; // first unknown option and remaining unknown args
1647
+ let dest = operands;
1648
+ const args = argv.slice();
1649
+
1650
+ function maybeOption(arg) {
1651
+ return arg.length > 1 && arg[0] === '-';
1652
+ }
1653
+
1654
+ // parse options
1655
+ let activeVariadicOption = null;
1656
+ while (args.length) {
1657
+ const arg = args.shift();
1658
+
1659
+ // literal
1660
+ if (arg === '--') {
1661
+ if (dest === unknown) dest.push(arg);
1662
+ dest.push(...args);
1663
+ break;
1664
+ }
1665
+
1666
+ if (activeVariadicOption && !maybeOption(arg)) {
1667
+ this.emit(`option:${activeVariadicOption.name()}`, arg);
1668
+ continue;
1669
+ }
1670
+ activeVariadicOption = null;
1671
+
1672
+ if (maybeOption(arg)) {
1673
+ const option = this._findOption(arg);
1674
+ // recognised option, call listener to assign value with possible custom processing
1675
+ if (option) {
1676
+ if (option.required) {
1677
+ const value = args.shift();
1678
+ if (value === undefined) this.optionMissingArgument(option);
1679
+ this.emit(`option:${option.name()}`, value);
1680
+ } else if (option.optional) {
1681
+ let value = null;
1682
+ // historical behaviour is optional value is following arg unless an option
1683
+ if (args.length > 0 && !maybeOption(args[0])) {
1684
+ value = args.shift();
1685
+ }
1686
+ this.emit(`option:${option.name()}`, value);
1687
+ } else {
1688
+ // boolean flag
1689
+ this.emit(`option:${option.name()}`);
1690
+ }
1691
+ activeVariadicOption = option.variadic ? option : null;
1692
+ continue;
1693
+ }
1694
+ }
1695
+
1696
+ // Look for combo options following single dash, eat first one if known.
1697
+ if (arg.length > 2 && arg[0] === '-' && arg[1] !== '-') {
1698
+ const option = this._findOption(`-${arg[1]}`);
1699
+ if (option) {
1700
+ if (
1701
+ option.required ||
1702
+ (option.optional && this._combineFlagAndOptionalValue)
1703
+ ) {
1704
+ // option with value following in same argument
1705
+ this.emit(`option:${option.name()}`, arg.slice(2));
1706
+ } else {
1707
+ // boolean option, emit and put back remainder of arg for further processing
1708
+ this.emit(`option:${option.name()}`);
1709
+ args.unshift(`-${arg.slice(2)}`);
1710
+ }
1711
+ continue;
1712
+ }
1713
+ }
1714
+
1715
+ // Look for known long flag with value, like --foo=bar
1716
+ if (/^--[^=]+=/.test(arg)) {
1717
+ const index = arg.indexOf('=');
1718
+ const option = this._findOption(arg.slice(0, index));
1719
+ if (option && (option.required || option.optional)) {
1720
+ this.emit(`option:${option.name()}`, arg.slice(index + 1));
1721
+ continue;
1722
+ }
1723
+ }
1724
+
1725
+ // Not a recognised option by this command.
1726
+ // Might be a command-argument, or subcommand option, or unknown option, or help command or option.
1727
+
1728
+ // An unknown option means further arguments also classified as unknown so can be reprocessed by subcommands.
1729
+ if (maybeOption(arg)) {
1730
+ dest = unknown;
1731
+ }
1732
+
1733
+ // If using positionalOptions, stop processing our options at subcommand.
1734
+ if (
1735
+ (this._enablePositionalOptions || this._passThroughOptions) &&
1736
+ operands.length === 0 &&
1737
+ unknown.length === 0
1738
+ ) {
1739
+ if (this._findCommand(arg)) {
1740
+ operands.push(arg);
1741
+ if (args.length > 0) unknown.push(...args);
1742
+ break;
1743
+ } else if (
1744
+ this._getHelpCommand() &&
1745
+ arg === this._getHelpCommand().name()
1746
+ ) {
1747
+ operands.push(arg);
1748
+ if (args.length > 0) operands.push(...args);
1749
+ break;
1750
+ } else if (this._defaultCommandName) {
1751
+ unknown.push(arg);
1752
+ if (args.length > 0) unknown.push(...args);
1753
+ break;
1754
+ }
1755
+ }
1756
+
1757
+ // If using passThroughOptions, stop processing options at first command-argument.
1758
+ if (this._passThroughOptions) {
1759
+ dest.push(arg);
1760
+ if (args.length > 0) dest.push(...args);
1761
+ break;
1762
+ }
1763
+
1764
+ // add arg
1765
+ dest.push(arg);
1766
+ }
1767
+
1768
+ return { operands, unknown };
1769
+ }
1770
+
1771
+ /**
1772
+ * Return an object containing local option values as key-value pairs.
1773
+ *
1774
+ * @return {object}
1775
+ */
1776
+ opts() {
1777
+ if (this._storeOptionsAsProperties) {
1778
+ // Preserve original behaviour so backwards compatible when still using properties
1779
+ const result = {};
1780
+ const len = this.options.length;
1781
+
1782
+ for (let i = 0; i < len; i++) {
1783
+ const key = this.options[i].attributeName();
1784
+ result[key] =
1785
+ key === this._versionOptionName ? this._version : this[key];
1786
+ }
1787
+ return result;
1788
+ }
1789
+
1790
+ return this._optionValues;
1791
+ }
1792
+
1793
+ /**
1794
+ * Return an object containing merged local and global option values as key-value pairs.
1795
+ *
1796
+ * @return {object}
1797
+ */
1798
+ optsWithGlobals() {
1799
+ // globals overwrite locals
1800
+ return this._getCommandAndAncestors().reduce(
1801
+ (combinedOptions, cmd) => Object.assign(combinedOptions, cmd.opts()),
1802
+ {},
1803
+ );
1804
+ }
1805
+
1806
+ /**
1807
+ * Display error message and exit (or call exitOverride).
1808
+ *
1809
+ * @param {string} message
1810
+ * @param {object} [errorOptions]
1811
+ * @param {string} [errorOptions.code] - an id string representing the error
1812
+ * @param {number} [errorOptions.exitCode] - used with process.exit
1813
+ */
1814
+ error(message, errorOptions) {
1815
+ // output handling
1816
+ this._outputConfiguration.outputError(
1817
+ `${message}\n`,
1818
+ this._outputConfiguration.writeErr,
1819
+ );
1820
+ if (typeof this._showHelpAfterError === 'string') {
1821
+ this._outputConfiguration.writeErr(`${this._showHelpAfterError}\n`);
1822
+ } else if (this._showHelpAfterError) {
1823
+ this._outputConfiguration.writeErr('\n');
1824
+ this.outputHelp({ error: true });
1825
+ }
1826
+
1827
+ // exit handling
1828
+ const config = errorOptions || {};
1829
+ const exitCode = config.exitCode || 1;
1830
+ const code = config.code || 'commander.error';
1831
+ this._exit(exitCode, code, message);
1832
+ }
1833
+
1834
+ /**
1835
+ * Apply any option related environment variables, if option does
1836
+ * not have a value from cli or client code.
1837
+ *
1838
+ * @private
1839
+ */
1840
+ _parseOptionsEnv() {
1841
+ this.options.forEach((option) => {
1842
+ if (option.envVar && option.envVar in process.env) {
1843
+ const optionKey = option.attributeName();
1844
+ // Priority check. Do not overwrite cli or options from unknown source (client-code).
1845
+ if (
1846
+ this.getOptionValue(optionKey) === undefined ||
1847
+ ['default', 'config', 'env'].includes(
1848
+ this.getOptionValueSource(optionKey),
1849
+ )
1850
+ ) {
1851
+ if (option.required || option.optional) {
1852
+ // option can take a value
1853
+ // keep very simple, optional always takes value
1854
+ this.emit(`optionEnv:${option.name()}`, process.env[option.envVar]);
1855
+ } else {
1856
+ // boolean
1857
+ // keep very simple, only care that envVar defined and not the value
1858
+ this.emit(`optionEnv:${option.name()}`);
1859
+ }
1860
+ }
1861
+ }
1862
+ });
1863
+ }
1864
+
1865
+ /**
1866
+ * Apply any implied option values, if option is undefined or default value.
1867
+ *
1868
+ * @private
1869
+ */
1870
+ _parseOptionsImplied() {
1871
+ const dualHelper = new DualOptions(this.options);
1872
+ const hasCustomOptionValue = (optionKey) => {
1873
+ return (
1874
+ this.getOptionValue(optionKey) !== undefined &&
1875
+ !['default', 'implied'].includes(this.getOptionValueSource(optionKey))
1876
+ );
1877
+ };
1878
+ this.options
1879
+ .filter(
1880
+ (option) =>
1881
+ option.implied !== undefined &&
1882
+ hasCustomOptionValue(option.attributeName()) &&
1883
+ dualHelper.valueFromOption(
1884
+ this.getOptionValue(option.attributeName()),
1885
+ option,
1886
+ ),
1887
+ )
1888
+ .forEach((option) => {
1889
+ Object.keys(option.implied)
1890
+ .filter((impliedKey) => !hasCustomOptionValue(impliedKey))
1891
+ .forEach((impliedKey) => {
1892
+ this.setOptionValueWithSource(
1893
+ impliedKey,
1894
+ option.implied[impliedKey],
1895
+ 'implied',
1896
+ );
1897
+ });
1898
+ });
1899
+ }
1900
+
1901
+ /**
1902
+ * Argument `name` is missing.
1903
+ *
1904
+ * @param {string} name
1905
+ * @private
1906
+ */
1907
+
1908
+ missingArgument(name) {
1909
+ const message = `error: missing required argument '${name}'`;
1910
+ this.error(message, { code: 'commander.missingArgument' });
1911
+ }
1912
+
1913
+ /**
1914
+ * `Option` is missing an argument.
1915
+ *
1916
+ * @param {Option} option
1917
+ * @private
1918
+ */
1919
+
1920
+ optionMissingArgument(option) {
1921
+ const message = `error: option '${option.flags}' argument missing`;
1922
+ this.error(message, { code: 'commander.optionMissingArgument' });
1923
+ }
1924
+
1925
+ /**
1926
+ * `Option` does not have a value, and is a mandatory option.
1927
+ *
1928
+ * @param {Option} option
1929
+ * @private
1930
+ */
1931
+
1932
+ missingMandatoryOptionValue(option) {
1933
+ const message = `error: required option '${option.flags}' not specified`;
1934
+ this.error(message, { code: 'commander.missingMandatoryOptionValue' });
1935
+ }
1936
+
1937
+ /**
1938
+ * `Option` conflicts with another option.
1939
+ *
1940
+ * @param {Option} option
1941
+ * @param {Option} conflictingOption
1942
+ * @private
1943
+ */
1944
+ _conflictingOption(option, conflictingOption) {
1945
+ // The calling code does not know whether a negated option is the source of the
1946
+ // value, so do some work to take an educated guess.
1947
+ const findBestOptionFromValue = (option) => {
1948
+ const optionKey = option.attributeName();
1949
+ const optionValue = this.getOptionValue(optionKey);
1950
+ const negativeOption = this.options.find(
1951
+ (target) => target.negate && optionKey === target.attributeName(),
1952
+ );
1953
+ const positiveOption = this.options.find(
1954
+ (target) => !target.negate && optionKey === target.attributeName(),
1955
+ );
1956
+ if (
1957
+ negativeOption &&
1958
+ ((negativeOption.presetArg === undefined && optionValue === false) ||
1959
+ (negativeOption.presetArg !== undefined &&
1960
+ optionValue === negativeOption.presetArg))
1961
+ ) {
1962
+ return negativeOption;
1963
+ }
1964
+ return positiveOption || option;
1965
+ };
1966
+
1967
+ const getErrorMessage = (option) => {
1968
+ const bestOption = findBestOptionFromValue(option);
1969
+ const optionKey = bestOption.attributeName();
1970
+ const source = this.getOptionValueSource(optionKey);
1971
+ if (source === 'env') {
1972
+ return `environment variable '${bestOption.envVar}'`;
1973
+ }
1974
+ return `option '${bestOption.flags}'`;
1975
+ };
1976
+
1977
+ const message = `error: ${getErrorMessage(option)} cannot be used with ${getErrorMessage(conflictingOption)}`;
1978
+ this.error(message, { code: 'commander.conflictingOption' });
1979
+ }
1980
+
1981
+ /**
1982
+ * Unknown option `flag`.
1983
+ *
1984
+ * @param {string} flag
1985
+ * @private
1986
+ */
1987
+
1988
+ unknownOption(flag) {
1989
+ if (this._allowUnknownOption) return;
1990
+ let suggestion = '';
1991
+
1992
+ if (flag.startsWith('--') && this._showSuggestionAfterError) {
1993
+ // Looping to pick up the global options too
1994
+ let candidateFlags = [];
1995
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
1996
+ let command = this;
1997
+ do {
1998
+ const moreFlags = command
1999
+ .createHelp()
2000
+ .visibleOptions(command)
2001
+ .filter((option) => option.long)
2002
+ .map((option) => option.long);
2003
+ candidateFlags = candidateFlags.concat(moreFlags);
2004
+ command = command.parent;
2005
+ } while (command && !command._enablePositionalOptions);
2006
+ suggestion = suggestSimilar(flag, candidateFlags);
2007
+ }
2008
+
2009
+ const message = `error: unknown option '${flag}'${suggestion}`;
2010
+ this.error(message, { code: 'commander.unknownOption' });
2011
+ }
2012
+
2013
+ /**
2014
+ * Excess arguments, more than expected.
2015
+ *
2016
+ * @param {string[]} receivedArgs
2017
+ * @private
2018
+ */
2019
+
2020
+ _excessArguments(receivedArgs) {
2021
+ if (this._allowExcessArguments) return;
2022
+
2023
+ const expected = this.registeredArguments.length;
2024
+ const s = expected === 1 ? '' : 's';
2025
+ const forSubcommand = this.parent ? ` for '${this.name()}'` : '';
2026
+ const message = `error: too many arguments${forSubcommand}. Expected ${expected} argument${s} but got ${receivedArgs.length}.`;
2027
+ this.error(message, { code: 'commander.excessArguments' });
2028
+ }
2029
+
2030
+ /**
2031
+ * Unknown command.
2032
+ *
2033
+ * @private
2034
+ */
2035
+
2036
+ unknownCommand() {
2037
+ const unknownName = this.args[0];
2038
+ let suggestion = '';
2039
+
2040
+ if (this._showSuggestionAfterError) {
2041
+ const candidateNames = [];
2042
+ this.createHelp()
2043
+ .visibleCommands(this)
2044
+ .forEach((command) => {
2045
+ candidateNames.push(command.name());
2046
+ // just visible alias
2047
+ if (command.alias()) candidateNames.push(command.alias());
2048
+ });
2049
+ suggestion = suggestSimilar(unknownName, candidateNames);
2050
+ }
2051
+
2052
+ const message = `error: unknown command '${unknownName}'${suggestion}`;
2053
+ this.error(message, { code: 'commander.unknownCommand' });
2054
+ }
2055
+
2056
+ /**
2057
+ * Get or set the program version.
2058
+ *
2059
+ * This method auto-registers the "-V, --version" option which will print the version number.
2060
+ *
2061
+ * You can optionally supply the flags and description to override the defaults.
2062
+ *
2063
+ * @param {string} [str]
2064
+ * @param {string} [flags]
2065
+ * @param {string} [description]
2066
+ * @return {(this | string | undefined)} `this` command for chaining, or version string if no arguments
2067
+ */
2068
+
2069
+ version(str, flags, description) {
2070
+ if (str === undefined) return this._version;
2071
+ this._version = str;
2072
+ flags = flags || '-V, --version';
2073
+ description = description || 'output the version number';
2074
+ const versionOption = this.createOption(flags, description);
2075
+ this._versionOptionName = versionOption.attributeName();
2076
+ this._registerOption(versionOption);
2077
+
2078
+ this.on('option:' + versionOption.name(), () => {
2079
+ this._outputConfiguration.writeOut(`${str}\n`);
2080
+ this._exit(0, 'commander.version', str);
2081
+ });
2082
+ return this;
2083
+ }
2084
+
2085
+ /**
2086
+ * Set the description.
2087
+ *
2088
+ * @param {string} [str]
2089
+ * @param {object} [argsDescription]
2090
+ * @return {(string|Command)}
2091
+ */
2092
+ description(str, argsDescription) {
2093
+ if (str === undefined && argsDescription === undefined)
2094
+ return this._description;
2095
+ this._description = str;
2096
+ if (argsDescription) {
2097
+ this._argsDescription = argsDescription;
2098
+ }
2099
+ return this;
2100
+ }
2101
+
2102
+ /**
2103
+ * Set the summary. Used when listed as subcommand of parent.
2104
+ *
2105
+ * @param {string} [str]
2106
+ * @return {(string|Command)}
2107
+ */
2108
+ summary(str) {
2109
+ if (str === undefined) return this._summary;
2110
+ this._summary = str;
2111
+ return this;
2112
+ }
2113
+
2114
+ /**
2115
+ * Set an alias for the command.
2116
+ *
2117
+ * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.
2118
+ *
2119
+ * @param {string} [alias]
2120
+ * @return {(string|Command)}
2121
+ */
2122
+
2123
+ alias(alias) {
2124
+ if (alias === undefined) return this._aliases[0]; // just return first, for backwards compatibility
2125
+
2126
+ /** @type {Command} */
2127
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
2128
+ let command = this;
2129
+ if (
2130
+ this.commands.length !== 0 &&
2131
+ this.commands[this.commands.length - 1]._executableHandler
2132
+ ) {
2133
+ // assume adding alias for last added executable subcommand, rather than this
2134
+ command = this.commands[this.commands.length - 1];
2135
+ }
2136
+
2137
+ if (alias === command._name)
2138
+ throw new Error("Command alias can't be the same as its name");
2139
+ const matchingCommand = this.parent?._findCommand(alias);
2140
+ if (matchingCommand) {
2141
+ // c.f. _registerCommand
2142
+ const existingCmd = [matchingCommand.name()]
2143
+ .concat(matchingCommand.aliases())
2144
+ .join('|');
2145
+ throw new Error(
2146
+ `cannot add alias '${alias}' to command '${this.name()}' as already have command '${existingCmd}'`,
2147
+ );
2148
+ }
2149
+
2150
+ command._aliases.push(alias);
2151
+ return this;
2152
+ }
2153
+
2154
+ /**
2155
+ * Set aliases for the command.
2156
+ *
2157
+ * Only the first alias is shown in the auto-generated help.
2158
+ *
2159
+ * @param {string[]} [aliases]
2160
+ * @return {(string[]|Command)}
2161
+ */
2162
+
2163
+ aliases(aliases) {
2164
+ // Getter for the array of aliases is the main reason for having aliases() in addition to alias().
2165
+ if (aliases === undefined) return this._aliases;
2166
+
2167
+ aliases.forEach((alias) => this.alias(alias));
2168
+ return this;
2169
+ }
2170
+
2171
+ /**
2172
+ * Set / get the command usage `str`.
2173
+ *
2174
+ * @param {string} [str]
2175
+ * @return {(string|Command)}
2176
+ */
2177
+
2178
+ usage(str) {
2179
+ if (str === undefined) {
2180
+ if (this._usage) return this._usage;
2181
+
2182
+ const args = this.registeredArguments.map((arg) => {
2183
+ return humanReadableArgName(arg);
2184
+ });
2185
+ return []
2186
+ .concat(
2187
+ this.options.length || this._helpOption !== null ? '[options]' : [],
2188
+ this.commands.length ? '[command]' : [],
2189
+ this.registeredArguments.length ? args : [],
2190
+ )
2191
+ .join(' ');
2192
+ }
2193
+
2194
+ this._usage = str;
2195
+ return this;
2196
+ }
2197
+
2198
+ /**
2199
+ * Get or set the name of the command.
2200
+ *
2201
+ * @param {string} [str]
2202
+ * @return {(string|Command)}
2203
+ */
2204
+
2205
+ name(str) {
2206
+ if (str === undefined) return this._name;
2207
+ this._name = str;
2208
+ return this;
2209
+ }
2210
+
2211
+ /**
2212
+ * Set the name of the command from script filename, such as process.argv[1],
2213
+ * or require.main.filename, or __filename.
2214
+ *
2215
+ * (Used internally and public although not documented in README.)
2216
+ *
2217
+ * @example
2218
+ * program.nameFromFilename(require.main.filename);
2219
+ *
2220
+ * @param {string} filename
2221
+ * @return {Command}
2222
+ */
2223
+
2224
+ nameFromFilename(filename) {
2225
+ this._name = path.basename(filename, path.extname(filename));
2226
+
2227
+ return this;
2228
+ }
2229
+
2230
+ /**
2231
+ * Get or set the directory for searching for executable subcommands of this command.
2232
+ *
2233
+ * @example
2234
+ * program.executableDir(__dirname);
2235
+ * // or
2236
+ * program.executableDir('subcommands');
2237
+ *
2238
+ * @param {string} [path]
2239
+ * @return {(string|null|Command)}
2240
+ */
2241
+
2242
+ executableDir(path) {
2243
+ if (path === undefined) return this._executableDir;
2244
+ this._executableDir = path;
2245
+ return this;
2246
+ }
2247
+
2248
+ /**
2249
+ * Return program help documentation.
2250
+ *
2251
+ * @param {{ error: boolean }} [contextOptions] - pass {error:true} to wrap for stderr instead of stdout
2252
+ * @return {string}
2253
+ */
2254
+
2255
+ helpInformation(contextOptions) {
2256
+ const helper = this.createHelp();
2257
+ if (helper.helpWidth === undefined) {
2258
+ helper.helpWidth =
2259
+ contextOptions && contextOptions.error
2260
+ ? this._outputConfiguration.getErrHelpWidth()
2261
+ : this._outputConfiguration.getOutHelpWidth();
2262
+ }
2263
+ return helper.formatHelp(this, helper);
2264
+ }
2265
+
2266
+ /**
2267
+ * @private
2268
+ */
2269
+
2270
+ _getHelpContext(contextOptions) {
2271
+ contextOptions = contextOptions || {};
2272
+ const context = { error: !!contextOptions.error };
2273
+ let write;
2274
+ if (context.error) {
2275
+ write = (arg) => this._outputConfiguration.writeErr(arg);
2276
+ } else {
2277
+ write = (arg) => this._outputConfiguration.writeOut(arg);
2278
+ }
2279
+ context.write = contextOptions.write || write;
2280
+ context.command = this;
2281
+ return context;
2282
+ }
2283
+
2284
+ /**
2285
+ * Output help information for this command.
2286
+ *
2287
+ * Outputs built-in help, and custom text added using `.addHelpText()`.
2288
+ *
2289
+ * @param {{ error: boolean } | Function} [contextOptions] - pass {error:true} to write to stderr instead of stdout
2290
+ */
2291
+
2292
+ outputHelp(contextOptions) {
2293
+ let deprecatedCallback;
2294
+ if (typeof contextOptions === 'function') {
2295
+ deprecatedCallback = contextOptions;
2296
+ contextOptions = undefined;
2297
+ }
2298
+ const context = this._getHelpContext(contextOptions);
2299
+
2300
+ this._getCommandAndAncestors()
2301
+ .reverse()
2302
+ .forEach((command) => command.emit('beforeAllHelp', context));
2303
+ this.emit('beforeHelp', context);
2304
+
2305
+ let helpInformation = this.helpInformation(context);
2306
+ if (deprecatedCallback) {
2307
+ helpInformation = deprecatedCallback(helpInformation);
2308
+ if (
2309
+ typeof helpInformation !== 'string' &&
2310
+ !Buffer.isBuffer(helpInformation)
2311
+ ) {
2312
+ throw new Error('outputHelp callback must return a string or a Buffer');
2313
+ }
2314
+ }
2315
+ context.write(helpInformation);
2316
+
2317
+ if (this._getHelpOption()?.long) {
2318
+ this.emit(this._getHelpOption().long); // deprecated
2319
+ }
2320
+ this.emit('afterHelp', context);
2321
+ this._getCommandAndAncestors().forEach((command) =>
2322
+ command.emit('afterAllHelp', context),
2323
+ );
2324
+ }
2325
+
2326
+ /**
2327
+ * You can pass in flags and a description to customise the built-in help option.
2328
+ * Pass in false to disable the built-in help option.
2329
+ *
2330
+ * @example
2331
+ * program.helpOption('-?, --help' 'show help'); // customise
2332
+ * program.helpOption(false); // disable
2333
+ *
2334
+ * @param {(string | boolean)} flags
2335
+ * @param {string} [description]
2336
+ * @return {Command} `this` command for chaining
2337
+ */
2338
+
2339
+ helpOption(flags, description) {
2340
+ // Support disabling built-in help option.
2341
+ if (typeof flags === 'boolean') {
2342
+ if (flags) {
2343
+ this._helpOption = this._helpOption ?? undefined; // preserve existing option
2344
+ } else {
2345
+ this._helpOption = null; // disable
2346
+ }
2347
+ return this;
2348
+ }
2349
+
2350
+ // Customise flags and description.
2351
+ flags = flags ?? '-h, --help';
2352
+ description = description ?? 'display help for command';
2353
+ this._helpOption = this.createOption(flags, description);
2354
+
2355
+ return this;
2356
+ }
2357
+
2358
+ /**
2359
+ * Lazy create help option.
2360
+ * Returns null if has been disabled with .helpOption(false).
2361
+ *
2362
+ * @returns {(Option | null)} the help option
2363
+ * @package
2364
+ */
2365
+ _getHelpOption() {
2366
+ // Lazy create help option on demand.
2367
+ if (this._helpOption === undefined) {
2368
+ this.helpOption(undefined, undefined);
2369
+ }
2370
+ return this._helpOption;
2371
+ }
2372
+
2373
+ /**
2374
+ * Supply your own option to use for the built-in help option.
2375
+ * This is an alternative to using helpOption() to customise the flags and description etc.
2376
+ *
2377
+ * @param {Option} option
2378
+ * @return {Command} `this` command for chaining
2379
+ */
2380
+ addHelpOption(option) {
2381
+ this._helpOption = option;
2382
+ return this;
2383
+ }
2384
+
2385
+ /**
2386
+ * Output help information and exit.
2387
+ *
2388
+ * Outputs built-in help, and custom text added using `.addHelpText()`.
2389
+ *
2390
+ * @param {{ error: boolean }} [contextOptions] - pass {error:true} to write to stderr instead of stdout
2391
+ */
2392
+
2393
+ help(contextOptions) {
2394
+ this.outputHelp(contextOptions);
2395
+ let exitCode = process.exitCode || 0;
2396
+ if (
2397
+ exitCode === 0 &&
2398
+ contextOptions &&
2399
+ typeof contextOptions !== 'function' &&
2400
+ contextOptions.error
2401
+ ) {
2402
+ exitCode = 1;
2403
+ }
2404
+ // message: do not have all displayed text available so only passing placeholder.
2405
+ this._exit(exitCode, 'commander.help', '(outputHelp)');
2406
+ }
2407
+
2408
+ /**
2409
+ * Add additional text to be displayed with the built-in help.
2410
+ *
2411
+ * Position is 'before' or 'after' to affect just this command,
2412
+ * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.
2413
+ *
2414
+ * @param {string} position - before or after built-in help
2415
+ * @param {(string | Function)} text - string to add, or a function returning a string
2416
+ * @return {Command} `this` command for chaining
2417
+ */
2418
+ addHelpText(position, text) {
2419
+ const allowedValues = ['beforeAll', 'before', 'after', 'afterAll'];
2420
+ if (!allowedValues.includes(position)) {
2421
+ throw new Error(`Unexpected value for position to addHelpText.
2422
+ Expecting one of '${allowedValues.join("', '")}'`);
2423
+ }
2424
+ const helpEvent = `${position}Help`;
2425
+ this.on(helpEvent, (context) => {
2426
+ let helpStr;
2427
+ if (typeof text === 'function') {
2428
+ helpStr = text({ error: context.error, command: context.command });
2429
+ } else {
2430
+ helpStr = text;
2431
+ }
2432
+ // Ignore falsy value when nothing to output.
2433
+ if (helpStr) {
2434
+ context.write(`${helpStr}\n`);
2435
+ }
2436
+ });
2437
+ return this;
2438
+ }
2439
+
2440
+ /**
2441
+ * Output help information if help flags specified
2442
+ *
2443
+ * @param {Array} args - array of options to search for help flags
2444
+ * @private
2445
+ */
2446
+
2447
+ _outputHelpIfRequested(args) {
2448
+ const helpOption = this._getHelpOption();
2449
+ const helpRequested = helpOption && args.find((arg) => helpOption.is(arg));
2450
+ if (helpRequested) {
2451
+ this.outputHelp();
2452
+ // (Do not have all displayed text available so only passing placeholder.)
2453
+ this._exit(0, 'commander.helpDisplayed', '(outputHelp)');
2454
+ }
2455
+ }
2456
+ }
2457
+
2458
+ /**
2459
+ * Scan arguments and increment port number for inspect calls (to avoid conflicts when spawning new command).
2460
+ *
2461
+ * @param {string[]} args - array of arguments from node.execArgv
2462
+ * @returns {string[]}
2463
+ * @private
2464
+ */
2465
+
2466
+ function incrementNodeInspectorPort(args) {
2467
+ // Testing for these options:
2468
+ // --inspect[=[host:]port]
2469
+ // --inspect-brk[=[host:]port]
2470
+ // --inspect-port=[host:]port
2471
+ return args.map((arg) => {
2472
+ if (!arg.startsWith('--inspect')) {
2473
+ return arg;
2474
+ }
2475
+ let debugOption;
2476
+ let debugHost = '127.0.0.1';
2477
+ let debugPort = '9229';
2478
+ let match;
2479
+ if ((match = arg.match(/^(--inspect(-brk)?)$/)) !== null) {
2480
+ // e.g. --inspect
2481
+ debugOption = match[1];
2482
+ } else if (
2483
+ (match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+)$/)) !== null
2484
+ ) {
2485
+ debugOption = match[1];
2486
+ if (/^\d+$/.test(match[3])) {
2487
+ // e.g. --inspect=1234
2488
+ debugPort = match[3];
2489
+ } else {
2490
+ // e.g. --inspect=localhost
2491
+ debugHost = match[3];
2492
+ }
2493
+ } else if (
2494
+ (match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/)) !== null
2495
+ ) {
2496
+ // e.g. --inspect=localhost:1234
2497
+ debugOption = match[1];
2498
+ debugHost = match[3];
2499
+ debugPort = match[4];
2500
+ }
2501
+
2502
+ if (debugOption && debugPort !== '0') {
2503
+ return `${debugOption}=${debugHost}:${parseInt(debugPort) + 1}`;
2504
+ }
2505
+ return arg;
2506
+ });
2507
+ }
2508
+
2509
+ exports.Command = Command;