higpertext-cli 0.8.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 (335) hide show
  1. config/adapters_config.json +450 -0
  2. config/antigravity_agent_template.json +31 -0
  3. config/app_config.json +174 -0
  4. config/context_engine.json +33 -0
  5. config/environments/model_defaults.json +5 -0
  6. config/governance/branching_strategy.json +36 -0
  7. config/governance/deployment_gates.json +30 -0
  8. config/governance/guidelines_contract.json +54 -0
  9. config/governance/quality_gates.json +39 -0
  10. config/governance/section_rules.json +22 -0
  11. config/governance/security_guardrails.json +52 -0
  12. config/hooks/README.md +35 -0
  13. config/hooks/custom/test_output_limiter.json +9 -0
  14. config/hooks/global/session_prompt.json +9 -0
  15. config/htx_config.json +24 -0
  16. config/profile_learner.json +18 -0
  17. config/profiles/base_agent.json +40 -0
  18. config/profiles/base_auditor.json +19 -0
  19. config/profiles/base_developer.json +19 -0
  20. config/profiles/base_operator.json +16 -0
  21. config/profiles/global.json +33 -0
  22. config/profiles/software_developer.json +23 -0
  23. config/router_content.json +137 -0
  24. config/semantic_graph.json +66 -0
  25. config/workflows/ado_release_flow.json +38 -0
  26. config/workflows/docs-update.json +33 -0
  27. config/workflows/governance-check.yaml +26 -0
  28. config/workflows/guidelines-sync.json +40 -0
  29. config/workflows/higpertext-build.json +73 -0
  30. config/workflows/higpertext-plan.json +38 -0
  31. config/workflows/higpertext-review.json +41 -0
  32. config/workflows/pr-quality-check.json +56 -0
  33. config/workflows/quality-remediation.json +57 -0
  34. higpertext/__init__.py +18 -0
  35. higpertext/adapters/__init__.py +27 -0
  36. higpertext/adapters/adapter_utils.py +604 -0
  37. higpertext/adapters/claude_adapter/__init__.py +0 -0
  38. higpertext/adapters/claude_adapter/claude_adapter.py +154 -0
  39. higpertext/adapters/copilot_adapter/__init__.py +0 -0
  40. higpertext/adapters/copilot_adapter/copilot_adapter.py +231 -0
  41. higpertext/adapters/gemini_adapter/__init__.py +0 -0
  42. higpertext/adapters/gemini_adapter/gemini_adapter.py +211 -0
  43. higpertext/adapters/llm_formatter.py +46 -0
  44. higpertext/adapters/open_code_adapter/__init__.py +0 -0
  45. higpertext/adapters/open_code_adapter/open_code_adapter.py +480 -0
  46. higpertext/capabilities/capabilities_runner.py +216 -0
  47. higpertext/capabilities/common/agent-builder.json +54 -0
  48. higpertext/capabilities/common/agent-sync.json +34 -0
  49. higpertext/capabilities/common/code-skeletonizer.json +35 -0
  50. higpertext/capabilities/common/commit-report.json +42 -0
  51. higpertext/capabilities/common/context-assembler.json +37 -0
  52. higpertext/capabilities/common/context-budget-report.json +15 -0
  53. higpertext/capabilities/common/dep-manager.json +43 -0
  54. higpertext/capabilities/common/docs-sync.json +14 -0
  55. higpertext/capabilities/common/doctor.json +18 -0
  56. higpertext/capabilities/common/efficiency-meter.json +31 -0
  57. higpertext/capabilities/common/env-catalog.json +13 -0
  58. higpertext/capabilities/common/env-clean.json +14 -0
  59. higpertext/capabilities/common/env-logs.json +16 -0
  60. higpertext/capabilities/common/env-runner.json +23 -0
  61. higpertext/capabilities/common/env-status.json +13 -0
  62. higpertext/capabilities/common/env-stop.json +14 -0
  63. higpertext/capabilities/common/env-template.json +14 -0
  64. higpertext/capabilities/common/error-context-locator.json +23 -0
  65. higpertext/capabilities/common/eval-agent.json +33 -0
  66. higpertext/capabilities/common/file-map.json +17 -0
  67. higpertext/capabilities/common/governance-exception.json +54 -0
  68. higpertext/capabilities/common/graph-query.json +59 -0
  69. higpertext/capabilities/common/graph-rebuild.json +31 -0
  70. higpertext/capabilities/common/graph-visualize.json +37 -0
  71. higpertext/capabilities/common/grep-search.json +176 -0
  72. higpertext/capabilities/common/higpertext-tester.json +25 -0
  73. higpertext/capabilities/common/hook-health.json +19 -0
  74. higpertext/capabilities/common/hook-sync-check.json +19 -0
  75. higpertext/capabilities/common/hooks-manager.json +55 -0
  76. higpertext/capabilities/common/knowledge-asker.json +27 -0
  77. higpertext/capabilities/common/list-rules.json +27 -0
  78. higpertext/capabilities/common/llm-invoke.json +59 -0
  79. higpertext/capabilities/common/load-rules.json +37 -0
  80. higpertext/capabilities/common/memory-manager.json +65 -0
  81. higpertext/capabilities/common/quality-scan.json +21 -0
  82. higpertext/capabilities/common/quality-updater.json +35 -0
  83. higpertext/capabilities/common/rag-index.json +17 -0
  84. higpertext/capabilities/common/report-viewer.json +24 -0
  85. higpertext/capabilities/common/roadmap-report.json +37 -0
  86. higpertext/capabilities/common/scripts/_env_cli.py +65 -0
  87. higpertext/capabilities/common/scripts/agent_builder.py +60 -0
  88. higpertext/capabilities/common/scripts/agent_sync.py +56 -0
  89. higpertext/capabilities/common/scripts/ask_higpertext.py +38 -0
  90. higpertext/capabilities/common/scripts/code_skeletonizer.py +225 -0
  91. higpertext/capabilities/common/scripts/commit_report.py +134 -0
  92. higpertext/capabilities/common/scripts/context_assembler.py +70 -0
  93. higpertext/capabilities/common/scripts/context_budget_report.py +53 -0
  94. higpertext/capabilities/common/scripts/dep_manager.py +81 -0
  95. higpertext/capabilities/common/scripts/docs_sync.py +981 -0
  96. higpertext/capabilities/common/scripts/doctor.py +144 -0
  97. higpertext/capabilities/common/scripts/efficiency_meter.py +83 -0
  98. higpertext/capabilities/common/scripts/env_catalog.py +47 -0
  99. higpertext/capabilities/common/scripts/env_clean.py +30 -0
  100. higpertext/capabilities/common/scripts/env_logs.py +32 -0
  101. higpertext/capabilities/common/scripts/env_runner.py +53 -0
  102. higpertext/capabilities/common/scripts/env_status.py +38 -0
  103. higpertext/capabilities/common/scripts/env_stop.py +30 -0
  104. higpertext/capabilities/common/scripts/env_template.py +73 -0
  105. higpertext/capabilities/common/scripts/error_context_locator.py +138 -0
  106. higpertext/capabilities/common/scripts/eval_agent.py +80 -0
  107. higpertext/capabilities/common/scripts/file_map.py +95 -0
  108. higpertext/capabilities/common/scripts/governance_exception.py +116 -0
  109. higpertext/capabilities/common/scripts/graph_query.py +104 -0
  110. higpertext/capabilities/common/scripts/graph_rebuild.py +107 -0
  111. higpertext/capabilities/common/scripts/graph_visualize.py +76 -0
  112. higpertext/capabilities/common/scripts/grep_search.py +648 -0
  113. higpertext/capabilities/common/scripts/higpertext_tester.py +102 -0
  114. higpertext/capabilities/common/scripts/hook_health.py +149 -0
  115. higpertext/capabilities/common/scripts/hook_sync_check.py +134 -0
  116. higpertext/capabilities/common/scripts/hooks_manager.py +171 -0
  117. higpertext/capabilities/common/scripts/list_rules.py +175 -0
  118. higpertext/capabilities/common/scripts/llm_invoke.py +135 -0
  119. higpertext/capabilities/common/scripts/load_rules.py +379 -0
  120. higpertext/capabilities/common/scripts/memory_manager.py +210 -0
  121. higpertext/capabilities/common/scripts/presentation_engine.py +63 -0
  122. higpertext/capabilities/common/scripts/quality_scan.py +132 -0
  123. higpertext/capabilities/common/scripts/rag_index.py +39 -0
  124. higpertext/capabilities/common/scripts/report_viewer.py +106 -0
  125. higpertext/capabilities/common/scripts/roadmap_report.py +73 -0
  126. higpertext/capabilities/common/scripts/search_router.py +111 -0
  127. higpertext/capabilities/common/scripts/semantic_diff.py +166 -0
  128. higpertext/capabilities/common/scripts/semantic_search.py +43 -0
  129. higpertext/capabilities/common/scripts/session_control.py +136 -0
  130. higpertext/capabilities/common/scripts/smart_read.py +232 -0
  131. higpertext/capabilities/common/scripts/subagent_executor.py +143 -0
  132. higpertext/capabilities/common/scripts/sync_agents.py +353 -0
  133. higpertext/capabilities/common/scripts/task_decomposer.py +78 -0
  134. higpertext/capabilities/common/scripts/telemetry_report.py +36 -0
  135. higpertext/capabilities/common/search-router.json +24 -0
  136. higpertext/capabilities/common/semantic-diff.json +40 -0
  137. higpertext/capabilities/common/semantic-search.json +19 -0
  138. higpertext/capabilities/common/session-clean.json +20 -0
  139. higpertext/capabilities/common/session-start.json +44 -0
  140. higpertext/capabilities/common/smart-read.json +28 -0
  141. higpertext/capabilities/common/subagent-executor.json +25 -0
  142. higpertext/capabilities/common/sync-agents.json +32 -0
  143. higpertext/capabilities/common/task-decomposer.json +37 -0
  144. higpertext/capabilities/common/telemetry-report.json +23 -0
  145. higpertext/capabilities/git/__init__.py +0 -0
  146. higpertext/capabilities/git/committer.json +61 -0
  147. higpertext/capabilities/git/diff.json +33 -0
  148. higpertext/capabilities/git/ls-files.json +44 -0
  149. higpertext/capabilities/git/rm.json +27 -0
  150. higpertext/capabilities/git/scripts/__init__.py +0 -0
  151. higpertext/capabilities/git/scripts/commit_changes.py +1077 -0
  152. higpertext/capabilities/git/scripts/git_diff.py +171 -0
  153. higpertext/capabilities/git/scripts/git_ls_files.py +376 -0
  154. higpertext/capabilities/git/scripts/git_rm.py +62 -0
  155. higpertext/capabilities/security/k8s-auditor.json +33 -0
  156. higpertext/capabilities/security/scripts/k8s_auditor.py +307 -0
  157. higpertext/capabilities/security/scripts/secret_scanner.py +235 -0
  158. higpertext/capabilities/security/secret-scanner.json +32 -0
  159. higpertext/hooks/__init__.py +28 -0
  160. higpertext/hooks/_compat.py +27 -0
  161. higpertext/hooks/hook_tasks/__init__.py +1 -0
  162. higpertext/hooks/hook_tasks/_rules/__init__.py +0 -0
  163. higpertext/hooks/hook_tasks/_rules/bash_rules.py +635 -0
  164. higpertext/hooks/hook_tasks/_rules/context_engine_rule.py +79 -0
  165. higpertext/hooks/hook_tasks/_rules/context_rules.py +199 -0
  166. higpertext/hooks/hook_tasks/_rules/governance_adapter.py +72 -0
  167. higpertext/hooks/hook_tasks/_rules/profile_rules.json +25 -0
  168. higpertext/hooks/hook_tasks/_rules/quality_rules.py +86 -0
  169. higpertext/hooks/hook_tasks/_rules/security_rules.py +214 -0
  170. higpertext/hooks/hook_tasks/_rules/session_rules.py +316 -0
  171. higpertext/hooks/hook_tasks/_rules/telemetry_rules.py +121 -0
  172. higpertext/hooks/hook_tasks/audit_logger_hook.py +28 -0
  173. higpertext/hooks/hook_tasks/hook_bash_guard.py +101 -0
  174. higpertext/hooks/hook_tasks/hook_code_quality.py +48 -0
  175. higpertext/hooks/hook_tasks/hook_context_hint.py +46 -0
  176. higpertext/hooks/hook_tasks/hook_context_manager.py +44 -0
  177. higpertext/hooks/hook_tasks/hook_io.py +122 -0
  178. higpertext/hooks/hook_tasks/hook_loop_guard.py +182 -0
  179. higpertext/hooks/hook_tasks/hook_post_observer.py +54 -0
  180. higpertext/hooks/hook_tasks/hook_read_guard.py +85 -0
  181. higpertext/hooks/hook_tasks/hook_security_guard.py +81 -0
  182. higpertext/hooks/hook_tasks/hook_session_prompt.py +83 -0
  183. higpertext/hooks/hook_tasks/hook_session_stop.py +115 -0
  184. higpertext/hooks/hook_tasks/hook_utils.py +144 -0
  185. higpertext/hooks/hook_tasks/session_guard_hook.py +23 -0
  186. higpertext/hooks/hook_tasks/telemetry_utils.py +176 -0
  187. higpertext/hooks/hook_tasks/test_echo_hook.py +33 -0
  188. higpertext/hooks/hook_tasks/webhook_hook.py +54 -0
  189. higpertext/hooks/hook_tasks/workflow_runner_hook.py +49 -0
  190. higpertext/hooks/hooks_catalog.json +116 -0
  191. higpertext/kernel/__init__.py +63 -0
  192. higpertext/kernel/_compat.py +138 -0
  193. higpertext/kernel/app_config.py +117 -0
  194. higpertext/kernel/application/__init__.py +13 -0
  195. higpertext/kernel/application/agent_registry.py +102 -0
  196. higpertext/kernel/application/capability_manager.py +61 -0
  197. higpertext/kernel/application/commit_reporter.py +247 -0
  198. higpertext/kernel/application/context_builder.py +166 -0
  199. higpertext/kernel/application/context_engine.py +409 -0
  200. higpertext/kernel/application/engine.py +41 -0
  201. higpertext/kernel/application/env_runtime.py +174 -0
  202. higpertext/kernel/application/environment_manager.py +154 -0
  203. higpertext/kernel/application/governance.py +192 -0
  204. higpertext/kernel/application/hook_registry.py +102 -0
  205. higpertext/kernel/application/hook_renderer.py +720 -0
  206. higpertext/kernel/application/ports.py +49 -0
  207. higpertext/kernel/application/profile_learner.py +358 -0
  208. higpertext/kernel/application/profile_service.py +205 -0
  209. higpertext/kernel/application/profile_services.py +6 -0
  210. higpertext/kernel/application/profile_use_cases.py +93 -0
  211. higpertext/kernel/application/rag_service.py +75 -0
  212. higpertext/kernel/application/roadmap_reporter.py +178 -0
  213. higpertext/kernel/application/semantic_engine.py +258 -0
  214. higpertext/kernel/application/session_services.py +33 -0
  215. higpertext/kernel/application/skill_hook_compiler.py +85 -0
  216. higpertext/kernel/application/telemetry.py +326 -0
  217. higpertext/kernel/application/workflow_manager.py +176 -0
  218. higpertext/kernel/config_paths.py +66 -0
  219. higpertext/kernel/domain/__init__.py +12 -0
  220. higpertext/kernel/domain/agent_registry.py +23 -0
  221. higpertext/kernel/domain/commit_reporter.py +155 -0
  222. higpertext/kernel/domain/compilers.py +7 -0
  223. higpertext/kernel/domain/context_engine.py +319 -0
  224. higpertext/kernel/domain/entities.py +51 -0
  225. higpertext/kernel/domain/env_runtime.py +62 -0
  226. higpertext/kernel/domain/governance.py +198 -0
  227. higpertext/kernel/domain/hook_models.py +29 -0
  228. higpertext/kernel/domain/profile_learner.py +186 -0
  229. higpertext/kernel/domain/rag.py +70 -0
  230. higpertext/kernel/domain/repositories.py +8 -0
  231. higpertext/kernel/domain/roadmap_reporter.py +80 -0
  232. higpertext/kernel/domain/semantic_engine.py +107 -0
  233. higpertext/kernel/engine.py +42 -0
  234. higpertext/kernel/htx_resolver.py +69 -0
  235. higpertext/kernel/infrastructure/__init__.py +13 -0
  236. higpertext/kernel/infrastructure/agent_registry.py +40 -0
  237. higpertext/kernel/infrastructure/cache/capability_cache.py +319 -0
  238. higpertext/kernel/infrastructure/capability_helper.py +40 -0
  239. higpertext/kernel/infrastructure/cli/__init__.py +1 -0
  240. higpertext/kernel/infrastructure/cli/agent_commands.py +62 -0
  241. higpertext/kernel/infrastructure/cli/arguments.py +39 -0
  242. higpertext/kernel/infrastructure/cli/capability_command_builder.py +86 -0
  243. higpertext/kernel/infrastructure/cli/capability_task_service.py +234 -0
  244. higpertext/kernel/infrastructure/cli/cli_search.py +234 -0
  245. higpertext/kernel/infrastructure/cli/parameter_contracts.py +83 -0
  246. higpertext/kernel/infrastructure/cli/parser_builder.py +122 -0
  247. higpertext/kernel/infrastructure/cli/profile_commands.py +89 -0
  248. higpertext/kernel/infrastructure/cli/roadmap_commands.py +117 -0
  249. higpertext/kernel/infrastructure/cli/router.py +1110 -0
  250. higpertext/kernel/infrastructure/cli/session_commands.py +36 -0
  251. higpertext/kernel/infrastructure/cli/task_commands.py +23 -0
  252. higpertext/kernel/infrastructure/cli/task_result_reporter.py +56 -0
  253. higpertext/kernel/infrastructure/cli/workflow_commands.py +25 -0
  254. higpertext/kernel/infrastructure/compilers/__init__.py +3 -0
  255. higpertext/kernel/infrastructure/compilers/factory.py +27 -0
  256. higpertext/kernel/infrastructure/compilers/graph_compiler.py +20 -0
  257. higpertext/kernel/infrastructure/compilers/guide_compiler.py +50 -0
  258. higpertext/kernel/infrastructure/compilers/hook_compiler.py +69 -0
  259. higpertext/kernel/infrastructure/compilers/playbook_compiler.py +154 -0
  260. higpertext/kernel/infrastructure/context_engine.py +303 -0
  261. higpertext/kernel/infrastructure/database/local_vector_store.py +99 -0
  262. higpertext/kernel/infrastructure/deployment/__init__.py +1 -0
  263. higpertext/kernel/infrastructure/deployment/resource_deployer.py +283 -0
  264. higpertext/kernel/infrastructure/diagnostics/__init__.py +1 -0
  265. higpertext/kernel/infrastructure/diagnostics/health.py +191 -0
  266. higpertext/kernel/infrastructure/env_runtime.py +227 -0
  267. higpertext/kernel/infrastructure/execution/__init__.py +1 -0
  268. higpertext/kernel/infrastructure/execution/parallel.py +188 -0
  269. higpertext/kernel/infrastructure/execution/resilience.py +155 -0
  270. higpertext/kernel/infrastructure/file_repositories.py +213 -0
  271. higpertext/kernel/infrastructure/governance.py +198 -0
  272. higpertext/kernel/infrastructure/hook_config_loader.py +53 -0
  273. higpertext/kernel/infrastructure/hook_webhook_dispatcher.py +61 -0
  274. higpertext/kernel/infrastructure/hook_workflow_bridge.py +60 -0
  275. higpertext/kernel/infrastructure/llm/__init__.py +6 -0
  276. higpertext/kernel/infrastructure/llm/provider.py +46 -0
  277. higpertext/kernel/infrastructure/llm/providers/__init__.py +0 -0
  278. higpertext/kernel/infrastructure/llm/providers/anthropic_provider.py +94 -0
  279. higpertext/kernel/infrastructure/llm/providers/gemini_embeddings.py +74 -0
  280. higpertext/kernel/infrastructure/llm/providers/gemini_provider.py +101 -0
  281. higpertext/kernel/infrastructure/llm/providers/ollama_provider.py +110 -0
  282. higpertext/kernel/infrastructure/llm/providers/openai_provider.py +98 -0
  283. higpertext/kernel/infrastructure/llm/registry.py +81 -0
  284. higpertext/kernel/infrastructure/logger.py +303 -0
  285. higpertext/kernel/infrastructure/output_store.py +70 -0
  286. higpertext/kernel/infrastructure/parser/__init__.py +1 -0
  287. higpertext/kernel/infrastructure/parser/code_chunker.py +144 -0
  288. higpertext/kernel/infrastructure/parser/language/__init__.py +14 -0
  289. higpertext/kernel/infrastructure/parser/language/base.py +41 -0
  290. higpertext/kernel/infrastructure/parser/language/powershell_parser.py +35 -0
  291. higpertext/kernel/infrastructure/parser/language/python_parser.py +98 -0
  292. higpertext/kernel/infrastructure/parser/language/typescript_parser.py +91 -0
  293. higpertext/kernel/infrastructure/parser/semantic_graph.py +409 -0
  294. higpertext/kernel/infrastructure/presentation/__init__.py +1 -0
  295. higpertext/kernel/infrastructure/presentation/html_renderer.py +137 -0
  296. higpertext/kernel/infrastructure/presentation/markdown_renderer.py +84 -0
  297. higpertext/kernel/infrastructure/presentation/markdown_report_renderer.py +97 -0
  298. higpertext/kernel/infrastructure/profile_store.py +28 -0
  299. higpertext/kernel/infrastructure/semantic_engine.py +289 -0
  300. higpertext/kernel/infrastructure/telemetry_reporter.py +132 -0
  301. higpertext/kernel/infrastructure/validation/__init__.py +1 -0
  302. higpertext/kernel/infrastructure/validation/contract_validator.py +163 -0
  303. higpertext/kernel/pkg_resources.py +38 -0
  304. higpertext/kernel/session_manager.py +319 -0
  305. higpertext/templates/env/generic-shell.yaml +21 -0
  306. higpertext/templates/env/node-vitest.yaml +27 -0
  307. higpertext/templates/env/python-pytest.yaml +29 -0
  308. higpertext/templates/html/commit_body.html +20 -0
  309. higpertext/templates/html/commit_diff.html +4 -0
  310. higpertext/templates/html/commit_index.html +29 -0
  311. higpertext/templates/html/commit_layer.html +11 -0
  312. higpertext/templates/html/commit_shell.html +28 -0
  313. higpertext/templates/html/graph_visualize.html +86 -0
  314. higpertext/templates/html/roadmap_body.html +12 -0
  315. higpertext/templates/html/roadmap_phase.html +5 -0
  316. higpertext/templates/html/roadmap_shell.html +29 -0
  317. higpertext/templates/markdown/commit_report.md +18 -0
  318. higpertext/templates/markdown/efficiency_report.md +12 -0
  319. higpertext/templates/markdown/roadmap_report.md +25 -0
  320. higpertext/templates/skills/best-practices.md +7 -0
  321. higpertext/templates/skills/clean-code.md +8 -0
  322. higpertext/templates/skills/ddd-standards.md +7 -0
  323. higpertext/templates/skills/tdd-practices.md +7 -0
  324. higpertext/templates/subagents/architect.md +7 -0
  325. higpertext/templates/subagents/test-engineer.md +7 -0
  326. higpertext/templates/workflows/build.json +23 -0
  327. higpertext/templates/workflows/compact.json +21 -0
  328. higpertext/templates/workflows/plan.json +59 -0
  329. higpertext/templates/workflows/review.json +26 -0
  330. higpertext/templates/workflows/spec.json +27 -0
  331. higpertext_cli-0.8.0.dist-info/METADATA +35 -0
  332. higpertext_cli-0.8.0.dist-info/RECORD +335 -0
  333. higpertext_cli-0.8.0.dist-info/WHEEL +5 -0
  334. higpertext_cli-0.8.0.dist-info/entry_points.txt +2 -0
  335. higpertext_cli-0.8.0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,335 @@
