velune-cli 0.9.0__py3-none-any.whl

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 (279) hide show
  1. velune/__init__.py +5 -0
  2. velune/__main__.py +6 -0
  3. velune/cli/__init__.py +5 -0
  4. velune/cli/app.py +208 -0
  5. velune/cli/autocomplete.py +80 -0
  6. velune/cli/banner.py +60 -0
  7. velune/cli/commands/__init__.py +32 -0
  8. velune/cli/commands/ask.py +175 -0
  9. velune/cli/commands/base.py +16 -0
  10. velune/cli/commands/chat.py +228 -0
  11. velune/cli/commands/config.py +224 -0
  12. velune/cli/commands/daemon.py +88 -0
  13. velune/cli/commands/doctor.py +721 -0
  14. velune/cli/commands/init.py +170 -0
  15. velune/cli/commands/mcp.py +82 -0
  16. velune/cli/commands/memory.py +293 -0
  17. velune/cli/commands/models.py +683 -0
  18. velune/cli/commands/preflight.py +95 -0
  19. velune/cli/commands/run.py +270 -0
  20. velune/cli/commands/setup.py +184 -0
  21. velune/cli/commands/workspace.py +249 -0
  22. velune/cli/context.py +36 -0
  23. velune/cli/councilmodel_ui.py +199 -0
  24. velune/cli/display/council_view.py +254 -0
  25. velune/cli/display/memory_view.py +126 -0
  26. velune/cli/display/panels.py +35 -0
  27. velune/cli/display/progress.py +25 -0
  28. velune/cli/display/themes.py +25 -0
  29. velune/cli/main.py +15 -0
  30. velune/cli/model_selector.py +51 -0
  31. velune/cli/modes.py +86 -0
  32. velune/cli/pull_ui.py +123 -0
  33. velune/cli/registry.py +80 -0
  34. velune/cli/rendering/__init__.py +5 -0
  35. velune/cli/rendering/error_panel.py +79 -0
  36. velune/cli/rendering/markdown.py +63 -0
  37. velune/cli/repl.py +1855 -0
  38. velune/cli/session_manager.py +71 -0
  39. velune/cli/slash_commands.py +37 -0
  40. velune/cli/theme.py +8 -0
  41. velune/cognition/__init__.py +23 -0
  42. velune/cognition/agents/__init__.py +7 -0
  43. velune/cognition/agents/coder.py +209 -0
  44. velune/cognition/agents/planner.py +156 -0
  45. velune/cognition/agents/reviewer.py +195 -0
  46. velune/cognition/arbitrator.py +220 -0
  47. velune/cognition/architecture.py +415 -0
  48. velune/cognition/budget.py +65 -0
  49. velune/cognition/council/__init__.py +47 -0
  50. velune/cognition/council/base.py +217 -0
  51. velune/cognition/council/challenger.py +74 -0
  52. velune/cognition/council/coder.py +79 -0
  53. velune/cognition/council/critic_agent.py +43 -0
  54. velune/cognition/council/critic_configs.py +111 -0
  55. velune/cognition/council/critics.py +41 -0
  56. velune/cognition/council/debate.py +46 -0
  57. velune/cognition/council/factory.py +140 -0
  58. velune/cognition/council/messages.py +56 -0
  59. velune/cognition/council/planner.py +124 -0
  60. velune/cognition/council/reviewer.py +74 -0
  61. velune/cognition/council/synthesizer.py +67 -0
  62. velune/cognition/council/tiers.py +188 -0
  63. velune/cognition/council_orchestrator.py +282 -0
  64. velune/cognition/firewall.py +354 -0
  65. velune/cognition/module.py +46 -0
  66. velune/cognition/orchestrator.py +1205 -0
  67. velune/cognition/personality.py +238 -0
  68. velune/cognition/state.py +104 -0
  69. velune/cognition/style_resolver.py +64 -0
  70. velune/cognition/verification.py +205 -0
  71. velune/context/__init__.py +28 -0
  72. velune/context/assembler.py +240 -0
  73. velune/context/budget.py +97 -0
  74. velune/context/extractive.py +95 -0
  75. velune/context/prompt_adaptation.py +480 -0
  76. velune/context/sections.py +99 -0
  77. velune/context/token_counter.py +134 -0
  78. velune/context/utilization.py +33 -0
  79. velune/context/window.py +63 -0
  80. velune/core/__init__.py +89 -0
  81. velune/core/background.py +5 -0
  82. velune/core/config/__init__.py +37 -0
  83. velune/core/errors/__init__.py +90 -0
  84. velune/core/errors/catalog.py +188 -0
  85. velune/core/errors/execution.py +31 -0
  86. velune/core/errors/memory.py +25 -0
  87. velune/core/errors/orchestration.py +31 -0
  88. velune/core/errors/provider.py +37 -0
  89. velune/core/event_loop.py +35 -0
  90. velune/core/logging.py +83 -0
  91. velune/core/paths.py +165 -0
  92. velune/core/runtime.py +113 -0
  93. velune/core/startup_profiler.py +56 -0
  94. velune/core/task_registry.py +117 -0
  95. velune/core/trace.py +83 -0
  96. velune/core/types/__init__.py +48 -0
  97. velune/core/types/agent.py +53 -0
  98. velune/core/types/context.py +42 -0
  99. velune/core/types/inference.py +38 -0
  100. velune/core/types/memory.py +42 -0
  101. velune/core/types/model.py +70 -0
  102. velune/core/types/provider.py +62 -0
  103. velune/core/types/repository.py +38 -0
  104. velune/core/types/task.py +61 -0
  105. velune/core/types/workspace.py +28 -0
  106. velune/daemon/client.py +13 -0
  107. velune/daemon/server.py +127 -0
  108. velune/daemon/transport.py +179 -0
  109. velune/events.py +204 -0
  110. velune/execution/__init__.py +22 -0
  111. velune/execution/benchmarker.py +315 -0
  112. velune/execution/cancellation.py +53 -0
  113. velune/execution/checkpointer.py +130 -0
  114. velune/execution/command_spec.py +165 -0
  115. velune/execution/diff_preview.py +197 -0
  116. velune/execution/executor.py +181 -0
  117. velune/execution/module.py +18 -0
  118. velune/execution/multi_diff.py +67 -0
  119. velune/execution/path_guard.py +74 -0
  120. velune/execution/planner.py +91 -0
  121. velune/execution/rollback.py +89 -0
  122. velune/execution/sandbox.py +268 -0
  123. velune/execution/validator.py +115 -0
  124. velune/hardware/__init__.py +1 -0
  125. velune/hardware/detector.py +192 -0
  126. velune/kernel/__init__.py +55 -0
  127. velune/kernel/bootstrap.py +125 -0
  128. velune/kernel/config.py +426 -0
  129. velune/kernel/entrypoint.py +78 -0
  130. velune/kernel/health.py +54 -0
  131. velune/kernel/lifecycle.py +143 -0
  132. velune/kernel/module.py +17 -0
  133. velune/kernel/modules.py +23 -0
  134. velune/kernel/registry.py +96 -0
  135. velune/kernel/schemas.py +28 -0
  136. velune/main.py +9 -0
  137. velune/mcp/__init__.py +9 -0
  138. velune/mcp/client.py +115 -0
  139. velune/mcp/config.py +19 -0
  140. velune/mcp/server.py +624 -0
  141. velune/memory/__init__.py +32 -0
  142. velune/memory/compaction.py +506 -0
  143. velune/memory/embedding_pipeline.py +241 -0
  144. velune/memory/lifecycle.py +680 -0
  145. velune/memory/module.py +218 -0
  146. velune/memory/prioritizer.py +67 -0
  147. velune/memory/storage/episodic_schema.sql +53 -0
  148. velune/memory/storage/lancedb_store.py +282 -0
  149. velune/memory/storage/sqlite_manager.py +369 -0
  150. velune/memory/storage/sqlite_pool.py +149 -0
  151. velune/memory/tiers/episodic.py +588 -0
  152. velune/memory/tiers/graph.py +378 -0
  153. velune/memory/tiers/lineage.py +416 -0
  154. velune/memory/tiers/semantic.py +475 -0
  155. velune/memory/tiers/working.py +168 -0
  156. velune/memory/vitality.py +132 -0
  157. velune/models/__init__.py +15 -0
  158. velune/models/family.py +76 -0
  159. velune/models/module.py +20 -0
  160. velune/models/probes.py +192 -0
  161. velune/models/profile_cache.py +84 -0
  162. velune/models/profiler.py +108 -0
  163. velune/models/registry.py +251 -0
  164. velune/models/scorer.py +233 -0
  165. velune/models/specializations.py +205 -0
  166. velune/orchestration/__init__.py +19 -0
  167. velune/orchestration/engine.py +239 -0
  168. velune/orchestration/module.py +15 -0
  169. velune/orchestration/role_assignments.py +82 -0
  170. velune/orchestration/schemas.py +98 -0
  171. velune/plugins/__init__.py +20 -0
  172. velune/plugins/hooks.py +50 -0
  173. velune/plugins/loader.py +161 -0
  174. velune/plugins/registry.py +56 -0
  175. velune/plugins/schemas.py +21 -0
  176. velune/providers/__init__.py +23 -0
  177. velune/providers/adapters/anthropic.py +257 -0
  178. velune/providers/adapters/fireworks.py +115 -0
  179. velune/providers/adapters/google.py +234 -0
  180. velune/providers/adapters/groq.py +151 -0
  181. velune/providers/adapters/huggingface.py +210 -0
  182. velune/providers/adapters/llamacpp.py +208 -0
  183. velune/providers/adapters/lmstudio.py +175 -0
  184. velune/providers/adapters/ollama.py +233 -0
  185. velune/providers/adapters/openai.py +213 -0
  186. velune/providers/adapters/openrouter.py +81 -0
  187. velune/providers/adapters/together.py +134 -0
  188. velune/providers/adapters/xai.py +60 -0
  189. velune/providers/base.py +86 -0
  190. velune/providers/benchmarker.py +138 -0
  191. velune/providers/discovery/__init__.py +33 -0
  192. velune/providers/discovery/anthropic.py +79 -0
  193. velune/providers/discovery/benchmarks.py +44 -0
  194. velune/providers/discovery/classifier.py +69 -0
  195. velune/providers/discovery/fireworks.py +95 -0
  196. velune/providers/discovery/gguf.py +88 -0
  197. velune/providers/discovery/google.py +95 -0
  198. velune/providers/discovery/gpu.py +117 -0
  199. velune/providers/discovery/groq.py +21 -0
  200. velune/providers/discovery/huggingface.py +67 -0
  201. velune/providers/discovery/lmstudio.py +80 -0
  202. velune/providers/discovery/ollama.py +162 -0
  203. velune/providers/discovery/openai.py +96 -0
  204. velune/providers/discovery/openrouter.py +113 -0
  205. velune/providers/discovery/scanner.py +115 -0
  206. velune/providers/discovery/together.py +114 -0
  207. velune/providers/discovery/xai.py +57 -0
  208. velune/providers/health.py +67 -0
  209. velune/providers/health_monitor.py +169 -0
  210. velune/providers/keystore.py +142 -0
  211. velune/providers/local_paths.py +49 -0
  212. velune/providers/local_resolver.py +229 -0
  213. velune/providers/module.py +51 -0
  214. velune/providers/ollama_manager.py +193 -0
  215. velune/providers/registry.py +220 -0
  216. velune/providers/router.py +255 -0
  217. velune/providers/task_classifier.py +288 -0
  218. velune/py.typed +0 -0
  219. velune/repository/__init__.py +33 -0
  220. velune/repository/analyzer.py +127 -0
  221. velune/repository/ast_parser.py +822 -0
  222. velune/repository/blast_radius.py +298 -0
  223. velune/repository/boundary_classifier.py +295 -0
  224. velune/repository/cognition.py +316 -0
  225. velune/repository/grapher.py +179 -0
  226. velune/repository/import_graph.py +263 -0
  227. velune/repository/incremental_indexer.py +275 -0
  228. velune/repository/index_state.py +96 -0
  229. velune/repository/indexer.py +243 -0
  230. velune/repository/module.py +17 -0
  231. velune/repository/parser.py +474 -0
  232. velune/repository/project_type.py +300 -0
  233. velune/repository/rename_journal.py +287 -0
  234. velune/repository/scanner.py +193 -0
  235. velune/repository/schemas.py +102 -0
  236. velune/repository/symbol_registry.py +365 -0
  237. velune/repository/tracker.py +252 -0
  238. velune/retrieval/__init__.py +27 -0
  239. velune/retrieval/cache.py +110 -0
  240. velune/retrieval/fast_path.py +391 -0
  241. velune/retrieval/graph.py +124 -0
  242. velune/retrieval/hybrid.py +271 -0
  243. velune/retrieval/keyword.py +131 -0
  244. velune/retrieval/module.py +26 -0
  245. velune/retrieval/pipeline.py +303 -0
  246. velune/retrieval/reranker.py +102 -0
  247. velune/retrieval/schemas.py +59 -0
  248. velune/retrieval/slow_path.py +364 -0
  249. velune/retrieval/vector.py +203 -0
  250. velune/telemetry/__init__.py +59 -0
  251. velune/telemetry/cognition.py +267 -0
  252. velune/telemetry/cost_estimator.py +92 -0
  253. velune/telemetry/debug.py +304 -0
  254. velune/telemetry/doctor.py +244 -0
  255. velune/telemetry/logging.py +286 -0
  256. velune/telemetry/spans.py +277 -0
  257. velune/telemetry/token_tracker.py +140 -0
  258. velune/telemetry/usage_tracker.py +340 -0
  259. velune/tools/__init__.py +41 -0
  260. velune/tools/base/registry.py +87 -0
  261. velune/tools/base/tool.py +63 -0
  262. velune/tools/code/navigate.py +116 -0
  263. velune/tools/code/search.py +123 -0
  264. velune/tools/filesystem/read.py +75 -0
  265. velune/tools/filesystem/search.py +136 -0
  266. velune/tools/filesystem/write.py +163 -0
  267. velune/tools/git/history.py +177 -0
  268. velune/tools/git/operations.py +122 -0
  269. velune/tools/git/state.py +121 -0
  270. velune/tools/module.py +81 -0
  271. velune/tools/terminal/execute.py +72 -0
  272. velune/tools/terminal/history.py +47 -0
  273. velune/tools/web/fetch.py +55 -0
  274. velune/tools/web/validator.py +122 -0
  275. velune_cli-0.9.0.dist-info/METADATA +518 -0
  276. velune_cli-0.9.0.dist-info/RECORD +279 -0
  277. velune_cli-0.9.0.dist-info/WHEEL +4 -0
  278. velune_cli-0.9.0.dist-info/entry_points.txt +2 -0
  279. velune_cli-0.9.0.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,279 @@
