chatmcp-cli 0.1.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 (228) hide show
  1. aider/__init__.py +20 -0
  2. aider/__main__.py +4 -0
  3. aider/_version.py +21 -0
  4. aider/analytics.py +250 -0
  5. aider/args.py +926 -0
  6. aider/args_formatter.py +228 -0
  7. aider/coders/__init__.py +34 -0
  8. aider/coders/architect_coder.py +48 -0
  9. aider/coders/architect_prompts.py +40 -0
  10. aider/coders/ask_coder.py +9 -0
  11. aider/coders/ask_prompts.py +35 -0
  12. aider/coders/base_coder.py +2483 -0
  13. aider/coders/base_prompts.py +60 -0
  14. aider/coders/chat_chunks.py +64 -0
  15. aider/coders/context_coder.py +53 -0
  16. aider/coders/context_prompts.py +75 -0
  17. aider/coders/editblock_coder.py +657 -0
  18. aider/coders/editblock_fenced_coder.py +10 -0
  19. aider/coders/editblock_fenced_prompts.py +143 -0
  20. aider/coders/editblock_func_coder.py +141 -0
  21. aider/coders/editblock_func_prompts.py +27 -0
  22. aider/coders/editblock_prompts.py +174 -0
  23. aider/coders/editor_diff_fenced_coder.py +9 -0
  24. aider/coders/editor_diff_fenced_prompts.py +11 -0
  25. aider/coders/editor_editblock_coder.py +8 -0
  26. aider/coders/editor_editblock_prompts.py +18 -0
  27. aider/coders/editor_whole_coder.py +8 -0
  28. aider/coders/editor_whole_prompts.py +10 -0
  29. aider/coders/help_coder.py +16 -0
  30. aider/coders/help_prompts.py +46 -0
  31. aider/coders/patch_coder.py +706 -0
  32. aider/coders/patch_prompts.py +161 -0
  33. aider/coders/search_replace.py +757 -0
  34. aider/coders/shell.py +37 -0
  35. aider/coders/single_wholefile_func_coder.py +102 -0
  36. aider/coders/single_wholefile_func_prompts.py +27 -0
  37. aider/coders/udiff_coder.py +429 -0
  38. aider/coders/udiff_prompts.py +115 -0
  39. aider/coders/udiff_simple.py +14 -0
  40. aider/coders/udiff_simple_prompts.py +25 -0
  41. aider/coders/wholefile_coder.py +144 -0
  42. aider/coders/wholefile_func_coder.py +134 -0
  43. aider/coders/wholefile_func_prompts.py +27 -0
  44. aider/coders/wholefile_prompts.py +67 -0
  45. aider/commands.py +1665 -0
  46. aider/copypaste.py +72 -0
  47. aider/deprecated.py +126 -0
  48. aider/diffs.py +128 -0
  49. aider/dump.py +29 -0
  50. aider/editor.py +147 -0
  51. aider/exceptions.py +107 -0
  52. aider/format_settings.py +26 -0
  53. aider/gui.py +545 -0
  54. aider/help.py +163 -0
  55. aider/help_pats.py +19 -0
  56. aider/history.py +143 -0
  57. aider/io.py +1175 -0
  58. aider/linter.py +304 -0
  59. aider/llm.py +47 -0
  60. aider/main.py +1267 -0
  61. aider/mdstream.py +243 -0
  62. aider/models.py +1286 -0
  63. aider/onboarding.py +428 -0
  64. aider/openrouter.py +128 -0
  65. aider/prompts.py +64 -0
  66. aider/queries/tree-sitter-language-pack/README.md +7 -0
  67. aider/queries/tree-sitter-language-pack/arduino-tags.scm +5 -0
  68. aider/queries/tree-sitter-language-pack/c-tags.scm +9 -0
  69. aider/queries/tree-sitter-language-pack/chatito-tags.scm +16 -0
  70. aider/queries/tree-sitter-language-pack/commonlisp-tags.scm +122 -0
  71. aider/queries/tree-sitter-language-pack/cpp-tags.scm +15 -0
  72. aider/queries/tree-sitter-language-pack/csharp-tags.scm +26 -0
  73. aider/queries/tree-sitter-language-pack/d-tags.scm +26 -0
  74. aider/queries/tree-sitter-language-pack/dart-tags.scm +92 -0
  75. aider/queries/tree-sitter-language-pack/elisp-tags.scm +5 -0
  76. aider/queries/tree-sitter-language-pack/elixir-tags.scm +54 -0
  77. aider/queries/tree-sitter-language-pack/elm-tags.scm +19 -0
  78. aider/queries/tree-sitter-language-pack/gleam-tags.scm +41 -0
  79. aider/queries/tree-sitter-language-pack/go-tags.scm +42 -0
  80. aider/queries/tree-sitter-language-pack/java-tags.scm +20 -0
  81. aider/queries/tree-sitter-language-pack/javascript-tags.scm +88 -0
  82. aider/queries/tree-sitter-language-pack/lua-tags.scm +34 -0
  83. aider/queries/tree-sitter-language-pack/ocaml-tags.scm +115 -0
  84. aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +98 -0
  85. aider/queries/tree-sitter-language-pack/pony-tags.scm +39 -0
  86. aider/queries/tree-sitter-language-pack/properties-tags.scm +5 -0
  87. aider/queries/tree-sitter-language-pack/python-tags.scm +14 -0
  88. aider/queries/tree-sitter-language-pack/r-tags.scm +21 -0
  89. aider/queries/tree-sitter-language-pack/racket-tags.scm +12 -0
  90. aider/queries/tree-sitter-language-pack/ruby-tags.scm +64 -0
  91. aider/queries/tree-sitter-language-pack/rust-tags.scm +60 -0
  92. aider/queries/tree-sitter-language-pack/solidity-tags.scm +43 -0
  93. aider/queries/tree-sitter-language-pack/swift-tags.scm +51 -0
  94. aider/queries/tree-sitter-language-pack/udev-tags.scm +20 -0
  95. aider/queries/tree-sitter-languages/README.md +23 -0
  96. aider/queries/tree-sitter-languages/c-tags.scm +9 -0
  97. aider/queries/tree-sitter-languages/c_sharp-tags.scm +46 -0
  98. aider/queries/tree-sitter-languages/cpp-tags.scm +15 -0
  99. aider/queries/tree-sitter-languages/dart-tags.scm +91 -0
  100. aider/queries/tree-sitter-languages/elisp-tags.scm +8 -0
  101. aider/queries/tree-sitter-languages/elixir-tags.scm +54 -0
  102. aider/queries/tree-sitter-languages/elm-tags.scm +19 -0
  103. aider/queries/tree-sitter-languages/go-tags.scm +30 -0
  104. aider/queries/tree-sitter-languages/hcl-tags.scm +77 -0
  105. aider/queries/tree-sitter-languages/java-tags.scm +20 -0
  106. aider/queries/tree-sitter-languages/javascript-tags.scm +88 -0
  107. aider/queries/tree-sitter-languages/kotlin-tags.scm +27 -0
  108. aider/queries/tree-sitter-languages/ocaml-tags.scm +115 -0
  109. aider/queries/tree-sitter-languages/ocaml_interface-tags.scm +98 -0
  110. aider/queries/tree-sitter-languages/php-tags.scm +26 -0
  111. aider/queries/tree-sitter-languages/python-tags.scm +12 -0
  112. aider/queries/tree-sitter-languages/ql-tags.scm +26 -0
  113. aider/queries/tree-sitter-languages/ruby-tags.scm +64 -0
  114. aider/queries/tree-sitter-languages/rust-tags.scm +60 -0
  115. aider/queries/tree-sitter-languages/scala-tags.scm +65 -0
  116. aider/queries/tree-sitter-languages/typescript-tags.scm +41 -0
  117. aider/reasoning_tags.py +82 -0
  118. aider/repo.py +623 -0
  119. aider/repomap.py +847 -0
  120. aider/report.py +200 -0
  121. aider/resources/__init__.py +3 -0
  122. aider/resources/model-metadata.json +468 -0
  123. aider/resources/model-settings.yml +1767 -0
  124. aider/run_cmd.py +132 -0
  125. aider/scrape.py +284 -0
  126. aider/sendchat.py +61 -0
  127. aider/special.py +203 -0
  128. aider/urls.py +17 -0
  129. aider/utils.py +338 -0
  130. aider/versioncheck.py +113 -0
  131. aider/voice.py +187 -0
  132. aider/waiting.py +221 -0
  133. aider/watch.py +318 -0
  134. aider/watch_prompts.py +12 -0
  135. aider/website/Gemfile +8 -0
  136. aider/website/_includes/blame.md +162 -0
  137. aider/website/_includes/get-started.md +22 -0
  138. aider/website/_includes/help-tip.md +5 -0
  139. aider/website/_includes/help.md +24 -0
  140. aider/website/_includes/install.md +5 -0
  141. aider/website/_includes/keys.md +4 -0
  142. aider/website/_includes/model-warnings.md +67 -0
  143. aider/website/_includes/multi-line.md +22 -0
  144. aider/website/_includes/python-m-aider.md +5 -0
  145. aider/website/_includes/recording.css +228 -0
  146. aider/website/_includes/recording.md +34 -0
  147. aider/website/_includes/replit-pipx.md +9 -0
  148. aider/website/_includes/works-best.md +1 -0
  149. aider/website/_sass/custom/custom.scss +103 -0
  150. aider/website/docs/config/adv-model-settings.md +1881 -0
  151. aider/website/docs/config/aider_conf.md +527 -0
  152. aider/website/docs/config/api-keys.md +90 -0
  153. aider/website/docs/config/dotenv.md +478 -0
  154. aider/website/docs/config/editor.md +127 -0
  155. aider/website/docs/config/model-aliases.md +103 -0
  156. aider/website/docs/config/options.md +843 -0
  157. aider/website/docs/config/reasoning.md +209 -0
  158. aider/website/docs/config.md +44 -0
  159. aider/website/docs/faq.md +378 -0
  160. aider/website/docs/git.md +76 -0
  161. aider/website/docs/index.md +47 -0
  162. aider/website/docs/install/codespaces.md +39 -0
  163. aider/website/docs/install/docker.md +57 -0
  164. aider/website/docs/install/optional.md +100 -0
  165. aider/website/docs/install/replit.md +8 -0
  166. aider/website/docs/install.md +115 -0
  167. aider/website/docs/languages.md +264 -0
  168. aider/website/docs/legal/contributor-agreement.md +111 -0
  169. aider/website/docs/legal/privacy.md +104 -0
  170. aider/website/docs/llms/anthropic.md +77 -0
  171. aider/website/docs/llms/azure.md +48 -0
  172. aider/website/docs/llms/bedrock.md +132 -0
  173. aider/website/docs/llms/cohere.md +34 -0
  174. aider/website/docs/llms/deepseek.md +32 -0
  175. aider/website/docs/llms/gemini.md +49 -0
  176. aider/website/docs/llms/github.md +105 -0
  177. aider/website/docs/llms/groq.md +36 -0
  178. aider/website/docs/llms/lm-studio.md +39 -0
  179. aider/website/docs/llms/ollama.md +75 -0
  180. aider/website/docs/llms/openai-compat.md +39 -0
  181. aider/website/docs/llms/openai.md +58 -0
  182. aider/website/docs/llms/openrouter.md +78 -0
  183. aider/website/docs/llms/other.md +103 -0
  184. aider/website/docs/llms/vertex.md +50 -0
  185. aider/website/docs/llms/warnings.md +10 -0
  186. aider/website/docs/llms/xai.md +53 -0
  187. aider/website/docs/llms.md +54 -0
  188. aider/website/docs/more/analytics.md +122 -0
  189. aider/website/docs/more/edit-formats.md +116 -0
  190. aider/website/docs/more/infinite-output.md +137 -0
  191. aider/website/docs/more-info.md +8 -0
  192. aider/website/docs/recordings/auto-accept-architect.md +31 -0
  193. aider/website/docs/recordings/dont-drop-original-read-files.md +35 -0
  194. aider/website/docs/recordings/index.md +21 -0
  195. aider/website/docs/recordings/model-accepts-settings.md +69 -0
  196. aider/website/docs/recordings/tree-sitter-language-pack.md +80 -0
  197. aider/website/docs/repomap.md +112 -0
  198. aider/website/docs/scripting.md +100 -0
  199. aider/website/docs/troubleshooting/aider-not-found.md +24 -0
  200. aider/website/docs/troubleshooting/edit-errors.md +76 -0
  201. aider/website/docs/troubleshooting/imports.md +62 -0
  202. aider/website/docs/troubleshooting/models-and-keys.md +54 -0
  203. aider/website/docs/troubleshooting/support.md +79 -0
  204. aider/website/docs/troubleshooting/token-limits.md +96 -0
  205. aider/website/docs/troubleshooting/warnings.md +12 -0
  206. aider/website/docs/troubleshooting.md +11 -0
  207. aider/website/docs/usage/browser.md +57 -0
  208. aider/website/docs/usage/caching.md +49 -0
  209. aider/website/docs/usage/commands.md +132 -0
  210. aider/website/docs/usage/conventions.md +119 -0
  211. aider/website/docs/usage/copypaste.md +121 -0
  212. aider/website/docs/usage/images-urls.md +48 -0
  213. aider/website/docs/usage/lint-test.md +118 -0
  214. aider/website/docs/usage/modes.md +211 -0
  215. aider/website/docs/usage/not-code.md +179 -0
  216. aider/website/docs/usage/notifications.md +87 -0
  217. aider/website/docs/usage/tips.md +79 -0
  218. aider/website/docs/usage/tutorials.md +30 -0
  219. aider/website/docs/usage/voice.md +121 -0
  220. aider/website/docs/usage/watch.md +294 -0
  221. aider/website/docs/usage.md +92 -0
  222. aider/website/share/index.md +101 -0
  223. chatmcp_cli-0.1.0.dist-info/METADATA +502 -0
  224. chatmcp_cli-0.1.0.dist-info/RECORD +228 -0
  225. chatmcp_cli-0.1.0.dist-info/WHEEL +5 -0
  226. chatmcp_cli-0.1.0.dist-info/entry_points.txt +3 -0
  227. chatmcp_cli-0.1.0.dist-info/licenses/LICENSE.txt +202 -0
  228. chatmcp_cli-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,228 @@
