auvrynt 1.0.2 → 1.0.5

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 (550) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +366 -233
  3. package/addons/auvrynt_bridge/auvrynt_bridge.gd +500 -0
  4. package/addons/auvrynt_bridge/plugin.cfg +7 -0
  5. package/bin/auvrynt-launcher.cjs +77 -0
  6. package/dist/artifact-registry.js +1 -0
  7. package/dist/aseprite-tools.js +1 -0
  8. package/dist/auth/connection-registry.js +145 -0
  9. package/dist/auth/connection-status.js +176 -0
  10. package/dist/auth/oauth-provider.js +617 -0
  11. package/dist/auth/room-registry.js +131 -0
  12. package/dist/auth/session-registry.js +531 -0
  13. package/dist/background-lifecycle.js +1 -0
  14. package/dist/blender-client.js +1 -109
  15. package/dist/blender-tools.js +1 -930
  16. package/dist/browser-stability.js +1 -0
  17. package/dist/cli/commands/help-command.js +10 -0
  18. package/dist/cli/commands/init-command.js +190 -0
  19. package/dist/cli/commands/integration-commands.js +88 -0
  20. package/dist/cli/commands/serve-command.js +83 -0
  21. package/dist/cli/commands/setup-command.js +81 -0
  22. package/dist/cli/commands/status-commands.js +166 -0
  23. package/dist/cli/commands/tunnel-command.js +127 -0
  24. package/dist/cli/commands/user-config-commands.js +105 -0
  25. package/dist/cli/dashboard-actions.js +516 -0
  26. package/dist/cli/dashboard-native-actions.js +282 -0
  27. package/dist/cli/foreground-server.js +270 -0
  28. package/dist/cli/instance-control.js +21 -0
  29. package/dist/cli/instance-lock.js +123 -0
  30. package/dist/cli/integration-bootstrap.js +206 -0
  31. package/dist/cli/lifecycle-manager.js +493 -0
  32. package/dist/cli/runtime-support.js +74 -0
  33. package/dist/cli/serena-detected-default.js +27 -0
  34. package/dist/cli/tunnel-health-monitor.js +182 -0
  35. package/dist/cli.js +82 -739
  36. package/dist/config.js +1 -243
  37. package/dist/connection-registry.js +1 -73
  38. package/dist/connection-status.js +1 -139
  39. package/dist/control-retry.js +1 -0
  40. package/dist/crash-recovery.js +1 -0
  41. package/dist/db/client.js +16 -3
  42. package/dist/db/schema.js +30 -0
  43. package/dist/dotnet-tools.js +1 -223
  44. package/dist/git-worktrees.js +1 -134
  45. package/dist/git.js +1 -41
  46. package/dist/godot-animation-tilemap.js +1 -82
  47. package/dist/godot-csharp-build.js +1 -93
  48. package/dist/godot-csharp-project.js +1 -157
  49. package/dist/godot-csharp-runner.js +1 -146
  50. package/dist/godot-csharp-semantic.js +1 -161
  51. package/dist/godot-csharp-validate.js +1 -71
  52. package/dist/godot-dotnet-env.js +1 -169
  53. package/dist/godot-editor-bridge.js +1 -140
  54. package/dist/godot-gdscript.js +1 -824
  55. package/dist/godot-project-settings.js +1 -223
  56. package/dist/godot-runtime-testing.js +1 -249
  57. package/dist/godot-tools.js +1 -183
  58. package/dist/http-rate-limit.js +1 -0
  59. package/dist/http-server-hardening.js +1 -0
  60. package/dist/image-tools.js +1 -157
  61. package/dist/infrastructure/command-reference.js +32 -0
  62. package/dist/infrastructure/config.js +424 -0
  63. package/dist/infrastructure/context7-auth.js +55 -0
  64. package/dist/infrastructure/http-rate-limit.js +42 -0
  65. package/dist/infrastructure/http-server-hardening.js +23 -0
  66. package/dist/infrastructure/integration-queue.js +46 -0
  67. package/dist/infrastructure/logger.js +129 -0
  68. package/dist/infrastructure/mcp-event-store.js +103 -0
  69. package/dist/infrastructure/ngrok-auth-pool.js +208 -0
  70. package/dist/infrastructure/request-context.js +14 -0
  71. package/dist/infrastructure/shutdown.js +37 -0
  72. package/dist/infrastructure/sse-heartbeat.js +47 -0
  73. package/dist/infrastructure/tool-capabilities.js +67 -0
  74. package/dist/infrastructure/tool-result-budget.js +175 -0
  75. package/dist/infrastructure/user-config.js +167 -0
  76. package/dist/integration-discovery.js +1 -98
  77. package/dist/integration-queue.js +1 -0
  78. package/dist/integrations/agent-reach/agent-reach-tools.js +196 -0
  79. package/dist/integrations/agent-reach/native-channels.js +468 -0
  80. package/dist/integrations/aseprite/aseprite-analysis-tools.js +368 -0
  81. package/dist/integrations/aseprite/aseprite-editing-tools.js +647 -0
  82. package/dist/integrations/aseprite/aseprite-live-tools.js +297 -0
  83. package/dist/integrations/aseprite/aseprite-safety-tools.js +594 -0
  84. package/dist/integrations/aseprite/aseprite-specialized-tools.js +289 -0
  85. package/dist/integrations/aseprite/aseprite-tools.js +837 -0
  86. package/dist/integrations/blender/blender-catalog-mesh.js +593 -0
  87. package/dist/integrations/blender/blender-catalog-object.js +906 -0
  88. package/dist/integrations/blender/blender-catalog-scene.js +266 -0
  89. package/dist/integrations/blender/blender-catalog-select.js +581 -0
  90. package/dist/integrations/blender/blender-catalog-stubs.js +7512 -0
  91. package/dist/integrations/blender/blender-catalog.js +165 -0
  92. package/dist/integrations/blender/blender-client.js +105 -0
  93. package/dist/integrations/blender/blender-tools.js +2243 -0
  94. package/dist/integrations/context7/context7-tools.js +106 -0
  95. package/dist/integrations/dotnet/dotnet-tools.js +195 -0
  96. package/dist/integrations/godot/godot-animation-tilemap.js +74 -0
  97. package/dist/integrations/godot/godot-csharp-build.js +91 -0
  98. package/dist/integrations/godot/godot-csharp-project.js +155 -0
  99. package/dist/integrations/godot/godot-csharp-runner.js +118 -0
  100. package/dist/integrations/godot/godot-csharp-semantic.js +146 -0
  101. package/dist/integrations/godot/godot-csharp-validate.js +71 -0
  102. package/dist/integrations/godot/godot-dotnet-env.js +134 -0
  103. package/dist/integrations/godot/godot-editor-bridge.js +328 -0
  104. package/dist/integrations/godot/godot-gdscript.js +536 -0
  105. package/dist/integrations/godot/godot-project-settings.js +178 -0
  106. package/dist/integrations/godot/godot-runtime-testing.js +263 -0
  107. package/dist/integrations/godot/godot-tools.js +193 -0
  108. package/dist/integrations/images/image-tools.js +414 -0
  109. package/dist/integrations/images/png-codec.js +251 -0
  110. package/dist/integrations/images/view-image.js +99 -0
  111. package/dist/integrations/images/window-capture.js +148 -0
  112. package/dist/integrations/integration-discovery.js +185 -0
  113. package/dist/integrations/obsidian/obsidian-tools.js +205 -0
  114. package/dist/integrations/playwright/browser-session.js +516 -0
  115. package/dist/integrations/playwright/browser-stability.js +36 -0
  116. package/dist/integrations/playwright/playwright-runtime.js +105 -0
  117. package/dist/integrations/playwright/web-tools.js +504 -0
  118. package/dist/integrations/roblox/roblox-helpers.js +381 -0
  119. package/dist/integrations/roblox/roblox-studio-client.js +112 -0
  120. package/dist/integrations/roblox/roblox-tools.js +106 -0
  121. package/dist/integrations/serena/serena-manager.js +464 -0
  122. package/dist/integrations/serena/serena-tools.js +411 -0
  123. package/dist/logger.js +1 -76
  124. package/dist/mcp-event-store.js +1 -0
  125. package/dist/oauth-provider.js +1 -377
  126. package/dist/pi-tools.js +1 -81
  127. package/dist/playwright-runtime.js +1 -0
  128. package/dist/process/background-lifecycle.js +189 -0
  129. package/dist/process/control-retry.js +42 -0
  130. package/dist/process/crash-recovery.js +23 -0
  131. package/dist/process/processes.js +456 -0
  132. package/dist/processes.js +1 -218
  133. package/dist/request-context.js +1 -0
  134. package/dist/review-checkpoints.js +1 -142
  135. package/dist/room-registry.js +1 -0
  136. package/dist/roots.js +1 -53
  137. package/dist/search-discovery.js +1 -271
  138. package/dist/serena-manager.js +1 -443
  139. package/dist/serena-tools.js +1 -411
  140. package/dist/server/dashboard-page-styles.js +331 -0
  141. package/dist/server/dashboard-page.js +1509 -0
  142. package/dist/server/dashboard-routes.js +46 -0
  143. package/dist/server/dashboard.js +240 -0
  144. package/dist/server/http-helpers.js +30 -0
  145. package/dist/server/integration-profile-update.js +37 -0
  146. package/dist/server/mcp-policy.js +169 -0
  147. package/dist/server/mcp-server-factory.js +127 -0
  148. package/dist/server/mcp-tool-registrar.js +182 -0
  149. package/dist/server/openai-session-hint.js +14 -0
  150. package/dist/server/tool-groups.js +29 -0
  151. package/dist/server/tool-logging.js +33 -0
  152. package/dist/server/tool-registration-shared.js +59 -0
  153. package/dist/server/tools/aseprite-advanced-tools-registration.js +547 -0
  154. package/dist/server/tools/aseprite-tools-registration.js +213 -0
  155. package/dist/server/tools/blender-tools-registration.js +690 -0
  156. package/dist/server/tools/core-file-tools-registration.js +459 -0
  157. package/dist/server/tools/dotnet-godot-window-tools-registration.js +120 -0
  158. package/dist/server/tools/godot-csharp-tools-registration.js +252 -0
  159. package/dist/server/tools/godot-gdscript-tools-registration.js +189 -0
  160. package/dist/server/tools/process-project-tools-registration.js +155 -0
  161. package/dist/server/tools/roblox-tools-registration.js +514 -0
  162. package/dist/server/tools/web-image-tools-registration.js +326 -0
  163. package/dist/server/tools/workspace-lifecycle-tools-registration.js +130 -0
  164. package/dist/server/ui-assets.js +97 -0
  165. package/dist/server/workspace-analytics.js +92 -0
  166. package/dist/server.js +453 -2713
  167. package/dist/session-registry.js +1 -0
  168. package/dist/shutdown.js +1 -0
  169. package/dist/skills.js +1 -45
  170. package/dist/sse-heartbeat.js +1 -0
  171. package/dist/tool-capabilities.js +1 -0
  172. package/dist/tool-result-budget.js +1 -0
  173. package/dist/tools/pi-tools.js +81 -0
  174. package/dist/tunnels/cloudflare-tunnel.js +217 -0
  175. package/dist/tunnels/cloudflared-service.js +174 -0
  176. package/dist/tunnels/ngrok-tunnel.js +220 -0
  177. package/dist/tunnels/tunnel-manager.js +186 -0
  178. package/dist/tunnels/tunnel-types.js +1 -0
  179. package/dist/tunnels/tunnel-utils.js +62 -0
  180. package/dist/ui/.vite/manifest.json +9 -2487
  181. package/dist/ui/assets/heavy-payload-D42A9ceL.js +1 -0
  182. package/dist/ui/assets/lightweight-diff-Cv4g9Hdr.js +13 -0
  183. package/dist/ui/assets/review-payload-DKIg1cKF.js +1 -0
  184. package/dist/ui/assets/workspace-app-CeK3NhmB.css +1 -0
  185. package/dist/ui/assets/{workspace-app-C5QsE314.js → workspace-app-CkUXnpl4.js} +6 -6
  186. package/dist/ui/brand-theme.js +23 -0
  187. package/dist/ui/workspace-app.html +15 -15
  188. package/dist/user-config.js +1 -57
  189. package/dist/view-image.js +1 -104
  190. package/dist/web-tools.js +1 -200
  191. package/dist/window-capture.js +1 -74
  192. package/dist/workspace/artifact-registry.js +69 -0
  193. package/dist/workspace/git-worktrees.js +141 -0
  194. package/dist/workspace/git.js +42 -0
  195. package/dist/workspace/review-checkpoints.js +142 -0
  196. package/dist/workspace/roots.js +56 -0
  197. package/dist/workspace/search-discovery.js +264 -0
  198. package/dist/workspace/skills.js +45 -0
  199. package/dist/workspace/workspace-store.js +219 -0
  200. package/dist/workspace/workspaces.js +314 -0
  201. package/dist/workspace-store.js +1 -125
  202. package/dist/workspaces.js +1 -226
  203. package/docs/CREATOR_STORE_FREE_ASSETS.md +162 -0
  204. package/docs/DEVELOPMENT_TOOLS.md +136 -93
  205. package/docs/assets/auvrynt-icon.png +0 -0
  206. package/docs/assets/auvrynt-icon.svg +20 -0
  207. package/docs/chatgpt-coding-workflow.md +143 -143
  208. package/docs/configuration.md +156 -124
  209. package/docs/diagnostics.md +79 -0
  210. package/docs/gotchas.md +244 -202
  211. package/docs/multi-agent-and-long-projects.md +91 -0
  212. package/docs/security.md +138 -100
  213. package/docs/setup.md +171 -131
  214. package/docs/source-layout.md +60 -0
  215. package/extensions/auvrynt_bridge/auvrynt_bridge.lua +594 -0
  216. package/extensions/auvrynt_bridge/live_analysis.lua +181 -0
  217. package/extensions/auvrynt_bridge/live_animation.lua +134 -0
  218. package/extensions/auvrynt_bridge/live_commands.lua +24 -0
  219. package/extensions/auvrynt_bridge/live_common.lua +130 -0
  220. package/extensions/auvrynt_bridge/live_document.lua +78 -0
  221. package/extensions/auvrynt_bridge/live_drawing.lua +125 -0
  222. package/extensions/auvrynt_bridge/live_effects.lua +91 -0
  223. package/extensions/auvrynt_bridge/live_palette_template.lua +167 -0
  224. package/extensions/auvrynt_bridge/live_selection.lua +110 -0
  225. package/extensions/auvrynt_bridge/live_structure.lua +129 -0
  226. package/extensions/auvrynt_bridge/package.json +17 -0
  227. package/guides/ASEPRITE_AGENT_GUIDE.md +133 -0
  228. package/guides/BLENDER_AGENT_GUIDE.md +472 -0
  229. package/guides/GODOT_AGENT_GUIDE.md +298 -0
  230. package/guides/PROJECT_ROUTER.md +165 -0
  231. package/guides/ROBLOX_AGENT_GUIDE.md +75 -0
  232. package/guides/SOFTWARE_AGENT_GUIDE.md +104 -0
  233. package/guides/WEB_AGENT_GUIDE.md +287 -0
  234. package/package.json +78 -70
  235. package/scripts/dev-server.mjs +121 -120
  236. package/scripts/live-tunnel-smoke.mjs +538 -0
  237. package/scripts/repo-hygiene.mjs +74 -0
  238. package/scripts/restart-after-crash.mjs +49 -0
  239. package/scripts/run-tests.mjs +166 -0
  240. package/dist/ui/assets/abap-CLvhMVsD.js +0 -1
  241. package/dist/ui/assets/actionscript-3--17pq3dv.js +0 -1
  242. package/dist/ui/assets/ada-C5qYipkI.js +0 -1
  243. package/dist/ui/assets/andromeeda-vGVdxbeo.js +0 -1
  244. package/dist/ui/assets/angular-html-BJqQFYI6.js +0 -1
  245. package/dist/ui/assets/angular-ts-CMJECO0Y.js +0 -1
  246. package/dist/ui/assets/apache-U0d_L8uA.js +0 -1
  247. package/dist/ui/assets/apex-CGTLDQj6.js +0 -1
  248. package/dist/ui/assets/apl-DWeXpBBr.js +0 -1
  249. package/dist/ui/assets/applescript-CCn79oCD.js +0 -1
  250. package/dist/ui/assets/ara-4CJ0cIlV.js +0 -1
  251. package/dist/ui/assets/asciidoc-DE70LPWp.js +0 -1
  252. package/dist/ui/assets/asm-Cmm7eHzH.js +0 -1
  253. package/dist/ui/assets/astro-CLbttLOq.js +0 -1
  254. package/dist/ui/assets/aurora-x-CDeNXAV0.js +0 -1
  255. package/dist/ui/assets/awk-BWXHIvNe.js +0 -1
  256. package/dist/ui/assets/ayu-dark-DluEY0Gj.js +0 -1
  257. package/dist/ui/assets/ayu-light-C3h-C4tm.js +0 -1
  258. package/dist/ui/assets/ayu-mirage-Bqwy1Gya.js +0 -1
  259. package/dist/ui/assets/ballerina-B7ZEbQpA.js +0 -1
  260. package/dist/ui/assets/bat-Bo4NYOV-.js +0 -1
  261. package/dist/ui/assets/beancount-D-usSTwE.js +0 -1
  262. package/dist/ui/assets/berry-DKpUyyne.js +0 -1
  263. package/dist/ui/assets/bibtex-Ci_nEsc7.js +0 -1
  264. package/dist/ui/assets/bicep-CUHmPFLl.js +0 -1
  265. package/dist/ui/assets/bird2-C2hNVINV.js +0 -1
  266. package/dist/ui/assets/blade-BOzY0P2V.js +0 -1
  267. package/dist/ui/assets/bsl-BkkzgIyY.js +0 -1
  268. package/dist/ui/assets/c-BG-8uJvh.js +0 -1
  269. package/dist/ui/assets/c3-CnJL0r0V.js +0 -1
  270. package/dist/ui/assets/cadence-CQ2zXKGN.js +0 -1
  271. package/dist/ui/assets/cairo-DLTphjLi.js +0 -1
  272. package/dist/ui/assets/catppuccin-frappe-3VR1Za6u.js +0 -1
  273. package/dist/ui/assets/catppuccin-latte-DwIHMF0Q.js +0 -1
  274. package/dist/ui/assets/catppuccin-macchiato-DYnBP6_5.js +0 -1
  275. package/dist/ui/assets/catppuccin-mocha-DYhrFGRu.js +0 -1
  276. package/dist/ui/assets/clarity-SemFz856.js +0 -1
  277. package/dist/ui/assets/clojure-DqKBuwfJ.js +0 -1
  278. package/dist/ui/assets/cmake-Bj61d0ZC.js +0 -1
  279. package/dist/ui/assets/cobol-I_17IuGe.js +0 -1
  280. package/dist/ui/assets/codeowners-C8r90Shi.js +0 -1
  281. package/dist/ui/assets/codeql-oeQT6MSM.js +0 -1
  282. package/dist/ui/assets/coffee-C0B8hmok.js +0 -1
  283. package/dist/ui/assets/common-lisp-Cv5bFMCO.js +0 -1
  284. package/dist/ui/assets/coq-BrsZFFmf.js +0 -1
  285. package/dist/ui/assets/cpp-DDJXt6Vs.js +0 -1
  286. package/dist/ui/assets/crystal-Bexqace6.js +0 -1
  287. package/dist/ui/assets/csharp-Ct8U2NOr.js +0 -1
  288. package/dist/ui/assets/css-DSQhw_9R.js +0 -1
  289. package/dist/ui/assets/csv-Dx-8-gkx.js +0 -1
  290. package/dist/ui/assets/cue-CE9AQfxI.js +0 -1
  291. package/dist/ui/assets/cypher-ClKdZ_lG.js +0 -1
  292. package/dist/ui/assets/d-qD-0Kul2.js +0 -1
  293. package/dist/ui/assets/dark-plus-Cs2F2srj.js +0 -1
  294. package/dist/ui/assets/dart-DkHntEIa.js +0 -1
  295. package/dist/ui/assets/dax-BkyTk9wS.js +0 -1
  296. package/dist/ui/assets/desktop-Dlh5hvp9.js +0 -1
  297. package/dist/ui/assets/diff-woXpYk--.js +0 -1
  298. package/dist/ui/assets/docker-IyjqRm3v.js +0 -1
  299. package/dist/ui/assets/dotenv-_5a1GRtc.js +0 -1
  300. package/dist/ui/assets/dracula-BHWKrbxM.js +0 -1
  301. package/dist/ui/assets/dracula-soft-5eyTD99u.js +0 -1
  302. package/dist/ui/assets/dream-maker-DW3nJb8Q.js +0 -1
  303. package/dist/ui/assets/edge-Z8YYkHOr.js +0 -1
  304. package/dist/ui/assets/elixir-CG9uKtAF.js +0 -1
  305. package/dist/ui/assets/elm-GfWG2IfT.js +0 -1
  306. package/dist/ui/assets/emacs-lisp-C9PiwqqW.js +0 -1
  307. package/dist/ui/assets/erb-xe89e73J.js +0 -1
  308. package/dist/ui/assets/erlang-Cphh6RMH.js +0 -1
  309. package/dist/ui/assets/everforest-dark-sB-x3p7T.js +0 -1
  310. package/dist/ui/assets/everforest-light-Df2xbC6M.js +0 -1
  311. package/dist/ui/assets/fennel-DQxkIbk2.js +0 -1
  312. package/dist/ui/assets/fish-BJitypiv.js +0 -1
  313. package/dist/ui/assets/fluent-C03EYrpw.js +0 -1
  314. package/dist/ui/assets/fortran-fixed-form-DEKoE2YW.js +0 -1
  315. package/dist/ui/assets/fortran-free-form-CYNrtFtB.js +0 -1
  316. package/dist/ui/assets/fsharp-D13ZGOAj.js +0 -1
  317. package/dist/ui/assets/gdresource-C0sCabJj.js +0 -1
  318. package/dist/ui/assets/gdscript-Cp2uCuqX.js +0 -1
  319. package/dist/ui/assets/gdshader-CBce3t8t.js +0 -1
  320. package/dist/ui/assets/genie-CV2tkWYe.js +0 -1
  321. package/dist/ui/assets/gherkin-DExj1W_8.js +0 -1
  322. package/dist/ui/assets/git-commit-BSykSTBG.js +0 -1
  323. package/dist/ui/assets/git-rebase-CoTL_uSE.js +0 -1
  324. package/dist/ui/assets/github-dark-C-LZuMrd.js +0 -1
  325. package/dist/ui/assets/github-dark-default-DXG-b-1a.js +0 -1
  326. package/dist/ui/assets/github-dark-dimmed-Bx1FflLF.js +0 -1
  327. package/dist/ui/assets/github-dark-high-contrast-B_tTalzw.js +0 -1
  328. package/dist/ui/assets/github-light-EUqPIrTm.js +0 -1
  329. package/dist/ui/assets/github-light-default-BXViO-2h.js +0 -1
  330. package/dist/ui/assets/github-light-high-contrast-B68TUdTA.js +0 -1
  331. package/dist/ui/assets/gleam-CSRkHgEL.js +0 -1
  332. package/dist/ui/assets/glimmer-js-DAn4UCSu.js +0 -1
  333. package/dist/ui/assets/glimmer-ts-Tjyi6Gh5.js +0 -1
  334. package/dist/ui/assets/glsl-CtTDZoqR.js +0 -1
  335. package/dist/ui/assets/gn-ilITqXS6.js +0 -1
  336. package/dist/ui/assets/gnuplot-7GGW24-e.js +0 -1
  337. package/dist/ui/assets/go-BJwz_mda.js +0 -1
  338. package/dist/ui/assets/graphql-D5gcC_Jk.js +0 -1
  339. package/dist/ui/assets/groovy-CacY0gHj.js +0 -1
  340. package/dist/ui/assets/gruvbox-dark-hard-C820rvS2.js +0 -1
  341. package/dist/ui/assets/gruvbox-dark-medium-BPjhmG05.js +0 -1
  342. package/dist/ui/assets/gruvbox-dark-soft-MrdJrrXF.js +0 -1
  343. package/dist/ui/assets/gruvbox-light-hard-BC_s9l72.js +0 -1
  344. package/dist/ui/assets/gruvbox-light-medium-BAWPOn9u.js +0 -1
  345. package/dist/ui/assets/gruvbox-light-soft-BSMLrYjP.js +0 -1
  346. package/dist/ui/assets/hack-BJXY27dt.js +0 -1
  347. package/dist/ui/assets/haml-BLfFoZf7.js +0 -1
  348. package/dist/ui/assets/handlebars-Dw6CWkvN.js +0 -1
  349. package/dist/ui/assets/haskell-D8IpX4py.js +0 -1
  350. package/dist/ui/assets/haxe-OTjmBuCE.js +0 -1
  351. package/dist/ui/assets/hcl-Dh228itO.js +0 -1
  352. package/dist/ui/assets/heavy-payload-Dcg0-F-S.js +0 -4
  353. package/dist/ui/assets/hjson-CxZEssPk.js +0 -1
  354. package/dist/ui/assets/hlsl-Cvrh5tZx.js +0 -1
  355. package/dist/ui/assets/horizon-CE9ld1lL.js +0 -1
  356. package/dist/ui/assets/horizon-bright-Br1oVSNq.js +0 -1
  357. package/dist/ui/assets/houston-CsvMBhTu.js +0 -1
  358. package/dist/ui/assets/html-CAcAWvoN.js +0 -1
  359. package/dist/ui/assets/html-derivative-8aSW2E_7.js +0 -1
  360. package/dist/ui/assets/http-B2YR_3V1.js +0 -1
  361. package/dist/ui/assets/hurl-BnDJ9Zhf.js +0 -1
  362. package/dist/ui/assets/hxml-B0Qn7Nwc.js +0 -1
  363. package/dist/ui/assets/hy-CZbG8q4J.js +0 -1
  364. package/dist/ui/assets/imba-DsUTQ-LC.js +0 -1
  365. package/dist/ui/assets/ini-B5eOa1yu.js +0 -1
  366. package/dist/ui/assets/java-Doxi4W8u.js +0 -1
  367. package/dist/ui/assets/javascript-BbRdEqti.js +0 -1
  368. package/dist/ui/assets/jinja-CS3Tpv_Q.js +0 -1
  369. package/dist/ui/assets/jison-BkPGYVHR.js +0 -1
  370. package/dist/ui/assets/json-BMt1m3m8.js +0 -1
  371. package/dist/ui/assets/json5-BR5RXkoi.js +0 -1
  372. package/dist/ui/assets/jsonc-CYpm1nAK.js +0 -1
  373. package/dist/ui/assets/jsonl-CmCQp5Yx.js +0 -1
  374. package/dist/ui/assets/jsonnet-CJTPZ8u_.js +0 -1
  375. package/dist/ui/assets/jssm-DXw9l8Rf.js +0 -1
  376. package/dist/ui/assets/jsx-CQKrJXXY.js +0 -1
  377. package/dist/ui/assets/julia-BuN7i2du.js +0 -1
  378. package/dist/ui/assets/just-BswEPFPu.js +0 -1
  379. package/dist/ui/assets/kanagawa-dragon-CXtmUGW6.js +0 -1
  380. package/dist/ui/assets/kanagawa-lotus-BN08jTvb.js +0 -1
  381. package/dist/ui/assets/kanagawa-wave-CTweb8Dz.js +0 -1
  382. package/dist/ui/assets/kdl-CsD5j6eV.js +0 -1
  383. package/dist/ui/assets/kotlin-DhhofPvG.js +0 -1
  384. package/dist/ui/assets/kusto-BUv0MjJC.js +0 -1
  385. package/dist/ui/assets/laserwave-C_8bwKvT.js +0 -1
  386. package/dist/ui/assets/latex-DU2VyFfA.js +0 -1
  387. package/dist/ui/assets/lean-CewbzKMR.js +0 -1
  388. package/dist/ui/assets/less-DVTAwKKz.js +0 -1
  389. package/dist/ui/assets/light-plus-DVQuIRkW.js +0 -1
  390. package/dist/ui/assets/liquid-Cmz1L3dq.js +0 -1
  391. package/dist/ui/assets/llvm-Cm23YOpf.js +0 -1
  392. package/dist/ui/assets/log-BNLmms1o.js +0 -1
  393. package/dist/ui/assets/logo-Cluzi2Zq.js +0 -1
  394. package/dist/ui/assets/lua-CfVXhkaJ.js +0 -1
  395. package/dist/ui/assets/luau-CNKltnaQ.js +0 -1
  396. package/dist/ui/assets/make-Dixweg8N.js +0 -1
  397. package/dist/ui/assets/markdown-BYOwaDjH.js +0 -1
  398. package/dist/ui/assets/marko-C5bfqGiA.js +0 -1
  399. package/dist/ui/assets/material-theme-Bm3Qr25_.js +0 -1
  400. package/dist/ui/assets/material-theme-darker-2IIEA8gg.js +0 -1
  401. package/dist/ui/assets/material-theme-lighter-uhdI0v04.js +0 -1
  402. package/dist/ui/assets/material-theme-ocean-CHQ94UKr.js +0 -1
  403. package/dist/ui/assets/material-theme-palenight-B5W6OYN7.js +0 -1
  404. package/dist/ui/assets/matlab-D7qyCx1q.js +0 -1
  405. package/dist/ui/assets/mdc-CVBXYfyq.js +0 -1
  406. package/dist/ui/assets/mdx-DQZ5AkYe.js +0 -1
  407. package/dist/ui/assets/mermaid-Bk4SNUv9.js +0 -1
  408. package/dist/ui/assets/min-dark-BSWPekZh.js +0 -1
  409. package/dist/ui/assets/min-light-DDpmG2fV.js +0 -1
  410. package/dist/ui/assets/mipsasm-BMqwQI7S.js +0 -1
  411. package/dist/ui/assets/mojo-BgCJLMeH.js +0 -1
  412. package/dist/ui/assets/monokai-CdkpiU2Y.js +0 -1
  413. package/dist/ui/assets/moonbit-CaWjb8XO.js +0 -1
  414. package/dist/ui/assets/move-B1IS1UjX.js +0 -1
  415. package/dist/ui/assets/narrat-_X_XdTYD.js +0 -1
  416. package/dist/ui/assets/nextflow-Bbiyy34d.js +0 -1
  417. package/dist/ui/assets/nextflow-groovy-Dc_ddanL.js +0 -1
  418. package/dist/ui/assets/nginx-CzJafxLa.js +0 -1
  419. package/dist/ui/assets/night-owl-DhmEMT88.js +0 -1
  420. package/dist/ui/assets/night-owl-light-eJ-hLW7d.js +0 -1
  421. package/dist/ui/assets/nim-DABKtHtM.js +0 -1
  422. package/dist/ui/assets/nix-IvuFDN5E.js +0 -1
  423. package/dist/ui/assets/nord-Cb4Vim4T.js +0 -1
  424. package/dist/ui/assets/nushell-DcLAeLz5.js +0 -1
  425. package/dist/ui/assets/objective-c-D1A_Heim.js +0 -1
  426. package/dist/ui/assets/objective-cpp-BsSzOQcm.js +0 -1
  427. package/dist/ui/assets/ocaml-O90oeIOV.js +0 -1
  428. package/dist/ui/assets/odin-B1RWQWA5.js +0 -1
  429. package/dist/ui/assets/one-dark-pro-CLwyXe_n.js +0 -1
  430. package/dist/ui/assets/one-light-D7Lr4KcI.js +0 -1
  431. package/dist/ui/assets/openscad-BUDT5pXO.js +0 -1
  432. package/dist/ui/assets/pascal-4ZHwLPI5.js +0 -1
  433. package/dist/ui/assets/perl-CBh7L3lZ.js +0 -1
  434. package/dist/ui/assets/php-DFbI9q5p.js +0 -1
  435. package/dist/ui/assets/pierre-dark-sU4Zdns8.js +0 -1
  436. package/dist/ui/assets/pierre-dark-soft-HXgun5vs.js +0 -1
  437. package/dist/ui/assets/pierre-light-DWBk51d8.js +0 -1
  438. package/dist/ui/assets/pierre-light-soft-CodEzPxf.js +0 -1
  439. package/dist/ui/assets/pkl-ot-7Btpt.js +0 -1
  440. package/dist/ui/assets/plastic-DQwYfKfQ.js +0 -1
  441. package/dist/ui/assets/plsql-DGHpHOYJ.js +0 -1
  442. package/dist/ui/assets/po-BiJDBrnU.js +0 -1
  443. package/dist/ui/assets/poimandres-DRFjx7u4.js +0 -1
  444. package/dist/ui/assets/polar-C7UOKdEL.js +0 -1
  445. package/dist/ui/assets/postcss-BXeXVLqQ.js +0 -1
  446. package/dist/ui/assets/powerquery-DNMTfnFr.js +0 -1
  447. package/dist/ui/assets/powershell-DshXNtvi.js +0 -1
  448. package/dist/ui/assets/prisma-BsRQq5mF.js +0 -1
  449. package/dist/ui/assets/prolog-iXnhIJG7.js +0 -1
  450. package/dist/ui/assets/proto-DB4EqR-F.js +0 -1
  451. package/dist/ui/assets/pug-C_PxC7gO.js +0 -1
  452. package/dist/ui/assets/puppet-CDv2pdJW.js +0 -1
  453. package/dist/ui/assets/purescript-9MfHhQsQ.js +0 -1
  454. package/dist/ui/assets/python-gzcpVVnB.js +0 -1
  455. package/dist/ui/assets/qml-DtngoFFK.js +0 -1
  456. package/dist/ui/assets/qmldir-DCQb3MpD.js +0 -1
  457. package/dist/ui/assets/qss-Fe1Jh2GI.js +0 -1
  458. package/dist/ui/assets/r-DohkcevW.js +0 -1
  459. package/dist/ui/assets/racket-DcIDlBhZ.js +0 -1
  460. package/dist/ui/assets/raku-B3gFvitq.js +0 -1
  461. package/dist/ui/assets/razor-C4t8J0_E.js +0 -1
  462. package/dist/ui/assets/red-CJ3rzSJv.js +0 -1
  463. package/dist/ui/assets/reg-CRGYupPL.js +0 -1
  464. package/dist/ui/assets/regexp-OGbTbjgY.js +0 -1
  465. package/dist/ui/assets/rel-BtDbiS_P.js +0 -1
  466. package/dist/ui/assets/review-payload-C5Qz60Kq.js +0 -1
  467. package/dist/ui/assets/riscv-Ckw8ddFX.js +0 -1
  468. package/dist/ui/assets/ron-VUp2lXgN.js +0 -1
  469. package/dist/ui/assets/rose-pine-BthvhNj6.js +0 -1
  470. package/dist/ui/assets/rose-pine-dawn-Dg85fqjY.js +0 -1
  471. package/dist/ui/assets/rose-pine-moon-hon4tzzS.js +0 -1
  472. package/dist/ui/assets/rosmsg-CAekHB0j.js +0 -1
  473. package/dist/ui/assets/rst-CfBbbcvC.js +0 -1
  474. package/dist/ui/assets/ruby-Bw0mpxHY.js +0 -1
  475. package/dist/ui/assets/rust-Cfkwpbl8.js +0 -1
  476. package/dist/ui/assets/sas-Cs3s9JOf.js +0 -1
  477. package/dist/ui/assets/sass-DXrisJhu.js +0 -1
  478. package/dist/ui/assets/scala-DKOlJaKm.js +0 -1
  479. package/dist/ui/assets/scheme-DQCgrYNe.js +0 -1
  480. package/dist/ui/assets/scss-sRxNJS54.js +0 -1
  481. package/dist/ui/assets/sdbl-bTVj8UrX.js +0 -1
  482. package/dist/ui/assets/shaderlab-TOUzSsQk.js +0 -1
  483. package/dist/ui/assets/shellscript-B0X6wh0R.js +0 -1
  484. package/dist/ui/assets/shellsession-D2FdOioR.js +0 -1
  485. package/dist/ui/assets/slack-dark-DnToyrRv.js +0 -1
  486. package/dist/ui/assets/slack-ochin-B2OO5cIa.js +0 -1
  487. package/dist/ui/assets/smalltalk-B16xEiuN.js +0 -1
  488. package/dist/ui/assets/snazzy-light-4G7pJPwS.js +0 -1
  489. package/dist/ui/assets/solarized-dark-DV17i1UV.js +0 -1
  490. package/dist/ui/assets/solarized-light-DSh2HLQt.js +0 -1
  491. package/dist/ui/assets/solidity-CKzVLygQ.js +0 -1
  492. package/dist/ui/assets/soy-s6g9OjJ1.js +0 -1
  493. package/dist/ui/assets/sparql-D_iOobhT.js +0 -1
  494. package/dist/ui/assets/splunk-BC2Px7Mm.js +0 -1
  495. package/dist/ui/assets/sql-DVTnh5V-.js +0 -1
  496. package/dist/ui/assets/ssh-config-BgfXC-Er.js +0 -1
  497. package/dist/ui/assets/stata-DFIDiXF9.js +0 -1
  498. package/dist/ui/assets/stylus-B6D30XZt.js +0 -1
  499. package/dist/ui/assets/surrealql-DVfrsLyg.js +0 -1
  500. package/dist/ui/assets/svelte-D5GsxESq.js +0 -1
  501. package/dist/ui/assets/swift-DonLKvLd.js +0 -1
  502. package/dist/ui/assets/synthwave-84-nFMaYfgc.js +0 -1
  503. package/dist/ui/assets/system-verilog-DJ5XKQeo.js +0 -1
  504. package/dist/ui/assets/systemd-BxMlprV5.js +0 -1
  505. package/dist/ui/assets/talonscript-CohzipZa.js +0 -1
  506. package/dist/ui/assets/tasl-DMoTqEGO.js +0 -1
  507. package/dist/ui/assets/tcl-CZd0xW_V.js +0 -1
  508. package/dist/ui/assets/templ-DI-Zyqzd.js +0 -1
  509. package/dist/ui/assets/terraform-DswuEJGm.js +0 -1
  510. package/dist/ui/assets/tex-WHHmlbJI.js +0 -1
  511. package/dist/ui/assets/tokyo-night-oM2G3aXe.js +0 -1
  512. package/dist/ui/assets/toml-CcmNWLt0.js +0 -1
  513. package/dist/ui/assets/ts-tags-Dwpo2RFJ.js +0 -1
  514. package/dist/ui/assets/tsv-sltzmVWM.js +0 -1
  515. package/dist/ui/assets/tsx-ph_idaAW.js +0 -1
  516. package/dist/ui/assets/turtle-ByJddavk.js +0 -1
  517. package/dist/ui/assets/twig-YO17jFjR.js +0 -1
  518. package/dist/ui/assets/typescript-CbAxjhkl.js +0 -1
  519. package/dist/ui/assets/typespec-B88KGewJ.js +0 -1
  520. package/dist/ui/assets/typst-DI99ib-x.js +0 -1
  521. package/dist/ui/assets/useFileDiffInstance-B2DLX3Vg.js +0 -244
  522. package/dist/ui/assets/v-DETTlOr0.js +0 -1
  523. package/dist/ui/assets/vala-zf12oZj6.js +0 -1
  524. package/dist/ui/assets/vb-Djn5o6TS.js +0 -1
  525. package/dist/ui/assets/verilog-CiiDBU1e.js +0 -1
  526. package/dist/ui/assets/vesper-D5bVUKB1.js +0 -1
  527. package/dist/ui/assets/vhdl-BroJfC0k.js +0 -1
  528. package/dist/ui/assets/viml-DvXPmvsu.js +0 -1
  529. package/dist/ui/assets/vitesse-black-fwtXNY1n.js +0 -1
  530. package/dist/ui/assets/vitesse-dark-BZCL-v6S.js +0 -1
  531. package/dist/ui/assets/vitesse-light-VbXTXTou.js +0 -1
  532. package/dist/ui/assets/vue-CraHL-Ps.js +0 -1
  533. package/dist/ui/assets/vue-html-e9tyZNtS.js +0 -1
  534. package/dist/ui/assets/vue-vine-CofmxaUb.js +0 -1
  535. package/dist/ui/assets/vyper-CgoNMtux.js +0 -1
  536. package/dist/ui/assets/wasm-BnjxR4X6.js +0 -1
  537. package/dist/ui/assets/wasm-ByWQv1Qj.js +0 -1
  538. package/dist/ui/assets/wenyan-C8pVoKbM.js +0 -1
  539. package/dist/ui/assets/wgsl-BsKzXJz4.js +0 -1
  540. package/dist/ui/assets/wikitext-ClFFjSW2.js +0 -1
  541. package/dist/ui/assets/wit-DdvCle-K.js +0 -1
  542. package/dist/ui/assets/wolfram-DLL8P-h_.js +0 -1
  543. package/dist/ui/assets/workspace-app-8--oTbCd.css +0 -1
  544. package/dist/ui/assets/xml-BWSdPZHm.js +0 -1
  545. package/dist/ui/assets/xsl-BtCt7Hx8.js +0 -1
  546. package/dist/ui/assets/yaml-BZiTw7cQ.js +0 -1
  547. package/dist/ui/assets/zenscript-BnlCZFoB.js +0 -1
  548. package/dist/ui/assets/zig-CMLA9XwU.js +0 -1
  549. package/docs/assets/auvrynt-logo-light.png +0 -0
  550. package/docs/assets/auvrynt-screenshot.png +0 -0
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 EN-rain
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 EN-rain
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,244 +1,377 @@
1
-
2
-
3
- <h1 align="center">Auvrynt — Web-to-local Arsenal</h1>
4
-
5
- <p align="center">
6
- A self-hosted MCP server that gives AI coding assistants secure, real-time access to your local machine.
7
- </p>
8
-
9
- <p align="center">
1
+ <p align="center">
2
+ <img src="docs/assets/auvrynt-icon.png" alt="Auvrynt icon" width="112" height="112" />
3
+ </p>
4
+
5
+ <h1 align="center">Auvrynt — Web-to-local Arsenal</h1>
6
+
7
+ <p align="center">
8
+ A self-hosted MCP server that gives AI coding assistants secure, real-time access to your local machine.
9
+ </p>
10
+
11
+ <p align="center">
10
12
  <a href="https://www.npmjs.com/package/auvrynt">
