hud-python 0.4.1__tar.gz → 0.4.3__tar.gz

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.

Potentially problematic release.


This version of hud-python might be problematic. Click here for more details.

Files changed (791) hide show
  1. {hud_python-0.4.1 → hud_python-0.4.3}/.gitignore +44 -45
  2. {hud_python-0.4.1 → hud_python-0.4.3}/LICENSE +21 -21
  3. {hud_python-0.4.1 → hud_python-0.4.3}/PKG-INFO +10 -8
  4. {hud_python-0.4.1 → hud_python-0.4.3}/README.md +386 -384
  5. {hud_python-0.4.1 → hud_python-0.4.3}/environments/README.md +945 -915
  6. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/README.md +394 -394
  7. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/2048/README.md +102 -102
  8. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/2048/backend/pyproject.toml +8 -8
  9. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/README.md +134 -134
  10. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/todo/README.md +84 -84
  11. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/todo/backend/pyproject.toml +14 -14
  12. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/pyproject.toml +26 -26
  13. {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/src/hud_controller/README.md +116 -116
  14. {hud_python-0.4.1 → hud_python-0.4.3}/environments/remote_browser/README.md +221 -221
  15. {hud_python-0.4.1 → hud_python-0.4.3}/environments/remote_browser/pyproject.toml +26 -26
  16. {hud_python-0.4.1 → hud_python-0.4.3}/environments/remote_browser/src/hud_controller/providers/README.md +109 -109
  17. {hud_python-0.4.1 → hud_python-0.4.3}/environments/text_2048/README.md +101 -101
  18. {hud_python-0.4.1 → hud_python-0.4.3}/environments/text_2048/pyproject.toml +22 -22
  19. {hud_python-0.4.1 → hud_python-0.4.3}/examples/README.md +83 -83
  20. {hud_python-0.4.1 → hud_python-0.4.3}/hud/__init__.py +22 -22
  21. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/__init__.py +13 -15
  22. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/base.py +599 -599
  23. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/claude.py +373 -373
  24. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/langchain.py +261 -250
  25. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/misc/__init__.py +7 -7
  26. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/misc/response_agent.py +82 -80
  27. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/openai.py +352 -352
  28. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/openai_chat_generic.py +154 -154
  29. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/__init__.py +1 -1
  30. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_base.py +742 -742
  31. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_claude.py +324 -324
  32. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_client.py +363 -363
  33. {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_openai.py +237 -237
  34. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/__init__.py +617 -617
  35. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/__main__.py +8 -8
  36. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/analyze.py +371 -371
  37. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/analyze_metadata.py +230 -230
  38. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/build.py +498 -427
  39. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/clone.py +185 -185
  40. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/cursor.py +92 -92
  41. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/debug.py +392 -392
  42. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/docker_utils.py +83 -83
  43. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/init.py +280 -281
  44. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/interactive.py +353 -353
  45. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/mcp_server.py +764 -756
  46. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/pull.py +330 -336
  47. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/push.py +404 -370
  48. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/remote_runner.py +311 -311
  49. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/runner.py +160 -160
  50. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/__init__.py +3 -3
  51. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_analyze.py +284 -284
  52. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_cli_init.py +265 -265
  53. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_cli_main.py +27 -27
  54. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_clone.py +142 -142
  55. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_cursor.py +253 -253
  56. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_debug.py +453 -453
  57. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_mcp_server.py +139 -139
  58. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_utils.py +388 -388
  59. {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/utils.py +263 -263
  60. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/README.md +143 -143
  61. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/__init__.py +16 -16
  62. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/base.py +378 -379
  63. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/fastmcp.py +222 -222
  64. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/mcp_use.py +298 -278
  65. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/__init__.py +1 -1
  66. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/test_client_integration.py +111 -111
  67. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/test_fastmcp.py +342 -342
  68. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/test_protocol.py +188 -188
  69. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/utils/__init__.py +1 -1
  70. {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/utils/retry_transport.py +160 -160
  71. {hud_python-0.4.1 → hud_python-0.4.3}/hud/datasets.py +327 -322
  72. {hud_python-0.4.1 → hud_python-0.4.3}/hud/misc/__init__.py +1 -1
  73. {hud_python-0.4.1 → hud_python-0.4.3}/hud/misc/claude_plays_pokemon.py +292 -292
  74. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/__init__.py +35 -35
  75. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/collector.py +142 -142
  76. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/config.py +164 -164
  77. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/context.py +536 -536
  78. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/exporters.py +366 -366
  79. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/instrumentation.py +97 -97
  80. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/processors.py +118 -118
  81. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/tests/__init__.py +1 -1
  82. {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/tests/test_processors.py +197 -197
  83. {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/__init__.py +5 -5
  84. {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/context.py +114 -114
  85. {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/helper/__init__.py +5 -5
  86. {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/low_level.py +132 -132
  87. {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/server.py +170 -166
  88. {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/tests/__init__.py +3 -3
  89. {hud_python-0.4.1 → hud_python-0.4.3}/hud/settings.py +73 -73
  90. {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/__init__.py +5 -5
  91. {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/exceptions.py +180 -180
  92. {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/requests.py +264 -264
  93. {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/tests/test_exceptions.py +157 -157
  94. {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/tests/test_requests.py +275 -275
  95. {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/__init__.py +25 -25
  96. {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/instrument.py +379 -379
  97. {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/job.py +309 -309
  98. {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/replay.py +74 -74
  99. {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/trace.py +83 -83
  100. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/__init__.py +33 -33
  101. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/base.py +365 -365
  102. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/bash.py +161 -161
  103. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/__init__.py +15 -15
  104. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/anthropic.py +437 -437
  105. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/hud.py +376 -376
  106. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/openai.py +295 -295
  107. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/settings.py +82 -82
  108. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/edit.py +314 -314
  109. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/__init__.py +30 -30
  110. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/base.py +539 -539
  111. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/pyautogui.py +621 -621
  112. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/tests/__init__.py +1 -1
  113. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/tests/test_base_executor.py +338 -338
  114. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/tests/test_pyautogui_executor.py +165 -165
  115. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/xdo.py +511 -511
  116. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/playwright.py +412 -412
  117. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/__init__.py +3 -3
  118. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_base.py +282 -282
  119. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_bash.py +158 -158
  120. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_bash_extended.py +197 -197
  121. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_computer.py +425 -425
  122. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_computer_actions.py +34 -34
  123. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_edit.py +259 -259
  124. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_init.py +27 -27
  125. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_playwright_tool.py +183 -183
  126. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_tools.py +145 -145
  127. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_utils.py +156 -156
  128. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/types.py +72 -72
  129. {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/utils.py +50 -50
  130. {hud_python-0.4.1 → hud_python-0.4.3}/hud/types.py +136 -136
  131. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/__init__.py +10 -10
  132. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/async_utils.py +65 -65
  133. hud_python-0.4.3/hud/utils/design.py +236 -0
  134. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/mcp.py +55 -55
  135. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/progress.py +149 -149
  136. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/telemetry.py +66 -66
  137. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_async_utils.py +173 -173
  138. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_init.py +17 -17
  139. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_progress.py +261 -261
  140. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_telemetry.py +82 -82
  141. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_version.py +8 -8
  142. {hud_python-0.4.1 → hud_python-0.4.3}/hud/version.py +7 -7
  143. {hud_python-0.4.1 → hud_python-0.4.3}/pyproject.toml +232 -240
  144. {hud_python-0.4.1 → hud_python-0.4.3}/rl/README.md +432 -419
  145. {hud_python-0.4.1 → hud_python-0.4.3}/rl/pyproject.toml +16 -16
  146. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/eslintrc/LICENSE +0 -19
  147. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/eslintrc/README.md +0 -115
  148. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/js/LICENSE +0 -19
  149. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/js/README.md +0 -57
  150. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/eslint-utils/LICENSE +0 -21
  151. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/eslint-utils/README.md +0 -37
  152. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/regexpp/LICENSE +0 -21
  153. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/regexpp/README.md +0 -177
  154. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/config-array/LICENSE +0 -201
  155. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/config-array/README.md +0 -342
  156. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/module-importer/LICENSE +0 -201
  157. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/module-importer/README.md +0 -80
  158. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/object-schema/LICENSE +0 -29
  159. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/object-schema/README.md +0 -234
  160. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@isaacs/cliui/README.md +0 -143
  161. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/gen-mapping/LICENSE +0 -19
  162. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/gen-mapping/README.md +0 -227
  163. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/resolve-uri/LICENSE +0 -19
  164. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/resolve-uri/README.md +0 -40
  165. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/sourcemap-codec/LICENSE +0 -19
  166. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/sourcemap-codec/README.md +0 -264
  167. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/trace-mapping/LICENSE +0 -19
  168. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/trace-mapping/README.md +0 -348
  169. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/env/README.md +0 -3
  170. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/eslint-plugin-next/README.md +0 -4
  171. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/swc-linux-x64-gnu/README.md +0 -3
  172. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/swc-linux-x64-musl/README.md +0 -3
  173. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.scandir/LICENSE +0 -21
  174. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.scandir/README.md +0 -171
  175. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.stat/LICENSE +0 -21
  176. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.stat/README.md +0 -126
  177. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.walk/LICENSE +0 -21
  178. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.walk/README.md +0 -215
  179. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nolyfill/is-core-module/LICENSE +0 -21
  180. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@pkgjs/parseargs/LICENSE +0 -201
  181. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@pkgjs/parseargs/README.md +0 -413
  182. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rtsao/scc/LICENSE +0 -21
  183. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rtsao/scc/README.md +0 -49
  184. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rushstack/eslint-patch/LICENSE +0 -24
  185. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rushstack/eslint-patch/README.md +0 -252
  186. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@swc/helpers/LICENSE +0 -201
  187. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/json5/README.md +0 -18
  188. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/node/LICENSE +0 -21
  189. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/node/README.md +0 -15
  190. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/prop-types/LICENSE +0 -21
  191. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/prop-types/README.md +0 -15
  192. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react/LICENSE +0 -21
  193. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react/README.md +0 -15
  194. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react-dom/LICENSE +0 -21
  195. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react-dom/README.md +0 -16
  196. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/parser/LICENSE +0 -22
  197. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/parser/README.md +0 -12
  198. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/scope-manager/LICENSE +0 -21
  199. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/scope-manager/README.md +0 -10
  200. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/types/LICENSE +0 -21
  201. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/types/README.md +0 -12
  202. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/LICENSE +0 -26
  203. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/README.md +0 -14
  204. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +0 -21
  205. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +0 -135
  206. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE +0 -15
  207. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +0 -454
  208. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/visitor-keys/LICENSE +0 -21
  209. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/visitor-keys/README.md +0 -10
  210. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@ungap/structured-clone/LICENSE +0 -15
  211. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@ungap/structured-clone/README.md +0 -95
  212. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@unrs/resolver-binding-linux-x64-gnu/README.md +0 -3
  213. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@unrs/resolver-binding-linux-x64-musl/README.md +0 -3
  214. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn/LICENSE +0 -21
  215. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn/README.md +0 -282
  216. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn-jsx/LICENSE +0 -19
  217. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn-jsx/README.md +0 -40
  218. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ajv/LICENSE +0 -22
  219. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ajv/README.md +0 -1497
  220. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ajv/lib/dotjs/README.md +0 -3
  221. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/any-promise/LICENSE +0 -19
  222. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/any-promise/README.md +0 -161
  223. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/anymatch/LICENSE +0 -15
  224. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/anymatch/README.md +0 -87
  225. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/arg/README.md +0 -317
  226. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/argparse/LICENSE +0 -254
  227. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/argparse/README.md +0 -84
  228. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/aria-query/LICENSE +0 -201
  229. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/aria-query/README.md +0 -195
  230. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-buffer-byte-length/LICENSE +0 -21
  231. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-buffer-byte-length/README.md +0 -40
  232. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-includes/LICENSE +0 -21
  233. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-includes/README.md +0 -105
  234. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlast/LICENSE +0 -21
  235. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlast/README.md +0 -74
  236. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlastindex/LICENSE +0 -21
  237. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlastindex/README.md +0 -74
  238. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flat/LICENSE +0 -21
  239. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flat/README.md +0 -75
  240. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flatmap/LICENSE +0 -21
  241. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flatmap/README.md +0 -82
  242. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.tosorted/LICENSE +0 -21
  243. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.tosorted/README.md +0 -71
  244. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/arraybuffer.prototype.slice/LICENSE +0 -21
  245. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/arraybuffer.prototype.slice/README.md +0 -61
  246. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ast-types-flow/LICENSE +0 -21
  247. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ast-types-flow/README.md +0 -99
  248. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/async-function/LICENSE +0 -21
  249. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/async-function/README.md +0 -51
  250. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/autoprefixer/LICENSE +0 -20
  251. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/autoprefixer/README.md +0 -66
  252. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/available-typed-arrays/LICENSE +0 -21
  253. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/available-typed-arrays/README.md +0 -55
  254. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axe-core/LICENSE +0 -362
  255. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axe-core/README.md +0 -190
  256. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axe-core/locales/README.md +0 -9
  257. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axobject-query/LICENSE +0 -201
  258. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axobject-query/README.md +0 -404
  259. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/balanced-match/README.md +0 -97
  260. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/brace-expansion/LICENSE +0 -21
  261. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/brace-expansion/README.md +0 -129
  262. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/braces/LICENSE +0 -21
  263. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/braces/README.md +0 -586
  264. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/browserslist/LICENSE +0 -20
  265. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/browserslist/README.md +0 -67
  266. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/busboy/LICENSE +0 -19
  267. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/busboy/README.md +0 -191
  268. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind/LICENSE +0 -21
  269. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind/README.md +0 -64
  270. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind-apply-helpers/LICENSE +0 -21
  271. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind-apply-helpers/README.md +0 -62
  272. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bound/LICENSE +0 -21
  273. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bound/README.md +0 -53
  274. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/camelcase-css/README.md +0 -27
  275. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/caniuse-lite/LICENSE +0 -395
  276. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/caniuse-lite/README.md +0 -6
  277. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/LICENSE +0 -21
  278. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/README.md +0 -308
  279. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/node_modules/glob-parent/LICENSE +0 -15
  280. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/node_modules/glob-parent/README.md +0 -137
  281. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-convert/LICENSE +0 -21
  282. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-convert/README.md +0 -68
  283. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-name/LICENSE +0 -8
  284. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-name/README.md +0 -11
  285. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/commander/LICENSE +0 -22
  286. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/concat-map/LICENSE +0 -18
  287. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/cross-spawn/LICENSE +0 -21
  288. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/cross-spawn/README.md +0 -89
  289. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/cssesc/README.md +0 -201
  290. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/csstype/LICENSE +0 -19
  291. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/csstype/README.md +0 -277
  292. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/damerau-levenshtein/LICENSE +0 -25
  293. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/damerau-levenshtein/README.md +0 -47
  294. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-buffer/LICENSE +0 -21
  295. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-buffer/README.md +0 -43
  296. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-length/LICENSE +0 -21
  297. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-length/README.md +0 -43
  298. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-offset/LICENSE +0 -21
  299. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-offset/README.md +0 -43
  300. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/debug/LICENSE +0 -20
  301. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/debug/README.md +0 -481
  302. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/deep-is/LICENSE +0 -22
  303. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-data-property/LICENSE +0 -21
  304. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-data-property/README.md +0 -67
  305. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-properties/LICENSE +0 -21
  306. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-properties/README.md +0 -84
  307. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/didyoumean/LICENSE +0 -14
  308. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/didyoumean/README.md +0 -134
  309. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/dlv/README.md +0 -76
  310. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/doctrine/LICENSE +0 -177
  311. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/doctrine/README.md +0 -165
  312. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/dunder-proto/LICENSE +0 -21
  313. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/dunder-proto/README.md +0 -54
  314. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eastasianwidth/README.md +0 -32
  315. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/electron-to-chromium/LICENSE +0 -5
  316. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/electron-to-chromium/README.md +0 -186
  317. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/emoji-regex/README.md +0 -137
  318. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-abstract/LICENSE +0 -21
  319. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-abstract/README.md +0 -43
  320. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-define-property/LICENSE +0 -21
  321. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-define-property/README.md +0 -49
  322. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-errors/LICENSE +0 -21
  323. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-errors/README.md +0 -55
  324. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-iterator-helpers/LICENSE +0 -21
  325. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-iterator-helpers/README.md +0 -110
  326. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-object-atoms/LICENSE +0 -21
  327. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-object-atoms/README.md +0 -63
  328. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-set-tostringtag/LICENSE +0 -21
  329. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-set-tostringtag/README.md +0 -53
  330. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-shim-unscopables/LICENSE +0 -21
  331. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-shim-unscopables/README.md +0 -57
  332. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-to-primitive/LICENSE +0 -22
  333. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-to-primitive/README.md +0 -52
  334. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint/LICENSE +0 -19
  335. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint/README.md +0 -304
  336. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/LICENSE +0 -22
  337. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/README.md +0 -44
  338. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/node_modules/debug/LICENSE +0 -19
  339. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/node_modules/debug/README.md +0 -437
  340. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-typescript/LICENSE +0 -5
  341. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-typescript/README.md +0 -346
  342. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-module-utils/LICENSE +0 -22
  343. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-module-utils/node_modules/debug/LICENSE +0 -19
  344. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-module-utils/node_modules/debug/README.md +0 -437
  345. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/LICENSE +0 -22
  346. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/README.md +0 -612
  347. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/memo-parser/LICENSE +0 -22
  348. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/memo-parser/README.md +0 -21
  349. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/debug/LICENSE +0 -19
  350. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/debug/README.md +0 -437
  351. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE +0 -177
  352. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/doctrine/README.md +0 -165
  353. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/semver/LICENSE +0 -15
  354. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/semver/README.md +0 -443
  355. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-jsx-a11y/README.md +0 -423
  356. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/LICENSE +0 -22
  357. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/README.md +0 -423
  358. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/doctrine/LICENSE +0 -177
  359. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/doctrine/README.md +0 -165
  360. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/resolve/LICENSE +0 -21
  361. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/semver/LICENSE +0 -15
  362. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/semver/README.md +0 -443
  363. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react-hooks/LICENSE +0 -21
  364. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react-hooks/README.md +0 -75
  365. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-scope/LICENSE +0 -22
  366. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-scope/README.md +0 -70
  367. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-visitor-keys/LICENSE +0 -201
  368. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-visitor-keys/README.md +0 -105
  369. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/espree/LICENSE +0 -25
  370. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/espree/README.md +0 -244
  371. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/esquery/README.md +0 -27
  372. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/esrecurse/README.md +0 -171
  373. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/estraverse/README.md +0 -153
  374. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/esutils/README.md +0 -174
  375. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-deep-equal/LICENSE +0 -21
  376. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-deep-equal/README.md +0 -96
  377. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/LICENSE +0 -21
  378. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/README.md +0 -830
  379. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/node_modules/glob-parent/LICENSE +0 -15
  380. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/node_modules/glob-parent/README.md +0 -137
  381. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-json-stable-stringify/LICENSE +0 -21
  382. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-json-stable-stringify/README.md +0 -131
  383. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-levenshtein/README.md +0 -104
  384. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fastq/LICENSE +0 -13
  385. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fastq/README.md +0 -312
  386. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/file-entry-cache/LICENSE +0 -22
  387. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/file-entry-cache/README.md +0 -112
  388. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fill-range/LICENSE +0 -21
  389. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fill-range/README.md +0 -237
  390. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flat-cache/LICENSE +0 -22
  391. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flat-cache/README.md +0 -75
  392. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flatted/LICENSE +0 -15
  393. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flatted/README.md +0 -115
  394. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/for-each/LICENSE +0 -22
  395. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/for-each/README.md +0 -39
  396. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/foreground-child/LICENSE +0 -15
  397. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/foreground-child/README.md +0 -128
  398. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fraction.js/LICENSE +0 -21
  399. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fraction.js/README.md +0 -466
  400. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fs.realpath/LICENSE +0 -43
  401. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fs.realpath/README.md +0 -33
  402. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function-bind/LICENSE +0 -20
  403. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function-bind/README.md +0 -46
  404. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function.prototype.name/LICENSE +0 -21
  405. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function.prototype.name/README.md +0 -55
  406. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/functions-have-names/LICENSE +0 -21
  407. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/functions-have-names/README.md +0 -40
  408. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-intrinsic/LICENSE +0 -21
  409. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-intrinsic/README.md +0 -71
  410. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-proto/LICENSE +0 -21
  411. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-proto/README.md +0 -50
  412. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-symbol-description/LICENSE +0 -21
  413. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-symbol-description/README.md +0 -43
  414. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-tsconfig/LICENSE +0 -21
  415. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-tsconfig/README.md +0 -235
  416. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/LICENSE +0 -15
  417. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/README.md +0 -1214
  418. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/brace-expansion/LICENSE +0 -21
  419. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/brace-expansion/README.md +0 -135
  420. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/minimatch/LICENSE +0 -15
  421. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/minimatch/README.md +0 -454
  422. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob-parent/LICENSE +0 -15
  423. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob-parent/README.md +0 -134
  424. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/globalthis/LICENSE +0 -21
  425. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/globalthis/README.md +0 -70
  426. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/gopd/LICENSE +0 -21
  427. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/gopd/README.md +0 -40
  428. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graceful-fs/LICENSE +0 -15
  429. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graceful-fs/README.md +0 -143
  430. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graphemer/LICENSE +0 -18
  431. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graphemer/README.md +0 -132
  432. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-bigints/LICENSE +0 -21
  433. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-bigints/README.md +0 -39
  434. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-property-descriptors/LICENSE +0 -21
  435. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-property-descriptors/README.md +0 -43
  436. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-proto/LICENSE +0 -21
  437. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-proto/README.md +0 -57
  438. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-symbols/LICENSE +0 -21
  439. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-symbols/README.md +0 -46
  440. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-tostringtag/LICENSE +0 -21
  441. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-tostringtag/README.md +0 -46
  442. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/hasown/LICENSE +0 -21
  443. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/hasown/README.md +0 -40
  444. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ignore/README.md +0 -412
  445. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/imurmurhash/README.md +0 -122
  446. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inflight/LICENSE +0 -15
  447. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inflight/README.md +0 -37
  448. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inherits/LICENSE +0 -16
  449. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inherits/README.md +0 -42
  450. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/internal-slot/LICENSE +0 -21
  451. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/internal-slot/README.md +0 -58
  452. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-array-buffer/LICENSE +0 -21
  453. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-array-buffer/README.md +0 -56
  454. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-async-function/LICENSE +0 -20
  455. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-async-function/README.md +0 -41
  456. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bigint/LICENSE +0 -21
  457. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bigint/README.md +0 -44
  458. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-boolean-object/LICENSE +0 -22
  459. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-boolean-object/README.md +0 -57
  460. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bun-module/LICENSE +0 -20
  461. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bun-module/README.md +0 -79
  462. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-callable/LICENSE +0 -22
  463. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-callable/README.md +0 -83
  464. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-core-module/LICENSE +0 -20
  465. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-core-module/README.md +0 -40
  466. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-data-view/LICENSE +0 -21
  467. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-data-view/README.md +0 -69
  468. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-date-object/LICENSE +0 -22
  469. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-date-object/README.md +0 -52
  470. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-extglob/LICENSE +0 -21
  471. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-extglob/README.md +0 -107
  472. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-finalizationregistry/LICENSE +0 -21
  473. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-finalizationregistry/README.md +0 -54
  474. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-generator-function/LICENSE +0 -20
  475. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-generator-function/README.md +0 -40
  476. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-glob/LICENSE +0 -21
  477. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-glob/README.md +0 -206
  478. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-map/LICENSE +0 -21
  479. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-map/README.md +0 -52
  480. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-negative-zero/LICENSE +0 -20
  481. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-negative-zero/README.md +0 -54
  482. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number/LICENSE +0 -21
  483. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number/README.md +0 -187
  484. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number-object/LICENSE +0 -22
  485. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number-object/README.md +0 -55
  486. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-regex/LICENSE +0 -20
  487. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-regex/README.md +0 -52
  488. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-set/LICENSE +0 -21
  489. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-set/README.md +0 -50
  490. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-shared-array-buffer/LICENSE +0 -21
  491. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-shared-array-buffer/README.md +0 -56
  492. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-string/LICENSE +0 -22
  493. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-string/README.md +0 -56
  494. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-symbol/LICENSE +0 -22
  495. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-symbol/README.md +0 -45
  496. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-typed-array/LICENSE +0 -22
  497. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-typed-array/README.md +0 -70
  498. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakmap/LICENSE +0 -21
  499. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakmap/README.md +0 -50
  500. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakref/LICENSE +0 -21
  501. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakref/README.md +0 -52
  502. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakset/LICENSE +0 -21
  503. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakset/README.md +0 -50
  504. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isarray/LICENSE +0 -21
  505. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isarray/README.md +0 -38
  506. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isexe/LICENSE +0 -15
  507. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isexe/README.md +0 -51
  508. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/iterator.prototype/LICENSE +0 -21
  509. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/iterator.prototype/README.md +0 -35
  510. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jackspeak/README.md +0 -348
  511. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jiti/LICENSE +0 -21
  512. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jiti/README.md +0 -164
  513. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-tokens/LICENSE +0 -21
  514. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-tokens/README.md +0 -240
  515. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-yaml/LICENSE +0 -21
  516. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-yaml/README.md +0 -246
  517. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-buffer/LICENSE +0 -22
  518. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-buffer/README.md +0 -24
  519. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-schema-traverse/LICENSE +0 -21
  520. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-schema-traverse/README.md +0 -83
  521. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-stable-stringify-without-jsonify/LICENSE +0 -18
  522. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json5/README.md +0 -234
  523. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jsx-ast-utils/README.md +0 -298
  524. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/keyv/README.md +0 -429
  525. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/language-subtag-registry/README.md +0 -25
  526. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/language-tags/README.md +0 -269
  527. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/levn/LICENSE +0 -22
  528. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/levn/README.md +0 -196
  529. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lilconfig/LICENSE +0 -21
  530. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lines-and-columns/LICENSE +0 -21
  531. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lines-and-columns/README.md +0 -33
  532. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lodash.merge/LICENSE +0 -47
  533. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lodash.merge/README.md +0 -18
  534. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/loose-envify/LICENSE +0 -21
  535. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/loose-envify/README.md +0 -45
  536. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lru-cache/LICENSE +0 -15
  537. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lru-cache/README.md +0 -331
  538. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/math-intrinsics/LICENSE +0 -21
  539. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/math-intrinsics/README.md +0 -50
  540. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/merge2/LICENSE +0 -21
  541. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/merge2/README.md +0 -144
  542. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/micromatch/LICENSE +0 -21
  543. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/micromatch/README.md +0 -1024
  544. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimatch/LICENSE +0 -15
  545. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimatch/README.md +0 -230
  546. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimist/LICENSE +0 -18
  547. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimist/README.md +0 -121
  548. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minipass/LICENSE +0 -15
  549. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minipass/README.md +0 -825
  550. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/mz/LICENSE +0 -22
  551. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/mz/README.md +0 -106
  552. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/nanoid/LICENSE +0 -20
  553. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/nanoid/README.md +0 -39
  554. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/napi-postinstall/LICENSE +0 -21
  555. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/napi-postinstall/README.md +0 -147
  556. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/natural-compare/README.md +0 -125
  557. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/next/README.md +0 -67
  558. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/next/node_modules/postcss/LICENSE +0 -20
  559. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/next/node_modules/postcss/README.md +0 -28
  560. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/node-releases/LICENSE +0 -21
  561. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/node-releases/README.md +0 -12
  562. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/normalize-path/LICENSE +0 -21
  563. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/normalize-path/README.md +0 -127
  564. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-hash/LICENSE +0 -22
  565. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-inspect/LICENSE +0 -21
  566. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-keys/LICENSE +0 -21
  567. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-keys/README.md +0 -76
  568. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.assign/LICENSE +0 -21
  569. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.assign/README.md +0 -136
  570. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.entries/LICENSE +0 -22
  571. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.entries/README.md +0 -58
  572. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.fromentries/LICENSE +0 -21
  573. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.fromentries/README.md +0 -50
  574. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.groupby/LICENSE +0 -21
  575. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.groupby/README.md +0 -79
  576. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.values/LICENSE +0 -22
  577. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.values/README.md +0 -58
  578. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/once/LICENSE +0 -15
  579. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/once/README.md +0 -79
  580. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/optionator/LICENSE +0 -22
  581. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/optionator/README.md +0 -238
  582. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/own-keys/LICENSE +0 -21
  583. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/own-keys/README.md +0 -45
  584. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/path-parse/LICENSE +0 -21
  585. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/path-parse/README.md +0 -42
  586. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/path-scurry/README.md +0 -636
  587. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picocolors/LICENSE +0 -15
  588. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picocolors/README.md +0 -21
  589. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picomatch/LICENSE +0 -21
  590. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picomatch/README.md +0 -708
  591. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/pirates/LICENSE +0 -21
  592. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/pirates/README.md +0 -73
  593. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/possible-typed-array-names/LICENSE +0 -21
  594. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/possible-typed-array-names/README.md +0 -50
  595. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss/LICENSE +0 -20
  596. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss/README.md +0 -29
  597. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-import/LICENSE +0 -20
  598. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-import/README.md +0 -244
  599. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-js/LICENSE +0 -20
  600. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-js/README.md +0 -22
  601. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-nested/LICENSE +0 -20
  602. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-nested/README.md +0 -85
  603. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-selector-parser/README.md +0 -49
  604. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-value-parser/LICENSE +0 -22
  605. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-value-parser/README.md +0 -263
  606. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prelude-ls/LICENSE +0 -22
  607. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prelude-ls/README.md +0 -15
  608. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prop-types/LICENSE +0 -21
  609. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prop-types/README.md +0 -302
  610. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/punycode/README.md +0 -148
  611. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/queue-microtask/LICENSE +0 -20
  612. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/queue-microtask/README.md +0 -90
  613. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react/LICENSE +0 -21
  614. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react/README.md +0 -37
  615. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-dom/LICENSE +0 -21
  616. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-dom/README.md +0 -60
  617. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-is/LICENSE +0 -21
  618. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-is/README.md +0 -104
  619. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/read-cache/LICENSE +0 -20
  620. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/read-cache/README.md +0 -46
  621. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/readdirp/LICENSE +0 -21
  622. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/readdirp/README.md +0 -122
  623. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reflect.getprototypeof/LICENSE +0 -21
  624. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reflect.getprototypeof/README.md +0 -77
  625. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/regexp.prototype.flags/LICENSE +0 -22
  626. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/regexp.prototype.flags/README.md +0 -55
  627. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/resolve/LICENSE +0 -21
  628. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/resolve-pkg-maps/LICENSE +0 -21
  629. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/resolve-pkg-maps/README.md +0 -216
  630. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reusify/LICENSE +0 -22
  631. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reusify/README.md +0 -139
  632. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/LICENSE +0 -15
  633. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/README.md +0 -101
  634. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/node_modules/glob/LICENSE +0 -21
  635. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/node_modules/glob/README.md +0 -378
  636. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/run-parallel/LICENSE +0 -20
  637. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/run-parallel/README.md +0 -85
  638. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-array-concat/LICENSE +0 -21
  639. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-array-concat/README.md +0 -53
  640. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-push-apply/LICENSE +0 -21
  641. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-push-apply/README.md +0 -59
  642. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-regex-test/LICENSE +0 -21
  643. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-regex-test/README.md +0 -46
  644. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/scheduler/LICENSE +0 -21
  645. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/scheduler/README.md +0 -9
  646. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/semver/LICENSE +0 -15
  647. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/semver/README.md +0 -664
  648. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-length/LICENSE +0 -21
  649. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-length/README.md +0 -56
  650. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-name/LICENSE +0 -21
  651. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-name/README.md +0 -61
  652. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-proto/LICENSE +0 -21
  653. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-proto/README.md +0 -52
  654. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel/LICENSE +0 -21
  655. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel/README.md +0 -61
  656. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-list/LICENSE +0 -21
  657. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-list/README.md +0 -62
  658. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-map/LICENSE +0 -21
  659. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-map/README.md +0 -62
  660. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-weakmap/LICENSE +0 -21
  661. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-weakmap/README.md +0 -62
  662. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/signal-exit/README.md +0 -74
  663. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/source-map-js/LICENSE +0 -28
  664. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/source-map-js/README.md +0 -765
  665. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/stable-hash/README.md +0 -144
  666. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/stop-iteration-iterator/LICENSE +0 -21
  667. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/stop-iteration-iterator/README.md +0 -42
  668. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/streamsearch/LICENSE +0 -19
  669. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/streamsearch/README.md +0 -95
  670. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +0 -73
  671. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.includes/LICENSE +0 -20
  672. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.includes/README.md +0 -48
  673. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.matchall/LICENSE +0 -22
  674. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.matchall/README.md +0 -73
  675. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.repeat/README.md +0 -43
  676. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trim/LICENSE +0 -21
  677. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trim/README.md +0 -48
  678. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimend/LICENSE +0 -21
  679. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimend/README.md +0 -46
  680. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimstart/LICENSE +0 -21
  681. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimstart/README.md +0 -46
  682. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/sucrase/LICENSE +0 -21
  683. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/sucrase/README.md +0 -295
  684. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/supports-preserve-symlinks-flag/LICENSE +0 -21
  685. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/supports-preserve-symlinks-flag/README.md +0 -42
  686. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/swr/LICENSE +0 -21
  687. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/swr/README.md +0 -102
  688. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/LICENSE +0 -21
  689. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/README.md +0 -40
  690. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/css/LICENSE +0 -25
  691. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/postcss-plugins/nesting/README.md +0 -42
  692. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/value-parser/LICENSE +0 -22
  693. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/value-parser/README.md +0 -3
  694. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/node_modules/postcss-load-config/LICENSE +0 -20
  695. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/node_modules/postcss-load-config/README.md +0 -466
  696. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/css/LICENSE +0 -25
  697. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/postcss-plugins/nesting/README.md +0 -42
  698. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/value-parser/LICENSE +0 -22
  699. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/value-parser/README.md +0 -3
  700. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/text-table/LICENSE +0 -18
  701. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify/LICENSE +0 -22
  702. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify/README.md +0 -120
  703. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify-all/LICENSE +0 -22
  704. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify-all/README.md +0 -66
  705. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/LICENSE +0 -21
  706. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/README.md +0 -72
  707. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/fdir/LICENSE +0 -7
  708. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/fdir/README.md +0 -91
  709. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/picomatch/LICENSE +0 -21
  710. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/picomatch/README.md +0 -738
  711. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/to-regex-range/LICENSE +0 -21
  712. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/to-regex-range/README.md +0 -305
  713. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ts-api-utils/README.md +0 -83
  714. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ts-interface-checker/LICENSE +0 -201
  715. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ts-interface-checker/README.md +0 -185
  716. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tsconfig-paths/LICENSE +0 -21
  717. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tsconfig-paths/README.md +0 -268
  718. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tslib/README.md +0 -164
  719. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/type-check/LICENSE +0 -22
  720. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/type-check/README.md +0 -210
  721. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-buffer/LICENSE +0 -21
  722. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-buffer/README.md +0 -42
  723. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-length/LICENSE +0 -21
  724. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-length/README.md +0 -70
  725. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-offset/LICENSE +0 -21
  726. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-offset/README.md +0 -70
  727. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-length/LICENSE +0 -21
  728. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-length/README.md +0 -64
  729. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typescript/README.md +0 -50
  730. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/unbox-primitive/LICENSE +0 -21
  731. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/unbox-primitive/README.md +0 -47
  732. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/undici-types/LICENSE +0 -21
  733. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/undici-types/README.md +0 -6
  734. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/unrs-resolver/README.md +0 -356
  735. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/update-browserslist-db/LICENSE +0 -20
  736. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/update-browserslist-db/README.md +0 -22
  737. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/uri-js/LICENSE +0 -11
  738. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/uri-js/README.md +0 -203
  739. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/use-sync-external-store/LICENSE +0 -21
  740. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/use-sync-external-store/README.md +0 -5
  741. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/util-deprecate/LICENSE +0 -24
  742. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/util-deprecate/README.md +0 -53
  743. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which/LICENSE +0 -15
  744. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which/README.md +0 -54
  745. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-boxed-primitive/LICENSE +0 -21
  746. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-boxed-primitive/README.md +0 -73
  747. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-builtin-type/LICENSE +0 -21
  748. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-builtin-type/README.md +0 -67
  749. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-collection/LICENSE +0 -21
  750. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-collection/README.md +0 -65
  751. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-typed-array/LICENSE +0 -22
  752. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-typed-array/README.md +0 -70
  753. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/word-wrap/LICENSE +0 -21
  754. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/word-wrap/README.md +0 -201
  755. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +0 -73
  756. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/wrappy/LICENSE +0 -15
  757. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/wrappy/README.md +0 -36
  758. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/yaml/LICENSE +0 -13
  759. hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/yaml/README.md +0 -190
  760. hud_python-0.4.1/hud/agents/art.py +0 -101
  761. hud_python-0.4.1/hud/utils/design.py +0 -168
  762. hud_python-0.4.1/test_env/Lib/site-packages/PyYAML-6.0.2.dist-info/LICENSE +0 -20
  763. hud_python-0.4.1/test_env/Lib/site-packages/aiohappyeyeballs-2.6.1.dist-info/LICENSE +0 -279
  764. hud_python-0.4.1/test_env/Lib/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE +0 -21
  765. hud_python-0.4.1/test_env/Lib/site-packages/attrs-25.3.0.dist-info/licenses/LICENSE +0 -21
  766. hud_python-0.4.1/test_env/Lib/site-packages/backoff-2.2.1.dist-info/LICENSE +0 -21
  767. hud_python-0.4.1/test_env/Lib/site-packages/certifi-2025.8.3.dist-info/licenses/LICENSE +0 -20
  768. hud_python-0.4.1/test_env/Lib/site-packages/charset_normalizer-3.4.2.dist-info/licenses/LICENSE +0 -21
  769. hud_python-0.4.1/test_env/Lib/site-packages/distro-1.9.0.dist-info/LICENSE +0 -202
  770. hud_python-0.4.1/test_env/Lib/site-packages/frozenlist-1.7.0.dist-info/licenses/LICENSE +0 -201
  771. hud_python-0.4.1/test_env/Lib/site-packages/greenlet-3.2.3.dist-info/licenses/LICENSE +0 -30
  772. hud_python-0.4.1/test_env/Lib/site-packages/httpx_sse-0.4.1.dist-info/licenses/LICENSE +0 -21
  773. hud_python-0.4.1/test_env/Lib/site-packages/multidict-6.6.3.dist-info/licenses/LICENSE +0 -13
  774. hud_python-0.4.1/test_env/Lib/site-packages/packaging-25.0.dist-info/licenses/LICENSE +0 -3
  775. hud_python-0.4.1/test_env/Lib/site-packages/pathspec-0.12.1.dist-info/LICENSE +0 -373
  776. hud_python-0.4.1/test_env/Lib/site-packages/propcache-0.3.2.dist-info/licenses/LICENSE +0 -202
  777. hud_python-0.4.1/test_env/Lib/site-packages/python_dotenv-1.1.1.dist-info/licenses/LICENSE +0 -27
  778. hud_python-0.4.1/test_env/Lib/site-packages/rpds_py-0.26.0.dist-info/licenses/LICENSE +0 -19
  779. hud_python-0.4.1/test_env/Lib/site-packages/six-1.17.0.dist-info/LICENSE +0 -18
  780. hud_python-0.4.1/test_env/Lib/site-packages/sniffio-1.3.1.dist-info/LICENSE +0 -3
  781. hud_python-0.4.1/test_env/Lib/site-packages/sqlalchemy-2.0.42.dist-info/licenses/LICENSE +0 -19
  782. hud_python-0.4.1/test_env/Lib/site-packages/tenacity-9.1.2.dist-info/licenses/LICENSE +0 -202
  783. hud_python-0.4.1/test_env/Lib/site-packages/typing_extensions-4.14.1.dist-info/licenses/LICENSE +0 -279
  784. hud_python-0.4.1/test_env/Lib/site-packages/typing_inspection-0.4.1.dist-info/licenses/LICENSE +0 -21
  785. hud_python-0.4.1/test_env/Lib/site-packages/websockets-15.0.1.dist-info/LICENSE +0 -24
  786. hud_python-0.4.1/test_env/Lib/site-packages/wrapt-1.17.2.dist-info/LICENSE +0 -24
  787. hud_python-0.4.1/test_env/Lib/site-packages/yarl-1.20.1.dist-info/licenses/LICENSE +0 -202
  788. hud_python-0.4.1/test_env/Lib/site-packages/zstandard-0.23.0.dist-info/LICENSE +0 -27
  789. {hud_python-0.4.1 → hud_python-0.4.3}/hud/py.typed +0 -0
  790. {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/tests/__init__.py +0 -0
  791. {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/__init__.py +0 -0
@@ -1,46 +1,45 @@
1
- .venv
2
- .vscode
3
- venv
4
- .env
5
- __pycache__
6
- *.pyc
7
- .pytest_cache
8
- dist/
9
- build/
10
- *.egg-info/
11
- uv.lock
12
-
13
-
14
- # Media files
15
- *.jpg
16
- *.jpeg
17
- *.bmp
18
- *.tiff
19
- *.ico
20
-
21
- # DS-Store
22
- .DS_Store
23
-
24
- # Test files
25
- /*.ipynb
26
- test.json
27
- TODO.md
28
-
29
- .coverage
30
-
31
- *.log
32
-
33
- /ref/
34
-
35
- .cursor/
36
-
37
- /dev/
38
-
39
- .claude
40
- CLAUDE.md
41
-
42
- *.csv
43
-
44
- # RL
45
- wandb/
1
+ .venv
2
+ .vscode
3
+ venv
4
+ .env
5
+ __pycache__
6
+ *.pyc
7
+ .pytest_cache
8
+ dist/
9
+ build/
10
+ *.egg-info/
11
+ uv.lock
12
+
13
+ # Media files
14
+ *.jpg
15
+ *.jpeg
16
+ *.bmp
17
+ *.tiff
18
+ *.ico
19
+
20
+ # DS-Store
21
+ .DS_Store
22
+
23
+ # Test files
24
+ /*.ipynb
25
+ test.json
26
+ TODO.md
27
+
28
+ .coverage
29
+
30
+ *.log
31
+
32
+ /ref/
33
+
34
+ .cursor/
35
+
36
+ /dev/
37
+
38
+ .claude
39
+ CLAUDE.md
40
+
41
+ *.csv
42
+
43
+ # RL
44
+ wandb/
46
45
  outputs/
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Human Union Data, Inc
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) 2025 Human Union Data, Inc
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hud-python
3
- Version: 0.4.1
3
+ Version: 0.4.3
4
4
  Summary: SDK for the HUD platform.
5
5
  Project-URL: Homepage, https://github.com/hud-evals/hud-python
6
6
  Project-URL: Bug Tracker, https://github.com/hud-evals/hud-python/issues
@@ -114,10 +114,10 @@ OSS RL environment + evals toolkit. Wrap software as environments, run benchmark
114
114
 
115
115
  ## Highlights
116
116
 
117
- - 🚀 **[MCP-native connectivity](https://docs.hud.so/core-concepts/mcp-protocol)** – any agent can call any hud environment.
117
+ - 🚀 **[MCP environment skeleton](https://docs.hud.so/core-concepts/mcp-protocol)** – any agent can call any environment.
118
118
  - ⚡️ **[Live telemetry](https://app.hud.so)** – inspect every tool call, observation, and reward in real time.
119
119
  - 🗂️ **[Public benchmarks](https://app.hud.so/leaderboards)** – OSWorld-Verified, SheetBench-50, and more.
120
- - 🌱 **[Reinforcement learning built-in](rl/)** – Verifiers gym pipelines for GRPO training.
120
+ - 🌱 **[Reinforcement learning built-in](rl/)** – Verifiers gym pipelines for GRPO on any environment.
121
121
  - 🌐 **[Cloud browsers](environments/remote_browser/)** – AnchorBrowser, Steel, BrowserBase integrations for browser automation.
122
122
  - 🛠️ **[Hot-reload dev loop](environments/README.md#phase-5-hot-reload-development-with-cursor-agent)** – `hud dev` for iterating on environments without rebuilds.
123
123
 
@@ -152,7 +152,7 @@ For a tutorial that explains the agent and evaluation design, run ([see quicksta
152
152
  uvx hud-python quickstart
153
153
  ```
154
154
 
155
- Or just write your own agent loop (more [examples here](examples/)):
155
+ Or just write your own agent loop (more [examples here](examples/)).
156
156
 
157
157
  ```python
158
158
  import asyncio, hud, os
@@ -196,11 +196,13 @@ async def main() -> None:
196
196
  asyncio.run(main())
197
197
  ```
198
198
 
199
- > Every HUD environment is MCP-based and interactable from anywhere. Requires `HUD_API_KEY` and `ANTHROPIC_API_KEY`.
199
+ The above example let's the agent play 2048 ([See replay](https://app.hud.so/trace/6feed7bd-5f67-4d66-b77f-eb1e3164604f))
200
+
201
+ ![Agent playing 2048](https://raw.githubusercontent.com/hud-evals/hud-python/main/docs/src/images/2048_1.gif)
200
202
 
201
203
  ## Reinforcement Learning with GRPO
202
204
 
203
- This is a Qwen-2.5-3B agent training a policy on the [`text-2048`](environments/text_2048/) environment using [Verifiers](rl/verifiers/):
205
+ This is a Qwen-2.5-3B agent training a policy on the [`text-2048`](environments/text_2048/) environment (see above) using [Verifiers](rl/):
204
206
 
205
207
  ![RL curve](https://raw.githubusercontent.com/hud-evals/hud-python/main/docs/src/images/rl_2.png)
206
208
 
@@ -208,8 +210,8 @@ To start training, check out the [`rl/README.md`](rl/README.md) folder:
208
210
 
209
211
  ```bash
210
212
  git clone https://github.com/hud-evals/hud-python
211
- cd hud-python
212
- python rl/verifiers/train_2048.py
213
+ cd hud-python/rl
214
+ python train_2048.py
213
215
  ```
214
216
 
215
217
  Any hud MCP environment and evaluation works with our RL pipeline. Even our remote configurations!