cecli-dev 0.93.1__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 (366) hide show
  1. cecli/__init__.py +20 -0
  2. cecli/__main__.py +4 -0
  3. cecli/_version.py +34 -0
  4. cecli/args.py +1092 -0
  5. cecli/args_formatter.py +228 -0
  6. cecli/change_tracker.py +133 -0
  7. cecli/coders/__init__.py +38 -0
  8. cecli/coders/agent_coder.py +1872 -0
  9. cecli/coders/architect_coder.py +63 -0
  10. cecli/coders/ask_coder.py +8 -0
  11. cecli/coders/base_coder.py +3993 -0
  12. cecli/coders/chat_chunks.py +116 -0
  13. cecli/coders/context_coder.py +52 -0
  14. cecli/coders/copypaste_coder.py +269 -0
  15. cecli/coders/editblock_coder.py +656 -0
  16. cecli/coders/editblock_fenced_coder.py +9 -0
  17. cecli/coders/editblock_func_coder.py +140 -0
  18. cecli/coders/editor_diff_fenced_coder.py +8 -0
  19. cecli/coders/editor_editblock_coder.py +8 -0
  20. cecli/coders/editor_whole_coder.py +8 -0
  21. cecli/coders/help_coder.py +15 -0
  22. cecli/coders/patch_coder.py +705 -0
  23. cecli/coders/search_replace.py +757 -0
  24. cecli/coders/shell.py +37 -0
  25. cecli/coders/single_wholefile_func_coder.py +101 -0
  26. cecli/coders/udiff_coder.py +428 -0
  27. cecli/coders/udiff_simple.py +12 -0
  28. cecli/coders/wholefile_coder.py +143 -0
  29. cecli/coders/wholefile_func_coder.py +133 -0
  30. cecli/commands/__init__.py +192 -0
  31. cecli/commands/add.py +226 -0
  32. cecli/commands/agent.py +51 -0
  33. cecli/commands/architect.py +46 -0
  34. cecli/commands/ask.py +44 -0
  35. cecli/commands/chat_mode.py +0 -0
  36. cecli/commands/clear.py +37 -0
  37. cecli/commands/code.py +46 -0
  38. cecli/commands/command_prefix.py +44 -0
  39. cecli/commands/commit.py +52 -0
  40. cecli/commands/context.py +47 -0
  41. cecli/commands/context_blocks.py +124 -0
  42. cecli/commands/context_management.py +51 -0
  43. cecli/commands/copy.py +62 -0
  44. cecli/commands/copy_context.py +81 -0
  45. cecli/commands/core.py +287 -0
  46. cecli/commands/diff.py +68 -0
  47. cecli/commands/drop.py +217 -0
  48. cecli/commands/editor.py +78 -0
  49. cecli/commands/exit.py +55 -0
  50. cecli/commands/git.py +57 -0
  51. cecli/commands/help.py +140 -0
  52. cecli/commands/history_search.py +40 -0
  53. cecli/commands/lint.py +109 -0
  54. cecli/commands/list_sessions.py +56 -0
  55. cecli/commands/load.py +85 -0
  56. cecli/commands/load_session.py +48 -0
  57. cecli/commands/load_skill.py +68 -0
  58. cecli/commands/ls.py +75 -0
  59. cecli/commands/map.py +37 -0
  60. cecli/commands/map_refresh.py +35 -0
  61. cecli/commands/model.py +118 -0
  62. cecli/commands/models.py +41 -0
  63. cecli/commands/multiline_mode.py +38 -0
  64. cecli/commands/paste.py +91 -0
  65. cecli/commands/quit.py +32 -0
  66. cecli/commands/read_only.py +267 -0
  67. cecli/commands/read_only_stub.py +270 -0
  68. cecli/commands/reasoning_effort.py +70 -0
  69. cecli/commands/remove_skill.py +68 -0
  70. cecli/commands/report.py +40 -0
  71. cecli/commands/reset.py +88 -0
  72. cecli/commands/run.py +99 -0
  73. cecli/commands/save.py +49 -0
  74. cecli/commands/save_session.py +43 -0
  75. cecli/commands/settings.py +69 -0
  76. cecli/commands/test.py +58 -0
  77. cecli/commands/think_tokens.py +74 -0
  78. cecli/commands/tokens.py +207 -0
  79. cecli/commands/undo.py +145 -0
  80. cecli/commands/utils/__init__.py +0 -0
  81. cecli/commands/utils/base_command.py +131 -0
  82. cecli/commands/utils/helpers.py +142 -0
  83. cecli/commands/utils/registry.py +53 -0
  84. cecli/commands/utils/save_load_manager.py +98 -0
  85. cecli/commands/voice.py +78 -0
  86. cecli/commands/weak_model.py +123 -0
  87. cecli/commands/web.py +87 -0
  88. cecli/deprecated_args.py +185 -0
  89. cecli/diffs.py +129 -0
  90. cecli/dump.py +29 -0
  91. cecli/editor.py +147 -0
  92. cecli/exceptions.py +115 -0
  93. cecli/format_settings.py +26 -0
  94. cecli/help.py +119 -0
  95. cecli/help_pats.py +19 -0
  96. cecli/helpers/__init__.py +9 -0
  97. cecli/helpers/copypaste.py +123 -0
  98. cecli/helpers/coroutines.py +8 -0
  99. cecli/helpers/file_searcher.py +142 -0
  100. cecli/helpers/model_providers.py +552 -0
  101. cecli/helpers/plugin_manager.py +81 -0
  102. cecli/helpers/profiler.py +162 -0
  103. cecli/helpers/requests.py +77 -0
  104. cecli/helpers/similarity.py +98 -0
  105. cecli/helpers/skills.py +577 -0
  106. cecli/history.py +186 -0
  107. cecli/io.py +1782 -0
  108. cecli/linter.py +304 -0
  109. cecli/llm.py +101 -0
  110. cecli/main.py +1280 -0
  111. cecli/mcp/__init__.py +154 -0
  112. cecli/mcp/oauth.py +250 -0
  113. cecli/mcp/server.py +278 -0
  114. cecli/mdstream.py +243 -0
  115. cecli/models.py +1255 -0
  116. cecli/onboarding.py +301 -0
  117. cecli/prompts/__init__.py +0 -0
  118. cecli/prompts/agent.yml +71 -0
  119. cecli/prompts/architect.yml +35 -0
  120. cecli/prompts/ask.yml +31 -0
  121. cecli/prompts/base.yml +99 -0
  122. cecli/prompts/context.yml +60 -0
  123. cecli/prompts/copypaste.yml +5 -0
  124. cecli/prompts/editblock.yml +143 -0
  125. cecli/prompts/editblock_fenced.yml +106 -0
  126. cecli/prompts/editblock_func.yml +25 -0
  127. cecli/prompts/editor_diff_fenced.yml +115 -0
  128. cecli/prompts/editor_editblock.yml +121 -0
  129. cecli/prompts/editor_whole.yml +46 -0
  130. cecli/prompts/help.yml +37 -0
  131. cecli/prompts/patch.yml +110 -0
  132. cecli/prompts/single_wholefile_func.yml +24 -0
  133. cecli/prompts/udiff.yml +106 -0
  134. cecli/prompts/udiff_simple.yml +13 -0
  135. cecli/prompts/utils/__init__.py +0 -0
  136. cecli/prompts/utils/prompt_registry.py +167 -0
  137. cecli/prompts/utils/system.py +56 -0
  138. cecli/prompts/wholefile.yml +50 -0
  139. cecli/prompts/wholefile_func.yml +24 -0
  140. cecli/queries/tree-sitter-language-pack/README.md +7 -0
  141. cecli/queries/tree-sitter-language-pack/arduino-tags.scm +5 -0
  142. cecli/queries/tree-sitter-language-pack/c-tags.scm +12 -0
  143. cecli/queries/tree-sitter-language-pack/chatito-tags.scm +16 -0
  144. cecli/queries/tree-sitter-language-pack/clojure-tags.scm +12 -0
  145. cecli/queries/tree-sitter-language-pack/commonlisp-tags.scm +127 -0
  146. cecli/queries/tree-sitter-language-pack/cpp-tags.scm +18 -0
  147. cecli/queries/tree-sitter-language-pack/csharp-tags.scm +32 -0
  148. cecli/queries/tree-sitter-language-pack/d-tags.scm +26 -0
  149. cecli/queries/tree-sitter-language-pack/dart-tags.scm +97 -0
  150. cecli/queries/tree-sitter-language-pack/elisp-tags.scm +5 -0
  151. cecli/queries/tree-sitter-language-pack/elixir-tags.scm +59 -0
  152. cecli/queries/tree-sitter-language-pack/elm-tags.scm +22 -0
  153. cecli/queries/tree-sitter-language-pack/gleam-tags.scm +41 -0
  154. cecli/queries/tree-sitter-language-pack/go-tags.scm +49 -0
  155. cecli/queries/tree-sitter-language-pack/java-tags.scm +26 -0
  156. cecli/queries/tree-sitter-language-pack/javascript-tags.scm +96 -0
  157. cecli/queries/tree-sitter-language-pack/lua-tags.scm +39 -0
  158. cecli/queries/tree-sitter-language-pack/matlab-tags.scm +10 -0
  159. cecli/queries/tree-sitter-language-pack/ocaml-tags.scm +115 -0
  160. cecli/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +101 -0
  161. cecli/queries/tree-sitter-language-pack/pony-tags.scm +39 -0
  162. cecli/queries/tree-sitter-language-pack/properties-tags.scm +5 -0
  163. cecli/queries/tree-sitter-language-pack/python-tags.scm +24 -0
  164. cecli/queries/tree-sitter-language-pack/r-tags.scm +27 -0
  165. cecli/queries/tree-sitter-language-pack/racket-tags.scm +12 -0
  166. cecli/queries/tree-sitter-language-pack/ruby-tags.scm +69 -0
  167. cecli/queries/tree-sitter-language-pack/rust-tags.scm +63 -0
  168. cecli/queries/tree-sitter-language-pack/solidity-tags.scm +43 -0
  169. cecli/queries/tree-sitter-language-pack/swift-tags.scm +54 -0
  170. cecli/queries/tree-sitter-language-pack/udev-tags.scm +20 -0
  171. cecli/queries/tree-sitter-languages/README.md +24 -0
  172. cecli/queries/tree-sitter-languages/c-tags.scm +12 -0
  173. cecli/queries/tree-sitter-languages/c_sharp-tags.scm +52 -0
  174. cecli/queries/tree-sitter-languages/cpp-tags.scm +18 -0
  175. cecli/queries/tree-sitter-languages/dart-tags.scm +92 -0
  176. cecli/queries/tree-sitter-languages/elisp-tags.scm +8 -0
  177. cecli/queries/tree-sitter-languages/elixir-tags.scm +59 -0
  178. cecli/queries/tree-sitter-languages/elm-tags.scm +22 -0
  179. cecli/queries/tree-sitter-languages/fortran-tags.scm +18 -0
  180. cecli/queries/tree-sitter-languages/go-tags.scm +36 -0
  181. cecli/queries/tree-sitter-languages/haskell-tags.scm +5 -0
  182. cecli/queries/tree-sitter-languages/hcl-tags.scm +77 -0
  183. cecli/queries/tree-sitter-languages/java-tags.scm +26 -0
  184. cecli/queries/tree-sitter-languages/javascript-tags.scm +96 -0
  185. cecli/queries/tree-sitter-languages/julia-tags.scm +60 -0
  186. cecli/queries/tree-sitter-languages/kotlin-tags.scm +30 -0
  187. cecli/queries/tree-sitter-languages/matlab-tags.scm +10 -0
  188. cecli/queries/tree-sitter-languages/ocaml-tags.scm +115 -0
  189. cecli/queries/tree-sitter-languages/ocaml_interface-tags.scm +104 -0
  190. cecli/queries/tree-sitter-languages/php-tags.scm +32 -0
  191. cecli/queries/tree-sitter-languages/python-tags.scm +22 -0
  192. cecli/queries/tree-sitter-languages/ql-tags.scm +26 -0
  193. cecli/queries/tree-sitter-languages/ruby-tags.scm +69 -0
  194. cecli/queries/tree-sitter-languages/rust-tags.scm +63 -0
  195. cecli/queries/tree-sitter-languages/scala-tags.scm +64 -0
  196. cecli/queries/tree-sitter-languages/typescript-tags.scm +44 -0
  197. cecli/queries/tree-sitter-languages/zig-tags.scm +20 -0
  198. cecli/reasoning_tags.py +82 -0
  199. cecli/repo.py +626 -0
  200. cecli/repomap.py +1368 -0
  201. cecli/report.py +260 -0
  202. cecli/resources/__init__.py +3 -0
  203. cecli/resources/model-metadata.json +25751 -0
  204. cecli/resources/model-settings.yml +2394 -0
  205. cecli/resources/providers.json +67 -0
  206. cecli/run_cmd.py +143 -0
  207. cecli/scrape.py +295 -0
  208. cecli/sendchat.py +250 -0
  209. cecli/sessions.py +281 -0
  210. cecli/special.py +203 -0
  211. cecli/tools/__init__.py +72 -0
  212. cecli/tools/command.py +103 -0
  213. cecli/tools/command_interactive.py +113 -0
  214. cecli/tools/context_manager.py +175 -0
  215. cecli/tools/delete_block.py +154 -0
  216. cecli/tools/delete_line.py +120 -0
  217. cecli/tools/delete_lines.py +144 -0
  218. cecli/tools/extract_lines.py +281 -0
  219. cecli/tools/finished.py +35 -0
  220. cecli/tools/git_branch.py +132 -0
  221. cecli/tools/git_diff.py +49 -0
  222. cecli/tools/git_log.py +43 -0
  223. cecli/tools/git_remote.py +39 -0
  224. cecli/tools/git_show.py +37 -0
  225. cecli/tools/git_status.py +32 -0
  226. cecli/tools/grep.py +242 -0
  227. cecli/tools/indent_lines.py +195 -0
  228. cecli/tools/insert_block.py +263 -0
  229. cecli/tools/list_changes.py +71 -0
  230. cecli/tools/load_skill.py +51 -0
  231. cecli/tools/ls.py +77 -0
  232. cecli/tools/remove_skill.py +51 -0
  233. cecli/tools/replace_all.py +113 -0
  234. cecli/tools/replace_line.py +135 -0
  235. cecli/tools/replace_lines.py +180 -0
  236. cecli/tools/replace_text.py +186 -0
  237. cecli/tools/show_numbered_context.py +137 -0
  238. cecli/tools/thinking.py +52 -0
  239. cecli/tools/undo_change.py +82 -0
  240. cecli/tools/update_todo_list.py +148 -0
  241. cecli/tools/utils/base_tool.py +64 -0
  242. cecli/tools/utils/helpers.py +359 -0
  243. cecli/tools/utils/output.py +119 -0
  244. cecli/tools/utils/registry.py +145 -0
  245. cecli/tools/view_files_matching.py +138 -0
  246. cecli/tools/view_files_with_symbol.py +117 -0
  247. cecli/tui/__init__.py +83 -0
  248. cecli/tui/app.py +971 -0
  249. cecli/tui/io.py +566 -0
  250. cecli/tui/styles.tcss +117 -0
  251. cecli/tui/widgets/__init__.py +19 -0
  252. cecli/tui/widgets/completion_bar.py +331 -0
  253. cecli/tui/widgets/file_list.py +76 -0
  254. cecli/tui/widgets/footer.py +165 -0
  255. cecli/tui/widgets/input_area.py +320 -0
  256. cecli/tui/widgets/key_hints.py +16 -0
  257. cecli/tui/widgets/output.py +354 -0
  258. cecli/tui/widgets/status_bar.py +279 -0
  259. cecli/tui/worker.py +160 -0
  260. cecli/urls.py +16 -0
  261. cecli/utils.py +499 -0
  262. cecli/versioncheck.py +90 -0
  263. cecli/voice.py +90 -0
  264. cecli/waiting.py +38 -0
  265. cecli/watch.py +316 -0
  266. cecli/watch_prompts.py +12 -0
  267. cecli/website/Gemfile +8 -0
  268. cecli/website/_includes/blame.md +162 -0
  269. cecli/website/_includes/get-started.md +22 -0
  270. cecli/website/_includes/help-tip.md +5 -0
  271. cecli/website/_includes/help.md +24 -0
  272. cecli/website/_includes/install.md +5 -0
  273. cecli/website/_includes/keys.md +4 -0
  274. cecli/website/_includes/model-warnings.md +67 -0
  275. cecli/website/_includes/multi-line.md +22 -0
  276. cecli/website/_includes/python-m-aider.md +5 -0
  277. cecli/website/_includes/recording.css +228 -0
  278. cecli/website/_includes/recording.md +34 -0
  279. cecli/website/_includes/replit-pipx.md +9 -0
  280. cecli/website/_includes/works-best.md +1 -0
  281. cecli/website/_sass/custom/custom.scss +103 -0
  282. cecli/website/docs/config/adv-model-settings.md +2498 -0
  283. cecli/website/docs/config/agent-mode.md +320 -0
  284. cecli/website/docs/config/aider_conf.md +548 -0
  285. cecli/website/docs/config/api-keys.md +90 -0
  286. cecli/website/docs/config/custom-commands.md +187 -0
  287. cecli/website/docs/config/dotenv.md +493 -0
  288. cecli/website/docs/config/editor.md +127 -0
  289. cecli/website/docs/config/mcp.md +210 -0
  290. cecli/website/docs/config/model-aliases.md +173 -0
  291. cecli/website/docs/config/options.md +890 -0
  292. cecli/website/docs/config/reasoning.md +210 -0
  293. cecli/website/docs/config/skills.md +172 -0
  294. cecli/website/docs/config/tui.md +126 -0
  295. cecli/website/docs/config.md +44 -0
  296. cecli/website/docs/faq.md +379 -0
  297. cecli/website/docs/git.md +76 -0
  298. cecli/website/docs/index.md +47 -0
  299. cecli/website/docs/install/codespaces.md +39 -0
  300. cecli/website/docs/install/docker.md +48 -0
  301. cecli/website/docs/install/optional.md +100 -0
  302. cecli/website/docs/install/replit.md +8 -0
  303. cecli/website/docs/install.md +115 -0
  304. cecli/website/docs/languages.md +264 -0
  305. cecli/website/docs/legal/contributor-agreement.md +111 -0
  306. cecli/website/docs/legal/privacy.md +104 -0
  307. cecli/website/docs/llms/anthropic.md +77 -0
  308. cecli/website/docs/llms/azure.md +48 -0
  309. cecli/website/docs/llms/bedrock.md +132 -0
  310. cecli/website/docs/llms/cohere.md +34 -0
  311. cecli/website/docs/llms/deepseek.md +32 -0
  312. cecli/website/docs/llms/gemini.md +49 -0
  313. cecli/website/docs/llms/github.md +111 -0
  314. cecli/website/docs/llms/groq.md +36 -0
  315. cecli/website/docs/llms/lm-studio.md +39 -0
  316. cecli/website/docs/llms/ollama.md +75 -0
  317. cecli/website/docs/llms/openai-compat.md +39 -0
  318. cecli/website/docs/llms/openai.md +58 -0
  319. cecli/website/docs/llms/openrouter.md +78 -0
  320. cecli/website/docs/llms/other.md +117 -0
  321. cecli/website/docs/llms/vertex.md +50 -0
  322. cecli/website/docs/llms/warnings.md +10 -0
  323. cecli/website/docs/llms/xai.md +53 -0
  324. cecli/website/docs/llms.md +54 -0
  325. cecli/website/docs/more/analytics.md +127 -0
  326. cecli/website/docs/more/edit-formats.md +116 -0
  327. cecli/website/docs/more/infinite-output.md +192 -0
  328. cecli/website/docs/more-info.md +8 -0
  329. cecli/website/docs/recordings/auto-accept-architect.md +31 -0
  330. cecli/website/docs/recordings/dont-drop-original-read-files.md +35 -0
  331. cecli/website/docs/recordings/index.md +21 -0
  332. cecli/website/docs/recordings/model-accepts-settings.md +69 -0
  333. cecli/website/docs/recordings/tree-sitter-language-pack.md +80 -0
  334. cecli/website/docs/repomap.md +112 -0
  335. cecli/website/docs/scripting.md +100 -0
  336. cecli/website/docs/sessions.md +213 -0
  337. cecli/website/docs/troubleshooting/aider-not-found.md +24 -0
  338. cecli/website/docs/troubleshooting/edit-errors.md +76 -0
  339. cecli/website/docs/troubleshooting/imports.md +62 -0
  340. cecli/website/docs/troubleshooting/models-and-keys.md +54 -0
  341. cecli/website/docs/troubleshooting/support.md +79 -0
  342. cecli/website/docs/troubleshooting/token-limits.md +96 -0
  343. cecli/website/docs/troubleshooting/warnings.md +12 -0
  344. cecli/website/docs/troubleshooting.md +11 -0
  345. cecli/website/docs/usage/browser.md +57 -0
  346. cecli/website/docs/usage/caching.md +49 -0
  347. cecli/website/docs/usage/commands.md +133 -0
  348. cecli/website/docs/usage/conventions.md +119 -0
  349. cecli/website/docs/usage/copypaste.md +136 -0
  350. cecli/website/docs/usage/images-urls.md +48 -0
  351. cecli/website/docs/usage/lint-test.md +118 -0
  352. cecli/website/docs/usage/modes.md +211 -0
  353. cecli/website/docs/usage/not-code.md +179 -0
  354. cecli/website/docs/usage/notifications.md +87 -0
  355. cecli/website/docs/usage/tips.md +79 -0
  356. cecli/website/docs/usage/tutorials.md +30 -0
  357. cecli/website/docs/usage/voice.md +121 -0
  358. cecli/website/docs/usage/watch.md +294 -0
  359. cecli/website/docs/usage.md +102 -0
  360. cecli/website/share/index.md +101 -0
  361. cecli_dev-0.93.1.dist-info/METADATA +549 -0
  362. cecli_dev-0.93.1.dist-info/RECORD +366 -0
  363. cecli_dev-0.93.1.dist-info/WHEEL +5 -0
  364. cecli_dev-0.93.1.dist-info/entry_points.txt +4 -0
  365. cecli_dev-0.93.1.dist-info/licenses/LICENSE.txt +202 -0
  366. cecli_dev-0.93.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,228 @@