11
13
  <img alt="npm" src="https://img.shields.io/npm/v/auvrynt?style=flat-square&color=cb3837" />
12
- </a>
13
- <a href="https://github.com/EN-rain/Auvrynt-Web-to-local-Arsenal/actions/workflows/ci.yml">
14
- <img alt="CI" src="https://img.shields.io/github/actions/workflow/status/EN-rain/Auvrynt-Web-to-local-Arsenal/ci.yml?style=flat-square&branch=main" />
15
- </a>
16
- <a href="https://github.com/EN-rain/Auvrynt-Web-to-local-Arsenal/blob/main/LICENSE">
14
+ </a>
15
+ <a href="https://github.com/EN-rain/Auvrynt/blob/main/LICENSE">
17
16
  <img alt="License" src="https://img.shields.io/npm/l/auvrynt?style=flat-square" />
18
- </a>
19
- <a href="https://nodejs.org">
20
- <img alt="Node" src="https://img.shields.io/badge/node-%3E%3D20.12-brightgreen?style=flat-square" />
21
- </a>
22
- </p>
23
-
24
- ---
25
-
26
- ## What is Auvrynt?
27
-
28
- Auvrynt is a **Model Context Protocol (MCP) server** you run on your own machine. It creates a secure, tunneled connection between AI clients like ChatGPT or Claude and your local development environment — your actual files, terminals, build tools, and project folders.
29
-
30
- No cloud upload. No third-party storage. Your code stays on your machine.
31
-
32
- Connect once, then ask your AI to:
33
-
34
- - Open any approved project folder on your machine
35
- - Read, write, search, and edit real source files
36
- - Run shell commands, tests, builds, and package scripts
37
- - Work across web, .NET, Godot, and Blender projects
38
- - Capture screenshots of running apps
39
- - Use isolated Git worktrees for parallel coding sessions
40
-
41
- ---
42
-
43
- ## Quick Start
44
-
45
- > **Requires:** Node.js `>=20.12 <27` — Node 22 LTS recommended
46
-
47
- **Install globally:**
48
-
49
- ```bash
17
+ </a>
18
+ <a href="https://nodejs.org">
19
+ <img alt="Node" src="https://img.shields.io/badge/node-%3E%3D20.12-brightgreen?style=flat-square" />
20
+ </a>
21
+ </p>
22
+
23
+ ---
24
+
25
+ ## What is Auvrynt?
26
+
27
+ Auvrynt is a **Model Context Protocol (MCP) server** you run on your own machine. It creates a secure, tunneled connection between AI clients like ChatGPT, Claude, or Grok and your local development environment — your actual files, terminals, build tools, and project folders.
28
+
29
+ No cloud upload. No third-party storage. Your code stays on your machine.
30
+
31
+ Connect once, then ask your AI to:
32
+
33
+ - Open any approved project folder on your machine
34
+ - Read, write, search, and edit real source files
35
+ - Run shell commands, tests, builds, and package scripts
36
+ - Work across web, .NET, Godot, Blender, Aseprite, and more
37
+ - Capture screenshots of running apps
38
+ - Use isolated Git worktrees for parallel coding sessions
39
+
40
+ ---
41
+
42
+ ## Quick Start
43
+
44
+ > **Requires:** Node.js `>=20.12 <27` — Node 22 LTS recommended
45
+ > **Platform:** Windows only (PowerShell or cmd.exe)
46
+
47
+ **Install globally:**
48
+
49
+ ```bash
50
50
  npm install -g auvrynt
