velune-cli 0.9.0__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.
Files changed (280) hide show
  1. velune_cli-0.9.0/.gitignore +98 -0
  2. velune_cli-0.9.0/CHANGELOG.md +260 -0
  3. velune_cli-0.9.0/LICENSE +201 -0
  4. velune_cli-0.9.0/PKG-INFO +518 -0
  5. velune_cli-0.9.0/README.md +237 -0
  6. velune_cli-0.9.0/pyproject.toml +291 -0
  7. velune_cli-0.9.0/velune/__init__.py +5 -0
  8. velune_cli-0.9.0/velune/__main__.py +6 -0
  9. velune_cli-0.9.0/velune/cli/__init__.py +5 -0
  10. velune_cli-0.9.0/velune/cli/app.py +208 -0
  11. velune_cli-0.9.0/velune/cli/autocomplete.py +80 -0
  12. velune_cli-0.9.0/velune/cli/banner.py +60 -0
  13. velune_cli-0.9.0/velune/cli/commands/__init__.py +32 -0
  14. velune_cli-0.9.0/velune/cli/commands/ask.py +175 -0
  15. velune_cli-0.9.0/velune/cli/commands/base.py +16 -0
  16. velune_cli-0.9.0/velune/cli/commands/chat.py +228 -0
  17. velune_cli-0.9.0/velune/cli/commands/config.py +224 -0
  18. velune_cli-0.9.0/velune/cli/commands/daemon.py +88 -0
  19. velune_cli-0.9.0/velune/cli/commands/doctor.py +721 -0
  20. velune_cli-0.9.0/velune/cli/commands/init.py +170 -0
  21. velune_cli-0.9.0/velune/cli/commands/mcp.py +82 -0
  22. velune_cli-0.9.0/velune/cli/commands/memory.py +293 -0
  23. velune_cli-0.9.0/velune/cli/commands/models.py +683 -0
  24. velune_cli-0.9.0/velune/cli/commands/preflight.py +95 -0
  25. velune_cli-0.9.0/velune/cli/commands/run.py +270 -0
  26. velune_cli-0.9.0/velune/cli/commands/setup.py +184 -0
  27. velune_cli-0.9.0/velune/cli/commands/workspace.py +249 -0
  28. velune_cli-0.9.0/velune/cli/context.py +36 -0
  29. velune_cli-0.9.0/velune/cli/councilmodel_ui.py +199 -0
  30. velune_cli-0.9.0/velune/cli/display/council_view.py +254 -0
  31. velune_cli-0.9.0/velune/cli/display/memory_view.py +126 -0
  32. velune_cli-0.9.0/velune/cli/display/panels.py +35 -0
  33. velune_cli-0.9.0/velune/cli/display/progress.py +25 -0
  34. velune_cli-0.9.0/velune/cli/display/themes.py +25 -0
  35. velune_cli-0.9.0/velune/cli/main.py +15 -0
  36. velune_cli-0.9.0/velune/cli/model_selector.py +51 -0
  37. velune_cli-0.9.0/velune/cli/modes.py +86 -0
  38. velune_cli-0.9.0/velune/cli/pull_ui.py +123 -0
  39. velune_cli-0.9.0/velune/cli/registry.py +80 -0
  40. velune_cli-0.9.0/velune/cli/rendering/__init__.py +5 -0
  41. velune_cli-0.9.0/velune/cli/rendering/error_panel.py +79 -0
  42. velune_cli-0.9.0/velune/cli/rendering/markdown.py +63 -0
  43. velune_cli-0.9.0/velune/cli/repl.py +1855 -0
  44. velune_cli-0.9.0/velune/cli/session_manager.py +71 -0
  45. velune_cli-0.9.0/velune/cli/slash_commands.py +37 -0
  46. velune_cli-0.9.0/velune/cli/theme.py +8 -0
  47. velune_cli-0.9.0/velune/cognition/__init__.py +23 -0
  48. velune_cli-0.9.0/velune/cognition/agents/__init__.py +7 -0
  49. velune_cli-0.9.0/velune/cognition/agents/coder.py +209 -0
  50. velune_cli-0.9.0/velune/cognition/agents/planner.py +156 -0
  51. velune_cli-0.9.0/velune/cognition/agents/reviewer.py +195 -0
  52. velune_cli-0.9.0/velune/cognition/arbitrator.py +220 -0
  53. velune_cli-0.9.0/velune/cognition/architecture.py +415 -0
  54. velune_cli-0.9.0/velune/cognition/budget.py +65 -0
  55. velune_cli-0.9.0/velune/cognition/council/__init__.py +47 -0
  56. velune_cli-0.9.0/velune/cognition/council/base.py +217 -0
  57. velune_cli-0.9.0/velune/cognition/council/challenger.py +74 -0
  58. velune_cli-0.9.0/velune/cognition/council/coder.py +79 -0
  59. velune_cli-0.9.0/velune/cognition/council/critic_agent.py +43 -0
  60. velune_cli-0.9.0/velune/cognition/council/critic_configs.py +111 -0
  61. velune_cli-0.9.0/velune/cognition/council/critics.py +41 -0
  62. velune_cli-0.9.0/velune/cognition/council/debate.py +46 -0
  63. velune_cli-0.9.0/velune/cognition/council/factory.py +140 -0
  64. velune_cli-0.9.0/velune/cognition/council/messages.py +56 -0
  65. velune_cli-0.9.0/velune/cognition/council/planner.py +124 -0
  66. velune_cli-0.9.0/velune/cognition/council/reviewer.py +74 -0
  67. velune_cli-0.9.0/velune/cognition/council/synthesizer.py +67 -0
  68. velune_cli-0.9.0/velune/cognition/council/tiers.py +188 -0
  69. velune_cli-0.9.0/velune/cognition/council_orchestrator.py +282 -0
  70. velune_cli-0.9.0/velune/cognition/firewall.py +354 -0
  71. velune_cli-0.9.0/velune/cognition/module.py +46 -0
  72. velune_cli-0.9.0/velune/cognition/orchestrator.py +1205 -0
  73. velune_cli-0.9.0/velune/cognition/personality.py +238 -0
  74. velune_cli-0.9.0/velune/cognition/state.py +104 -0
  75. velune_cli-0.9.0/velune/cognition/style_resolver.py +64 -0
  76. velune_cli-0.9.0/velune/cognition/verification.py +205 -0
  77. velune_cli-0.9.0/velune/context/__init__.py +28 -0
  78. velune_cli-0.9.0/velune/context/assembler.py +240 -0
  79. velune_cli-0.9.0/velune/context/budget.py +97 -0
  80. velune_cli-0.9.0/velune/context/extractive.py +95 -0
  81. velune_cli-0.9.0/velune/context/prompt_adaptation.py +480 -0
  82. velune_cli-0.9.0/velune/context/sections.py +99 -0
  83. velune_cli-0.9.0/velune/context/token_counter.py +134 -0
  84. velune_cli-0.9.0/velune/context/utilization.py +33 -0
  85. velune_cli-0.9.0/velune/context/window.py +63 -0
  86. velune_cli-0.9.0/velune/core/__init__.py +89 -0
  87. velune_cli-0.9.0/velune/core/background.py +5 -0
  88. velune_cli-0.9.0/velune/core/config/__init__.py +37 -0
  89. velune_cli-0.9.0/velune/core/errors/__init__.py +90 -0
  90. velune_cli-0.9.0/velune/core/errors/catalog.py +188 -0
  91. velune_cli-0.9.0/velune/core/errors/execution.py +31 -0
  92. velune_cli-0.9.0/velune/core/errors/memory.py +25 -0
  93. velune_cli-0.9.0/velune/core/errors/orchestration.py +31 -0
  94. velune_cli-0.9.0/velune/core/errors/provider.py +37 -0
  95. velune_cli-0.9.0/velune/core/event_loop.py +35 -0
  96. velune_cli-0.9.0/velune/core/logging.py +83 -0
  97. velune_cli-0.9.0/velune/core/paths.py +165 -0
  98. velune_cli-0.9.0/velune/core/runtime.py +113 -0
  99. velune_cli-0.9.0/velune/core/startup_profiler.py +56 -0
  100. velune_cli-0.9.0/velune/core/task_registry.py +117 -0
  101. velune_cli-0.9.0/velune/core/trace.py +83 -0
  102. velune_cli-0.9.0/velune/core/types/__init__.py +48 -0
  103. velune_cli-0.9.0/velune/core/types/agent.py +53 -0
  104. velune_cli-0.9.0/velune/core/types/context.py +42 -0
  105. velune_cli-0.9.0/velune/core/types/inference.py +38 -0
  106. velune_cli-0.9.0/velune/core/types/memory.py +42 -0
  107. velune_cli-0.9.0/velune/core/types/model.py +70 -0
  108. velune_cli-0.9.0/velune/core/types/provider.py +62 -0
  109. velune_cli-0.9.0/velune/core/types/repository.py +38 -0
  110. velune_cli-0.9.0/velune/core/types/task.py +61 -0
  111. velune_cli-0.9.0/velune/core/types/workspace.py +28 -0
  112. velune_cli-0.9.0/velune/daemon/client.py +13 -0
  113. velune_cli-0.9.0/velune/daemon/server.py +127 -0
  114. velune_cli-0.9.0/velune/daemon/transport.py +179 -0
  115. velune_cli-0.9.0/velune/events.py +204 -0
  116. velune_cli-0.9.0/velune/execution/__init__.py +22 -0
  117. velune_cli-0.9.0/velune/execution/benchmarker.py +315 -0
  118. velune_cli-0.9.0/velune/execution/cancellation.py +53 -0
  119. velune_cli-0.9.0/velune/execution/checkpointer.py +130 -0
  120. velune_cli-0.9.0/velune/execution/command_spec.py +165 -0
  121. velune_cli-0.9.0/velune/execution/diff_preview.py +197 -0
  122. velune_cli-0.9.0/velune/execution/executor.py +181 -0
  123. velune_cli-0.9.0/velune/execution/module.py +18 -0
  124. velune_cli-0.9.0/velune/execution/multi_diff.py +67 -0
  125. velune_cli-0.9.0/velune/execution/path_guard.py +74 -0
  126. velune_cli-0.9.0/velune/execution/planner.py +91 -0
  127. velune_cli-0.9.0/velune/execution/rollback.py +89 -0
  128. velune_cli-0.9.0/velune/execution/sandbox.py +268 -0
  129. velune_cli-0.9.0/velune/execution/validator.py +115 -0
  130. velune_cli-0.9.0/velune/hardware/__init__.py +1 -0
  131. velune_cli-0.9.0/velune/hardware/detector.py +192 -0
  132. velune_cli-0.9.0/velune/kernel/__init__.py +55 -0
  133. velune_cli-0.9.0/velune/kernel/bootstrap.py +125 -0
  134. velune_cli-0.9.0/velune/kernel/config.py +426 -0
  135. velune_cli-0.9.0/velune/kernel/entrypoint.py +78 -0
  136. velune_cli-0.9.0/velune/kernel/health.py +54 -0
  137. velune_cli-0.9.0/velune/kernel/lifecycle.py +143 -0
  138. velune_cli-0.9.0/velune/kernel/module.py +17 -0
  139. velune_cli-0.9.0/velune/kernel/modules.py +23 -0
  140. velune_cli-0.9.0/velune/kernel/registry.py +96 -0
  141. velune_cli-0.9.0/velune/kernel/schemas.py +28 -0
  142. velune_cli-0.9.0/velune/main.py +9 -0
  143. velune_cli-0.9.0/velune/mcp/__init__.py +9 -0
  144. velune_cli-0.9.0/velune/mcp/client.py +115 -0
  145. velune_cli-0.9.0/velune/mcp/config.py +19 -0
  146. velune_cli-0.9.0/velune/mcp/server.py +624 -0
  147. velune_cli-0.9.0/velune/memory/__init__.py +32 -0
  148. velune_cli-0.9.0/velune/memory/compaction.py +506 -0
  149. velune_cli-0.9.0/velune/memory/embedding_pipeline.py +241 -0
  150. velune_cli-0.9.0/velune/memory/lifecycle.py +680 -0
  151. velune_cli-0.9.0/velune/memory/module.py +218 -0
  152. velune_cli-0.9.0/velune/memory/prioritizer.py +67 -0
  153. velune_cli-0.9.0/velune/memory/storage/episodic_schema.sql +53 -0
  154. velune_cli-0.9.0/velune/memory/storage/lancedb_store.py +282 -0
  155. velune_cli-0.9.0/velune/memory/storage/sqlite_manager.py +369 -0
  156. velune_cli-0.9.0/velune/memory/storage/sqlite_pool.py +149 -0
  157. velune_cli-0.9.0/velune/memory/tiers/episodic.py +588 -0
  158. velune_cli-0.9.0/velune/memory/tiers/graph.py +378 -0
  159. velune_cli-0.9.0/velune/memory/tiers/lineage.py +416 -0
  160. velune_cli-0.9.0/velune/memory/tiers/semantic.py +475 -0
  161. velune_cli-0.9.0/velune/memory/tiers/working.py +168 -0
  162. velune_cli-0.9.0/velune/memory/vitality.py +132 -0
  163. velune_cli-0.9.0/velune/models/__init__.py +15 -0
  164. velune_cli-0.9.0/velune/models/family.py +76 -0
  165. velune_cli-0.9.0/velune/models/module.py +20 -0
  166. velune_cli-0.9.0/velune/models/probes.py +192 -0
  167. velune_cli-0.9.0/velune/models/profile_cache.py +84 -0
  168. velune_cli-0.9.0/velune/models/profiler.py +108 -0
  169. velune_cli-0.9.0/velune/models/registry.py +251 -0
  170. velune_cli-0.9.0/velune/models/scorer.py +233 -0
  171. velune_cli-0.9.0/velune/models/specializations.py +205 -0
  172. velune_cli-0.9.0/velune/orchestration/__init__.py +19 -0
  173. velune_cli-0.9.0/velune/orchestration/engine.py +239 -0
  174. velune_cli-0.9.0/velune/orchestration/module.py +15 -0
  175. velune_cli-0.9.0/velune/orchestration/role_assignments.py +82 -0
  176. velune_cli-0.9.0/velune/orchestration/schemas.py +98 -0
  177. velune_cli-0.9.0/velune/plugins/__init__.py +20 -0
  178. velune_cli-0.9.0/velune/plugins/hooks.py +50 -0
  179. velune_cli-0.9.0/velune/plugins/loader.py +161 -0
  180. velune_cli-0.9.0/velune/plugins/registry.py +56 -0
  181. velune_cli-0.9.0/velune/plugins/schemas.py +21 -0
  182. velune_cli-0.9.0/velune/providers/__init__.py +23 -0
  183. velune_cli-0.9.0/velune/providers/adapters/anthropic.py +257 -0
  184. velune_cli-0.9.0/velune/providers/adapters/fireworks.py +115 -0
  185. velune_cli-0.9.0/velune/providers/adapters/google.py +234 -0
  186. velune_cli-0.9.0/velune/providers/adapters/groq.py +151 -0
  187. velune_cli-0.9.0/velune/providers/adapters/huggingface.py +210 -0
  188. velune_cli-0.9.0/velune/providers/adapters/llamacpp.py +208 -0
  189. velune_cli-0.9.0/velune/providers/adapters/lmstudio.py +175 -0
  190. velune_cli-0.9.0/velune/providers/adapters/ollama.py +233 -0
  191. velune_cli-0.9.0/velune/providers/adapters/openai.py +213 -0
  192. velune_cli-0.9.0/velune/providers/adapters/openrouter.py +81 -0
  193. velune_cli-0.9.0/velune/providers/adapters/together.py +134 -0
  194. velune_cli-0.9.0/velune/providers/adapters/xai.py +60 -0
  195. velune_cli-0.9.0/velune/providers/base.py +86 -0
  196. velune_cli-0.9.0/velune/providers/benchmarker.py +138 -0
  197. velune_cli-0.9.0/velune/providers/discovery/__init__.py +33 -0
  198. velune_cli-0.9.0/velune/providers/discovery/anthropic.py +79 -0
  199. velune_cli-0.9.0/velune/providers/discovery/benchmarks.py +44 -0
  200. velune_cli-0.9.0/velune/providers/discovery/classifier.py +69 -0
  201. velune_cli-0.9.0/velune/providers/discovery/fireworks.py +95 -0
  202. velune_cli-0.9.0/velune/providers/discovery/gguf.py +88 -0
  203. velune_cli-0.9.0/velune/providers/discovery/google.py +95 -0
  204. velune_cli-0.9.0/velune/providers/discovery/gpu.py +117 -0
  205. velune_cli-0.9.0/velune/providers/discovery/groq.py +21 -0
  206. velune_cli-0.9.0/velune/providers/discovery/huggingface.py +67 -0
  207. velune_cli-0.9.0/velune/providers/discovery/lmstudio.py +80 -0
  208. velune_cli-0.9.0/velune/providers/discovery/ollama.py +162 -0
  209. velune_cli-0.9.0/velune/providers/discovery/openai.py +96 -0
  210. velune_cli-0.9.0/velune/providers/discovery/openrouter.py +113 -0
  211. velune_cli-0.9.0/velune/providers/discovery/scanner.py +115 -0
  212. velune_cli-0.9.0/velune/providers/discovery/together.py +114 -0
  213. velune_cli-0.9.0/velune/providers/discovery/xai.py +57 -0
  214. velune_cli-0.9.0/velune/providers/health.py +67 -0
  215. velune_cli-0.9.0/velune/providers/health_monitor.py +169 -0
  216. velune_cli-0.9.0/velune/providers/keystore.py +142 -0
  217. velune_cli-0.9.0/velune/providers/local_paths.py +49 -0
  218. velune_cli-0.9.0/velune/providers/local_resolver.py +229 -0
  219. velune_cli-0.9.0/velune/providers/module.py +51 -0
  220. velune_cli-0.9.0/velune/providers/ollama_manager.py +193 -0
  221. velune_cli-0.9.0/velune/providers/registry.py +220 -0
  222. velune_cli-0.9.0/velune/providers/router.py +255 -0
  223. velune_cli-0.9.0/velune/providers/task_classifier.py +288 -0
  224. velune_cli-0.9.0/velune/py.typed +0 -0
  225. velune_cli-0.9.0/velune/repository/__init__.py +33 -0
  226. velune_cli-0.9.0/velune/repository/analyzer.py +127 -0
  227. velune_cli-0.9.0/velune/repository/ast_parser.py +822 -0
  228. velune_cli-0.9.0/velune/repository/blast_radius.py +298 -0
  229. velune_cli-0.9.0/velune/repository/boundary_classifier.py +295 -0
  230. velune_cli-0.9.0/velune/repository/cognition.py +316 -0
  231. velune_cli-0.9.0/velune/repository/grapher.py +179 -0
  232. velune_cli-0.9.0/velune/repository/import_graph.py +263 -0
  233. velune_cli-0.9.0/velune/repository/incremental_indexer.py +275 -0
  234. velune_cli-0.9.0/velune/repository/index_state.py +96 -0
  235. velune_cli-0.9.0/velune/repository/indexer.py +243 -0
  236. velune_cli-0.9.0/velune/repository/module.py +17 -0
  237. velune_cli-0.9.0/velune/repository/parser.py +474 -0
  238. velune_cli-0.9.0/velune/repository/project_type.py +300 -0
  239. velune_cli-0.9.0/velune/repository/rename_journal.py +287 -0
  240. velune_cli-0.9.0/velune/repository/scanner.py +193 -0
  241. velune_cli-0.9.0/velune/repository/schemas.py +102 -0
  242. velune_cli-0.9.0/velune/repository/symbol_registry.py +365 -0
  243. velune_cli-0.9.0/velune/repository/tracker.py +252 -0
  244. velune_cli-0.9.0/velune/retrieval/__init__.py +27 -0
  245. velune_cli-0.9.0/velune/retrieval/cache.py +110 -0
  246. velune_cli-0.9.0/velune/retrieval/fast_path.py +391 -0
  247. velune_cli-0.9.0/velune/retrieval/graph.py +124 -0
  248. velune_cli-0.9.0/velune/retrieval/hybrid.py +271 -0
  249. velune_cli-0.9.0/velune/retrieval/keyword.py +131 -0
  250. velune_cli-0.9.0/velune/retrieval/module.py +26 -0
  251. velune_cli-0.9.0/velune/retrieval/pipeline.py +303 -0
  252. velune_cli-0.9.0/velune/retrieval/reranker.py +102 -0
  253. velune_cli-0.9.0/velune/retrieval/schemas.py +59 -0
  254. velune_cli-0.9.0/velune/retrieval/slow_path.py +364 -0
  255. velune_cli-0.9.0/velune/retrieval/vector.py +203 -0
  256. velune_cli-0.9.0/velune/telemetry/__init__.py +59 -0
  257. velune_cli-0.9.0/velune/telemetry/cognition.py +267 -0
  258. velune_cli-0.9.0/velune/telemetry/cost_estimator.py +92 -0
  259. velune_cli-0.9.0/velune/telemetry/debug.py +304 -0
  260. velune_cli-0.9.0/velune/telemetry/doctor.py +244 -0
  261. velune_cli-0.9.0/velune/telemetry/logging.py +286 -0
  262. velune_cli-0.9.0/velune/telemetry/spans.py +277 -0
  263. velune_cli-0.9.0/velune/telemetry/token_tracker.py +140 -0
  264. velune_cli-0.9.0/velune/telemetry/usage_tracker.py +340 -0
  265. velune_cli-0.9.0/velune/tools/__init__.py +41 -0
  266. velune_cli-0.9.0/velune/tools/base/registry.py +87 -0
  267. velune_cli-0.9.0/velune/tools/base/tool.py +63 -0
  268. velune_cli-0.9.0/velune/tools/code/navigate.py +116 -0
  269. velune_cli-0.9.0/velune/tools/code/search.py +123 -0
  270. velune_cli-0.9.0/velune/tools/filesystem/read.py +75 -0
  271. velune_cli-0.9.0/velune/tools/filesystem/search.py +136 -0
  272. velune_cli-0.9.0/velune/tools/filesystem/write.py +163 -0
  273. velune_cli-0.9.0/velune/tools/git/history.py +177 -0
  274. velune_cli-0.9.0/velune/tools/git/operations.py +122 -0
  275. velune_cli-0.9.0/velune/tools/git/state.py +121 -0
  276. velune_cli-0.9.0/velune/tools/module.py +81 -0
  277. velune_cli-0.9.0/velune/tools/terminal/execute.py +72 -0
  278. velune_cli-0.9.0/velune/tools/terminal/history.py +47 -0
  279. velune_cli-0.9.0/velune/tools/web/fetch.py +55 -0
  280. velune_cli-0.9.0/velune/tools/web/validator.py +122 -0