1
+ config/adapters_config.json,sha256=04BjI8_vjsN21ESRHAs8IsujfmhGrppYoOTTh6FPJD4,21436
2
+ config/antigravity_agent_template.json,sha256=hnCRuLDceOnL4CHuzZ8aOn1IA8bJ4m8y70K4Yo_6PuY,707
3
+ config/app_config.json,sha256=9gkTcyI7_xd0egtqbx0HEXLrr-gXN7GXWgQJva2pSKg,5574
4
+ config/context_engine.json,sha256=QW-cp0-H24AWNRsRxEn6OgI_wfkAH3XnJNiTTFagsBM,1155
5
+ config/htx_config.json,sha256=PmjSfqPPqf3N4lLZiDCkFWoJfWBI2hD7AJGEXz57pCA,813
6
+ config/profile_learner.json,sha256=zG7Km-wlCAunSib77Zq6Z6vU2VmA37dBG9cNdvw3qOI,505
7
+ config/router_content.json,sha256=hCMNoBaDxA4Ljyn5ajWA1TY1HeKQ3ZS6FQSEx8ss-S8,5324
8
+ config/semantic_graph.json,sha256=vGScHQLPI9fdVDw3vlZzZsGoOpav0enbvUYHyWUgjBs,2514
9
+ config/environments/model_defaults.json,sha256=VUmxK0HeGyZC1uu8shbufUeZCXcy77roH9ZbSOVJEL0,209
10
+ config/governance/branching_strategy.json,sha256=bthghdio3pkNvN_FGpICQqGaqS0nA2fz5Tlv1ZmtNpk,1288
11
+ config/governance/deployment_gates.json,sha256=rFOpZHbdpUjA1ADt6UGER-B1ZXXbE80jb8SNKbSydWQ,927
12
+ config/governance/guidelines_contract.json,sha256=Ac8O3ozpbOmLgQoteNWCLt0wNU9ORhnrEYxsJKOkmBw,3203
13
+ config/governance/quality_gates.json,sha256=tMAbpSao0zKWsPCMCOBe1qZCaLQRCvEfrECZUUbscac,1068
14
+ config/governance/section_rules.json,sha256=rEnyEglW8JDB2AZDwB_pCafkwcR-a24IQTciaG_VW9o,1272
15
+ config/governance/security_guardrails.json,sha256=kpivdISqN_pJLQX-etQL6PiIqZyjbE2HvZ4DBrRTv74,3766
16
+ config/hooks/README.md,sha256=hkM2dgeb9TRutXqXosgSPFelyugLB9Q-119C4KqsPBw,969
17
+ config/hooks/custom/test_output_limiter.json,sha256=YspA9yrW8gpRGS3GGzxz_mOuNoo4YjdMCtk3cOWGoOE,321
18
+ config/hooks/global/session_prompt.json,sha256=EUR6ZQsNdwUDsffr6U5XvMxGja6s1h1BpQqS_2CKLpU,290
19
+ config/profiles/base_agent.json,sha256=SWXmXgodUMhQBoX2fWOpR5FgsfD5_Rz2o005zNqtV_0,1771
20
+ config/profiles/base_auditor.json,sha256=a5JO-MYS9d7hevJoxzD8FCKQa35YgsNebIgbgFklha4,754
21
+ config/profiles/base_developer.json,sha256=SG8hW46iE1L14V5wqBa2-xTCX03hUbQ3VssyYqB4YGA,1093
22
+ config/profiles/base_operator.json,sha256=jYhZO4usslKqO3eBXRRuO3j8t6WshNqTi_cpz_uB-Cw,645
23
+ config/profiles/global.json,sha256=Z4cRN8XARowTBOjdh-zyYOegjJCNWhEI6ju1imNpims,1128
24
+ config/profiles/software_developer.json,sha256=oRtzmcpRuhWKGfbllyNHo_-GA7ammIsDcNxk0S_JiJk,671
25
+ config/workflows/ado_release_flow.json,sha256=0Q-riW6WGcCcpprqrO2F1t0TdzpgdY3ld4th0PEK4XE,1270
26
+ config/workflows/docs-update.json,sha256=VbjKtxQeQ8GISd2guraxZi0z8xCOv3v2ahFd0NwzyF4,1125
27
+ config/workflows/governance-check.yaml,sha256=ySBMhIMTXRpm2LEbSrHkbQaH3IJjiANmLoLh-DVY5Ic,766
28
+ config/workflows/guidelines-sync.json,sha256=86_ha0ic5DGyrPkcsozCJe760ICn5LCy3EgKJjRV7Z4,1632
29
+ config/workflows/higpertext-build.json,sha256=yIPIMljc_AChdtu2Y3SK_5QrL1IdNCrupMvuRird_r4,2299
30
+ config/workflows/higpertext-plan.json,sha256=rejdHGziTUWK7_ShfSO4CYMqw9Q7EJz0WAR6Lw8BeD4,1098
31
+ config/workflows/higpertext-review.json,sha256=gDDflOJ5m0uzaRAUl3CiG1oKom-AsWy4vRcgtBZRDEM,1188
32
+ config/workflows/pr-quality-check.json,sha256=avCcgw7kBKckvI7xYy7MYYg8DIBqitpDu2yJkcIolVs,2032
33
+ config/workflows/quality-remediation.json,sha256=g56d3h-QnPT-crOhtBNuvdOcgGhln55D6XoGo0IlpHo,1986
34
+ higpertext/__init__.py,sha256=tlXmGQFeMeZbZoP2J8YY7CRstncprfW8xXDiEchaYxA,560
35
+ higpertext/adapters/__init__.py,sha256=VGDuw5Xg-ujcc1EjFRZw5D05hX8K2BuVnTeAQbrt4nU,781
36
+ higpertext/adapters/adapter_utils.py,sha256=YWeWOsnEwhXmgSDlEtLFs1B4xVpdLVmKOJlcsE4zANY,23331
37
+ higpertext/adapters/llm_formatter.py,sha256=b27cnBIDlcgGmcfomaDJbOP7ARFymQSFPbGrEaXcCrw,1941
38
+ higpertext/adapters/claude_adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ higpertext/adapters/claude_adapter/claude_adapter.py,sha256=Z30wpOyeXDFVwNV_mGx3XSe24i5Lptb1rw_pe-uunas,5143
40
+ higpertext/adapters/copilot_adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ higpertext/adapters/copilot_adapter/copilot_adapter.py,sha256=GV6T-VB_ekip-jrQLHEr60xIOUw2LCBt90vgPIpqQGo,8988
42
+ higpertext/adapters/gemini_adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ higpertext/adapters/gemini_adapter/gemini_adapter.py,sha256=tqIMvEdwmbz9OUqWQFPn-EIak-dAeBZ3KBSiYF4n7O4,8817
44
+ higpertext/adapters/open_code_adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ higpertext/adapters/open_code_adapter/open_code_adapter.py,sha256=_lOixhWDtXstwd8lDUCKmmWPn63r5qdVxOua6MzQuaI,20006
46
+ higpertext/capabilities/capabilities_runner.py,sha256=5YTdXDxAEZoT1nuNDRQn-jxZnwdPn4ZUA4e9K5pThJc,9964
47
+ higpertext/capabilities/common/agent-builder.json,sha256=vyDaf97kDM7JsSteh0gD1U50nfLa4CKCBUzciafaZsM,2712
48
+ higpertext/capabilities/common/agent-sync.json,sha256=c_ubHg4KjquiEHe6pQkmNLabigWIs_iEVl1_p7LD0jM,917
49
+ higpertext/capabilities/common/code-skeletonizer.json,sha256=4rwJu549K5hNSwavwIVDUmQvoOO5zJW_VzXwp6eZ244,1855
50
+ higpertext/capabilities/common/commit-report.json,sha256=FN57CpNyZZmJfOENK4hPn73ADynUP0zvZ1--DP7FjWs,1815
51
+ higpertext/capabilities/common/context-assembler.json,sha256=mXb1ppflB3m67wDB39e1EFdE-ODsOoxk03dgEtrguAo,1766
52
+ higpertext/capabilities/common/context-budget-report.json,sha256=MWVrX6oWueYLQwj6_BIVf6jO17QjbXaVyRJb79RN8S0,969
53
+ higpertext/capabilities/common/dep-manager.json,sha256=IpNTr4ljjFtsOUyhTDmiLrZPPZEQ_UbuBE0x3GBTM8o,1681
54
+ higpertext/capabilities/common/docs-sync.json,sha256=MSLVa3K44KRbL9lmZJ_csOY9E9b3NcimpUa0Tftx-SQ,649
55
+ higpertext/capabilities/common/doctor.json,sha256=03ud7JPMn1SgvykOxendTCoDJgn08pxKRXtEJogibU8,629
56
+ higpertext/capabilities/common/efficiency-meter.json,sha256=_iFwb4Sz-LdyB4Y_OpvT-Qr4rqFZIQpo_-Q8o2lqdQA,1446
57
+ higpertext/capabilities/common/env-catalog.json,sha256=W1sfb-zayhe1ULDhYfAAdRcWUXWe7O3CQO26p6sg2hk,702
58
+ higpertext/capabilities/common/env-clean.json,sha256=8eR-KnQHeJlbI5gUdMfQCTyuZ2lPUIDEd_fM0DJi23U,771
59
+ higpertext/capabilities/common/env-logs.json,sha256=ukOYkFky0j-uMM6ldvqzxRxj3mv5fH3skxz9i5RUVqo,932
60
+ higpertext/capabilities/common/env-runner.json,sha256=2q0FlnBiv2PB7q-WEWG0zJVcKjZl2f-fVSkWYa13d3Y,1869
61
+ higpertext/capabilities/common/env-status.json,sha256=KK4siboe6JMdwnoogJ_EzJ-5x9WMtYZn5nGbN4v84ro,599
62
+ higpertext/capabilities/common/env-stop.json,sha256=JHZ67KCZkOgL1YYK9tKaHxwaoNUYSNKwfqaInRAuIO0,671
63
+ higpertext/capabilities/common/env-template.json,sha256=UJp1PBtL-jpVxZJ6WQ3Y87jWh2XrAZWZ3nllAbN11_0,726
64
+ higpertext/capabilities/common/error-context-locator.json,sha256=9NOWb_mQAY0gQ6bkIK6P-FDsYHSlbg33RkINADHG3R8,1243
65
+ higpertext/capabilities/common/eval-agent.json,sha256=zUhD-Ql94m0o8MVR-7Ql9x3WIH2zMqJdSGVpz06To_8,1347
66
+ higpertext/capabilities/common/file-map.json,sha256=my32iuxi-Zd9_bKY_SrCs_FTtf9vEZzRrqmocwvmxyg,1242
67
+ higpertext/capabilities/common/governance-exception.json,sha256=-vRm3ODPKwAMMowWoP9L_1bLxCeLNFW4rg1zSZqUBIM,1709
68
+ higpertext/capabilities/common/graph-query.json,sha256=RWeUM96hj7XU4eReyjQ2PKf_Nus282gO5DOQCk7IhBI,2280
69
+ higpertext/capabilities/common/graph-rebuild.json,sha256=iwXgqhu8kyerPUjkfvbqGWv57kcK2XGkj-wGUpdScOo,1316
70
+ higpertext/capabilities/common/graph-visualize.json,sha256=XQ2im65HD6V2gUzC5q4geh8tgyVKWqM1VUK1V3hZ2rA,1606
71
+ higpertext/capabilities/common/grep-search.json,sha256=R4XZXshvcZitwRW8TY14ne34PiQrT4ENKjLN8-B0Mz0,8091
72
+ higpertext/capabilities/common/higpertext-tester.json,sha256=AaFF63XFqQUGQYYENSWUApPZDXqvXzoS_HogTun-Dtc,930
73
+ higpertext/capabilities/common/hook-health.json,sha256=3mQwfR_DiyPqw74gLjtfNJXq-2SiY3i4j_w-fmWhm4U,858
74
+ higpertext/capabilities/common/hook-sync-check.json,sha256=4aectLVkQvc922G6pvtKSjOq9QAACUX8ZogpunKzz4E,730
75
+ higpertext/capabilities/common/hooks-manager.json,sha256=DapfsNhp8w58O5b2zCDjvFCDy60uNERZO_GmKn3Kgyg,2138
76
+ higpertext/capabilities/common/knowledge-asker.json,sha256=7wvOTggfrDofdiv2urw6gpClgKuRs8_ZWUt1f7Ix3LQ,1212
77
+ higpertext/capabilities/common/list-rules.json,sha256=vBHeA2lcjadnWIug2qbG18NntlhXqPSU_w2DE6eTdUw,1221
78
+ higpertext/capabilities/common/llm-invoke.json,sha256=kf0owuuvd4TOkHR28ZTRksa9zG87EhxTGvva1BH24wI,2180
79
+ higpertext/capabilities/common/load-rules.json,sha256=NM3D4406T4Fmjw1qZso5N3ZP-apjKFe9aCkhkiCR3TQ,2033
80
+ higpertext/capabilities/common/memory-manager.json,sha256=5-oqR0JHIGkabzNvvo4EnEsyr4P3Sha8Hhd7Kfjrw9I,2113
81
+ higpertext/capabilities/common/quality-scan.json,sha256=s_8miymxmZuV0nbZZgcZZMBPZjq8Dmd21wTsbA45ODQ,1134
82
+ higpertext/capabilities/common/quality-updater.json,sha256=K-j6dJTmzgMfHDWA88M2A4PJspTpLdYSMRIl6uWsyH8,1424
83
+ higpertext/capabilities/common/rag-index.json,sha256=YDjrKLbIb0UW1_umfKJfyZjlqJbRjcFb-7XAWsE6GDo,597
84
+ higpertext/capabilities/common/report-viewer.json,sha256=Pf4qN9IuRMap2UxdUmxJ7xegtz9wrlj7CGQeat9F6FM,987
85
+ higpertext/capabilities/common/roadmap-report.json,sha256=un-p48f2kpK0JilD9jpYxk2tbZOpsVdpWEDHMW7TGPc,1566
86
+ higpertext/capabilities/common/search-router.json,sha256=wAMTrSUnOsnJcEwuM_DWInVp2z581-QgrozdRjTA24k,1367
87
+ higpertext/capabilities/common/semantic-diff.json,sha256=3O-uXEXqGgY6-6Gr4vA9nK5OGUF5-0H1M1cbF29ILCM,1511
88
+ higpertext/capabilities/common/semantic-search.json,sha256=vkk9t5CvZ6oQXZXTPyR0Nook9guJWRTm7xn7ihRy5EA,799
89
+ higpertext/capabilities/common/session-clean.json,sha256=rQZYUiiEP7yxuhLYUKX6l6IZgDqx74-RKE3rEbEGFbY,600
90
+ higpertext/capabilities/common/session-start.json,sha256=4GM1U_UHILtd9bzoFjFOQkFKNygEwWGM8zEg4IViucc,1396
91
+ higpertext/capabilities/common/smart-read.json,sha256=rx5xFCSHp_dsEt3BsblzZahXeEgmCucsnrrDuOijRq8,1847
92
+ higpertext/capabilities/common/subagent-executor.json,sha256=Le1Z1ib2iBRzkk86ndwMxNIpYrT2luYf2gWF8rnt0JI,779
93
+ higpertext/capabilities/common/sync-agents.json,sha256=pk3Dv7GFriMKxyoBq2W04T3-Og11vWDCCXbhAThV2MQ,1381
94
+ higpertext/capabilities/common/task-decomposer.json,sha256=Fe_RUK8uHoJkWSba1ar0-blhsAG1YB3SoV7-TFU3ZAk,1685
95
+ higpertext/capabilities/common/telemetry-report.json,sha256=qTDC-iNLYb4zDlH5dS6m_nLmjVJi39YW-rM19QpY14E,871
96
+ higpertext/capabilities/common/scripts/_env_cli.py,sha256=gjtM4HTm0vKBpsEhgRC31QFu6gKNJy0sdx-rr-7BIhY,2524
97
+ higpertext/capabilities/common/scripts/agent_builder.py,sha256=CulXDXTxO7nX3a7t_mP7HV8pzzsfk_yHu9Co6pXxD5Y,1861
98
+ higpertext/capabilities/common/scripts/agent_sync.py,sha256=CfS2-cXHXF9oF3yapxvaG-reWtmsY1QrRM2z6ffCehg,2044
99
+ higpertext/capabilities/common/scripts/ask_higpertext.py,sha256=nAiMr1kg_56RxTrT74cBoqrMKABzCP6MyRv53ysWbrc,1105
100
+ higpertext/capabilities/common/scripts/code_skeletonizer.py,sha256=b0kIorkixEddlTA4GeDdKnBVi62i52RDGsqDGvgFBVQ,7666
101
+ higpertext/capabilities/common/scripts/commit_report.py,sha256=Tl-I0pH_hR91E-eHz7540QNK968GqCBB4cukIBRCqu0,5081
102
+ higpertext/capabilities/common/scripts/context_assembler.py,sha256=NsZ8u7pBmd8bm2jxqOwyGUk4yKq2zH_W6H8fS5WCTII,2396
103
+ higpertext/capabilities/common/scripts/context_budget_report.py,sha256=s0boreh8ku2EwBMS6_NArhr1rUl9_cbLVJ14FnRkNBY,2143
104
+ higpertext/capabilities/common/scripts/dep_manager.py,sha256=dyNAAIhw8hDLMlTkpMPGySFn2nG1Sg8zyKWRmvOHFLU,2780
105
+ higpertext/capabilities/common/scripts/docs_sync.py,sha256=fjv9vJ3PhFxFp8NuOR6Vbt_Q_crPbaO8emuLNGVOIGQ,38355
106
+ higpertext/capabilities/common/scripts/doctor.py,sha256=pruDIiSb8y-Nzy68GKs5csqkvIr6qjnMDUcqR_ILY-Y,5227
107
+ higpertext/capabilities/common/scripts/efficiency_meter.py,sha256=gdMsTH6El_QkWZZxDa-OHDJ0-ey2ANQrpkiHik00tRo,3079
108
+ higpertext/capabilities/common/scripts/env_catalog.py,sha256=jLU2o-K4pQADASBnyCc1FzK97dyusyN1dGUj5PnwF3k,2020
109
+ higpertext/capabilities/common/scripts/env_clean.py,sha256=quxQDFvK3C9IXE6XoTH_CRnzT2yp4ZSfj58BhguJet8,830
110
+ higpertext/capabilities/common/scripts/env_logs.py,sha256=nWSfPNSYa9bhZSVA7dJH4ViqvMwavsHfgS1BXG2JITE,961
111
+ higpertext/capabilities/common/scripts/env_runner.py,sha256=8T-6k41f0MSF-YhcCkLKbVHQIGiao4ptcBh8EAhLhE0,1692
112
+ higpertext/capabilities/common/scripts/env_status.py,sha256=4OrnKbIqlewV4xNlFQhbGsjehMOiYyGh-DTd1DnGqvM,1395
113
+ higpertext/capabilities/common/scripts/env_stop.py,sha256=pmwPDkAQ9IDjgXazHYqlLdN2KRoGMhf1nCZEhGgGsak,754
114
+ higpertext/capabilities/common/scripts/env_template.py,sha256=uzqVybgfULbNSg_38H0phzMi7DRADS68TPQdpw9NE0M,2028
115
+ higpertext/capabilities/common/scripts/error_context_locator.py,sha256=Iht601mD2jJ16GGx-ln2d91G6EpZgYF3K1eiP-ugjYM,5386
116
+ higpertext/capabilities/common/scripts/eval_agent.py,sha256=tNo9TqpLH73o7cXcYqH9bQpreSVnov4r3jexoUrF644,2334
117
+ higpertext/capabilities/common/scripts/file_map.py,sha256=hfLxBVItk4I6RNU3VAKLp3W5PIAM1XHO4czMmOFWU7M,4538
118
+ higpertext/capabilities/common/scripts/governance_exception.py,sha256=WeCSF6vRkwID3BfjX2ZVjpt-RxWgwPn7fpYizlXM6Xc,4006
119
+ higpertext/capabilities/common/scripts/graph_query.py,sha256=Jzm5fJTkMYWloQ5IUQK4X9-Q8YBq8rkyYzD-IUmnw_o,4372
120
+ higpertext/capabilities/common/scripts/graph_rebuild.py,sha256=gnVH61swJCGZCsEEsHbxBVRTDeVhXavHSWNq6OoVcx8,4249
121
+ higpertext/capabilities/common/scripts/graph_visualize.py,sha256=UonA2I--XUU7m5GpRMZQKm8YYUeRHpcL_19cVkCkwSM,3150
122
+ higpertext/capabilities/common/scripts/grep_search.py,sha256=VAnbKzejL6VDDk7sloPsUmWs7aK-7jwubHDTWrZDaoU,21641
123
+ higpertext/capabilities/common/scripts/higpertext_tester.py,sha256=Et5pMfvLJghz5OzSW7C_hQOUx4-EaA6XWq7vbijaE1s,3691
124
+ higpertext/capabilities/common/scripts/hook_health.py,sha256=1zba-PgI1Wg-DVNWG8nIKX98TUr_9BOQZUNhwnPqyDo,5697
125
+ higpertext/capabilities/common/scripts/hook_sync_check.py,sha256=PMMTAAO3KUcB2Cxf5kJMOPHD1ZyEUBSTJEVst0luSto,4838
126
+ higpertext/capabilities/common/scripts/hooks_manager.py,sha256=Dd4DrrmeSyJdhDkFXwZgrsE-bLgBg9KI2Fgh5E21IU8,5502
127
+ higpertext/capabilities/common/scripts/list_rules.py,sha256=HGIXeseZbdx6-2DgfOkRCf0K69Ch5NToZ2rrgSwIWBU,5351
128
+ higpertext/capabilities/common/scripts/llm_invoke.py,sha256=p9Q6DiKJM7y9lOEnjBeq9mZH04FtQXjnwaHZgbnEbk8,4532
129
+ higpertext/capabilities/common/scripts/load_rules.py,sha256=pnkZO1aJOU2M2nvqza3EctYGiAQvvjCbpWEwytO3anQ,13857
130
+ higpertext/capabilities/common/scripts/memory_manager.py,sha256=E4U8S3OokPo5_6yA00y6oj7GxfCFAiiva0Ub7WT3lME,7516
131
+ higpertext/capabilities/common/scripts/presentation_engine.py,sha256=-3f_Ysa1Gq6kCeKkcg3B6dThuE9YEUndin7k6anA9e4,2290
132
+ higpertext/capabilities/common/scripts/quality_scan.py,sha256=D5jGcHXGEAjf7vUrlNMqseJTpK-3yRlVlAc9su8HIPE,4814
133
+ higpertext/capabilities/common/scripts/rag_index.py,sha256=Anxgcl_y4SHG6W3sYZA-kQCYHDAAKaJzmUaABcfw73M,1401
134
+ higpertext/capabilities/common/scripts/report_viewer.py,sha256=RZArTO1f8DxgufOwzmkzBqyEWWzMM8MhnoY3v79mp4I,3516
135
+ higpertext/capabilities/common/scripts/roadmap_report.py,sha256=9stdnzQYaIvDSyx16aijT9AyW6IZoUG4aYIKexwIm0o,3076
136
+ higpertext/capabilities/common/scripts/search_router.py,sha256=6ceJBNzKS_Ej-YN1ntbUiyI3uIl2Oh7evh5RU2llNbw,3800
137
+ higpertext/capabilities/common/scripts/semantic_diff.py,sha256=WQYhpmj30NnnYIbFRHocbbCzILDU_HtKTJcakVBTuT4,5894
138
+ higpertext/capabilities/common/scripts/semantic_search.py,sha256=HYsAbYiBZXqw5V8vi8NL82hRKFsZjqZVl-YXFinNpto,1563
139
+ higpertext/capabilities/common/scripts/session_control.py,sha256=4yQzkntwu1T-UNhCOdHcoZotK54fMFzYlc0A4uiFGa4,5144
140
+ higpertext/capabilities/common/scripts/smart_read.py,sha256=eiF4xL9jf7AeUzD-MdRCqPEmE2J-53hDX_AXus6GNYg,8109
141
+ higpertext/capabilities/common/scripts/subagent_executor.py,sha256=3BV7tlo6tpbju2gTOfonVY0p0K3eHxlp-Rs9YhE4Ohc,5432
142
+ higpertext/capabilities/common/scripts/sync_agents.py,sha256=zjJrISYgr1UXcgc9Skw5Yc_H6tllAALzsPJnjbtuLnc,13715
143
+ higpertext/capabilities/common/scripts/task_decomposer.py,sha256=MigbzSM64hb25sA-0Ghoq1Wb43zW3MmvErAUwlLk_a8,3122
144
+ higpertext/capabilities/common/scripts/telemetry_report.py,sha256=4g1brKCSupyNDeuf5nNBXQNUa7ZmakrykySEF6HLiJI,1091
145
+ higpertext/capabilities/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
+ higpertext/capabilities/git/committer.json,sha256=RclWgwjJ9yRcA_Oc5oCEwWppFkrJFg_sXJqXw8WJx54,2707
147
+ higpertext/capabilities/git/diff.json,sha256=YxpQUqZarrT8zG-AF58h3ajQseyXLU2hT1JPMLeRXM4,1601
148
+ higpertext/capabilities/git/ls-files.json,sha256=TJK-R62-fg5Y-DNK7tl98vKYkYO9Ri5CBG2h3U41-M8,3852
149
+ higpertext/capabilities/git/rm.json,sha256=8-RLMGg_gNU-0_uB2x2u8WjgSErMR-W2ndUJ4UiDQCg,1131
150
+ higpertext/capabilities/git/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
+ higpertext/capabilities/git/scripts/commit_changes.py,sha256=J7pzkwPUA_Km4juWF6njCvWnYnHM_lL84ARxxdUhT0M,37793
152
+ higpertext/capabilities/git/scripts/git_diff.py,sha256=-RPdATsM_mnbXyVpDOM8bpyHxpZJMXUu3uOK-9Ff5bQ,6241
153
+ higpertext/capabilities/git/scripts/git_ls_files.py,sha256=fK53lvnwKB91Me2IZEN8w9UY2K--k_O_PPm6HWyQE1o,12749
154
+ higpertext/capabilities/git/scripts/git_rm.py,sha256=ytaPOEZBApk3ZxG1K__GhYrEvX8CUhf0NH0JJVHp54o,1905
155
+ higpertext/capabilities/security/k8s-auditor.json,sha256=W591kBj6DVXQLIVdx4a391Um9N05oNhcFkIZeeiz_K8,1300
156
+ higpertext/capabilities/security/secret-scanner.json,sha256=Ua5__pH0Ttpr4LBXf22lcVkwpGD8o38TQNkc6UHmK0o,1258
157
+ higpertext/capabilities/security/scripts/k8s_auditor.py,sha256=6l6QDyGLDaSYW9Mp_MkhV9TiulLVnqdk1U3Jb9xK6UQ,14899
158
+ higpertext/capabilities/security/scripts/secret_scanner.py,sha256=B4kGe9vrizdt65wgaZEu-WcMWa6ElxxmCdzTKRUaTG0,8893
159
+ higpertext/hooks/__init__.py,sha256=kKmLPH0l7YYtlqgTWf0aJY8vzqcOCfMFv_5FwlsGJdg,1001
160
+ higpertext/hooks/_compat.py,sha256=ECxRMa2cEflf4bc2R7-wtUC67dvjFlWIxZrxrX-qKpI,882
161
+ higpertext/hooks/hooks_catalog.json,sha256=Ycmtl5LoWBNIQDKgQh2g16xJMf6PceCJrZlRBiZym7o,3812
162
+ higpertext/hooks/hook_tasks/__init__.py,sha256=OUt_3V8nJGqSjAa8UnXyxsoNuJO-Yl9NNXtbbgnXuO8,60
163
+ higpertext/hooks/hook_tasks/audit_logger_hook.py,sha256=KFQlla1tW14FTULSBmGMaYjtWqbln7ZSntl2Wbv5G0s,854
164
+ higpertext/hooks/hook_tasks/hook_bash_guard.py,sha256=yUOtgugXrBd9X3tHHTCJrOwtAV8GAaQ0sschqarcI4U,2590
165
+ higpertext/hooks/hook_tasks/hook_code_quality.py,sha256=hw2bYSt_C3OM3eWPQC1eVzNa9SlKX4FzKcsPAx6GdSw,1203
166
+ higpertext/hooks/hook_tasks/hook_context_hint.py,sha256=Y-EeABCnXUIg74ruFqW7m7_Pi9WHUg7xxcykoQpZW3Q,1547
167
+ higpertext/hooks/hook_tasks/hook_context_manager.py,sha256=2YssLuMoKn9ifTx688QOrGX7_ma_hPR3cVzdlfkEqmM,1295
168
+ higpertext/hooks/hook_tasks/hook_io.py,sha256=O--HNBWLM4TOmkVKrWNkXj1bpa7v5D_uBow0X7X3vjc,3642
169
+ higpertext/hooks/hook_tasks/hook_loop_guard.py,sha256=5eEedEWsjCag08AeFrtPqck2EQPeN2H5W_lmOLMNXT4,6168
170
+ higpertext/hooks/hook_tasks/hook_post_observer.py,sha256=RrbM0qB6-i1vxa8zQPo0VziCL13yMODrFiW7RbYP0vs,1601
171
+ higpertext/hooks/hook_tasks/hook_read_guard.py,sha256=rEB_3_joPpr6IB5vNKk2Ly42UM-b52_9eVDakGATEeg,2647
172
+ higpertext/hooks/hook_tasks/hook_security_guard.py,sha256=FVuLSd887P_E62mY8Hzp3PlGImieeByIG2RrKV3icAM,2229
173
+ higpertext/hooks/hook_tasks/hook_session_prompt.py,sha256=lo162phzhPgLJ3O7FSgoPY3y9t2z8kHer8foPiFBPQQ,2572
174
+ higpertext/hooks/hook_tasks/hook_session_stop.py,sha256=4ez_gmbY4s7LwDohjRH-l9B_jZ0TP0-TWlcHGIHLx68,3914
175
+ higpertext/hooks/hook_tasks/hook_utils.py,sha256=BYYjK6DyE78h8vjt9XFP--78Qnybjo8Jb_klwIuapvQ,4883
176
+ higpertext/hooks/hook_tasks/session_guard_hook.py,sha256=s2B1WfoJcz_YUlAmy6UPLbwySzAxFdL1klqXATeHPBM,515
177
+ higpertext/hooks/hook_tasks/telemetry_utils.py,sha256=2KHxb1Nd_lVgvRspexzROL8Ou44T4Pfo_fTa50q3ZyQ,5144
178
+ higpertext/hooks/hook_tasks/test_echo_hook.py,sha256=8qchJaP2tbe38djTRXNoagBILv1pZpDl-jF_ah62uu0,777
179
+ higpertext/hooks/hook_tasks/webhook_hook.py,sha256=vfvD-K3wntBCw-V6_OvdFqF_mwEBw6x78BDHuO78wuo,1622
180
+ higpertext/hooks/hook_tasks/workflow_runner_hook.py,sha256=zm-eN3KA70FE-fqi2DZsxmz8o8Q1bve-ULSv25xCUEQ,1297
181
+ higpertext/hooks/hook_tasks/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
+ higpertext/hooks/hook_tasks/_rules/bash_rules.py,sha256=otZmA6w9wdP3l_Cvv-ioapLqfE5YZduaHjG2E4iLU1Q,22046
183
+ higpertext/hooks/hook_tasks/_rules/context_engine_rule.py,sha256=ceSFxlz9qYjvJM3KztHmfpT_upVwe0Bw8HeOdtFOGnI,3029
184
+ higpertext/hooks/hook_tasks/_rules/context_rules.py,sha256=hqgul8eJ0nC2nntRUkajtBCQkaujZjOMuU7EBMDEUk8,7937
185
+ higpertext/hooks/hook_tasks/_rules/governance_adapter.py,sha256=VqRTl3SvTjqFYRpKubW7viItLhSTNmN4gvAoooZX9Wc,2689
186
+ higpertext/hooks/hook_tasks/_rules/profile_rules.json,sha256=gn2qqR2_Yg9GtbNde5ZuQwpCCSxGzggpOmiZWVsguJA,1233
187
+ higpertext/hooks/hook_tasks/_rules/quality_rules.py,sha256=drtkSZX7J_NdPXrSG41_sX_gcDut5Gh_R0TM5eJPY4k,2945
188
+ higpertext/hooks/hook_tasks/_rules/security_rules.py,sha256=P9toMltmqqvparzgIm3YCfgUIc87cXueK2CYDwx8ups,7138
189
+ higpertext/hooks/hook_tasks/_rules/session_rules.py,sha256=02XIjsF1VPvjPUXmqunJSEXH0do5IOEW9Es4fAjEMLk,12490
190
+ higpertext/hooks/hook_tasks/_rules/telemetry_rules.py,sha256=HCLyW0bdBJ8r3_UB0Z8X6R0qhClPI9ThPh8DKk4j0G4,3739
191
+ higpertext/kernel/__init__.py,sha256=WN4jQOjjBy2l7IpezSIW4b0nvoo5LI88-yWAcJTuxWA,1819
192
+ higpertext/kernel/_compat.py,sha256=a7jLT1KUPjAGK_IlK7mX9PaGn_5xF43utl3a-0gM1QU,4418
193
+ higpertext/kernel/app_config.py,sha256=xlRKpDH1qgIz8WvFlfG7jI-FtH-dy4KN5WDwwB4ZKiw,7631
194
+ higpertext/kernel/config_paths.py,sha256=MXXszWKqzdOVNCbcSn09S5qbA5s94x1BQhowsN6HKSs,2126
195
+ higpertext/kernel/engine.py,sha256=St0jJ8QgJp8dNqNiVtjT8c27CDYNwfKSV-GNfW1Ze2c,1981
196
+ higpertext/kernel/htx_resolver.py,sha256=4el3E64_OUGGRb5WQGLd3J_wAopQyPmEOSvB4cMvXjc,2154
197
+ higpertext/kernel/pkg_resources.py,sha256=hXb2WpGsfXEkFJ1KqQaKM57rnIPMaUVtzzmQ5R9YVs0,1267
198
+ higpertext/kernel/session_manager.py,sha256=MVHtwon4VSfUMETTpxeRTF7pYfZb8hh_LnigS54U19A,12278
199
+ higpertext/kernel/application/__init__.py,sha256=K5esW-ybPBMvuYyGS-iXORbJqDSy7GV-VB2-4dBH7vc,1217
200
+ higpertext/kernel/application/agent_registry.py,sha256=1FoLd1XpLVp8Pi0D51ZpYXEZwvZpNcy8mSU8DyHosHM,4195
201
+ higpertext/kernel/application/capability_manager.py,sha256=gQHk_BORmUYnF4y75ZDFFSM2LvyGU1CM7rQbOWzKqPg,2356
202
+ higpertext/kernel/application/commit_reporter.py,sha256=ZLjq7hiKGcnfhwZ3n-Gv4ZN_pF5NhCj1l60xbWMPnYA,8634
203
+ higpertext/kernel/application/context_builder.py,sha256=fiuSuzRAkIOCRFjMt0TuSAtlW4vlP0GmEWiXh8UTh9k,6931
204
+ higpertext/kernel/application/context_engine.py,sha256=nVeJ_H7arxhZ4ocYqPrUS68K44Oaf3kwMuBTcxbemjw,15642
205
+ higpertext/kernel/application/engine.py,sha256=fXNaYCVa0ctbOQmEW-r4FG2qQ22BHR-79y5R0hCe-HE,1469
206
+ higpertext/kernel/application/env_runtime.py,sha256=RKPIKyBGod3-PfugJdOaFyPWuntkDz4VVTGLufWDNcw,6883
207
+ higpertext/kernel/application/environment_manager.py,sha256=Jz_nhrI7JkBdTSKAgB2YE7sVc0_w51WnWfydRO5ZtQc,6438
208
+ higpertext/kernel/application/governance.py,sha256=fnGoIK1q5CesznqXz6wVDvpZoHbFtJqNnwX4HeKKlig,7280
209
+ higpertext/kernel/application/hook_registry.py,sha256=P16x2JthtGDiF4fBAebP2qTLgotxcL05FVnz6QPE6d0,3861
210
+ higpertext/kernel/application/hook_renderer.py,sha256=S_HaBL1T_wcPhWyq6gE2M47G-UYYUkFPSON_9EGJa2E,28233
211
+ higpertext/kernel/application/ports.py,sha256=EFh8qRPFerQ2XRFEmDYd2N-M_HnmUB7r9wUjuFvpows,1340
212
+ higpertext/kernel/application/profile_learner.py,sha256=L4Bu5cGoMyphz3Y-1g59MmrzJytIxeV856NL-HLWZb8,12337
213
+ higpertext/kernel/application/profile_service.py,sha256=5IiobZbSfkvFEKLWJZtRc6lNg65D7IhZ0GNtQDMI7Ng,8101
214
+ higpertext/kernel/application/profile_services.py,sha256=xWWd27piwQLk7a5OZOuLL4FjxUon31xUkRFkHvDsUyI,190
215
+ higpertext/kernel/application/profile_use_cases.py,sha256=yezJiYhuUjQhR5NfswzYCo4-t0kaWKG7y_AcOKFaWQg,3226
216
+ higpertext/kernel/application/rag_service.py,sha256=B12TX3CWQ2Ndj9MRMF9UYWmSOZ8yNRDHwm_QQG-93TI,2974
217
+ higpertext/kernel/application/roadmap_reporter.py,sha256=p4JSiqsbiyVnqzJKWdr-QFdRBGbjSZDbM-Tui2liTxc,6590
218
+ higpertext/kernel/application/semantic_engine.py,sha256=63J8NjM4uwdmNkgRDtmJMB75dI3uqSCCdCgN8R0-VYg,9140
219
+ higpertext/kernel/application/session_services.py,sha256=CIqO083F-13dyXyvqI1fBJu2HJv8T_-3BNODXQrYLNQ,1193
220
+ higpertext/kernel/application/skill_hook_compiler.py,sha256=a7Q2yubwDQtO02Rnh25teLjBXn1_FebDPM1VojabuKk,3690
221
+ higpertext/kernel/application/telemetry.py,sha256=1MpVQMpJCx_eBSJ7yyr12D4DthJURim8onfBXNK2mE4,12552
222
+ higpertext/kernel/application/workflow_manager.py,sha256=Sy8Uz_N_0XtT_4GtELL2g7pOki2rqG-LOr-2ZTVrols,7177
223
+ higpertext/kernel/domain/__init__.py,sha256=OT627oTjqC41azJ5-YMyA5_Ka6X44L2M3U5h0fIkeqk,1008
224
+ higpertext/kernel/domain/agent_registry.py,sha256=w0sQRhyx1EYju0qLiAYMp_aCaO7UWCs54B4jbGUAXeU,502
225
+ higpertext/kernel/domain/commit_reporter.py,sha256=yqv9ynh8q1Ps66vr835iYaEzdh-_IkFz2y0esF6ofds,3829
226
+ higpertext/kernel/domain/compilers.py,sha256=ToZzM0BLgVDb8pygiiK2ZErtFagAytqmR9wrA8v01pY,220
227
+ higpertext/kernel/domain/context_engine.py,sha256=qdxirP5aquDdHU5K_M8JTcgudT4qAYl4vci8O4LFHfs,10440
228
+ higpertext/kernel/domain/entities.py,sha256=Y6w3vx3MSausRDmDVK11lrN_p7K-lN2zXICr34JSImo,1285
229
+ higpertext/kernel/domain/env_runtime.py,sha256=p_leHoY8GFAMDyJ0hwD2I17C1EG5itFQydXApZclD5g,1618
230
+ higpertext/kernel/domain/governance.py,sha256=FJTuWQKZRJGWSOPHQkCkTG5IfWfNq8ZteeK_qyMlFO4,5866
231
+ higpertext/kernel/domain/hook_models.py,sha256=_UMXHTSCDfBV4tNiXUTNpC6c-qidu8ihRbIduQhDBkE,891
232
+ higpertext/kernel/domain/profile_learner.py,sha256=okBgtpiQo9JwpuoEQgbSTwtQK5C0Db0Ox-vHUwnKpGs,7042
233
+ higpertext/kernel/domain/rag.py,sha256=K6nQwLORZ_UXzEV8AzkRVnjLsU9JRZ3Jf_GZt1WmCsY,1930
234
+ higpertext/kernel/domain/repositories.py,sha256=66xx1B42bkzimOLEgTA55P4DcRvPKdEgY2GCisFcbfw,242
235
+ higpertext/kernel/domain/roadmap_reporter.py,sha256=GIARVEs2yFCL2OuhgHoiBkPEtWVP1pB-B1GDAbEPra8,1930
236
+ higpertext/kernel/domain/semantic_engine.py,sha256=T6qFU0NjQRi-vNiT7ofKVZK7XVUUZ3Wk9sGnXzhQgoI,2864
237
+ higpertext/kernel/infrastructure/__init__.py,sha256=i8plKxNVV1By0OPJWw3WnsDu1zUWc27b7tztdBHbaNE,929
238
+ higpertext/kernel/infrastructure/agent_registry.py,sha256=wv-P7setBgAIvWZPJPQSLQzrG8hihbKUPehfgQMS1ic,1392
239
+ higpertext/kernel/infrastructure/capability_helper.py,sha256=xzGNackxFTEJ1x4p_ZzdlUddcHWlvBvFahmOpzwgmkA,1602
240
+ higpertext/kernel/infrastructure/context_engine.py,sha256=QpDJCkCD2DMzvGKQYflGJ7XbUa-GtkWltXTSVXaDF7M,11202
241
+ higpertext/kernel/infrastructure/env_runtime.py,sha256=B810RPNLKNfsjFpiYoP-y0BDXfnwYK-zWf50WwrYKBc,8248
242
+ higpertext/kernel/infrastructure/file_repositories.py,sha256=oCTm_qeIxCCP_KoxVVZuJSbfj0ahM4Lo18QTm60NHbk,8051
243
+ higpertext/kernel/infrastructure/governance.py,sha256=W-h2z04rSpc4odJnQBvYWPGwc7EVIHtLY7Uty9y7u78,7841
244
+ higpertext/kernel/infrastructure/hook_config_loader.py,sha256=kcOTgHkg-rFCGY19JIdEs-AZudiX4kXaj0GnEn3uF10,2093
245
+ higpertext/kernel/infrastructure/hook_webhook_dispatcher.py,sha256=UxzxVSr5fUzV6ornUoEs7DG_8o6_b9urI1-wAbZk0sY,1988
246
+ higpertext/kernel/infrastructure/hook_workflow_bridge.py,sha256=jaOiSFYbFSmWZETMu5sh9MhHB-dfaT9nsuNbP0zQfjY,2048
247
+ higpertext/kernel/infrastructure/logger.py,sha256=93-9U9KGBwQQGQqwJVfocmYCE18emfO5q7sF_qHKdJc,11781
248
+ higpertext/kernel/infrastructure/output_store.py,sha256=aFjdrtIpVJRuAgr14O3Sdk83U8aOfDdo7okJI2M6zOc,2693
249
+ higpertext/kernel/infrastructure/profile_store.py,sha256=bRcRpMRVLnFPRSgnyV8lmVkTg0MO9GDyLXnz1KrBScI,1041
250
+ higpertext/kernel/infrastructure/semantic_engine.py,sha256=HbBH_P1sg2vKoSjvfjOzBWQ3p8PGwI0wS8_eeipCRLI,10159
251
+ higpertext/kernel/infrastructure/telemetry_reporter.py,sha256=DfFjbVp_72Q9AHo2IYh-8X85knoesJbuEGL2CvsjrTY,4720
252
+ higpertext/kernel/infrastructure/cache/capability_cache.py,sha256=ApDXLIr1tMi5k2UhNSaqs4AIB_ZvyhTBgvmveC5FKtI,10727
253
+ higpertext/kernel/infrastructure/cli/__init__.py,sha256=OTBbuO8CS8HLO8s9lxWbNcvl0Cl4c5Juwbh4aUBIKn0,26
254
+ higpertext/kernel/infrastructure/cli/agent_commands.py,sha256=jmLRQwBQZoJBIulW01ibinATA_Tb8sDww72D7PM7pmo,2468
255
+ higpertext/kernel/infrastructure/cli/arguments.py,sha256=ZJ9l8SlfwDYaEsV8Qdh4ST9OteMtVaTujr3_2GfhArU,1044
256
+ higpertext/kernel/infrastructure/cli/capability_command_builder.py,sha256=oPHYhWfa1zH9ql4rRImjVWi7zMzRHVia9PCH20v7Cuo,2956
257
+ higpertext/kernel/infrastructure/cli/capability_task_service.py,sha256=yyRBESO5cyyPCnLkteYTCL_bAJ4sBQUhgiCp_9OqSfk,8793
258
+ higpertext/kernel/infrastructure/cli/cli_search.py,sha256=NOLz7mKGLhU54aO4aHb0voDjcOtP38XulhiFIoPXNNc,9554
259
+ higpertext/kernel/infrastructure/cli/parameter_contracts.py,sha256=CLFLIpA67XsEHRLNZ-8xWb1StXJk6rrSHGQaJAssSRA,2699
260
+ higpertext/kernel/infrastructure/cli/parser_builder.py,sha256=jjGRhutvJv2hPaQZEYqsX94Tcr9G8_PKrIv4J7al-aY,5464
261
+ higpertext/kernel/infrastructure/cli/profile_commands.py,sha256=ZP8UZ5C6yeIIQCSo1qehwJ0m-Xd-BjyXmPqzrs6QVgM,3403
262
+ higpertext/kernel/infrastructure/cli/roadmap_commands.py,sha256=s2vkS7o-dHD9kdEKg-ymVXew0IvwKEVpfJF2KBxxMvc,4520
263
+ higpertext/kernel/infrastructure/cli/router.py,sha256=Y2abPLXn_CEiIk5jRCTHAtzV9ARBC-Dj39g-VJyxZAU,45986
264
+ higpertext/kernel/infrastructure/cli/session_commands.py,sha256=22ZOsh1lVR0CY809NuRgA7q3klH0GzNe6KyvDL7tH0k,1287
265
+ higpertext/kernel/infrastructure/cli/task_commands.py,sha256=u--6QscMFDDqiMT8x0AIZtMSsIVKIGbyeWBn2Yame9c,692
266
+ higpertext/kernel/infrastructure/cli/task_result_reporter.py,sha256=gM_r_4wC51drZSsIpOFpCkR8rJB4W07dze7b644iA_0,1749
267
+ higpertext/kernel/infrastructure/cli/workflow_commands.py,sha256=g0qHAay_FMi8CxjufpIzsHqiXPvrwZ_7fAG9tQX7rL4,759
268
+ higpertext/kernel/infrastructure/compilers/__init__.py,sha256=d-jW0p67SfNPSnWJfEnywOyTraRAGgAYXtKxccGS3mE,110
269
+ higpertext/kernel/infrastructure/compilers/factory.py,sha256=YkOtiYFsiSAIySy5GyyevrU555UoZ80x2jsBglWeHvM,1568
270
+ higpertext/kernel/infrastructure/compilers/graph_compiler.py,sha256=Imo0CXb0SVdeOL93MfmU3jPQU3GdjxXK160vdLB2S0I,871
271
+ higpertext/kernel/infrastructure/compilers/guide_compiler.py,sha256=FACEdfLrx0vOTScXmQGjJHGMqteKLlG0Ky_fI0t4CBU,2299
272
+ higpertext/kernel/infrastructure/compilers/hook_compiler.py,sha256=NXZzddM7K7SBtsW2UBr_VlwAKwL7nzwgAFWB_p4_Tq4,3195
273
+ higpertext/kernel/infrastructure/compilers/playbook_compiler.py,sha256=VOnlW_nB_fDwJijtTpWnrjVJsfTcNMApXDrs7GG_Iqk,6267
274
+ higpertext/kernel/infrastructure/database/local_vector_store.py,sha256=R5eSiZ2wbVJQUhTCO-dj-OikhRlR45-MGpGzEvFaJt0,3528
275
+ higpertext/kernel/infrastructure/deployment/__init__.py,sha256=iXQ72XlkhCy6TFpIPYQG2a-qaPmZKPOL2iMmljqC_Ss,33
276
+ higpertext/kernel/infrastructure/deployment/resource_deployer.py,sha256=AAMCJiKEA_GJeYAJV_7njHc2gqNJDo7RMLKFDzISEfQ,11668
277
+ higpertext/kernel/infrastructure/diagnostics/__init__.py,sha256=48t9h9q94j2mcFz6CwIuksYuBkE3qmd_IQ7VgY0itE0,34
278
+ higpertext/kernel/infrastructure/diagnostics/health.py,sha256=QmQRVzppquhhiKzw6vsDrxVVCD3W5SOKYhMTjKslIuM,6158
279
+ higpertext/kernel/infrastructure/execution/__init__.py,sha256=pdCPGbXkGrJkHlMY6sYjcbbwzPzKVc1WfQQpxkhtS00,32
280
+ higpertext/kernel/infrastructure/execution/parallel.py,sha256=Rs2HR_1dFRJb5yjnylAhHOanLtNQzrVrYb6joV1Wqtk,6852
281
+ higpertext/kernel/infrastructure/execution/resilience.py,sha256=gmxujYBajdQ-LQva_cluKrTQYHzqpqBHI0eQ8LRIDzc,5299
282
+ higpertext/kernel/infrastructure/llm/__init__.py,sha256=ETDNsTqeE4GqJbxkeBvBu3nAWMgONtM6iFvEflq1FQw,218
283
+ higpertext/kernel/infrastructure/llm/provider.py,sha256=1mgrRaBfLwJjKh5hGr3xs0ObZ08xrPVVlsCfE54EFYY,1033
284
+ higpertext/kernel/infrastructure/llm/registry.py,sha256=iHdFvZIjHPQe6S-9H9xcpG52GyAVOEychx_uAFY7J-s,3009
285
+ higpertext/kernel/infrastructure/llm/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
+ higpertext/kernel/infrastructure/llm/providers/anthropic_provider.py,sha256=gZbIlQ7vv6vrNlAkmbjwKNpf3A-RqWatZteY9N-jVFs,2993
287
+ higpertext/kernel/infrastructure/llm/providers/gemini_embeddings.py,sha256=eYY46o5F5nkSs9LpUIBP8HVDXKCXULZWLMwt4kl1TXQ,2836
288
+ higpertext/kernel/infrastructure/llm/providers/gemini_provider.py,sha256=H-2oJDxm9V5lFzcwisn8t7Odet2uFcfyTUWEohbBQOQ,3196
289
+ higpertext/kernel/infrastructure/llm/providers/ollama_provider.py,sha256=P551AihKWEUTzHsAhhFeWB8BXRkcSsfpoLRGAncPfOk,3819
290
+ higpertext/kernel/infrastructure/llm/providers/openai_provider.py,sha256=UandfiLuoplV0Op1-xpe4XkB2zRwo21liGwrBR2-_VQ,3215
291
+ higpertext/kernel/infrastructure/parser/__init__.py,sha256=pT-DaReh0vShwUtGQL7RPkIPhYxxi2XwE00k5AoNmFs,29
292
+ higpertext/kernel/infrastructure/parser/code_chunker.py,sha256=cBsNYQuUTmi8IZZifawYIaUoOu16NDlowvZiCLiGJNg,5281
293
+ higpertext/kernel/infrastructure/parser/semantic_graph.py,sha256=2G24yU_lzKo-Vb-wLEbC4iHcsLfKNsB0lVdZm90qSLA,15638
294
+ higpertext/kernel/infrastructure/parser/language/__init__.py,sha256=Q_8RV3ghO6tVq_OsUBaixszTUju4eoDfzj6myGdEIAo,391
295
+ higpertext/kernel/infrastructure/parser/language/base.py,sha256=lCYYvSaow8m-8dEvsVfAEbi0vwRJV1JMTk7KqvzfpWg,1188
296
+ higpertext/kernel/infrastructure/parser/language/powershell_parser.py,sha256=suBvvv99qdp2B0Ize3h3GstrgTaeklYOcDXhuboR_mw,1049
297
+ higpertext/kernel/infrastructure/parser/language/python_parser.py,sha256=ytgDVrEcDUo3gwYFIjoq6jYPiYDJX7xD4m7VbSlGq6Y,3335
298
+ higpertext/kernel/infrastructure/parser/language/typescript_parser.py,sha256=fZNCfopJ2Nk4ArqysWMEFPGHSauLIK_lnTMXiz5w8ac,3497
299
+ higpertext/kernel/infrastructure/presentation/__init__.py,sha256=0jm9anmgBXMWpcS-9DhIObOYnmAb-TCaAOv8GblHeJ0,35
300
+ higpertext/kernel/infrastructure/presentation/html_renderer.py,sha256=VjU62xyuH2rFcFT-wPo-afyrCt0IRVPjh817isQUlWw,4136
301
+ higpertext/kernel/infrastructure/presentation/markdown_renderer.py,sha256=Ezlgcy5x6jgvsP5QeS8p1AgNoEdUc0m96nbD8cHzfUc,2797
302
+ higpertext/kernel/infrastructure/presentation/markdown_report_renderer.py,sha256=M6yAUGF_d7NDVcr5By0OpB5IljnRyFld15_8OJMt_ww,2731
303
+ higpertext/kernel/infrastructure/validation/__init__.py,sha256=YLsAJg0BRfUPSmQGTT5PKG4DSctvXr5HuMq3gihG3Ak,33
304
+ higpertext/kernel/infrastructure/validation/contract_validator.py,sha256=3-hXLwR8MO4frJ8E-yfMRHzIKsA8XiQMECzpDm5UpM0,6003
305
+ higpertext/templates/env/generic-shell.yaml,sha256=goSEWNpTyq6eRlQQs3euc-PKHTH5985nO368GzMpTLI,405
306
+ higpertext/templates/env/node-vitest.yaml,sha256=knsX1Zut0PNENE4UMr-9VElCJis40ETQDWLSOxN1Pyk,464
307
+ higpertext/templates/env/python-pytest.yaml,sha256=XR1uu8nEgjr5bLGJ0JHa5CI86X2ifRJUrgps1yaDWhw,523
308
+ higpertext/templates/html/commit_body.html,sha256=dkhePg9f0oEMXjnsf1TDlY445nBlRs7W50yB7_wW_GU,557
309
+ higpertext/templates/html/commit_diff.html,sha256=ugyMVf8_NK80ooUQ5tvDppnqMAlxbs2xsfQFQTnipIo,61
310
+ higpertext/templates/html/commit_index.html,sha256=2rPIaey5MjkfKeoDZgAIn02UeXjzJli4wUxl1RrOO_A,731
311
+ higpertext/templates/html/commit_layer.html,sha256=591iQft9VLp82o8OS3Qo54cjJMxe21-LTAxjFVTawo8,164
312
+ higpertext/templates/html/commit_shell.html,sha256=oojegnIQBVUbhW1tEwbgMbAVF-ZFSR4CAiSNaXLnLlg,1509
313
+ higpertext/templates/html/graph_visualize.html,sha256=AloNQ8iyuKzSIAsPcAjPE8ShcgMtytalBlK-4YYMdhU,3137
314
+ higpertext/templates/html/roadmap_body.html,sha256=HIbQUnlYS3jZrOFa4a25e6CUXbCpvf0NA_AfCnaLETA,511
315
+ higpertext/templates/html/roadmap_phase.html,sha256=UFB70YW2SHGUzSqq6zCXEcW5FJiovLHuci8vJDz4kbw,269
316
+ higpertext/templates/html/roadmap_shell.html,sha256=ny-y8t2Q-u7P_AN8cmVtQ78XDBR4eUvzfcLddzmi9kw,1829
317
+ higpertext/templates/markdown/commit_report.md,sha256=20jqHSrBBfjb-QXfL9ZWOyhJfiju06C914pfwHP0RR0,275
318
+ higpertext/templates/markdown/efficiency_report.md,sha256=uJg12Adwm-2Qq7MB2LedW6QeUKK-vmrrbVpk5-czRcA,455
319
+ higpertext/templates/markdown/roadmap_report.md,sha256=IGLy6GtF0b7XAc5HfEf_cUu-xT7iu9wXE1VCt8c0OGo,359
320
+ higpertext/templates/skills/best-practices.md,sha256=nDMBn482YWJznITusZ83Jfx1wCN0oHN8JLAOQNQYx9U,293
321
+ higpertext/templates/skills/clean-code.md,sha256=AutFTr7jcHHAiGIqCV3LTWQ89X53C4ZVzounEL_Ix_k,498
322
+ higpertext/templates/skills/ddd-standards.md,sha256=nSnNAHRPyFChBXPAgt46vGz-fvikaJbYcrVn5F9ZjPM,450
323
+ higpertext/templates/skills/tdd-practices.md,sha256=44j2vWNtmjbl45mkLUZI9SDfGcV37q-N6SLlAO5m6gE,375
324
+ higpertext/templates/subagents/architect.md,sha256=sSACsbbrwxVeshi4aEsUW8M_f5soC6x43RlypHvYzns,275
325
+ higpertext/templates/subagents/test-engineer.md,sha256=ZZ6sEDa-3jFY_lqHZdy8I9LGkYAj9xgy_bPqshoC2e4,305
326
+ higpertext/templates/workflows/build.json,sha256=kahw7aZOnTg7MxuGN2s1HnpPi-BuZxB2ndcasrF91_8,606
327
+ higpertext/templates/workflows/compact.json,sha256=R8flYQF8dC6WQaFE7H0p4PVKPUMwfaZb5EBhteqNqe8,823
328
+ higpertext/templates/workflows/plan.json,sha256=J6zVWZ9pVl9Y3fQ6kBiYkP6Ctgggxb9ZzLiUrs7-Ogs,2964
329
+ higpertext/templates/workflows/review.json,sha256=bW5tORKArl1HSS9LBZbjkXNiCmoRPyrLX75HXoOeru8,1188
330
+ higpertext/templates/workflows/spec.json,sha256=oNL0moEd5_HeQdg5PyuUDD926Ntr_4aMzlz4DkCrqOU,1062
331
+ higpertext_cli-0.8.0.dist-info/METADATA,sha256=GQ4--JZA9b4XyU-sBsuMvdSM8d9ZDr3kls7Ccu9wED4,1430
332
+ higpertext_cli-0.8.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
333
+ higpertext_cli-0.8.0.dist-info/entry_points.txt,sha256=3T2OOB6qu1-vEcOZOz67h3ju3ERn7IJOiI1qExcAlHQ,73
334
+ higpertext_cli-0.8.0.dist-info/top_level.txt,sha256=bHXFHwX60w66ALuf887577xiKdsJKoXeKGBtoNBc7eY,18
335
+ higpertext_cli-0.8.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ htx = higpertext.kernel.infrastructure.cli.router:main
@@ -0,0 +1,2 @@
1
+ config
2
+ higpertext