1
+ velune/__init__.py,sha256=K2qmMSHkSCM78YE9-GxMVWMB20DFx3gTaL8_1FLZmAk,81
2
+ velune/__main__.py,sha256=LGVQzgnAGNkPp95ka0T7Ro_NIOYqyXNq-9cbs5Mhu7Q,116
3
+ velune/events.py,sha256=FxqUim8iOdrEURqY_vGdVNt9HYc9bg4f9MB5zcnRofw,7671
4
+ velune/main.py,sha256=S9_GYAQajl4e9lP-y9iMB8TBYm2BL85eSmI-_SYm8_I,131
5
+ velune/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ velune/cli/__init__.py,sha256=f8aYNFmSXR6PnnFyGQzvp6go1EOWLSJO5udFFAYI16o,76
7
+ velune/cli/app.py,sha256=88mvU-ZihA0kZTmZR4xJJVEf9r0tfwi8cJ_utePAqNE,7542
8
+ velune/cli/autocomplete.py,sha256=sR5gXYYPGI95fWMg84GLoBUpkabjdKLJrMJ8VdVM6HQ,3359
9
+ velune/cli/banner.py,sha256=g4l90qqz2MiZVM4F_voUlVwjE5eQH61ANBqGoMiAJac,2012
10
+ velune/cli/context.py,sha256=o1M9KAEWJbUni_dtAekl7DmgruqthUf68KOrQj-99kQ,845
11
+ velune/cli/councilmodel_ui.py,sha256=mJ_gIREfgaD6h5JBLA53XHOjzizZ8R2roqpPzDsq5FQ,7081
12
+ velune/cli/main.py,sha256=bCrd78G5PXbPeJIJODMBYXlufwT-dJzz8R9WjwbZs7o,296
13
+ velune/cli/model_selector.py,sha256=BheqagdWkF-XB6JfVM0BgfdympEjBVoRLNP1gCVWXWs,1793
14
+ velune/cli/modes.py,sha256=yMAVwEqp55hdJT0nmfGIPzQ6xqNjRKN49H1IWe1ytTQ,2585
15
+ velune/cli/pull_ui.py,sha256=a_LeuAn-JrVg_K78pKVl1Vd_OnkKJIvyXy0-Xo-sOls,3942
16
+ velune/cli/registry.py,sha256=EZjLBJkHHLnIlmYDdFF1qwHvk0dTMDLByMZ9Z-jR8r8,2376
17
+ velune/cli/repl.py,sha256=aGQZDSpjfB3DBj8oQAppQKzV8fYZRpYJYYfOY9nktwI,71881
18
+ velune/cli/session_manager.py,sha256=Gz0dFZjccM3LvHjtdalushsyIGVatPD3nNokeg-zliE,2328
19
+ velune/cli/slash_commands.py,sha256=B6dmK1_OaT9eNSq9oeppgSjrYhmct9SLDCjTl-EI2Bw,1024
20
+ velune/cli/theme.py,sha256=7To0rkbTSHDUA2Atd5Ts_51kxA06CmeijnJRiH-tMw0,161
21
+ velune/cli/commands/__init__.py,sha256=T94AP2RACwoyqdbf1Tw1tbWIoKTN2qCeUlVHDR5FDVQ,958
22
+ velune/cli/commands/ask.py,sha256=xxB95MhisP4dbY0UJEc07kQpf8xXqtwexqSjJ641u_A,6368
23
+ velune/cli/commands/base.py,sha256=9i1t8EB4IYirTRIhff2tTlPyAB6a1v-kgps3kGUVfHg,415
24
+ velune/cli/commands/chat.py,sha256=lH5j37kbf8qRKqkpO8cNaZNt3EL2FDKCQhVhyso5Jbo,9134
25
+ velune/cli/commands/config.py,sha256=pw_ic4S2bvblhSgIUPrDa2ppCfIm7-NWreycD8ioQfA,7312
26
+ velune/cli/commands/daemon.py,sha256=iqQTtHk68yRYyMsTL5805epE1MO5GSaDGP1o_yDDMQ4,2721
27
+ velune/cli/commands/doctor.py,sha256=81MYSwHXpiYxbqBbO5C6VCe_u0BhJoGqZ8dGiAu9HOQ,22901
28
+ velune/cli/commands/init.py,sha256=1WYpp7XwBv_CUBQ-3Hq2PH8LVKQGdVO88Z5TiWIbegQ,5172
29
+ velune/cli/commands/mcp.py,sha256=ikSrMw8k17tWyoJyKQBkr3bjsx9n79ULOEP_tWRF404,2919
30
+ velune/cli/commands/memory.py,sha256=ak_aHm9uTy1QuVeXen5IXQDuyU87xrnsCPTvs-nZ8O4,10442
31
+ velune/cli/commands/models.py,sha256=pBtJKS3BsU8-hazNeMCBGJh-VUBj59CsDKn2GgjTIa8,25127
32
+ velune/cli/commands/preflight.py,sha256=a-GccdfXbqI7vhz9zB29knHwuXNYsOVQ0wDcwLGN4M8,3538
33
+ velune/cli/commands/run.py,sha256=1B3vCu9GTwgcwdAASC6VQqeoYkXfInEn-yuSiQSwNwA,10422
34
+ velune/cli/commands/setup.py,sha256=mA2MkpYizytJxxEXEXsRiTmOjE-H_N-WMgL0xzLhAWI,6007
35
+ velune/cli/commands/workspace.py,sha256=QWM6n5FT4T83oqKPOZlg4nWZLs1ocvU110twD9gkL_Q,9139
36
+ velune/cli/display/council_view.py,sha256=lUqSsU93OtwMvElGvzCTdRhMXPWd1jDuCo-lmjnQ0iw,10128
37
+ velune/cli/display/memory_view.py,sha256=18CtVuDyGHXw8d5FdyqvpBJX1Hl78-h2C6oeVFKRTQM,5444
38
+ velune/cli/display/panels.py,sha256=EHrtTPP0urnnGvsa0PKxZRVXk_WzhGIK6xWZ7xiqKHA,1224
39
+ velune/cli/display/progress.py,sha256=jg7HJHrCYVVzLTHgQuVavWPnJ8Q6txIMoumXzUXd2Ww,759
40
+ velune/cli/display/themes.py,sha256=YJpUmRMKvLgqh0NMI9coQufdRnqaOXoEeFpeulZ6FG4,904
41
+ velune/cli/rendering/__init__.py,sha256=Tf9DJAoYw8E91K2uj_Hyn9cMSLQrmfIdqFUWvS879PI,163
42
+ velune/cli/rendering/error_panel.py,sha256=-SqXXkY-XATyJy41IYt7YdfVyL2JGDDaD17minmC4ik,2562
43
+ velune/cli/rendering/markdown.py,sha256=Giz0F-yOFfp_FQUP4ANYJO3ZPQhaVWFdJ_z7uDCS8XE,2062
44
+ velune/cognition/__init__.py,sha256=f2CXKsAzu61Q_HiIJJBmzKK2eqUV4iKam72U9iSkkyM,943
45
+ velune/cognition/arbitrator.py,sha256=BK7CKJWXXRFMsoGWEsILZeFoBhjWn9aev8bApnxVi0w,8985
46
+ velune/cognition/architecture.py,sha256=uPGGgxVhLbKQ7m90UYkp5MfCFk48Km9U7lkfx8C9fgk,16897
47
+ velune/cognition/budget.py,sha256=7vDMW6GDE76s1xsYNX5n4DmT97tPAde_nTzt39Xw26I,2395
48
+ velune/cognition/council_orchestrator.py,sha256=SG8nr1wjqVDZfLrI3ZvPJDnF_Ir5jZL1YgoZnbzG72o,10816
49
+ velune/cognition/firewall.py,sha256=45yVJyu8Z6ieahr78wREVomr_QZ0Bxrlh2kXWqEKCs8,16367
50
+ velune/cognition/module.py,sha256=jBXGkmlWwA2HeUhQ4rydMW2uJlPBiMjNanWTyeaIlI4,1488
51
+ velune/cognition/orchestrator.py,sha256=JVms1wDG3GPXYEaiZ7RCeIFiz1Xs_KRHYsUfwnZe4fM,54563
52
+ velune/cognition/personality.py,sha256=21Dp89eY3tcJa_vUcfYxAeq3w_MZN_Rj8JbT7Q7bzC4,8429
53
+ velune/cognition/state.py,sha256=-JXRfdbRMrJbmOoDb1la3ej7Yjc9cYnQCTRb_FS4Ep4,3660
54
+ velune/cognition/style_resolver.py,sha256=2yCvYLZLWnteOcVUvoGimyrB6rYyYBBghGf0HXicvPg,2496
55
+ velune/cognition/verification.py,sha256=eX6iYi7f4yaaJ1sORdnwAHufJmCForVfHIGP57P46nU,8065
56
+ velune/cognition/agents/__init__.py,sha256=5MdGcTVIM_HETltaN7JNT12ILcOT3mn_4OSA-UibE4I,306
57
+ velune/cognition/agents/coder.py,sha256=EtGw-Pr6dv8dRxWQq5xl1WLsgtAANlbQD6B3DgD61_U,7760
58
+ velune/cognition/agents/planner.py,sha256=q0Bc5G-sN03NHsXIy4VvPeQ6ABcCWuAdV1OpuhWNz1o,5519
59
+ velune/cognition/agents/reviewer.py,sha256=VIefyPt_miHyf1rTbQFNOXaZ1dnVjIMrs9_E21JkVR4,7094
60
+ velune/cognition/council/__init__.py,sha256=DCmAhmg3VumgFVovvYAv0r3_Oo4a1s27TsW57Hqui2I,1319
61
+ velune/cognition/council/base.py,sha256=qycAGHswUh9Zv7n8ZhHDNMlGSAfXVyo0RuRjr5XLblE,8853
62
+ velune/cognition/council/challenger.py,sha256=x4bgkutlV-vSq7Z_gCHvBHPNVbUunhpDDBIuonaXxPo,2736
63
+ velune/cognition/council/coder.py,sha256=xf2SCSs2ohcJx0PeFryEsmwDy8eYs83oDwOBnLjnBG4,3383
64
+ velune/cognition/council/critic_agent.py,sha256=WFrv_scKWBD0enG6vQC5fF2EYQvrqE4_ls4DrQg9NWA,1562
65
+ velune/cognition/council/critic_configs.py,sha256=0Y_b3ETIXcHHw1htSqrX-vZdWgUbe3Z9_qyAtcpU2JU,4073
66
+ velune/cognition/council/critics.py,sha256=inTumrywZXacYk_cHfM5iT7hJYrgfoOobXd9l7LiXP0,1512
67
+ velune/cognition/council/debate.py,sha256=XdLTvSgZccM55-O9xIk5QkbOsnx9nvyEzgVghypUGXc,1360
68
+ velune/cognition/council/factory.py,sha256=lg3gnJ9DEuIDUolU1kVnxISizgSKFm0JtQIBSQBLY7U,5221
69
+ velune/cognition/council/messages.py,sha256=U02UdL-RfkbpwOMuNHI3AXbCn5sh8PwqeldrJIPyZuE,1666
70
+ velune/cognition/council/planner.py,sha256=JlWcba5x8_ENMT-tnhCqgFn9vUf0hkeclti6JrtXLNg,4735
71
+ velune/cognition/council/reviewer.py,sha256=YZ1bBeRfbYoyLQzHIsqhmGW8vUKMn0RgsOdKnE3wKNo,2622
72
+ velune/cognition/council/synthesizer.py,sha256=dCtPAXpcmgiNLrc66qXFzLqnEedpYugG068G8oiiDeY,2466
73
+ velune/cognition/council/tiers.py,sha256=buYDofdZr0gGevpGGUTZwOvFrQSE2rQpoAzon32LwCc,6514
74
+ velune/context/__init__.py,sha256=o9WTvRzU811kPkbw77dKd1WVVp72eKHXX_LL70Taea8,862
75
+ velune/context/assembler.py,sha256=2DUhwU6KTyYs7aUOtKnIDPmsUaIxsffAWLb4RV8B99s,9615
76
+ velune/context/budget.py,sha256=sYXPvbiUwSzBlBszgVkqwTepJSLR6AoWc95zQ_4I6pM,3347
77
+ velune/context/extractive.py,sha256=OqXbGrWCY14JMBZ3v4j4UmThDsDPSUCeJG_lKpfzq2M,3068
78
+ velune/context/prompt_adaptation.py,sha256=xK6UjclSiFXLLMo3BqeKqTS95TdrXMoQhS8-BJeHN-Y,16453
79
+ velune/context/sections.py,sha256=emFHOVqT6ajxenMVyndAeRcgQZiTnx4uCdsz2QaIicw,3857
80
+ velune/context/token_counter.py,sha256=Y5T-FgEHimLeD7RdyU8N1MixAKLOqPS9EiFnzla86AE,4499
81
+ velune/context/utilization.py,sha256=t2zip5gNXuHdaMYARDrheGsYmixCKm0EuutG77MYkVk,1231
82
+ velune/context/window.py,sha256=vCPL8bG9BOM8gbQ6ydGy0tw7KqFMDASiVoGMyLP15RI,2039
83
+ velune/core/__init__.py,sha256=KufqvWfmuIrFr1tnnNBfk253gvA8L0urXYlsN73JG50,1954
84
+ velune/core/background.py,sha256=XMBKDhtH5bObGIVzSyulaRoCIy2lWYf531Kx1etGI7M,183
85
+ velune/core/event_loop.py,sha256=rSxPw1q_dvlakHg3F8NQeoA51KkWb5osFBMqiDxwK8U,1048
86
+ velune/core/logging.py,sha256=hcEHqTYH8KE53Gj8mo8tt9NsGUWlk0hg2xzKFNWtXIY,2282
87
+ velune/core/paths.py,sha256=ggWhTu6LX52gnsYXEv7iMLEMD_cJbrQ-CIe8r5qdtNo,6211
88
+ velune/core/runtime.py,sha256=7vPyO_-BPfH_KAYfjnwQLT710RRQH3iprYdp3dOCOJ0,3706
89
+ velune/core/startup_profiler.py,sha256=UjvVMvITyugVkr6okP-wJAC2stJupZUitcOjZdb7qvw,1616
90
+ velune/core/task_registry.py,sha256=vSFr_FZW4vZf8LdUIAfap0_fQ-ofxi7AsSQW_i5z6eM,4011
91
+ velune/core/trace.py,sha256=Wnld92IRKH8KoFchKD85jMhIyugf61K0h7ngBR_6K1Y,3069
92
+ velune/core/config/__init__.py,sha256=P-VgtFOZcbzcsqqWR6j6nomU0ulo5bIYZ5ohVeUcaE0,735
93
+ velune/core/errors/__init__.py,sha256=iamjY6x6_8P1lKJvvPwOgRGA8ijJ6bO6wWuYz9mlPf4,2301
94
+ velune/core/errors/catalog.py,sha256=GH7Tr6EAP8H6mFhDwGQACi240LzD7OyslJj-shI7NbQ,7072
95
+ velune/core/errors/execution.py,sha256=w-s3jX-GQxMZgsdVwPoZ5wT2mGPs0RZLuzr96w4U7gk,504
96
+ velune/core/errors/memory.py,sha256=CLOv9QMR-OHxnwshR9KV1naB3sBaA89WffPhaB_h0PA,464
97
+ velune/core/errors/orchestration.py,sha256=b4qrD3Liq0opdyCmK6KtDEkEFOZnAivMBoVUdRcj3WM,561
98
+ velune/core/errors/provider.py,sha256=pFCk5mgfDCua6atDR2wFC7Nv4YFGE5telbFr6o4BS_0,634
99
+ velune/core/types/__init__.py,sha256=cvtkyH3iVXotJiAjE7LGI0bJtEHeazYPpQUnigHtoxc,1421
100
+ velune/core/types/agent.py,sha256=2u0hxI3nLFlA805aViS3g7BHESoJPZp1EgysPW4XUeA,1245
101
+ velune/core/types/context.py,sha256=1o0QnRZ7SG1yoroVuxCQVRP9AwTI2fRZP4tymc1BuVY,1031
102
+ velune/core/types/inference.py,sha256=l8NhhAqHPZCyeIRpQto7KJmakLyRp6Ge8JxFWaigmWo,977
103
+ velune/core/types/memory.py,sha256=fMuZMQfm4EtUdr6u5Dt0K7-_eJZ8nmW0ZRXOn2KsLPI,1061
104
+ velune/core/types/model.py,sha256=llLyLpc5AbS8lUaye27XXssx0_xOqETN_4uXiw6HC9A,2151
105
+ velune/core/types/provider.py,sha256=Goe1kzO9CuPhHz2RBDd7Pok1z2fcYZctunRHfGx19nI,1673
106
+ velune/core/types/repository.py,sha256=GpdSPOFr9KTIwubpdYYyZVQLpqj71X5Mhb-0vLnQ0aI,943
107
+ velune/core/types/task.py,sha256=3i_IL8jrntmcMAskONiPgx7n5H-GQE3L0_svXLqN72Q,1462
108
+ velune/core/types/workspace.py,sha256=CnePHnrjCbB4PVTnhBzCmM1g2GjXWSTDtdvlOJxx59k,632
109
+ velune/daemon/client.py,sha256=1zim8Z9DcBaKBv8sryuxUT7LY5hOYnVubJAD18ZYKLI,410
110
+ velune/daemon/server.py,sha256=x7mbo_ar2y0fwejJwJbxlyeQMIcNSr_LyhP01qqKWhc,4443
111
+ velune/daemon/transport.py,sha256=ALg-ugiCMlXpQIFt9oLnyPzuOJOCLUkYEBtAJJpOJEU,5701
112
+ velune/execution/__init__.py,sha256=Gw1LUPxglfnUT2G6uI4ToHPLGPuG17hCwisAPbBwYEc,770
113
+ velune/execution/benchmarker.py,sha256=i_RM_g6DJVjhNLnC7gYIr-swvASKuqJ1d1QgBLXSPnE,11785
114
+ velune/execution/cancellation.py,sha256=3iTqG7CCHbkI7gMC7lLdTcberQBlozjeIFadA9U4qYo,1451
115
+ velune/execution/checkpointer.py,sha256=gzcHJW5pEe4wh0EypwdaMJxtxUmVqttQ9B0j_nAKTW8,5662
116
+ velune/execution/command_spec.py,sha256=-SmJLLdcFCxrYkDPTgk_RhflLll7jtiLgTCr6bfiDBQ,5350
117
+ velune/execution/diff_preview.py,sha256=RhxYfT-1wmE-rdFNAIAOyk72lg9xFR4KxD2RBMYbMAw,5833
118
+ velune/execution/executor.py,sha256=ikdyUIqVYkZghETyCjj9eA-TLEHUtXTEE9qkIIs3z8g,7739
119
+ velune/execution/module.py,sha256=fA1t7oANo-DnJbaRSjGb2HU8jWnwd8GJQBqzdq4Nimk,563
120
+ velune/execution/multi_diff.py,sha256=jMtoI409SOvsDMV6bNqjpfs-mgMtSofFnewutePiYB0,2429
121
+ velune/execution/path_guard.py,sha256=vnxd3ddVdSv5MXSHxa7eK4t0QqwqKDoxSVM2k1g9IOA,2978
122
+ velune/execution/planner.py,sha256=KKIJp-8INhXJdNjS1f-3IYrxGnx9ef1aoWhG17DlnDc,3443
123
+ velune/execution/rollback.py,sha256=Lf6sd7V-cGP4SggOLpW-n17Z9VscOwJ4bSgBKicR6Qs,4101
124
+ velune/execution/sandbox.py,sha256=NDq0HB4ofnL79_iHWahsn1_msxFbV8JNBbzaY8zG4kA,9073
125
+ velune/execution/validator.py,sha256=JW5ptpklapgSTJyqNXALe0LDws_v3uDX3DWJSmbwByc,4779
126
+ velune/hardware/__init__.py,sha256=zhAaZgDQGsZYs-3D5GlgViJ_Ill5lpJViwT4ZYpf7x0,48
127
+ velune/hardware/detector.py,sha256=lgQNpjaYgmRgvPG7EW626u4ktrjVstaODQgAw3ZT8q4,7117
128
+ velune/kernel/__init__.py,sha256=53scSLXHAM7kt9DbAqiJ7C1GAIaDwPgc2AX1oLxbSV8,1313
129
+ velune/kernel/bootstrap.py,sha256=Ta735Gt4hGXzX5wdqtGXain_md5a9uC3EeLOz7YLnc8,4515
130
+ velune/kernel/config.py,sha256=ls-VZmr_dZPXtd8Xsa0zK0vscmlfc1xGgRWN00nMNH8,14706
131
+ velune/kernel/entrypoint.py,sha256=10oFTjPCL3PquYXinnhJ8F4ramh1nVUm8KP3mq69Oyg,2337
132
+ velune/kernel/health.py,sha256=WDZUvGxgu-_XOp2C7PR6mLu0inIxthfwuwXkoqTsmGQ,1858
133
+ velune/kernel/lifecycle.py,sha256=GVTwPU3Dc1bD3SOCYgCI6PRz4XUFZcPVrHMu7Gul8J0,5793
134
+ velune/kernel/module.py,sha256=hqziBS6Imj2tw-rLhWpF4KbmuRt33BzzY7CedaYGXsg,381
135
+ velune/kernel/modules.py,sha256=vLMlFaMAS8VGIGhbypoWuslxxe_nGT9IEee7wnx5JGs,767
136
+ velune/kernel/registry.py,sha256=4CW8es-cCG9c_ELvEW8XhiV4Zu7f39MUljKe2BtAE_M,3291
137
+ velune/kernel/schemas.py,sha256=-GtSb1lokcln3nIWnjm-SwyQTmKCudYWZJCqXBetrXc,756
138
+ velune/mcp/__init__.py,sha256=PHXnmpMqpnWE9uw9zaOjIB0XOLDKKl3Mb41VfYRYx9Q,301
139
+ velune/mcp/client.py,sha256=4az92_gnd_gJikSDXAGqgZkNR5Xf_vMTYJug7mNeaYQ,3926
140
+ velune/mcp/config.py,sha256=PLmyNm55PGOz3m2pk-_v2XTxleOHULaz3Mj4z5EJg0Q,534
141
+ velune/mcp/server.py,sha256=WhyTHTMbMICH4oIfyewLlhuDcfjilb7U7xWAuXYJxqI,23973
142
+ velune/memory/__init__.py,sha256=a1_9gmFzxQ8Tae12m3WuG8kA5dTOOk4EV_55KQV1JmM,1261
143
+ velune/memory/compaction.py,sha256=SLDRCMrwFe48F1R7yB-YMpMoaJLaJ9WKbRa-PxVfh-A,15247
144
+ velune/memory/embedding_pipeline.py,sha256=NTHN-6TGkHdTJIklvoVtflI8bcFfHZbgzt7OSh4MCyA,9602
145
+ velune/memory/lifecycle.py,sha256=kbV4DYvLCs_R9p7A9Bcn4LtkQe1ByhLclXBuEDwf_fc,25372
146
+ velune/memory/module.py,sha256=sw6mnXS5_YCYuBkE6ta4biXXx-_0pzNtN1oD2QJeAFY,7987
147
+ velune/memory/prioritizer.py,sha256=CuxWJgPoztBp4LMMrmHgJLe2JhTqgA-5Cw_fQnk9xlE,2371
148
+ velune/memory/vitality.py,sha256=te9LPD9LyGMJI9HohjCgsbNad79argENqOikkEhNI-8,4154
149
+ velune/memory/storage/episodic_schema.sql,sha256=iIkLxtgCXFYwr1bl3QBWKn-sgNEpNDTX_K4sRiPG__A,2816
150
+ velune/memory/storage/lancedb_store.py,sha256=snEGcaFAt2niIrsY0N0_SvxyPD9II4uO2qbUoAve2Wk,10481
151
+ velune/memory/storage/sqlite_manager.py,sha256=IA7Fbqn6l0VEfZDsuWjKbUBL2hlySOhhSteKpZm679s,14262
152
+ velune/memory/storage/sqlite_pool.py,sha256=6i5NIERnv--9UzDAYqKe4pCkJTntKqHTbTZBX_0Q-c0,5321
153
+ velune/memory/tiers/episodic.py,sha256=1SyWBw0qbFMpLYtcaHFqJRy6bL0unht3yp_EMZaeur0,23699
154
+ velune/memory/tiers/graph.py,sha256=0bNuQAIUPs7m2EiN2Er8vbs9uorwJRSVinrKzglq3U8,13826
155
+ velune/memory/tiers/lineage.py,sha256=Mu_hsmSEvf6LdFqCCm13LiFcnTu6OIb2HgbOIFrFCmA,16136
156
+ velune/memory/tiers/semantic.py,sha256=YeAhwqglFlEUfINLHRjOk_ppyHjVRp5vfRsjL8DYNHE,17944
157
+ velune/memory/tiers/working.py,sha256=xD0lMfg1NlOZjVXnGuXra6-A5LEi_AW39OO_8EHMM1I,6183
158
+ velune/models/__init__.py,sha256=cFZiPmlvYUn40MOYZ43nHzUhNErFRQkvUNSDd-sQjY4,454
159
+ velune/models/family.py,sha256=IHiH5IoyFJ_JHnRVfk3qPLtWVu5JypBZiFupaZuEiPg,2259
160
+ velune/models/module.py,sha256=l8CQMcWUe7s1jbgLC_YIwR3qz1M5jE5bvp-pDzoEh7w,596
161
+ velune/models/probes.py,sha256=mJEpxpZIg_5qLwpd3wrSeJizgHVYqG4rJCEph6Fn-2s,6585
162
+ velune/models/profile_cache.py,sha256=XSjjqZOXN_Kxq8Qb-fj7dUHHJJ_dYOfn5-GzM771Ols,2935
163
+ velune/models/profiler.py,sha256=sWqqjoj-rvEgFC6fVaHWrWkAoMcwh9CTGUxZZ6pfy0Y,3942
164
+ velune/models/registry.py,sha256=f5cw71zmXmiZAyY_bq4I8ipooahkypeZu5pbmWDcd0s,10631
165
+ velune/models/scorer.py,sha256=Q5DlsO4wmWNFm_gBrrmOHhKoD2HMWIixhdM6Qwy6y9w,9181
166
+ velune/models/specializations.py,sha256=gVfGhX6qUFI9OBo1xEYDDSrxWvFDdMUl6x1z6ajqQrc,7701
167
+ velune/orchestration/__init__.py,sha256=S7yMoEurf2CCQrQJFHtIUJmHNctAe1YcfLXSBlByW-M,442
168
+ velune/orchestration/engine.py,sha256=nnlXu514s6VO8-YhJsbQUUFcFpRAkQXnqJR3X9xlQUw,8480
169
+ velune/orchestration/module.py,sha256=7QPO95kxi1GssQY_xDiM5RWqA0SjNuMe7QIRY830o_4,443
170
+ velune/orchestration/role_assignments.py,sha256=vCZn6Eb_6h3sq_UgUqRRu-cWXUyptuSFfHfEflswXN8,2592
171
+ velune/orchestration/schemas.py,sha256=g53M7zNmi0Pp_3AqOvx1gLm2CIk4l_0PQmeq9cyANdk,2864
172
+ velune/plugins/__init__.py,sha256=6UAwFG05QgizpISKVinwejk8zA9JPSy9LqGc-N60ucU,680
173
+ velune/plugins/hooks.py,sha256=Igu23pgvDAgtdREz-_zOKADvyTBwhdmsM5PyJtd6XA0,1789
174
+ velune/plugins/loader.py,sha256=XqNZ1goI_FUM4bjF6QqgoXqvmbI4j6roKdIjRAMB-Uw,7041
175
+ velune/plugins/registry.py,sha256=3l7Uj1A9lSHgNG09W71iCRtPSManz3fvqL-dtWTjNo8,2256
176
+ velune/plugins/schemas.py,sha256=_8aNG2BylvYIJOWGDAxRTVO2ObWJRc0eBLj9Nff0eIQ,835
177
+ velune/providers/__init__.py,sha256=ySk_6mkkqZrxI45hZLaTTdSlAKiNSxeIEkIGFNn0dTU,750
178
+ velune/providers/base.py,sha256=Knm5wmlLthmVs3Mrk1l0Um2KcV1sMI7TEXMfIeW2eyo,2769
179
+ velune/providers/benchmarker.py,sha256=9y0pyBDsec90c0HW3x7SXav1eg2Btuevbg4Cy3zRrcs,5208
180
+ velune/providers/health.py,sha256=jy6wffZ_rHc_Y5d3_s_jBAQV9qGToAA-j7nYeHpdtv4,2051
181
+ velune/providers/health_monitor.py,sha256=5xN8EiNjbvX81saJDVo9gMD8pCqKD97hGTCTH-GtfSk,6591
182
+ velune/providers/keystore.py,sha256=LZ6MSGrEuwRvpClZ2mngZg96Vf9DWUHAn3yRS-SOU6g,4580
183
+ velune/providers/local_paths.py,sha256=CDl3_mtWbXK9uJWFBFKmZEHQN40FfE_zJxAutBmZrik,1233
184
+ velune/providers/local_resolver.py,sha256=TjRK1iAJxcUs7bZlTiWmQWyD1fnB4dLKYHt0bxePfIo,7392
185
+ velune/providers/module.py,sha256=1Yekh9eQZqnBGrcX8p5I0fc1gWN74sZri6ccvA_vd08,1693
186
+ velune/providers/ollama_manager.py,sha256=qiNKtHWowm0Jiy4LisovwYUM7e0nIdDdpI_f6RteRG8,6248
187
+ velune/providers/registry.py,sha256=SJs1oBmItc3ov1fKNqARBArw3CVLkg5KEJZm_MTLZ7Y,7637
188
+ velune/providers/router.py,sha256=J7ua_pM9qtst7MUJwG9IlmLKCejkIgZaEM-7n7UUImg,10087
189
+ velune/providers/task_classifier.py,sha256=5PmEA25vUGd7a1cR8sJEBA20BdR0rx1TJrHF_8JeCFc,7858
190
+ velune/providers/adapters/anthropic.py,sha256=1ttbsSLJBSHBtEtafXCTXwvL3R_STTebF3VLYHrd56c,10681
191
+ velune/providers/adapters/fireworks.py,sha256=cxCokeJkLwPzo9y6svfGlE1gg4g-A0lLsuHnkMS716M,4252
192
+ velune/providers/adapters/google.py,sha256=lcJgi9LAP4l8QR_upDTgdxxHIp_EIMjcKcyii0JzrNM,9225
193
+ velune/providers/adapters/groq.py,sha256=UgrjZr6Ws5yAIiZWE7HMMMARmIAhw4ra0ULKrytA918,5382
194
+ velune/providers/adapters/huggingface.py,sha256=O4kwA_xRb06EZ0b0t_83lDjrW94KhEfz39t7goE6XXo,8742
195
+ velune/providers/adapters/llamacpp.py,sha256=vgruz38Em_Pk8skF1i4GORefjdPlFpmtEUSjZZhNY3M,7757
196
+ velune/providers/adapters/lmstudio.py,sha256=dN-lUp4alGYhH-sistMF9EdhLtWHZDPKqSIvzkDACE0,7113
197
+ velune/providers/adapters/ollama.py,sha256=YGHqQaCiOakSft1aGNy8rFG8ONND2zOrl4oFocIFpCg,9472
198
+ velune/providers/adapters/openai.py,sha256=ekWDA9HcS2kzuHvwXjcf9rOlv5O04alh2vxkGBIOZiw,8587
199
+ velune/providers/adapters/openrouter.py,sha256=TFvQg-kQoytlPdCTnUk8rpvlDXf5bmtjmqPurEcAdfc,2909
200
+ velune/providers/adapters/together.py,sha256=eQCq3-Dw71J_TOOWSN8Sekfz5MHbozalr1AH2xfWKqE,5004
201
+ velune/providers/adapters/xai.py,sha256=a2TB_2gvtIz4oC8fl1pE5h7kPXfEI45yvVX_PGT3xkc,2265
202
+ velune/providers/discovery/__init__.py,sha256=WkA-uRm2u2yzTSFlLBnau9LaEdrCIeDv03_dU4ATwwo,1289
203
+ velune/providers/discovery/anthropic.py,sha256=MIh8fD1ajPPnbdv8-nCo191s0JdrVm1GYY_aKcDHDs0,3153
204
+ velune/providers/discovery/benchmarks.py,sha256=DqX9TcBM7uUYqn2q-UtfC_ADP3tYiMXatwh-6_wbn6Y,1668
205
+ velune/providers/discovery/classifier.py,sha256=PABpl1Z6LjBF6_YNm7t6IXT4UPhjWPysljherH1q4iM,2860
206
+ velune/providers/discovery/fireworks.py,sha256=MlfKOkd3s4sLAkbs4phxO-wNF9jnMc5HQlfe1e1twvw,4082
207
+ velune/providers/discovery/gguf.py,sha256=9Ueuavmp8kEPgFVFTfjzs7x2GK7NeIj1k4uAi_hJ0C4,3271
208
+ velune/providers/discovery/google.py,sha256=zUss_ujD5VacvDmGQWGk42ImEQMHItSex-RrljVLvEw,3913
209
+ velune/providers/discovery/gpu.py,sha256=nOBqCbRnyNcQKBiCtAmHxY05U1O46x71VAPpuyPFyk0,3801
210
+ velune/providers/discovery/groq.py,sha256=hCOEZh0UyFpWT2KNIuBVc8CVLqt5Tw5um69b2GEW-4M,685
211
+ velune/providers/discovery/huggingface.py,sha256=RM8e3AGsRzRrDPjYb4zHlBEXoN_LErkE2dLVTMm6TGU,2106
212
+ velune/providers/discovery/lmstudio.py,sha256=FOkk5WwA7rAegH0100ymqNRNiFGL-thubTVGh_krosE,2624
213
+ velune/providers/discovery/ollama.py,sha256=lzTTTcRl0oN1vClplItL5v9yAM0LopZgV-R9brE0EYs,6156
214
+ velune/providers/discovery/openai.py,sha256=1WU4-EyJYXYzkxSxf8mjZ379zuzLpgYnNuGFFw_tAPU,3363
215
+ velune/providers/discovery/openrouter.py,sha256=-drCrYpDf3bJTlL5uYyYjh8QWCf1UVzxyVr2NYb_qoA,3758
216
+ velune/providers/discovery/scanner.py,sha256=re9iX2aBLgDCVY2VnsCDkg9pCpGsNwglfqx-w8Z73sg,4258
217
+ velune/providers/discovery/together.py,sha256=2VJnsuXrBWICziOU4qYoKOg3ZK4av27-dUKSFGerRS0,4981
218
+ velune/providers/discovery/xai.py,sha256=08qtP5gEOSg2iL5EBFx4_mMsvmyv4rSS5vpLjV2epWE,2137
219
+ velune/repository/__init__.py,sha256=MEzBz0p8FyfsSEhdhhd1ukJHWGa9Ggwfsuf0Xeo3o48,1053
220
+ velune/repository/analyzer.py,sha256=1l-EzmnvnhFa0ZhTD1XHJhVMqhByhpnRPZo9m5wsrKs,4808
221
+ velune/repository/ast_parser.py,sha256=VZFZ-BkzaYDqjjzwjLlZkIgwxG2_CZyXSch5aaz0UHY,29017
222
+ velune/repository/blast_radius.py,sha256=u5Aj24uiiTSdfU3NrM2SGYebRy3-87EpBdQ_Kgs6kYo,9619
223
+ velune/repository/boundary_classifier.py,sha256=M69pFIVW86zJIUtPEu3s-IeauxR0_PwhBPwWtlUQudY,8948
224
+ velune/repository/cognition.py,sha256=XYFjW0J-77M1gI2tVBzifwk_Dh1vC_DrzxbAQHUQ-_0,12099
225
+ velune/repository/grapher.py,sha256=K6dsZZ53IFy8M_9N_LVwo3iZm6sV0GMZ_yPGg_v0ABc,7367
226
+ velune/repository/import_graph.py,sha256=wWT3IncJPWZZWBxB_lcMbtCyGMLUCv8BKWbpjQbu6RM,9511
227
+ velune/repository/incremental_indexer.py,sha256=MuUXSc1QciuEkZvMLQqDDmecw_R900ZMmPrU1Lotm8g,9528
228
+ velune/repository/index_state.py,sha256=04GeoYYNUuFQ6gDtPZSyx5wC_KRKdPu4KZFztRsApCM,3667
229
+ velune/repository/indexer.py,sha256=PlE0wVwtL5X7TpLkeRh_oaIYL_yYzE1YxoLAp_3Zcj4,8917
230
+ velune/repository/module.py,sha256=fjWYDbq3CLEmOmdAtzyAjhXXK6oyLajVM3ibDwSc2b4,486
231
+ velune/repository/parser.py,sha256=gq6iBzFqx2KFT2JIa36ez2AK6_YG9dxY2WHQ9tp_C00,20718
232
+ velune/repository/project_type.py,sha256=FmRl8S7NmoWDMr0EVcL9opy_BGEqIfDjVnBXYCZYj90,12916
233
+ velune/repository/rename_journal.py,sha256=aJpq8hfM7SdoMi8ILpgmxgryOpuvWq3d0xm3cC5aw-Q,10010
234
+ velune/repository/scanner.py,sha256=KlB5tt3N1cLC5SYKEWIsk5s0dc5LM_NfqFETT71Tg2k,5170
235
+ velune/repository/schemas.py,sha256=THnQ6WYKIw6j1eszmvGysxCAPmOYcpauQ4UOomqe5t0,3169
236
+ velune/repository/symbol_registry.py,sha256=VktFz6TGYAjdd8ZgYfCm-wP1fYuXzyqm07VtqiE3PQs,13598
237
+ velune/repository/tracker.py,sha256=981SijKnJ2f0ti_rxxqgCHKhEJwfKA5nVYMVyAtH4xY,9114
238
+ velune/retrieval/__init__.py,sha256=ye6xopevfDQt70trcrIqSv65F12RFyAkvVoN_SerJSY,732
239
+ velune/retrieval/cache.py,sha256=wCbyc_QzZfpwQ_x6Xx95syQ9PmJHHMuy2kg9ZJ4bv6E,2779
240
+ velune/retrieval/fast_path.py,sha256=WFl9qpbxMytrHQIFs2PtZsiaiW1GJPffLA6VA8FTnCk,11194
241
+ velune/retrieval/graph.py,sha256=pOoHeLYptj2h3rYsinM3SWccTqExu6tRkFyZ5F09vBI,5263
242
+ velune/retrieval/hybrid.py,sha256=C0YRPwxQA2CWq8CMTTyprenTJ4SlJ-RuNmbjLSGMpyA,10483
243
+ velune/retrieval/keyword.py,sha256=DA_Pc_GNFK0LkPAB-hn5SXCldo-WGm8P_vgt0KHvw-A,4332
244
+ velune/retrieval/module.py,sha256=LqCoJBG44BcLVlUkhkr0YTtkQOZHck-o1ekcEOPZtHs,885
245
+ velune/retrieval/pipeline.py,sha256=3F3SrpZSe4_snj1odLT9wqz1xVRgfCPbLcJ1MgnPkXg,8840
246
+ velune/retrieval/reranker.py,sha256=wj-oU5FA2XR_KO2O0Lk5dbaJUdknLP7MtV-n51yhpR4,3196
247
+ velune/retrieval/schemas.py,sha256=LVLPwZKnkm25SKNwGlMWlZJJlbINJXhyBDXyrwyel7Q,1516
248
+ velune/retrieval/slow_path.py,sha256=wQOIU6hhz6ouJMAe3nin1e7oBgh_KWI7hJoUSsr_gyE,12052
249
+ velune/retrieval/vector.py,sha256=rziu7DCKiNKNPIDjwDWCgILWci4GeYFNUSUgsa_0vnk,7686
250
+ velune/telemetry/__init__.py,sha256=KMFhhb-MSvBO9Sw1mZThyeZmQ0yX7ARcKJMOOBzQJSk,1421
251
+ velune/telemetry/cognition.py,sha256=an1ps61ud9qBH4sjxNRtgTwJ5Mwqjnz4YkqRvCKJ0tU,9705
252
+ velune/telemetry/cost_estimator.py,sha256=AlFxNjno95M0C-E_zmrQWtsvyCMH9qTlkW88MKFx5LE,3517
253
+ velune/telemetry/debug.py,sha256=-SJhvCmxJTHxadogab_WxdbqwM8bNaMfxk2RHOLS6o0,9391
254
+ velune/telemetry/doctor.py,sha256=oH5ddOYm04843h7FXsegtyIpSdsBTZ40t-xQIXMk7mQ,7977
255
+ velune/telemetry/logging.py,sha256=54tfMQXvzoav6Shg15JYAhfrV8HdT9g72fjTGSVCgpA,8333
256
+ velune/telemetry/spans.py,sha256=WxANXSW9LTJAqjG-5mGNieGSvMu63UBz3dCnuZD3wvk,7938
257
+ velune/telemetry/token_tracker.py,sha256=xK5o5ASAbl3aNuZ0wfVp7DsalkmedQD41ovnPs0EN9c,4377
258
+ velune/telemetry/usage_tracker.py,sha256=LYJkxxg0SLX6PwghfzebZeZ-RT4-x2E51RNSkdfWvUI,11064
259
+ velune/tools/__init__.py,sha256=JRaGJ1TFIdiFED3Y5gcYmfEOjDQzwY8VOCWIrdNSgyE,1243
260
+ velune/tools/module.py,sha256=VWqNuTLhMCqDN49ixiUCJ8-LSqu1CNGohjtJR_zflcg,2136
261
+ velune/tools/base/registry.py,sha256=6yozx-faSIQe_C0GqKB-VXjNvRb06-ySimycWc1M80c,2698
262
+ velune/tools/base/tool.py,sha256=uSz36HNlleUSBLSkvlO3k5a-R7Ty2kNCFwxK0k2hjMU,1573
263
+ velune/tools/code/navigate.py,sha256=xSgNE6uZWQ3CIRmnBmiFvdqTqsSjidMvrOcICLi3fSo,3383
264
+ velune/tools/code/search.py,sha256=Xh2jQw-qMBH72KNTS2muF2uLoT4ukP3p0AwOox2gOzM,3688
265
+ velune/tools/filesystem/read.py,sha256=rcx_6dlyEQ1rATaQO19RxPr0T2cbKMHmjwdnPl4H_B4,2265
266
+ velune/tools/filesystem/search.py,sha256=LbZjICwWKoTNs-W5LtV8ZwGERiEaGovaj6GHwoiyBVM,4009
267
+ velune/tools/filesystem/write.py,sha256=iEB0OzxNZyoAk5a9ph2zPSm6H7jU-NH-9-aPJfiGETs,5540
268
+ velune/tools/git/history.py,sha256=JEwWgDrBNSyZ_PcHWSg8-h4hxEPl8JxN7HxfJC7RK94,5860
269
+ velune/tools/git/operations.py,sha256=Hs08_QFFPZhsuyqw2TB1NneOfb1FWngdP1bGq-4u1nY,4049
270
+ velune/tools/git/state.py,sha256=845aaJx_Ug_qFfpDmp_Pv5wpwSvQ8L3hDianK75KJxQ,4004
271
+ velune/tools/terminal/execute.py,sha256=wTelRv-l3qVW3PvYMQDWl79mTNprzqEEdHgd5KiT0pA,2188
272
+ velune/tools/terminal/history.py,sha256=0l4T8rpJzNb2MUCnx6qPg__NzoMrI1uT5ZDZTsH5MHw,1180
273
+ velune/tools/web/fetch.py,sha256=6rfmDGeDLmw1jdNyzxG6sBteITNDSx7OgF7QhfnoOiU,1684
274
+ velune/tools/web/validator.py,sha256=ACW69dRo2vKYBXPcusudO883Pz6YNEWCD7NHsDJkHMs,4585
275
+ velune_cli-0.9.0.dist-info/METADATA,sha256=wKwvLIcHZ7xKdMsgvUNVEz3_5GpXn469PlM0WEEhego,25041
276
+ velune_cli-0.9.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
277
+ velune_cli-0.9.0.dist-info/entry_points.txt,sha256=9y7bZT0tRLpbEQ12rKMbW-5KZboHBFObjNlAmB-Ocr4,43
278
+ velune_cli-0.9.0.dist-info/licenses/LICENSE,sha256=NvxRPzg8Nhzeoph-GwBMNWkg_CFSx2FZkErYPvSxaH8,11338
279
+ velune_cli-0.9.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ velune = velune.main:app
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 Surya HA
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.