@@ -0,0 +1,98 @@
1
+ # ── Python ────────────────────────────────────────────────────────────────────
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyc
5
+ *.pyo
6
+ *.pyd
7
+ *.so
8
+
9
+ # ── Virtual environments ───────────────────────────────────────────────────────
10
+ .venv/
11
+ venv/
12
+ env/
13
+ ENV/
14
+ .python-version
15
+
16
+ # ── Packaging & build ─────────────────────────────────────────────────────────
17
+ build/
18
+ dist/
19
+ *.egg-info/
20
+ *.egg
21
+ pip-wheel-metadata/
22
+ RECORD
23
+ WHEEL
24
+
25
+ # ── Test / lint / type-check caches ───────────────────────────────────────────
26
+ .pytest_cache/
27
+ .mypy_cache/
28
+ .ruff_cache/
29
+ .tox/
30
+ .nox/
31
+ .benchmarks/
32
+
33
+ # ── Coverage & reports ────────────────────────────────────────────────────────
34
+ .coverage
35
+ .coverage.*
36
+ coverage.xml
37
+ htmlcov/
38
+ *.lcov
39
+
40
+ # ── Environment & secrets ─────────────────────────────────────────────────────
41
+ .env
42
+ .env.*
43
+ !.env.example
44
+ *.pem
45
+ *.key
46
+ *.p12
47
+ *.pfx
48
+ pip-selfcheck.json
49
+
50
+ # ── Editor & OS artefacts ─────────────────────────────────────────────────────
51
+ .vscode/
52
+ .idea/
53
+ *.sublime-workspace
54
+ .DS_Store
55
+ Thumbs.db
56
+ desktop.ini
57
+ $RECYCLE.BIN/
58
+
59
+ # ── Logs & local databases ────────────────────────────────────────────────────
60
+ *.log
61
+ *.sqlite
62
+ *.sqlite3
63
+ *.db
64
+ *.db-wal
65
+ *.db-shm
66
+ *.sqlite-wal
67
+ *.sqlite-shm
68
+
69
+ # ── Jupyter ───────────────────────────────────────────────────────────────────
70
+ .ipynb_checkpoints/
71
+ *.ipynb
72
+
73
+ # ── PEP 582 local packages ────────────────────────────────────────────────────
74
+ __pypackages__/
75
+
76
+ # ── Misc caches ───────────────────────────────────────────────────────────────
77
+ .cache/
78
+ .eggs/
79
+ .ropeproject/
80
+ *.swp
81
+ *.swo
82
+ *.bak
83
+ *.orig
84
+
85
+ # ── Project-specific local artefacts ─────────────────────────────────────────
86
+ .velune/
87
+ .claude/
88
+ qdrant_db/
89
+
90
+ # ── Local config overrides (never commit personal overrides) ──────────────────
91
+ velune.local.toml
92
+ local_settings.toml
93
+
94
+ # ── Temporary / scratch files ─────────────────────────────────────────────────
95
+ *.tmp
96
+ *.temp
97
+ scratch/
98
+ tmp/
@@ -0,0 +1,260 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
+ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ---
9
+
10
+ ## [Unreleased]
11
+
12
+ ### Added
13
+
14
+ - **CLI Design Modernization** — Comprehensive frontend redesign for professional appearance
15
+ - Modern startup banner with clean, spacious layout
16
+ - Refined REPL prompt with sophisticated color palette (blue primary + gold accent)
17
+ - Simplified prompt display: only shows context bar when >40% full
18
+ - Updated error rendering with cleaner panel formatting
19
+ - Enhanced theme colors with semantic tokens (muted, accent)
20
+ - Better visual hierarchy throughout terminal interface
21
+
22
+ ## [0.9.0] - 2026-06-12
23
+
24
+ ### Security
25
+ - Plugin sandbox status: Plugin sandbox remains unimplemented or disabled for standard CLI operations.
26
+ - Removal of `run_until_complete` anti-pattern: Cleaned up all async loop management and centralized loop execution in `entrypoint.py`.
27
+ - Security audit suite extension: Centralized static and runtime vulnerability controls.
28
+
29
+ ### Fixed
30
+ - Fixed memory lifecycle shutdown duplication to prevent multiple DB closure errors.
31
+ - Fixed Ollama context-window detection to correctly read local model metadata.
32
+
33
+ ### Changed
34
+ - Consolidated AST parser logic into a unified syntax parsing layer.
35
+ - Consolidated council orchestrators to streamline Planner/Coder/Reviewer loops.
36
+ - Modernized CLI theme, refined color palettes, updated startup banner, and context trackers.
37
+ - Reconciled documentation and cleaned up dead MCP CLI commands.
38
+
39
+ ### Removed
40
+ - Removed superseded `tests/` and `scripts/` directories entirely from the repository.
41
+
42
+ ## [0.9.0-beta] — 2026-06-12
43
+
44
+ ### Overview
45
+
46
+ **Public Beta Release** — All Phase 0-1 systems verified and integrated. Ready for early adopters.
47
+
48
+ ### Architecture & Verification
49
+
50
+ - **Known Issues Resolution** — All 10 critical issues resolved:
51
+ 1. shell=True blocking (security)
52
+ 2. asyncio.run() consolidation (correctness)
53
+ 3. CognitiveFirewall prompt injection tests passing
54
+ 4. CapabilityLevel aliasing prevention verified
55
+ 5. SQLite WAL concurrency tests passing
56
+ 6. VeluneConfig single-source-of-truth enforced
57
+ 7. CouncilState single shape enforced
58
+ 8. Event history deque(maxlen=1000) in place
59
+ 9. CouncilExecutionBudget enforcement tested
60
+ 10. SSRFGuard blocking private metadata endpoints
61
+
62
+ - **Architecture Boundary Verification** — All 270 Python files pass 8 layer boundary rules
63
+ - Kernel ↚ CLI/Cognition (OS layer isolation)
64
+ - Providers ↚ Cognition/CLI (infrastructure isolation)
65
+ - Memory ↚ Cognition/CLI (persistence layer)
66
+ - Retrieval ↚ CLI (data access isolation)
67
+ - Telemetry ↚ Cognition (observability separation)
68
+
69
+ - **Test Coverage** — 581/635 tests passing (91.6%)
70
+ - All critical routing and security tests passing
71
+ - 48 non-critical test failures isolated for Phase 2
72
+ - 6 collection errors in experimental features (dual-path retrieval)
73
+
74
+ - **Fixed Integration Issues**
75
+ - Added structlog dependency (telemetry logging)
76
+ - Fixed @contextmanager import in logging.py
77
+ - Fixed ContextBudget dataclass field ordering
78
+ - Corrected CrossEncoderReranker naming
79
+ - Fixed test_mcp_server.py syntax error
80
+
81
+ ### Beta Release Status
82
+
83
+ - All documented commands verified and functional
84
+ - Hardware detection and tier classification working
85
+ - Provider health monitoring implemented
86
+ - Multi-model council orchestration stable
87
+ - Session persistence and memory tiers operational
88
+ - MCP server integration available
89
+
90
+ ### Known Limitations (Phase 2+)
91
+
92
+ - Startup time 3.6s (target 3.0s) — optimization planned
93
+ - 48 failing tests deferred to Phase 2 (incremental indexing, streaming repair, prompt adaptation)
94
+ - Dual-path retrieval disabled (experimental feature)
95
+ - Cloud provider integration incomplete for some APIs
96
+
97
+ ### Security
98
+
99
+ - All OWASP top 10 checks passing
100
+ - Architecture lint enforced (no shell=True, asyncio.run isolated)
101
+ - Keyring-based secret storage for API keys
102
+ - Sandbox execution for arbitrary code
103
+ - SSRF guard blocks private IP ranges
104
+
105
+ ## [0.6.0] — 2026-06-12
106
+
107
+ ### Added
108
+
109
+ - **Provider Health Monitoring** — Real-time health tracking with CapabilityManifest
110
+ - Background polling every 30 seconds
111
+ - Health status (HEALTHY/DEGRADED/UNAVAILABLE)
112
+ - Estimated latency tracking (5-call rolling average)
113
+ - Rate limit monitoring
114
+ - **Health-Aware Routing** — Router considers provider health for model selection
115
+ - Filters unavailable providers
116
+ - Prefers healthy providers
117
+ - Latency-sensitive task optimization
118
+ - **Startup Performance Monitoring** — CI check for startup time regression (<3s threshold)
119
+ - **Comprehensive CI/CD Pipeline** (`CI_PASS` gate blocks merge on failure)
120
+ - Lint (ruff + pyright)
121
+ - Security (pip-audit, shell=True check, asyncio.run() check)
122
+ - Architecture Lint (8 layer boundary rules)
123
+ - Unit Tests (70% coverage minimum)
124
+ - Integration Tests (on main/PRs)
125
+ - Build Check
126
+ - Startup Performance (main only)
127
+ - **Latency Recording** — All providers auto-record call latency
128
+ - Synchronous calls: total time
129
+ - Streaming calls: TTFT (time-to-first-token)
130
+ - **Architecture Linting Script** (`scripts/check_architecture.py`)
131
+ - AST-based import analysis
132
+ - 8 layer boundary rules
133
+ - 0 external dependencies
134
+ - **Automated Dependency Updates** via Dependabot
135
+ - Weekly pip updates
136
+ - Weekly GitHub Actions updates
137
+ - Manual review required (no auto-merge)
138
+ - **Pre-Commit Hooks** — Auto-format and lint before commit
139
+ - **Type Checking** — Pyright configuration with standard mode
140
+ - **Enhanced Code Coverage** — Branch coverage + exclusion rules
141
+
142
+ ### Changed
143
+
144
+ - Updated all provider adapters to record latency
145
+ - Anthropic, OpenAI, Google, Groq, HuggingFace, LM Studio, Ollama, LlamaCpp
146
+ - Enhanced ruff configuration with 8 rule categories (E, W, F, I, B, C4, UP, N)
147
+ - Improved pytest configuration (timeouts, coverage reporting)
148
+ - Reorganized pyproject.toml with comprehensive tool configurations
149
+
150
+ ### Fixed
151
+
152
+ - Replaced `UNHEALTHY` enum with `UNAVAILABLE` for consistency
153
+ - Fixed provider health check timeouts
154
+ - Added proper error handling for latency recording
155
+
156
+ ### Removed
157
+
158
+ - Demo files (council_example.py)
159
+ - Unnecessary documentation (implementation details)
160
+ - Redundant markdown files
161
+
162
+ ### Security
163
+
164
+ - Added pip-audit dependency vulnerability scanning
165
+ - shell=True regression check (P0-2)
166
+ - asyncio.run() count validation (P0-1)
167
+ - Architecture boundary enforcement
168
+ - Pre-commit hooks for local security
169
+
170
+ ## [1.1.0] — 2026-06-07
171
+
172
+ ### Added
173
+
174
+ - Google Gemini provider (2.0 Flash, 1.5 Pro, 1.5 Flash, 2.0 Flash Thinking)
175
+ - Together AI provider (Llama 3.3 70B, Qwen 2.5 Coder 32B, DeepSeek R1)
176
+ - Fireworks AI provider (DeepSeek R1, Qwen 2.5 Coder, Mixtral 8x22B)
177
+ - /councilmodel command — assign specific models to specific council roles
178
+ - /pull command — download Ollama models interactively from within the REPL
179
+ - /delete command — remove locally installed Ollama models
180
+ - Project type auto-detection (FastAPI, Django, Flask, React, Next.js, Rust, Go, Java Spring, .NET, Flutter) with framework-specific context
181
+ - ProjectTypeDetector writes .velune/project_profile.json on init
182
+ - System prompt injection based on detected project type
183
+ - Model pull progress bar with live streaming status
184
+ - Council role assignments persist to .velune/council_roles.json
185
+ - ModeAwareModelSelector for /optimus and /godly auto-model selection
186
+ - `/optimus` and `/godly` session-wide REPL modes with `ModeManager`, `ModeConfig`, and `ModeAwareModelSelector` (`velune/cli/modes.py`, `velune/cli/model_selector.py`)
187
+ - Slash command Tab-autocomplete (`velune/cli/autocomplete.py`) with `/model <id>` completion
188
+ - Rich startup banner showing hardware tier, GPU, providers, and active model (`velune/cli/banner.py`)
189
+ - Security audit script (`scripts/security_audit.py`) — 6 checks, exit 0 required in CI
190
+ - `RateLimiter` token bucket and `DEFAULT_HOST`/`MAX_REQUEST_BYTES` constants added to the MCP server (`velune/mcp/server.py`)
191
+ - `DEFAULT_VELUNEIGNORE` expanded: `*.crt`, `id_rsa`, `id_dsa`, `id_ed25519`, `id_ecdsa`, `.netrc`, `.npmrc`, `.pypirc`, `.aws/`, `credentials.json`, `service-account.json`
192
+ - Full GitHub Actions CI/CD pipeline: lint + type check, 2×2 test matrix (Python 3.11/3.12 × Ubuntu/macOS), security audit job, build + `twine check`, Codecov upload
193
+ - Automated release workflow: tag-to-PyPI via OIDC trusted publishing, CHANGELOG-based GitHub Release notes, pre-release detection from tag suffix
194
+ - `scripts/extract_changelog.py` — parses CHANGELOG.md for a version section
195
+ - `docs/releasing.md` — step-by-step release checklist
196
+ - `docs/mcp.md` — MCP integration guide with all 21 real tool names
197
+ - `CONTRIBUTING.md` — developer how-to: adding providers, slash commands, council agents
198
+ - `README.md` rewritten — quickstart, hardware table, provider table, architecture tree, session modes, MCP section, Windows section
199
+ - `WINDOWS.md` — complete 10-section WSL2 setup guide with GPU passthrough
200
+ - BYOK (Bring Your Own Key) provider system: xAI, Google Gemini, Groq, OpenRouter
201
+ - OS keyring integration via `keyring` library (`velune/providers/keystore.py`)
202
+ - `LocalModelResolver` for filesystem GGUF discovery across 9 well-known paths
203
+ - Persistent model-path cache (`velune/providers/local_paths.py`)
204
+ - `is_running()` classmethods on `OllamaDiscovery` and `LMStudioDiscovery` for 2-second reachability checks before discovery
205
+ - `ModelDiscoveryScanner._collect()` helper — per-discoverer error isolation
206
+ - Summary log line after each full scan: `Local: N GGUF, N Ollama, N LM Studio | Cloud: N models`
207
+ - Cloud discoverer key-gating: cloud providers skip network calls when no key is set
208
+ - OpenRouter 1-hour disk cache for model lists
209
+ - GitHub CI workflow (`ci.yml`) with lint, test (Python 3.11 / 3.12), and build jobs
210
+ - GitHub Release workflow (`release.yml`) with PyPI trusted publishing and CHANGELOG excerpt
211
+ - GitHub issue templates (bug report, feature request)
212
+ - `CODE_OF_CONDUCT.md` (Contributor Covenant 2.1)
213
+
214
+ ### Security
215
+
216
+ - All provider adapters and discovery modules now use `keystore.get_key()` instead of bare `os.getenv()` for API key retrieval (`adapters/anthropic.py`, `adapters/openai.py`, `adapters/huggingface.py`, `discovery/anthropic.py`, `discovery/openai.py`, `cli/commands/doctor.py`)
217
+ - `tests/test_security.py` — 6 security property tests covering shell injection, API key bypass, SSRF blocking, veluneignore coverage, and rate limiting
218
+
219
+ ### Changed
220
+
221
+ - `GGUFDiscovery.discover()` now delegates to `LocalModelResolver` instead of
222
+ a bare `rglob` — depth-limited (5 levels), capped at 100k files per root,
223
+ deduplicated
224
+ - `LlamaCppProvider._resolve_model_path()` now checks persistent cache →
225
+ `LocalModelResolver` → interactive prompt before raising `FileNotFoundError`
226
+ - `LlamaCppProvider.list_models()` simplified — removed `search_paths` mutation
227
+ - `pyproject.toml` license classifier corrected to Apache Software License
228
+ - `SECURITY.md` and `CONTRIBUTING.md` consolidated (removed duplicate sections)
229
+ - `.gitignore` expanded with `.benchmarks/`, `.claude/`, secret file patterns
230
+
231
+ ### Fixed
232
+
233
+ - `CONTRIBUTING.md` footer appeared three times — reduced to one
234
+ - `README.md` referenced MIT License — corrected to Apache-2.0
235
+ - `pyproject.toml` `[tool.ruff.lint]` section was at wrong TOML level
236
+
237
+ ---
238
+
239
+ ## [0.1.0] - 2026-06-05
240
+
241
+ ### Added
242
+
243
+ - Initial public release
244
+ - Typer CLI with `ask`, `run`, `workspace`, `doctor`, `models`, `chat` subcommands
245
+ - LangGraph council orchestrator (Planner → Coder → Reviewer → Synthesizer)
246
+ - Repository cognition core: tree-sitter AST parsing, BM25, Qdrant vector store,
247
+ Graphiti memory graph
248
+ - Provider adapters: Ollama, LM Studio, llama.cpp, OpenAI, Anthropic, HuggingFace
249
+ - `SubprocessSandbox` with write-path allowlists, time limits, and SSRF suppression
250
+ - Hybrid retriever (BM25 + Qdrant) with `asyncio`-safe sync fallback
251
+ - `velune doctor check` — GPU, VRAM, provider, grammar diagnostics
252
+ - `ModelDiscoveryScanner` — parallel async discovery across all providers
253
+ - `CapabilityClassifier` and `CapabilityBenchmark` for empirical model profiling
254
+ - Git-backed transactional execution with automatic rollback on failure
255
+ - Cognitive firewall: prompt-injection detection and HTML sanitization
256
+ - Security sandbox: workspace write guards, network hygiene, secret scrubbing
257
+ - Full pytest suite: unit, integration, async, and benchmark tests
258
+
259
+ [Unreleased]: https://github.com/Surya-Hariharan/Velune-CLI/compare/v0.1.0...HEAD
260
+ [0.1.0]: https://github.com/Surya-Hariharan/Velune-CLI/releases/tag/v0.1.0
@@ -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.