51
- ```
52
-
53
- **Set up and start:**
54
-
55
- ```bash
56
- auvrynt init
57
- auvrynt start
58
- ```
59
-
60
- **Or run directly without installing:**
61
-
62
- ```bash
63
- npx auvrynt init
51
+ ```
52
+
53
+ The global launcher checks that the CLI bundle is present before starting. If a
54
+ linked development checkout is incomplete, it builds the checkout automatically;
55
+ otherwise it repairs the package installation from npm and retries once.
56
+
57
+ **Set up and start:**
58
+
59
+ ```bash
60
+ auvrynt start
61
+ ```
62
+
63
+ `auvrynt start` creates local configuration automatically on first run. Use `auvrynt init` only when you want to manually configure your setup.
64
+
65
+ **Or run directly without installing:**
66
+
67
+ ```bash
64
68
  npx auvrynt start
65
- ```
66
-
67
- During `auvrynt init`, you will be asked for:
68
-
69
- | Prompt | Description |
70
- |---|---|
71
- | Project roots | Local folder paths your AI is allowed to access |
72
- | Local port | Default is `49321` |
73
- | Public base URL | Your tunnel URL (Cloudflare, ngrok, Pinggy, Tailscale, etc.) |
74
-
75
- > **Important:** Provide the base URL — do **not** include `/mcp`. Example: `https://your-tunnel.trycloudflare.com`
76
-
77
- ---
78
-
79
- ## Start the Server
80
-
81
- ```bash
82
- # Clean animated mode (shows public URL + password, with live log indicator)
83
- auvrynt start
84
-
85
- # Verbose mode (shows full request logs in terminal)
86
- auvrynt serve
87
- ```
88
-
89
- After startup, the terminal shows:
90
-
91
- ```
92
- Auvrynt is running!
93
-
94
- Public URL: https://your-tunnel.trycloudflare.com/mcp
95
- Owner Password: <your-generated-password>
96
-
97
- # CTRL + C to stop
98
-
99
- Logs active... (0 requests handled | Last: Started successfully)
100
- ```
101
-
102
- ---
103
-
104
- ## Connect an MCP Client
105
-
106
- Paste your `/mcp` URL into your AI client (ChatGPT, Claude, etc.):
107
-
108
- ```
109
- https://your-tunnel.trycloudflare.com/mcp
110
- ```
111
-
112
- When the client connects, you will be prompted to approve the session using the **Owner password** shown at startup. The password is also stored in:
113
-
114
- ```
115
- ~/.auvrynt/auth.json
116
- ```
117
-
118
- Keep it private.
119
-
120
- ---
121
-
122
- ## Commands
123
-
124
- | Command | Description |
125
- |---|---|
126
- | `auvrynt init` | Run first-time setup or update your config |
127
- | `auvrynt start` | Start a Cloudflare tunnel scoped to the current directory |
69
+ ```
70
+
71
+ During first-time setup, you will be prompted for:
72
+
73
+ | Prompt | Description |
74
+ |---|---|
75
+ | Project roots | Local folder paths your AI is allowed to access |
76
+ | Local port | Default is `49321` |
77
+ | Public base URL | The HTTPS URL of your tunnel or reverse proxy |
78
+ | Cloudflare tunnel token | *(optional)* Saved for automatic tunnel self-healing |
79
+
80
+ > **Important:** Provide the base URL — do **not** include `/mcp`. Example: `https://your-tunnel.trycloudflare.com`
81
+
82
+ ---
83
+
84
+ ## Start the Server
85
+
86
+ ```bash
87
+ # Start one managed background instance, scoped to the current directory
88
+ auvrynt start
89
+
90
+ # Check, restart, or stop the background instance
91
+ auvrynt status
92
+ auvrynt restart
93
+ auvrynt stop
94
+
95
+ # Switch the running workspace to this directory
96
+ cd C:\path\to\another-project
97
+ auvrynt change
98
+
99
+ # Foreground server with verbose request logs
100
+ auvrynt serve
101
+
102
+ # Add a profile to a running instance without restarting
103
+ auvrynt add web
104
+ ```
105
+
106
+ ---
107
+
108
+ ## Integration Profiles
109
+
110
+ Start Auvrynt with optional integrations enabled:
111
+
112
+ ```bash
113
+ auvrynt start web # Playwright/browser tools
114
+ auvrynt start blender # Blender MCP detection
115
+ auvrynt start godotcs # Godot C#
116
+ auvrynt start godotgd # Godot GDScript
117
+ auvrynt start se # Serena (language server)
118
+ auvrynt start web,blender # Multiple integrations together
119
+ ```
120
+
121
+ > All integrations are disabled by default. Pass profiles to enable only what you need.
122
+
123
+ ### Integration Status
124
+
125
+ | Integration | Profile | Status |
126
+ |---|---|---|
127
+ | Web / Playwright | `web` | ✅ Stable |
128
+ | Godot GDScript | `godotgd` | ✅ Stable |
129
+ | Godot C# | `godotcs` | ✅ Stable |
130
+ | Serena (LSP) | `se` | Stable |
131
+ | Aseprite | built-in | Stable |
132
+ | .NET / C# tools | built-in | ✅ Stable |
133
+ | Images | built-in | ✅ Stable |
134
+ | Blender MCP | `blender` | ⚠️ Experimental |
135
+ | Roblox MCP | *(auto-detected)* | ⚠️ Experimental |
136
+ | Context7 | *(auto-detected)* | ⚠️ Experimental |
137
+ | Obsidian | *(auto-detected)* | ⚠️ Experimental |
138
+
139
+ > **⚠️ Blender MCP** requires the [Blender MCP addon](addons/) to be installed separately inside Blender. It communicates with Auvrynt over a local bridge port. Scene edits may be lossy on complex rigs — always keep a checkpoint or backup before large AI-driven operations.
140
+
141
+ > **⚠️ Roblox MCP** is an early-stage integration and requires the Roblox Studio plugin (see [ROBLOX_AGENT_GUIDE.md](guides/ROBLOX_AGENT_GUIDE.md)). It is auto-detected when Roblox Studio is running. Tool coverage and stability are limited compared to other integrations.
142
+
143
+ > **⚠️ Context7** and **Obsidian** integrations are community-experimental. They are auto-detected from running processes and may change behavior in future versions.
144
+
145
+ ---
146
+
147
+ ## Tunnel Setup
148
+
149
+ Auvrynt needs a public HTTPS URL so AI clients can reach it. Choose a tunnel provider:
150
+
151
+ ### Option A — Cloudflare Quick Tunnel (easiest, no account needed)
152
+
153
+ ```bash
154
+ auvrynt start
155
+ ```
156
+
157
+ Auvrynt automatically creates a temporary Cloudflare tunnel. The URL changes each restart.
158
+
159
+ ### Option B — Cloudflare Named Tunnel (stable URL, recommended)
160
+
161
+ 1. Create a Named Tunnel from the [Cloudflare Zero Trust dashboard](https://dash.cloudflare.com/).
162
+ 2. Run `auvrynt tunnel`, pick **Custom external URL**, and paste your token.
163
+ 3. Your token is saved to `~/.auvrynt/auth.json` and Auvrynt will **automatically self-heal** the tunnel connection on future starts.
164
+
165
+ ```bash
166
+ auvrynt tunnel
167
+ # Select option 3: Custom external URL
168
+ ```
169
+
170
+ **Self-healing behavior (v1.0.5+):** If the Windows `cloudflared` service fails to start due to missing Administrator privileges, Auvrynt automatically falls back to launching the tunnel in user mode using your saved token. If the tunnel drops while the server is running, the health monitor will automatically reconnect.
171
+
172
+ ### Option C — ngrok
173
+
174
+ ```bash
175
+ auvrynt tunnel
176
+ # Select option 2: ngrok
177
+ ```
178
+
179
+ Paste your ngrok authtoken. Auvrynt manages the tunnel lifecycle automatically.
180
+
181
+ ---
182
+
183
+ ## Connect an MCP Client
184
+
185
+ Paste your `/mcp` URL into the connector setup for one of these clients:
186
+
187
+ | Connector | Setup location |
188
+ |---|---|
189
+ | ChatGPT | ChatGPT connector/app settings |
190
+ | Claude | Claude connector settings |
191
+ | Grok | `grok.com/connectors` → **New Connector** → **Custom** |
192
+ | Lovable | Lovable MCP connectors |
193
+ | Bolt | Bolt MCP connectors |
194
+ | Clusy | `app.clusy.io` → MCP servers → Streamable HTTP + Bearer header |
195
+
196
+ Use the public HTTPS URL ending in `/mcp`:
197
+
198
+ ```
199
+ https://your-tunnel.trycloudflare.com/mcp
200
+ ```
201
+
202
+ When the client connects, Auvrynt opens a local approval page that requires your **Owner token**. Retrieve it with:
203
+
204
+ ```bash
205
+ auvrynt token
206
+ ```
207
+
208
+ It is stored locally in `~/.auvrynt/auth.json`. Keep it private.
209
+
210
+ **Header-only hosts (Clusy and similar):** Put the Owner token in a custom header:
211
+
212
+ ```text
213
+ Authorization: Bearer <owner-token-from-auvrynt-token>
214
+ ```
215
+
216
+ Use Streamable HTTP and the public `/mcp` URL. No browser approval prompt is shown on Clusy.
217
+
218
+ Client registrations and authorization sessions survive `auvrynt restart` and `auvrynt change` while the same public origin remains active. Re-approve only after `auvrynt token reset` or a hard restart that changes your public URL.
219
+
220
+ ---
221
+
222
+ ## Commands
223
+
224
+ | Command | Description |
225
+ |---|---|
226
+ | `auvrynt init` | Run first-time setup or update your config |
227
+ | `auvrynt start [profiles]` | Start one managed background instance scoped to the current directory |
228
+ | `auvrynt start blender,web` | Start selected profiles: `web`, `blender`, `godotcs`, `godotgd`, `se` |
229
+ | `auvrynt start ... --replace` | Live-replace profiles, or switch the managed workspace without changing the tunnel |
230
+ | `auvrynt add <profiles>` | Add profiles live without restarting the server or tunnel |
231
+ | `auvrynt change` | Switch the running workspace to the current directory while preserving profiles and tunnel URL |
232
+ | `auvrynt tunnel` | Select Cloudflare, ngrok, or a custom Cloudflare Named Tunnel |
233
+ | `auvrynt restart [profiles]` | Restart only Auvrynt while preserving the current managed tunnel URL |
234
+ | `auvrynt restart hard [profiles]` | Stop and recreate both Auvrynt and its managed tunnel |
235
+ | `auvrynt stop` | Stop Auvrynt and its managed tunnel |
128
236
  | `auvrynt serve` | Start the server with verbose log output |
129
237
  | `auvrynt doctor` | Show your config, Node version, and dependency health |
130
- | `auvrynt status` | Show local MCP, Blender, Godot, Cloudflare Tunnel, and Serena status |
131
- | `auvrynt connected` | Show recently observed ChatGPT, Kimi, Claude, or other MCP providers |
238
+ | `auvrynt status` | Show local MCP and integration status |
239
+ | `auvrynt token` | Print the Owner token only on explicit local request |
240
+ | `auvrynt token reset` | Generate a new Owner token and clear saved connector authorizations |
241
+ | `auvrynt setup` | Configure executable paths for local tools (Godot, Blender, Aseprite, Serena) |
242
+ | `auvrynt enable` | Enable or disable integrations one by one |
243
+ | `auvrynt disable` | Select enabled integrations to disable |
244
+ | `auvrynt connected` | Show recently observed Grok, ChatGPT, Claude, Lovable, Bolt, or other MCP providers |
132
245
  | `auvrynt uninstall` | Remove Auvrynt configuration after confirmation |
133
246
  | `auvrynt uninstall -y` | Remove Auvrynt configuration without confirmation |
134
247
  | `auvrynt help` | Print the complete command reference |
135
248
  | `auvrynt config get` | Print your saved configuration |
136
- | `auvrynt config set publicBaseUrl <url>` | Update your public tunnel URL |
137
-
138
- **Override the tunnel URL for a one-off run:**
139
-
140
- ```bash
141
- AUVRYNT_PUBLIC_BASE_URL=https://new-tunnel.example.com auvrynt start
142
- ```
143
-
144
- ---
145
-
146
- ## What Your AI Can Do
147
-
148
- Once connected and a workspace is opened, your AI assistant has access to **139 tools** across:
149
-
150
- | Category | Capabilities |
151
- |---|---|
152
- | **Files** | Read, write, edit, search, glob, list directory |
153
- | **Shell** | Run commands, tests, builds, git, package scripts |
154
- | **Processes** | Start/stop persistent processes, tail logs |
155
- | **Web** | Launch dev servers, screenshot pages, inspect DOM |
156
- | **Images** | Inspect, compare, sprite-sheet splitting |
157
- | **.NET** | Inspect projects, restore, build, test, format |
158
- | **Godot** | Run projects, inspect scenes, C# build, GDScript diagnostics |
159
- | **Blender** | Scene audit, checkpoints, renders, export GLB |
160
- | **Git** | Worktree management, status, diff, branch ops |
161
-
162
- ---
163
-
164
- ## Project Routing
165
-
166
- Auvrynt automatically selects the right workflow guide based on your project type:
167
-
168
- | Project signals | Guide loaded |
169
- |---|---|
170
- | `package.json` + `vite.config.ts` / web framework | Web Agent Guide |
171
- | `App.sln` / `.csproj` without `project.godot` | Software Agent Guide |
172
- | `project.godot` (any language) | Godot Agent Guide |
173
- | `.blend` files | Blender Agent Guide |
174
-
175
- See [`PROJECT_ROUTER.md`](guides/PROJECT_ROUTER.md) for full routing rules.
176
-
177
- ---
178
-
179
- ## Platform Support
180
-
181
- | Platform | Status |
182
- |---|---|
183
- | Linux | ✅ Supported |
184
- | macOS | ✅ Supported |
185
- | Windows (Git Bash / WSL / MSYS2) | ✅ Supported |
186
- | Windows PowerShell / cmd.exe only | ❌ Not supported — use Git Bash or WSL |
187
-
188
- **Check your environment:**
189
-
190
- ```bash
191
- auvrynt doctor
192
- ```
193
-
194
- ---
195
-
196
- ## Configuration
197
-
198
- Config files are stored in `~/.auvrynt/`:
199
-
200
- ```
201
- ~/.auvrynt/config.json ← ports, roots, public URL
202
- ~/.auvrynt/auth.json ← owner password (keep private)
203
- ```
204
-
205
- Key environment variables:
206
-
207
- | Variable | Description |
208
- |---|---|
209
- | `AUVRYNT_ALLOWED_ROOTS` | Comma-separated project root paths |
210
- | `AUVRYNT_PUBLIC_BASE_URL` | Your public tunnel origin (no `/mcp`) |
211
- | `AUVRYNT_OAUTH_OWNER_TOKEN` | Override the owner password directly |
212
- | `AUVRYNT_LOG_FORMAT` | `json` (default) or `pretty` |
213
-
214
- See [Configuration Reference](docs/configuration.md) for all options.
215
-
216
- ---
217
-
218
- ## Documentation
219
-
220
- | Document | Description |
221
- |---|---|
222
- | [Setup Guide](docs/setup.md) | Step-by-step tunnel and client setup |
223
- | [Configuration Reference](docs/configuration.md) | All env vars and config options |
224
- | [ChatGPT Coding Workflow](docs/chatgpt-coding-workflow.md) | How to use Auvrynt day-to-day |
225
- | [Security Model](docs/security.md) | Path isolation, auth, and threat model |
226
- | [Troubleshooting Gotchas](docs/gotchas.md) | Common issues and fixes |
227
-
228
- ---
229
-
230
- ## Local Development
231
-
232
- ```bash
233
- npm install --include=dev
234
- npm run typecheck
235
- npm test
236
- npm run build
237
- npm run dev
238
- ```
239
-
240
- ---
241
-
242
- ## License
243
-
244
- MIT © 2026 [EN-rain](https://github.com/EN-rain)
249
+ | `auvrynt config set publicBaseUrl <url>` | Set the public URL used by foreground `auvrynt serve` |
250
+
251
+ ---
252
+
253
+ ## What Your AI Can Do
254
+
255
+ Once connected and a workspace is opened, your AI assistant has access to **over 150 tools** across:
256
+
257
+ | Category | Capabilities |
258
+ |---|---|
259
+ | **Files** | Read, write, edit, search, glob, list directory |
260
+ | **Shell** | Run commands, tests, builds, git, package scripts |
261
+ | **Processes** | Start/stop persistent processes, tail logs |
262
+ | **Web** | Launch dev servers, screenshot pages, inspect DOM, browser automation |
263
+ | **Images** | Inspect, compare, sprite-sheet splitting, window capture |
264
+ | **.NET** | Inspect projects, restore, build, test, format |
265
+ | **Git** | Worktree management, status, diff, branch ops |
266
+ | **Godot** | Run projects, inspect scenes, C# build, GDScript diagnostics |
267
+ | **Blender** ⚠️ | Scene audit, checkpoints, renders, export GLB *(experimental)* |
268
+ | **Aseprite** | Exact pixel drawing, layers, frames, tags, palettes, sheets, conversion |
269
+ | **Serena** | Language server (LSP) code intelligence across projects |
270
+ | **Roblox** ⚠️ | Studio bridge, place inspection, script analysis *(experimental)* |
271
+ | **Context7** ⚠️ | Documentation context for libraries *(experimental)* |
272
+ | **Obsidian** ⚠️ | Vault file access *(experimental)* |
273
+
274
+ ---
275
+
276
+ ## Project Routing
277
+
278
+ Auvrynt automatically selects the right workflow guide based on your project type:
279
+
280
+ | Project signals | Guide loaded |
281
+ |---|---|
282
+ | `package.json` + `vite.config.ts` / web framework | Web Agent Guide |
283
+ | `App.sln` / `.csproj` without `project.godot` | Software Agent Guide |
284
+ | `project.godot` (any language) | Godot Agent Guide |
285
+ | `.blend` files | Blender Agent Guide |
286
+ | `.aseprite` / `.ase` files | Aseprite Agent Guide |
287
+ | Roblox Studio active | Roblox Agent Guide |
288
+
289
+ See [`PROJECT_ROUTER.md`](guides/PROJECT_ROUTER.md) for full routing rules.
290
+
291
+ ---
292
+
293
+ ## Platform Support
294
+
295
+ **Windows only. Tested on Windows 10/11 with PowerShell and cmd.exe.**
296
+
297
+ **Check your environment:**
298
+
299
+ ```bash
300
+ auvrynt doctor
301
+ ```
302
+
303
+ ---
304
+
305
+ ## Configuration
306
+
307
+ Config files are stored in `~/.auvrynt/`:
308
+
309
+ ```
310
+ ~/.auvrynt/config.json — ports, roots, public URL, tunnel provider
311
+ ~/.auvrynt/auth.json — owner token, tunnel credentials (keep private)
312
+ ```
313
+
314
+ Key environment variables:
315
+
316
+ | Variable | Description |
317
+ |---|---|
318
+ | `AUVRYNT_ALLOWED_ROOTS` | Comma-separated project root paths |
319
+ | `AUVRYNT_PUBLIC_BASE_URL` | Public origin for foreground `auvrynt serve` (no `/mcp`) |
320
+ | `AUVRYNT_OAUTH_OWNER_TOKEN` | Override the owner token directly |
321
+ | `AUVRYNT_LOG_FORMAT` | `json` (default) or `pretty` |
322
+ | `CLOUDFLARE_TUNNEL_TOKEN` | Override cloudflared tunnel token for self-healing |
323
+
324
+ See [Configuration Reference](docs/configuration.md) for all options.
325
+
326
+ ---
327
+
328
+ ## Artifacts & Logs
329
+
330
+ Generated artifacts are stored under the active workspace's `auvrynt-logs/` directory:
331
+
332
+ ```
333
+ auvrynt-logs/
334
+ playwright/ — screenshots and browser captures
335
+ images/ image diffs, sprite frames, window captures
336
+ blender/ renders, checkpoints, GLB exports
337
+ godot/ exported scenes and build outputs
338
+ ```
339
+
340
+ Normal source edits and project files still use their requested project paths.
341
+
342
+ ---
343
+
344
+ ## Documentation
345
+
346
+ | Document | Description |
347
+ |---|---|
348
+ | [Setup Guide](docs/setup.md) | Step-by-step tunnel and client setup |
349
+ | [Source Layout](docs/source-layout.md) | Runtime domains, entry points, and root compatibility facades |
350
+ | [Configuration Reference](docs/configuration.md) | All env vars and config options |
351
+ | [ChatGPT Coding Workflow](docs/chatgpt-coding-workflow.md) | How to use Auvrynt day-to-day |
352
+ | [Long Projects and Multiple Agents](docs/multi-agent-and-long-projects.md) | Checklist continuity, rooms, directories, and worktrees |
353
+ | [Security Model](docs/security.md) | Path isolation, auth, and threat model |
354
+ | [Troubleshooting Gotchas](docs/gotchas.md) | Common issues and fixes |
355
+ | [Blender Agent Guide](guides/BLENDER_AGENT_GUIDE.md) | Blender integration setup and usage |
356
+ | [Roblox Agent Guide](guides/ROBLOX_AGENT_GUIDE.md) | Roblox Studio integration setup and usage |
357
+ | [Godot Agent Guide](guides/GODOT_AGENT_GUIDE.md) | Godot integration setup and usage |
358
+ | [Web Agent Guide](guides/WEB_AGENT_GUIDE.md) | Web development integration setup |
359
+ | [Aseprite Agent Guide](guides/ASEPRITE_AGENT_GUIDE.md) | Aseprite integration setup and usage |
360
+
361
+ ---
362
+
363
+ ## Local Development
364
+
365
+ ```bash
366
+ npm install --include=dev
367
+ npm run typecheck
368
+ npm test
369
+ npm run build
370
+ npm run dev
371
+ ```
372
+
373
+ ---
374
+
375
+ ## License
376
+
377
+ MIT © 2026 [EN-rain](https://github.com/EN-rain)