1
+ aider/__init__.py,sha256=bfgtlXA-OCEyS_DwlfwQ9Pama5TjkcdoigbSTuHiHAs,496
2
+ aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
+ aider/_version.py,sha256=-LyU5F1uZDjn6Q8_Z6-_FJt_8RE4Kq9zcKdg1abSSps,511
4
+ aider/analytics.py,sha256=R-tSYCANejP_0C6OrxEbBilCEZQd1w98d6kfzwO34lw,7203
5
+ aider/args.py,sha256=wlyNSPaV9oegDYpvpuw0wOI-a1AtKjNeH5icmxzWekQ,29656
6
+ aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
7
+ aider/commands.py,sha256=F9bHU13VU-_qD1vWmXt6eCorE2bh94N0nUn_Ufev2wI,60505
8
+ aider/copypaste.py,sha256=J99QrXILUED_GPdEqxt7WjGZ5if8sfy0VQTzsV2jBrE,2095
9
+ aider/deprecated.py,sha256=SNeAWR7ih87F5AyFpC4pxRoJAaw8measBW583w0EUT8,4277
10
+ aider/diffs.py,sha256=y6_rxIKe3FPCIsVy_RRkHdofguYOhYBr2Oytr5AqjHI,3028
11
+ aider/dump.py,sha256=-naWnGTc0-lAe_93WxBTpunPRfzNlUK7Q5zgXOprHfA,653
12
+ aider/editor.py,sha256=_WAipJYEOx-q69mPp_hHAQ2yfeoZklBYjS0rTLxCHEA,4364
13
+ aider/exceptions.py,sha256=M-Jtq5o1XDwQ8xLM29lsW1otRGk61Z7D65XGX2ufdnY,3796
14
+ aider/format_settings.py,sha256=wHW4bLTKwqUKDGX4onxirC4cNgeJ-lHPuS1H04_R444,1041
15
+ aider/gui.py,sha256=JnHvli1JTCGHAgsOZ8HkAWOKAFxmngbyviZIJeYvjsw,17573
16
+ aider/help.py,sha256=Q8KS0G05Ick2YsVetpj9lAlNH3WjJTHg3t8sf5ZwlC0,4434
17
+ aider/help_pats.py,sha256=syn7pSVJdcf8uMKTxnZUZBQu-r8JMAi-rrC-k2er1Fk,376
18
+ aider/history.py,sha256=3xw7X9soZkzwWNAXralukn2Yt-m8yW3HMLvEqef6WGo,4559
19
+ aider/io.py,sha256=BOJ5BPUrKeVGDs8MOSHQi7J6dZzChrcQCDEGrbUW3FM,42072
20
+ aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
21
+ aider/llm.py,sha256=fGCemP1X9MBwrDfsTKGJ_1sx-yKz3DyoOvxZYOkvGak,1103
22
+ aider/main.py,sha256=GLnsWin56VsMvKHWqwOZljqOwUBRU6ViqxDrtJtiTQg,43696
23
+ aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
24
+ aider/models.py,sha256=Dac7rFvHtI6x_vR7vhMi_FU-J8C0cCComToMhXmg0Ug,44577
25
+ aider/onboarding.py,sha256=iOuEd-mLVXj0pMMKda9Zxb2dBfay4Vu5e34-5E-pc5s,16091
26
+ aider/openrouter.py,sha256=dQkyB-dYvjuYtXtkp4IfFRD8ivecgy2s-oG80IrdwCA,4641
27
+ aider/prompts.py,sha256=NyhTAz8AVIblRBUV01VSjz35UcV0wxj5yksFUwqY5Bs,2461
28
+ aider/reasoning_tags.py,sha256=VOg5wM7JSrMo47OyS1FFuLrr2cp2KyutEC4_zsUsCbY,2288
29
+ aider/repo.py,sha256=VmHi1_tf6w7MoGrFYexdpx21Ceso9UYx9QYEOK-1gQg,22958
30
+ aider/repomap.py,sha256=BpkNiZiAc1I2vT8jcBgyG-KbzXkZFMQeVUVpx7L5yt8,26514
31
+ aider/report.py,sha256=WobVDEK6YxB0GpHrF5twTfUYH5dsNWFIHFsB9lds7E8,5899
32
+ aider/run_cmd.py,sha256=9-NpSL4hlqIndf_EN1jnmWfjX7vIPbDgKgGPGRAr2Rw,4223
33
+ aider/scrape.py,sha256=PSKnBzTeiyqCTUVYCBZDC8onQ39GVnxpB0EWwv7QBs8,8325
34
+ aider/sendchat.py,sha256=Gq5A5E2kEg0MPE3tTKulhQseroXCwsGtLDH_OEHB2-4,1854
35
+ aider/special.py,sha256=OhsBWWM-DWwjWbi6kE7EqR4CiUfyJ6qJuCgcmywZSAc,4415
36
+ aider/urls.py,sha256=W0OL4pahSIZAaSUHPvn9KPN1aIkXE5nAKcizMKy4EKg,1122
37
+ aider/utils.py,sha256=8C9t5g2L0UULgt4EnVWlhF7pnQuQVhYeA7h0iUgIxvI,8809
38
+ aider/versioncheck.py,sha256=R9R1gUJYgOtmUycpJ4YqxCkCOylQBSiZ_p_BAnHJ8H4,2977
39
+ aider/voice.py,sha256=JKV-IZ7ZwL71ItfX54OmJOzPSq5ZPlGteBIunNcUkCU,6150
40
+ aider/waiting.py,sha256=55uw6FYlJNnfCVZaOQNKi_f0twzA5xcJS38fryq-agY,7646
41
+ aider/watch.py,sha256=znCZhHCBlcMm-4SRJP-B0mWfsl5q26DAd-zlk2zykQ8,10641
42
+ aider/watch_prompts.py,sha256=JHmXPZUKm1b1og22QolboU-Xie6bJWhmlbKBi2StkdI,556
43
+ aider/coders/__init__.py,sha256=pIriKxHNZSv0vAxfK2AlCKw8XQZdSMRCkhzMGs-Bd2o,1038
44
+ aider/coders/architect_coder.py,sha256=b7KqtivnllPdyMfxbnEUd9G0C1ZFaiappV25Rz0DkMs,1622
45
+ aider/coders/architect_prompts.py,sha256=TPBKqIGaT0161G1eLUY8E1Bd869rWo5-r3JLJ7OZPkw,1469
46
+ aider/coders/ask_coder.py,sha256=Omk4Ih8-prefkMZ_jnRS3faoW5CQUakHOvZ-s7piM3U,210
47
+ aider/coders/ask_prompts.py,sha256=W6HwDUfzfOLt9q8sl6rw7fN7b5ND90FkxCZrtrWl5vY,1171
48
+ aider/coders/base_coder.py,sha256=If_-byA8XO_slfy_vpn-DPdmRhnKsYUqaLC5_q9TWCM,86135
49
+ aider/coders/base_prompts.py,sha256=ozO7jvhEO7Es_n05ACbcDdoJzEz6kqV8etFvYZ2K7_0,2384
50
+ aider/coders/chat_chunks.py,sha256=8HPet6cmQdgWvaA_tGpinO4ASMst53uTcSEtNVTYDXE,1981
51
+ aider/coders/context_coder.py,sha256=Y5LdIaYHywMB03lXsmHTYsDnyHIHJ6FNZLMWa9wjArs,1571
52
+ aider/coders/context_prompts.py,sha256=lnHZal1daOWsyImJO8qk9Kqii4iFNxTRd_CuHV-llJ0,3082
53
+ aider/coders/editblock_coder.py,sha256=GiOAltp0fE7-bkeSgF9mqpZdTAbvF9XJguZUe0jXSkE,19614
54
+ aider/coders/editblock_fenced_coder.py,sha256=ZaU43k4w4jH1oQAKq-LJ3OpLSyLvT2t9apwspYjjqvg,346
55
+ aider/coders/editblock_fenced_prompts.py,sha256=2YyHKt9RaN1KpCiW9n8kGBp8oRxP1nU7KLdguM2cCbU,4415
56
+ aider/coders/editblock_func_coder.py,sha256=hVSjSz6Vz_vqmQqt2eheUAYtYMY7OV1S9BLiPTquUZs,5317
57
+ aider/coders/editblock_func_prompts.py,sha256=t5NLHkggCxZPLOAwo35fml0hYtIDn-nmIU7nRpBBlnQ,886
58
+ aider/coders/editblock_prompts.py,sha256=gHnxiLWat3w7Wuu3GCcHaBWCJ5a50jrjEfqih2xhbOo,5764
59
+ aider/coders/editor_diff_fenced_coder.py,sha256=xrv0bCCBXwdmy1CpWmqi1frlSYsnpA0TQv29M7hgT94,338
60
+ aider/coders/editor_diff_fenced_prompts.py,sha256=2ph1ftiriMEOVo1Z63oaIKofzwb0pC48GWKQ3zlzM6k,272
61
+ aider/coders/editor_editblock_coder.py,sha256=x-Df5q3xgYIxK-OIUbmgzRBW8_hgPmP4q1wcZT_09kA,306
62
+ aider/coders/editor_editblock_prompts.py,sha256=POYd6Qih0Q4lFqbN8bnDlnSL8uGnra9TbqaSazkzmbc,547
63
+ aider/coders/editor_whole_coder.py,sha256=2fi3AujESusxnNLTcKrdbt1YhkKNP7hIrRGSmXDJsj0,301
64
+ aider/coders/editor_whole_prompts.py,sha256=A7-98MjELV0a50F86Y2ZsloFxUquxr-HFafS7zCp100,279
65
+ aider/coders/help_coder.py,sha256=aQH7WTTCDUVNIOhA5-aSU00kaX6s6KaA1nAUoqlM2LU,355
66
+ aider/coders/help_prompts.py,sha256=V4TWmubkM0vQt4M1luVSjGHXNw0Fw1tTPPUh7HzOpRM,1524
67
+ aider/coders/patch_coder.py,sha256=f6-7VilMaMeYcZFQgIVWFycePo6IfZ6r9DQT5DpShBE,30288
68
+ aider/coders/patch_prompts.py,sha256=_fG1WlkrCkc3bTu-yEZhwhikjz8xUF52-1nVsjrAs7w,6053
69
+ aider/coders/search_replace.py,sha256=5Qzib7g4bt82sI2yyCf7hpl599wkobxZgVGnrCCgEkc,19813
70
+ aider/coders/shell.py,sha256=jSKol5ICraol7pAHmZu-58nhJjI13_vHieuxqNspFiY,1801
71
+ aider/coders/single_wholefile_func_coder.py,sha256=m3ufhuz8843P9HlSm7RoLONQ1AK8pRrv-W4oyG2U45s,2967
72
+ aider/coders/single_wholefile_func_prompts.py,sha256=ipzROzYhWZolmbHSxw5W-11Q2iNpyWnWAp41OsCdrIo,867
73
+ aider/coders/udiff_coder.py,sha256=xtOVArLjWNqgnz2nvQ1isk-UNo3icWa8Rjd05quCJZI,11041
74
+ aider/coders/udiff_prompts.py,sha256=lPowV4_xOj_F1Jg-X6VbRYgJbeur75PML4ar89ny3cY,3361
75
+ aider/coders/udiff_simple.py,sha256=UjovEM-j51gLRZOpEL_dFxVTPs0CMwTJJNfUIaMKiE8,452
76
+ aider/coders/udiff_simple_prompts.py,sha256=t6k8nFDQaKjdxXKwMiSNSe1BL6kAaUrgaTIPPOEr4_M,888
77
+ aider/coders/wholefile_coder.py,sha256=uPoNNeSia1wrl4oiPjwnYrtVej7hXa2OepGsJC9t1S8,5131
78
+ aider/coders/wholefile_func_coder.py,sha256=RKHzPNNdSuwogJ5rJEvCzmSoaxKx8zlPbCOtWvXv98I,4249
79
+ aider/coders/wholefile_func_prompts.py,sha256=M5-d6qRYUeRTelK5w2mQYkVfFV_caPc-qGfNHlmbmJs,868
80
+ aider/coders/wholefile_prompts.py,sha256=wFL5nOGb1impSagOiJB5JytxnIcrYJunvemUSlTPQPA,1911
81
+ aider/queries/tree-sitter-language-pack/README.md,sha256=ivZSEuWqYfUVLZl2AZZGRlm0bQsaG-VTBKBwACyM07k,291
82
+ aider/queries/tree-sitter-language-pack/arduino-tags.scm,sha256=HbgdothT9Jjk56COXTtUkVAdZ14rZNnqzLbWVLeRs5U,177
83
+ aider/queries/tree-sitter-language-pack/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
84
+ aider/queries/tree-sitter-language-pack/chatito-tags.scm,sha256=ISkmrp5gIVxoYIPnoqxxqBlZj5G9tzhwJMx6b0dEKnQ,338
85
+ aider/queries/tree-sitter-language-pack/commonlisp-tags.scm,sha256=GYJlluTPEdrxn4jpYTX5YQAqk171rVBw7IBiCygMgtw,4713
86
+ aider/queries/tree-sitter-language-pack/cpp-tags.scm,sha256=2fSqTUcc01ABMHkA0JeG8axEOEXRfEIul8UKc9_tKGI,809
87
+ aider/queries/tree-sitter-language-pack/csharp-tags.scm,sha256=KORfK3ehKor6Pf6T5iniuoQr16EcHtUe0q3XIsCjPJs,1162
88
+ aider/queries/tree-sitter-language-pack/d-tags.scm,sha256=LDP3orqZ98TTFSkV_PODEs8LspTcCqUMvKcLdZwtgkc,1420
89
+ aider/queries/tree-sitter-language-pack/dart-tags.scm,sha256=Pa_leZjxxXQO7mH_zF5o-kZ5lqVxgvbyp8oQb_nZ9KA,2267
90
+ aider/queries/tree-sitter-language-pack/elisp-tags.scm,sha256=1r8iOMM_DEpXEvlA1rE7KlhGEzcqa2W6eH4F2d1iu7Y,246
91
+ aider/queries/tree-sitter-language-pack/elixir-tags.scm,sha256=fg9TDpbCixLr8UXNcNnfgFlR3Y7d3vtzLRb3LK84UaQ,1682
92
+ aider/queries/tree-sitter-language-pack/elm-tags.scm,sha256=Wp1D5wEGzFa_2biBWRaKbghDs57lDGqqsZd7DbPkdn4,953
93
+ aider/queries/tree-sitter-language-pack/gleam-tags.scm,sha256=wdFVAkepPAZ10-5sBIVQSl45v95wZP9Foi_iYvM4YII,1416
94
+ aider/queries/tree-sitter-language-pack/go-tags.scm,sha256=TE4fQ7PtQvHKPetrhHeDqjMz01KFKFsxFjypnJMv8pI,1339
95
+ aider/queries/tree-sitter-language-pack/java-tags.scm,sha256=Xid8cnOPL1v5SOtxfq8dOi98bWrUPL7XeO8_I2qBrfE,624
96
+ aider/queries/tree-sitter-language-pack/javascript-tags.scm,sha256=0qlZIwDdsvoEGM0cYD3s2ez27FbYuz8epZAo-cLP1uI,2306
97
+ aider/queries/tree-sitter-language-pack/lua-tags.scm,sha256=lqhCVn7KnBVhW8oo_wY9me15nEBTu9BS5YlF1zUTOPs,945
98
+ aider/queries/tree-sitter-language-pack/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
99
+ aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
100
+ aider/queries/tree-sitter-language-pack/pony-tags.scm,sha256=gGNWmiHzv8Ge0HZo81tev-xIqHIQqjRxPR52G048-zs,2191
101
+ aider/queries/tree-sitter-language-pack/properties-tags.scm,sha256=AbcjxhGpG6F6lpCHs83HRXD223b-wrHQYv-i9j09wtc,135
102
+ aider/queries/tree-sitter-language-pack/python-tags.scm,sha256=KDCrM7iaUwXZ_hb2wVHrE2_EVCq_ASo3-BmbzsLtFk0,437
103
+ aider/queries/tree-sitter-language-pack/r-tags.scm,sha256=3cb2Wt-8Tt1RGBNDPgo4nI9qROf00ONNVqPHv8Th-Mk,461
104
+ aider/queries/tree-sitter-language-pack/racket-tags.scm,sha256=iri2aFEabiim-geb-t3ClDVp1Zi8T_rX1H9L0tlpqK8,224
105
+ aider/queries/tree-sitter-language-pack/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
106
+ aider/queries/tree-sitter-language-pack/rust-tags.scm,sha256=3rz1XqKaOPKPWRUNPTW5OX_TYEDj5tQZfMxBH3EMB6g,1451
107
+ aider/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=3uCJsbhwp-dVTiSsrGLt-PQ0uAnjmqUeHFPSEXd2JvM,1395
108
+ aider/queries/tree-sitter-language-pack/swift-tags.scm,sha256=ZvJcfjmUDZ9w14AXKSPPxf4gvpdE_qzBxDjfCczYrIQ,1439
109
+ aider/queries/tree-sitter-language-pack/udev-tags.scm,sha256=avj3u4prIR7o8hymHezOsqrOqjPSLGYo7C_lOL4Dxlg,417
110
+ aider/queries/tree-sitter-languages/README.md,sha256=xE2gaSTeKL13T-ebi3S_PxbPTwRQOm9ymcisZwt6-qI,2467
111
+ aider/queries/tree-sitter-languages/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
112
+ aider/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=wKyFtOFIk-kqIFB2yJBbu1VGRUhdkAnDpxo8sXubkjw,1025
113
+ aider/queries/tree-sitter-languages/cpp-tags.scm,sha256=cAFwtQk3ZKsvCVWrp1fmhSwOP8WGTCEDRR5CQuzLlY4,803
114
+ aider/queries/tree-sitter-languages/dart-tags.scm,sha256=AjxpyJIXuLjP5u3U89bhWergxus0fbUKk1x1uIHCKPw,2251
115
+ aider/queries/tree-sitter-languages/elisp-tags.scm,sha256=wjm1YYD1vgjBbh0E2CzUnmagl82Uq6-LcEojmvhiJkY,332
116
+ aider/queries/tree-sitter-languages/elixir-tags.scm,sha256=eO20nPIwI7_vq4Fob6U5RjX1wLKgn6Gglj41ITpE6eg,1605
117
+ aider/queries/tree-sitter-languages/elm-tags.scm,sha256=4qTEWJCAd7_BOfwyky0q_NYzAMtGdiq7qwo1GIhXmag,951
118
+ aider/queries/tree-sitter-languages/go-tags.scm,sha256=mHtS5NEuxWJGfVz1rq4YlJRMYVDAl5tf7iYnm6RikVE,848
119
+ aider/queries/tree-sitter-languages/hcl-tags.scm,sha256=yOVCBeF4C3ZrFG-gg0adWg2QkxylPcI2dbVeEgD7EPE,2137
120
+ aider/queries/tree-sitter-languages/java-tags.scm,sha256=7WKb-djGv0Ief6XEWQPYpfLpgJHtMPPukIUi55PegvE,627
121
+ aider/queries/tree-sitter-languages/javascript-tags.scm,sha256=svVct6pxbcYP_-xEBwzGy6t1SlN7ajkEUCivUkBZn_Q,2251
122
+ aider/queries/tree-sitter-languages/kotlin-tags.scm,sha256=ugk8v7Or3PXiBk-_HfZznwLuV-b-s3TYm03Wm3q2h_o,632
123
+ aider/queries/tree-sitter-languages/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
124
+ aider/queries/tree-sitter-languages/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
125
+ aider/queries/tree-sitter-languages/php-tags.scm,sha256=vmE5CH2N46HiQxUpR_FL41ilQqsWsigojiacWXtwTuE,714
126
+ aider/queries/tree-sitter-languages/python-tags.scm,sha256=6-npVJM6y6C1q7d6VgcfohN75_iu7QtrLnvwO_L2EmA,325
127
+ aider/queries/tree-sitter-languages/ql-tags.scm,sha256=9qVpBGSgFC9fSK4E_5sO2gYe4_jPvN-D18SD6S5lNR8,707
128
+ aider/queries/tree-sitter-languages/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
129
+ aider/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr2P9ToOyhGcKkCoN4_HPXSWi4,1451
130
+ aider/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
131
+ aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
132
+ aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
133
+ aider/resources/model-metadata.json,sha256=vV35GtccoaYaMmAbyhr4HkXbcxczs78VUjyrGLBqFkc,18397
134
+ aider/resources/model-settings.yml,sha256=NXXvuI8MIvMf8yLGiIcvxIHRqkWESGiM1EjS4X5HMmA,50237
135
+ aider/website/Gemfile,sha256=TERjHg_DN8PeMwdyY8xqy55IR-Pqc47ffRHoneo64QU,196
136
+ aider/website/_includes/blame.md,sha256=rfN9EpmSW4cytdifOd2B-G7gcfY-SgtXntkyvay8pXY,5377
137
+ aider/website/_includes/get-started.md,sha256=IxIQCMownQNDouRbDkHHzsl6q7wfh2e-zKLEK3RpKfw,435
138
+ aider/website/_includes/help-tip.md,sha256=YpVGot-cDbU-sUfePG9bcx7ArnVaT8Qc3Oj_AMxoEE0,164
139
+ aider/website/_includes/help.md,sha256=3K5UBywxEdsLhg0U_wZZJIprikgheJRZiDW_cnT8qf4,618
140
+ aider/website/_includes/install.md,sha256=U4UlUpO51yVLCIOswVSeuWKXs-CuVm1Q6rCl4_9VJcQ,63
141
+ aider/website/_includes/keys.md,sha256=ssaWa9vcbpX6ZwowwRGYMWGBJryD1RcbhtYIDu12tfk,137
142
+ aider/website/_includes/model-warnings.md,sha256=umJXFy8aZ6qdz2ZDe065X_SgqoF-AbEgsW-9rCYYkhE,1943
143
+ aider/website/_includes/multi-line.md,sha256=UmTxQsKQd9WDhJnUlzPEO3CJLMdNF80KhMDBg-cUJpk,1305
144
+ aider/website/_includes/python-m-aider.md,sha256=WGkG0J8kXt0YpzxABplhLzl5FITdYmftr-EiX5BjKl8,182
145
+ aider/website/_includes/recording.css,sha256=cTgGL0dyC39wHNZmPWi9dA_KD1EJws-COlz3XBHmKoE,5290
146
+ aider/website/_includes/recording.md,sha256=di6kaToH5B36JHdA4hJBteK75FHbEU_KrEK2OF7g5-M,939
147
+ aider/website/_includes/replit-pipx.md,sha256=9K06E2U7AT4fRkG00CMvoOI1DoNPRoKfbpOfoCq6Kcc,289
148
+ aider/website/_includes/works-best.md,sha256=bZU0inFkhHNRZcRz6DQVbuurq2-kRh-ZYSzAXjF3jYc,191
149
+ aider/website/_sass/custom/custom.scss,sha256=G_CNr2QNFpiycf_74pr6Qz8cxWtwTd0xspkToXw3-7A,1957
150
+ aider/website/docs/config.md,sha256=GAkiU8AfYWCnRdhw3KGOieC30pU_TZQ3a-Lmzae3IT8,749
151
+ aider/website/docs/faq.md,sha256=3x65IdOzYEcSGZ56YMRX-cXA0UF2So39nsSZtKCUAeA,13553
152
+ aider/website/docs/git.md,sha256=FGnjUbh5eAhStVCzsdcC0my6NuKnc4s2E-JXdEG7z4w,3758
153
+ aider/website/docs/index.md,sha256=J0qH0e9Q98HtnZos0irBb8OlZTXPty6eTF8JMPWMpGM,1819
154
+ aider/website/docs/install.md,sha256=6C8JHzDDpuYlehgu6UyVGFw-rGxnu8Ic7_ovhSSCdzg,2882
155
+ aider/website/docs/languages.md,sha256=HnMnS-aBPyyCtYp_nPa5bP6-q0QSrfRZ1My1y5AdZgY,16582
156
+ aider/website/docs/llms.md,sha256=fq0VL5uzXFBCbXRbltIcuH-AO5gB36Cw3k26nX5hcIA,1562
157
+ aider/website/docs/more-info.md,sha256=rNeoFIwC7bYcW78YaUFMnoWA8nowuNTGPo3RInPnU48,124
158
+ aider/website/docs/repomap.md,sha256=rEHIhD1mwEu1lRFVAVEY73AvEHQXvmLygMuJVbrx7sg,3900
159
+ aider/website/docs/scripting.md,sha256=0NlGXk5B-ocaf4S-cy3_LjT6jGBUWmQUFKd5Zt9VDlA,3117
160
+ aider/website/docs/troubleshooting.md,sha256=UYFgCP8zhJxGJqo4PI0-J-EB-zZ9HtRsIKfCP-qa9lg,218
161
+ aider/website/docs/usage.md,sha256=il0bjR_INRmsDTbj1MPjzvvWSiKNWfM__Ywm_qYKmp4,2563
162
+ aider/website/docs/config/adv-model-settings.md,sha256=HPcOwQzch7E2jgEPHGIjWey6wqfd9X7f4S9M13q9gRo,51773
163
+ aider/website/docs/config/aider_conf.md,sha256=hRejEwG0ZiE3IShUaws6kSTLY9MhXHam8ltosmUSLe4,14840
164
+ aider/website/docs/config/api-keys.md,sha256=uOUd9oERvYN6VzKtcsjun_7tth15AYEfRMJXT5Ne0KU,2046
165
+ aider/website/docs/config/dotenv.md,sha256=pXjmAr8b871JCcneF_GkSRy4SoF_zhx7JobrsQE0Ja0,14281
166
+ aider/website/docs/config/editor.md,sha256=ShJHfRhe1En59omZKcjFprELf85F7t8SdPh9l9y1rNk,2611
167
+ aider/website/docs/config/model-aliases.md,sha256=g7HeEwa6EvcLApXq0o7cO8qrFerBaaJSXFxQymcgCHg,3582
168
+ aider/website/docs/config/options.md,sha256=c_QS76YkiA4o6TGyDIrBIk_5XWj_ixkLlfoL-5tNp7A,26650
169
+ aider/website/docs/config/reasoning.md,sha256=gn1CVAzQ3xMcjiFTEkFRxD0PJpUFvq45tRsZY5RjCC0,7042
170
+ aider/website/docs/install/codespaces.md,sha256=a6OUtvUHkHuM0yb5WVhOMCWC-XYLkao86e6be1Hs6FM,783
171
+ aider/website/docs/install/docker.md,sha256=JNn1nchiZpm4dDjUNwbWlKN_QhKPVXf1U6sSRVdhoyw,2094
172
+ aider/website/docs/install/optional.md,sha256=tStzn9wzqd5PaxSMhzkfW2bof_h3qq32XqFTWcpQQ10,3405
173
+ aider/website/docs/install/replit.md,sha256=YyOkstz7Gv9X3UprTDVh1h4dQ_ZYWw-qDyjyfIa8Axg,86
174
+ aider/website/docs/legal/contributor-agreement.md,sha256=pyGoQFelLhWTGj3qW85OXcKssRZrh3IaQkIdgHe1_VI,6064
175
+ aider/website/docs/legal/privacy.md,sha256=pCd2AemuZMPLOxyDSpXfQrzWxB3sE0WyHM_2qaYp1Iw,8340
176
+ aider/website/docs/llms/anthropic.md,sha256=ToAquBA_qWhvrapEuEPAVk4itY5X3zEy_oKtvWg3N14,2158
177
+ aider/website/docs/llms/azure.md,sha256=xis3v2KZFtVwQ9r9LTKq5fdcj1AsevUVqyQB1tb97KQ,1443
178
+ aider/website/docs/llms/bedrock.md,sha256=mCo3_btlQFOMiTWUs0-Yk4PQCTNj8MdKcCh6r8AjntM,4368
179
+ aider/website/docs/llms/cohere.md,sha256=bj1j74osxhFJpMOaWCcYdYOCHrb3tRiTm6O1AStP0mo,694
180
+ aider/website/docs/llms/deepseek.md,sha256=U0JKpqAywddKKnHyaDTzaTRbUGtwRqFsQ7RKjMyN1Jc,735
181
+ aider/website/docs/llms/gemini.md,sha256=OibJRLtUQB7yCTNPHj1Y7lSNmc-MYwY__CxUgD0K4VU,998
182
+ aider/website/docs/llms/github.md,sha256=ScQVIr06D7Qj4__958WDmaUVDqtUzSTnpp9yzyUA3A0,2329
183
+ aider/website/docs/llms/groq.md,sha256=DbUejWJOFROsS-vLUwQ1VKdsl_mlpaxkGd7ywKi4JS4,699
184
+ aider/website/docs/llms/lm-studio.md,sha256=Q5UiaPQwusI8BHc981voVB4JYhzD4QaT5nL0aBejpak,1144
185
+ aider/website/docs/llms/ollama.md,sha256=IncLyI8ertyAxawhv7JmT55zkRBrMdg0zPEkR4u4VY4,2013
186
+ aider/website/docs/llms/openai-compat.md,sha256=7QxzrAaYH14X3S3LmAdfFV1Pa7YFv7ei0M6hsZ-BQq4,821
187
+ aider/website/docs/llms/openai.md,sha256=fhWAyM49rVmkoXqUohwg76DkVuIZydEM6r4XUSlb3qs,1519
188
+ aider/website/docs/llms/openrouter.md,sha256=j6Cfr5s8T327pecuQ14LeQ3YCe7QpqikpBqh7KDhePU,2248
189
+ aider/website/docs/llms/other.md,sha256=14JnRvl72p7Yv6upDEGbXqNoNJufnVNEkwzH2vCOksY,2453
190
+ aider/website/docs/llms/vertex.md,sha256=IocjqTEe0setDZNgpPzKTkyoJfN0y04bBVgSLSBC9Jg,1493
191
+ aider/website/docs/llms/warnings.md,sha256=FVhgQ8Taa3f-hyu-FVNuW2p2hWii4hRNplW3BUDYHV0,103
192
+ aider/website/docs/llms/xai.md,sha256=0VJ02dZQiKgVPFIcbR8fAB9W_DPKvxYTwF2R04mslrc,961
193
+ aider/website/docs/more/analytics.md,sha256=QWQsFyxPfvPZ879QeTNqXeviaVXK9iRGNmWlRqHn4PU,3517
194
+ aider/website/docs/more/edit-formats.md,sha256=DTxQgd7wVHh5gTQ59H5x3Jm0W7UmQRvyPpz2FWcGV_o,3067
195
+ aider/website/docs/more/infinite-output.md,sha256=RxDwAevwGn1oz9Q7EsijH_3Nny2Idl4dZz77citSSwk,4500
196
+ aider/website/docs/recordings/auto-accept-architect.md,sha256=TZf-RbX_bfPIPlZ5HRO9IDJpBfYLTsQ2Xm6hMrU2OjY,1131
197
+ aider/website/docs/recordings/dont-drop-original-read-files.md,sha256=5OKuv_nB2euf-Mxq7JX_oCSRxU_od0X1NKtRUMHcy5M,1196
198
+ aider/website/docs/recordings/index.md,sha256=Ie3lQAGA0KyGxld7CqxpWrjtfpHYYquVA-N4QpbNEUk,639
199
+ aider/website/docs/recordings/model-accepts-settings.md,sha256=S_UtbqvsLQHq-HSH9uWtVHPuGHIAE-MPlkq6mBncUDA,4476
200
+ aider/website/docs/recordings/tree-sitter-language-pack.md,sha256=1_xMUzFB0jGS0AsG-tJy0csKxtz1x9Hgbcexfhvlaq0,4361
201
+ aider/website/docs/troubleshooting/aider-not-found.md,sha256=I9X7KSA9NZkbUJYDh181OWbh_gEwAWM92vQhD3PX4Zw,704
202
+ aider/website/docs/troubleshooting/edit-errors.md,sha256=Kcyg9f02kmVbkx-pEYIRLJsyxct7PDcPFE7dyaOOheo,2960
203
+ aider/website/docs/troubleshooting/imports.md,sha256=64icSQXtauQEdMVTkD5mG6lek0_y-qd1Le8gJ0_ctU0,1983
204
+ aider/website/docs/troubleshooting/models-and-keys.md,sha256=-lI53oqktHayADTy7TYcKBu_z4EPV1cs6xT8ustQjio,1807
205
+ aider/website/docs/troubleshooting/support.md,sha256=Kp_3kmT0gyn3MGVoaFfDdONy__042v24CkFlaoa_DBU,3247
206
+ aider/website/docs/troubleshooting/token-limits.md,sha256=9RrJBFpGfr6C2WxLtJX0NJhi3X8Rtq97EVKRtMP_96s,2968
207
+ aider/website/docs/troubleshooting/warnings.md,sha256=eHfwaX9yfZHQJsKgSDfk4-ACSeib3F3aV6PjrF7L0zk,134
208
+ aider/website/docs/usage/browser.md,sha256=J-VrDz-lPBztGB3etL6hQSinciXKxKjV8dnEPc51Fr4,1505
209
+ aider/website/docs/usage/caching.md,sha256=UOXihv1-sKvh-1VkQ861VuXlOZPp3hZe91GmiZcQSd8,1439
210
+ aider/website/docs/usage/commands.md,sha256=ChBqpGNHrghVCtvTZGmN2A8euewqbrrtFsEaiyVIncA,6103
211
+ aider/website/docs/usage/conventions.md,sha256=tYSQHs3KRN0vU2emlxFKr16RRCrZklvzPp-xsffEOho,3239
212
+ aider/website/docs/usage/copypaste.md,sha256=hF8kOoo8-ZqD5MxLflrEohMyYGhTPt9xBKt345iM-n8,4834
213
+ aider/website/docs/usage/images-urls.md,sha256=hs5qnlyt89IweFxDIus96adDU0frb5U7l3mfpOYG4Y8,1453
214
+ aider/website/docs/usage/lint-test.md,sha256=t6xgdrWAG1vTjUtf9VLRlI3Nq366is81NmLuxc_lRy4,3359
215
+ aider/website/docs/usage/modes.md,sha256=d8PTUOkdOeznBGiCCKvNkjsnfhDBPqcjDBPiIp4YwqM,6733
216
+ aider/website/docs/usage/not-code.md,sha256=szIr660qq6wZ6b0eOALccHEtg4m8XhurhAf3fMPH6iE,3411
217
+ aider/website/docs/usage/notifications.md,sha256=OKNHL8h5x-AG-6VvxkJIwGxQm-O6KIg7sewSol5S60s,2196
218
+ aider/website/docs/usage/tips.md,sha256=smQnxsfyQ2ccdkPw73uTTyqhPSOXXOZW2TOI-1kMtXM,3324
219
+ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mAetmLhvYY,2223
220
+ aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
221
+ aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
222
+ aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
223
+ chatmcp_cli-0.1.0.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
224
+ chatmcp_cli-0.1.0.dist-info/METADATA,sha256=x_1pTO8HEiMfPrljYSTBT6IO1ZtAO4pA9lyI2rjjB38,26295
225
+ chatmcp_cli-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
226
+ chatmcp_cli-0.1.0.dist-info/entry_points.txt,sha256=vXE0jNCKrGaHUsEAK4nhxbpnBp65DQZ-42cvSO3aVuc,68
227
+ chatmcp_cli-0.1.0.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
228
+ chatmcp_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ aider = aider.main:main
3
+ chatmcp = aider.main:main
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1 @@
1
+ aider