1
+ /* Terminal header styling */
2
+ .terminal-header {
3
+ background-color: #e0e0e0;
4
+ border-top-left-radius: 6px;
5
+ border-top-right-radius: 6px;
6
+ padding: 4px 10px;
7
+ display: flex;
8
+ align-items: center;
9
+ border-bottom: 1px solid #c0c0c0;
10
+ }
11
+
12
+ .terminal-buttons {
13
+ display: flex;
14
+ gap: 4px;
15
+ margin-right: 10px;
16
+ }
17
+
18
+ .terminal-button {
19
+ width: 10px;
20
+ height: 10px;
21
+ border-radius: 50%;
22
+ }
23
+
24
+ .terminal-close {
25
+ background-color: #ff5f56;
26
+ border: 1px solid #e0443e;
27
+ }
28
+
29
+ .terminal-minimize {
30
+ background-color: #ffbd2e;
31
+ border: 1px solid #dea123;
32
+ }
33
+
34
+ .terminal-expand {
35
+ background-color: #27c93f;
36
+ border: 1px solid #1aab29;
37
+ }
38
+
39
+ .terminal-title {
40
+ flex-grow: 1;
41
+ text-align: center;
42
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
43
+ font-size: 11px;
44
+ color: #666;
45
+ }
46
+
47
+ /* Toast notification styling */
48
+ .toast-container {
49
+ position: fixed;
50
+ top: 50%;
51
+ left: 50%;
52
+ transform: translate(-50%, -50%);
53
+ z-index: 9999;
54
+ pointer-events: none;
55
+ }
56
+
57
+ .toast-notification {
58
+ background-color: rgba(0, 0, 0, 0.7);
59
+ color: white;
60
+ padding: 12px 25px;
61
+ border-radius: 8px;
62
+ margin-bottom: 10px;
63
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
64
+ opacity: 0;
65
+ transition: opacity 0.3s ease-in-out;
66
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
67
+ font-size: 18px;
68
+ text-align: center;
69
+ display: inline-block;
70
+ min-width: 200px;
71
+ max-width: 90%;
72
+ }
73
+
74
+ /* Page container styling */
75
+ .page-container {
76
+ max-width: 950px;
77
+ margin-left: auto;
78
+ margin-right: auto;
79
+ position: relative;
80
+ }
81
+
82
+ /* macOS backdrop styling */
83
+ .macos-backdrop {
84
+ background: linear-gradient(135deg, #ff9966, #ff5e62, #6666ff, #0066ff);
85
+ border-radius: 12px;
86
+ padding: clamp(5px, 5vw, 50px) clamp(5px, 2.5vw, 50px);
87
+ margin: 20px 0;
88
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
89
+ position: relative;
90
+ overflow: hidden;
91
+ }
92
+
93
+ /* Add subtle wave animation to backdrop */
94
+ .macos-backdrop::before {
95
+ content: '';
96
+ position: absolute;
97
+ top: 0;
98
+ left: 0;
99
+ right: 0;
100
+ bottom: 0;
101
+ background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
102
+ opacity: 0.7;
103
+ pointer-events: none;
104
+ }
105
+
106
+ /* Add decorative curved lines to the backdrop */
107
+ .macos-backdrop::after {
108
+ content: '';
109
+ position: absolute;
110
+ top: 0;
111
+ left: 0;
112
+ right: 0;
113
+ bottom: 0;
114
+ background-image:
115
+ radial-gradient(circle at 20% 30%, transparent 0%, transparent 60%, rgba(255,255,255,0.2) 61%, transparent 62%),
116
+ radial-gradient(circle at 80% 70%, transparent 0%, transparent 40%, rgba(255,255,255,0.2) 41%, transparent 42%),
117
+ radial-gradient(circle at 40% 90%, transparent 0%, transparent 70%, rgba(255,255,255,0.2) 71%, transparent 72%),
118
+ radial-gradient(circle at 60% 10%, transparent 0%, transparent 50%, rgba(255,255,255,0.2) 51%, transparent 52%);
119
+ background-size: 100% 100%;
120
+ opacity: 1;
121
+ pointer-events: none;
122
+ z-index: 0;
123
+ }
124
+
125
+ .terminal-container {
126
+ border-radius: 8px;
127
+ overflow: hidden;
128
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
129
+ margin-top: 0;
130
+ margin-bottom: 0;
131
+ position: relative;
132
+ background-color: white; /* Add background color to terminal container */
133
+ z-index: 2; /* Ensure terminal appears above the backdrop effects */
134
+ }
135
+
136
+ /* Timestamp link styling */
137
+ .timestamp-link {
138
+ color: #0366d6;
139
+ text-decoration: none;
140
+ font-weight: bold;
141
+ cursor: pointer;
142
+ }
143
+
144
+ .timestamp-link:hover {
145
+ text-decoration: underline;
146
+ }
147
+
148
+ /* Active timestamp styling */
149
+ .timestamp-active {
150
+ background-color: #f0f8ff; /* Light blue background */
151
+ border-radius: 3px;
152
+ padding: 2px 4px;
153
+ margin: -2px -4px;
154
+ }
155
+
156
+ /* Highlight the list item containing the active timestamp */
157
+ li.active-marker {
158
+ background-color: #f6f8fa;
159
+ border-radius: 4px;
160
+ padding: 4px 8px;
161
+ margin-left: -8px;
162
+ }
163
+
164
+ /* Make list items clickable */
165
+ .transcript-item {
166
+ cursor: pointer;
167
+ transition: background-color 0.2s ease;
168
+ padding: 4px 8px;
169
+ margin-left: -8px;
170
+ border-radius: 4px;
171
+ }
172
+
173
+ .transcript-item:hover {
174
+ background-color: #f0f0f0;
175
+ }
176
+
177
+ /* Keyboard shortcuts styling */
178
+ .keyboard-shortcuts {
179
+ text-align: center;
180
+ font-size: 14px;
181
+ color: #666;
182
+ margin-top: 10px;
183
+ margin-bottom: 20px;
184
+ }
185
+
186
+ /* Hide keyboard shortcuts on devices likely without physical keyboards */
187
+ .no-physical-keyboard .keyboard-shortcuts {
188
+ display: none;
189
+ }
190
+
191
+ .keyboard-shortcuts kbd {
192
+ background-color: #f7f7f7;
193
+ border: 1px solid #ccc;
194
+ border-radius: 3px;
195
+ box-shadow: 0 1px 0 rgba(0,0,0,0.2);
196
+ color: #333;
197
+ display: inline-block;
198
+ font-family: monospace;
199
+ line-height: 1;
200
+ margin: 0 2px;
201
+ padding: 3px 5px;
202
+ white-space: nowrap;
203
+ }
204
+ .asciinema-player-theme-aider {
205
+ /* Foreground (default text) color */
206
+ --term-color-foreground: #444444; /* colour238 */
207
+
208
+ /* Background color */
209
+ --term-color-background: #dadada; /* colour253 */
210
+
211
+ /* Palette of 16 standard ANSI colors */
212
+ --term-color-0: #21222c;
213
+ --term-color-1: #ff5555;
214
+ --term-color-2: #50fa7b;
215
+ --term-color-3: #f1fa8c;
216
+ --term-color-4: #bd93f9;
217
+ --term-color-5: #ff79c6;
218
+ --term-color-6: #8be9fd;
219
+ --term-color-7: #f8f8f2;
220
+ --term-color-8: #6272a4;
221
+ --term-color-9: #ff6e6e;
222
+ --term-color-10: #69ff94;
223
+ --term-color-11: #ffffa5;
224
+ --term-color-12: #d6acff;
225
+ --term-color-13: #ff92df;
226
+ --term-color-14: #a4ffff;
227
+ --term-color-15: #ffffff;
228
+ }
@@ -0,0 +1,34 @@
1
+ <link rel="stylesheet" type="text/css" href="/assets/asciinema/asciinema-player.css" />
2
+
3
+ <style>
4
+ {% include recording.css %}
5
+ </style>
6
+
7
+ <script src="/assets/asciinema/asciinema-player.min.js"></script>
8
+ <script>
9
+ {% include recording.js %}
10
+ </script>
11
+
12
+ <div class="page-container">
13
+ <div class="toast-container" id="toast-container"></div>
14
+
15
+ <div class="macos-backdrop">
16
+ <div class="terminal-container">
17
+ <div class="terminal-header">
18
+ <div class="terminal-buttons">
19
+ <div class="terminal-button terminal-close"></div>
20
+ <div class="terminal-button terminal-minimize"></div>
21
+ <div class="terminal-button terminal-expand"></div>
22
+ </div>
23
+ <div class="terminal-title">aider</div>
24
+ </div>
25
+ <div id="demo"></div>
26
+ </div>
27
+ </div>
28
+ </div>
29
+
30
+ <div class="keyboard-shortcuts">
31
+ <kbd>Space</kbd> Play/pause —
32
+ <kbd>f</kbd> Fullscreen —
33
+ <kbd>←</kbd><kbd>→</kbd> ±5s
34
+ </div>
@@ -0,0 +1,9 @@
1
+ To use aider with pipx on replit, you can run these commands in the replit shell:
2
+
3
+ ```bash
4
+ pip install pipx
5
+ pipx run aider-chat ...normal aider args...
6
+ ```
7
+
8
+ If you install aider with pipx on replit and try and run it as just `aider` it will crash with a missing `libstdc++.so.6` library.
9
+
@@ -0,0 +1 @@
1
+ Aider works best with Claude 3.5 Sonnet, DeepSeek R1 & Chat V3, OpenAI o1, o3-mini & GPT-4o. Aider can [connect to almost any LLM, including local models](https://aider.chat/docs/llms.html).
@@ -0,0 +1,103 @@
1
+
2
+ .btn {
3
+ display: inline-block;
4
+ width: auto;
5
+ }
6
+ .btn + .btn {
7
+ margin-top: 0;
8
+ margin-left: 0.75rem;
9
+ }
10
+ .post {
11
+ background: #fff;
12
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
13
+ margin-bottom: 2em;
14
+ padding: 1em;
15
+ border-radius: 4px;
16
+ }
17
+ .post-date {
18
+ color: #777;
19
+ font-size: 0.85em;
20
+ margin-bottom: 1em;
21
+ display: block;
22
+ }
23
+
24
+ .post-highlight {
25
+ max-width: 20em; /* Assuming the base font-size is 16px, 12.5em is equivalent to 200px */
26
+ margin-right: 1em;
27
+ margin-left: 1em;
28
+ }
29
+
30
+ @media (max-width: 768px) {
31
+ .post-highlight {
32
+ max-width: 30em; /* Larger size on mobile */
33
+ }
34
+ }
35
+
36
+ .post-content {
37
+ display: flex;
38
+ align-items: flex-start;
39
+ flex: 1;
40
+ }
41
+
42
+ .chat-transcript {
43
+ font-family: 'Courier New', Courier, monospace;
44
+ background-color: #000;
45
+ color: #0f0;
46
+ padding: 1em 1em 1em 1em;
47
+ border-radius: 5px;
48
+ margin-top: 50px;
49
+ }
50
+
51
+ .chat-transcript blockquote {
52
+ padding: 0;
53
+ margin-left: 0;
54
+ color: #819198;
55
+ border-left: none
56
+ }
57
+
58
+ .chat-transcript blockquote>:first-child {
59
+ margin-top: 0
60
+ }
61
+
62
+ .chat-transcript blockquote>:last-child {
63
+ margin-bottom: 0
64
+ }
65
+
66
+
67
+ .chat-transcript li,
68
+ .chat-transcript p {
69
+ color: #00FFFF;
70
+ }
71
+
72
+ .chat-transcript h1 {
73
+ display: none;
74
+ }
75
+
76
+ .chat-transcript h4 {
77
+ color: #32FF32;
78
+ border-top: 1px solid #32FF32;
79
+ padding-top: 10px;
80
+ text-transform: none;
81
+ font-size: 1.0rem !important;
82
+ }
83
+
84
+ .chat-transcript h4::before {
85
+ content: '> ';
86
+ }
87
+
88
+ .chat-transcript blockquote p {
89
+ color: #ffffff;
90
+ }
91
+ .chat-transcript::before {
92
+ content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="25"><circle cx="7" cy="15" r="7" fill="%23f92672"/><circle cx="27" cy="15" r="7" fill="%23f4bf75"/><circle cx="47" cy="15" r="7" fill="%23a6e22e"/></svg>');
93
+ display: block;
94
+ margin-bottom: 0;
95
+ position: relative;
96
+ top: -0.5em;
97
+ }
98
+
99
+
100
+ .chat-transcript,
101
+ div.highlighter-rouge pre.highlight, div.highlighter-rouge code {
102
+ line-height: 1.1;
103
+ }