aider-ce 0.88.11__tar.gz → 0.96.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aider_ce-0.96.0/.dockerignore +29 -0
- aider_ce-0.96.0/.gitattributes +1 -0
- aider_ce-0.96.0/.github/ISSUE_TEMPLATE/issue.yml +21 -0
- aider_ce-0.96.0/.github/workflows/check_pypi_version.yml +82 -0
- aider_ce-0.96.0/.github/workflows/docker-build-test.yml +66 -0
- aider_ce-0.96.0/.github/workflows/pages.yml +87 -0
- aider_ce-0.96.0/.github/workflows/release.yml +99 -0
- aider_ce-0.96.0/.github/workflows/ubuntu-tests.yml +63 -0
- aider_ce-0.96.0/.github/workflows/windows-tests.yml +51 -0
- aider_ce-0.96.0/.github/workflows/windows_check_pypi_version.yml +86 -0
- aider_ce-0.96.0/.gitignore +42 -0
- aider_ce-0.96.0/.pre-commit-config.yaml +32 -0
- aider_ce-0.96.0/CHANGELOG.md +32 -0
- aider_ce-0.96.0/CNAME +1 -0
- aider_ce-0.96.0/CONTRIBUTING.md +162 -0
- aider_ce-0.96.0/MANIFEST.in +25 -0
- aider_ce-0.96.0/PKG-INFO +497 -0
- aider_ce-0.96.0/README.md +476 -0
- aider_ce-0.96.0/aider_ce.egg-info/PKG-INFO +497 -0
- aider_ce-0.96.0/aider_ce.egg-info/SOURCES.txt +567 -0
- aider_ce-0.96.0/aider_ce.egg-info/entry_points.txt +4 -0
- aider_ce-0.96.0/aider_ce.egg-info/requires.txt +1 -0
- aider_ce-0.96.0/aider_ce.egg-info/top_level.txt +1 -0
- aider_ce-0.96.0/benchmark/Dockerfile +64 -0
- aider_ce-0.96.0/benchmark/README.md +180 -0
- aider_ce-0.96.0/benchmark/benchmark.py +1251 -0
- aider_ce-0.96.0/benchmark/benchmark_classic.py +1265 -0
- aider_ce-0.96.0/benchmark/docker.sh +20 -0
- aider_ce-0.96.0/benchmark/docker_build.sh +8 -0
- aider_ce-0.96.0/benchmark/over_time.py +168 -0
- aider_ce-0.96.0/benchmark/plots.py +417 -0
- aider_ce-0.96.0/benchmark/problem_stats.py +355 -0
- aider_ce-0.96.0/benchmark/refactor_tools.py +209 -0
- aider_ce-0.96.0/benchmark/rungrid.py +61 -0
- aider_ce-0.96.0/benchmark/swe_bench.py +131 -0
- aider_ce-0.96.0/benchmark/test_benchmark.py +45 -0
- aider_ce-0.96.0/cecli/__init__.py +20 -0
- aider_ce-0.96.0/cecli/args.py +1118 -0
- aider_ce-0.96.0/cecli/args_formatter.py +228 -0
- aider_ce-0.96.0/cecli/coders/__init__.py +38 -0
- aider_ce-0.96.0/cecli/coders/agent_coder.py +1766 -0
- aider_ce-0.96.0/cecli/coders/architect_coder.py +116 -0
- aider_ce-0.96.0/cecli/coders/ask_coder.py +8 -0
- aider_ce-0.96.0/cecli/coders/base_coder.py +3922 -0
- aider_ce-0.96.0/cecli/coders/chat_chunks.py +116 -0
- aider_ce-0.96.0/cecli/coders/context_coder.py +52 -0
- aider_ce-0.96.0/cecli/coders/copypaste_coder.py +269 -0
- aider_ce-0.96.0/cecli/coders/editblock_coder.py +656 -0
- aider_ce-0.96.0/cecli/coders/editblock_fenced_coder.py +9 -0
- aider_ce-0.96.0/cecli/coders/editblock_func_coder.py +140 -0
- aider_ce-0.96.0/cecli/coders/editor_diff_fenced_coder.py +8 -0
- aider_ce-0.96.0/cecli/coders/editor_editblock_coder.py +8 -0
- aider_ce-0.96.0/cecli/coders/editor_whole_coder.py +8 -0
- aider_ce-0.96.0/cecli/coders/help_coder.py +15 -0
- aider_ce-0.96.0/cecli/coders/patch_coder.py +705 -0
- aider_ce-0.96.0/cecli/coders/search_replace.py +757 -0
- aider_ce-0.96.0/cecli/coders/single_wholefile_func_coder.py +108 -0
- aider_ce-0.96.0/cecli/coders/udiff_coder.py +428 -0
- aider_ce-0.96.0/cecli/coders/udiff_simple.py +12 -0
- aider_ce-0.96.0/cecli/coders/wholefile_coder.py +143 -0
- aider_ce-0.96.0/cecli/coders/wholefile_func_coder.py +140 -0
- aider_ce-0.96.0/cecli/commands/__init__.py +204 -0
- aider_ce-0.96.0/cecli/commands/add.py +232 -0
- aider_ce-0.96.0/cecli/commands/agent.py +51 -0
- aider_ce-0.96.0/cecli/commands/architect.py +46 -0
- aider_ce-0.96.0/cecli/commands/ask.py +44 -0
- aider_ce-0.96.0/cecli/commands/clear.py +39 -0
- aider_ce-0.96.0/cecli/commands/code.py +46 -0
- aider_ce-0.96.0/cecli/commands/command_prefix.py +44 -0
- aider_ce-0.96.0/cecli/commands/commit.py +52 -0
- aider_ce-0.96.0/cecli/commands/context.py +47 -0
- aider_ce-0.96.0/cecli/commands/context_blocks.py +124 -0
- aider_ce-0.96.0/cecli/commands/context_management.py +51 -0
- aider_ce-0.96.0/cecli/commands/copy.py +64 -0
- aider_ce-0.96.0/cecli/commands/copy_context.py +81 -0
- aider_ce-0.96.0/cecli/commands/core.py +290 -0
- aider_ce-0.96.0/cecli/commands/diff.py +68 -0
- aider_ce-0.96.0/cecli/commands/drop.py +217 -0
- aider_ce-0.96.0/cecli/commands/editor.py +78 -0
- aider_ce-0.96.0/cecli/commands/editor_model.py +167 -0
- aider_ce-0.96.0/cecli/commands/exit.py +47 -0
- aider_ce-0.96.0/cecli/commands/git.py +57 -0
- aider_ce-0.96.0/cecli/commands/help.py +140 -0
- aider_ce-0.96.0/cecli/commands/history_search.py +112 -0
- aider_ce-0.96.0/cecli/commands/lint.py +109 -0
- aider_ce-0.96.0/cecli/commands/list_sessions.py +56 -0
- aider_ce-0.96.0/cecli/commands/load.py +85 -0
- aider_ce-0.96.0/cecli/commands/load_mcp.py +77 -0
- aider_ce-0.96.0/cecli/commands/load_session.py +48 -0
- aider_ce-0.96.0/cecli/commands/load_skill.py +68 -0
- aider_ce-0.96.0/cecli/commands/ls.py +75 -0
- aider_ce-0.96.0/cecli/commands/map.py +39 -0
- aider_ce-0.96.0/cecli/commands/map_refresh.py +46 -0
- aider_ce-0.96.0/cecli/commands/model.py +162 -0
- aider_ce-0.96.0/cecli/commands/models.py +41 -0
- aider_ce-0.96.0/cecli/commands/multiline_mode.py +38 -0
- aider_ce-0.96.0/cecli/commands/paste.py +91 -0
- aider_ce-0.96.0/cecli/commands/quit.py +32 -0
- aider_ce-0.96.0/cecli/commands/read_only.py +267 -0
- aider_ce-0.96.0/cecli/commands/read_only_stub.py +270 -0
- aider_ce-0.96.0/cecli/commands/reasoning_effort.py +70 -0
- aider_ce-0.96.0/cecli/commands/remove_mcp.py +65 -0
- aider_ce-0.96.0/cecli/commands/remove_skill.py +68 -0
- aider_ce-0.96.0/cecli/commands/report.py +40 -0
- aider_ce-0.96.0/cecli/commands/reset.py +93 -0
- aider_ce-0.96.0/cecli/commands/run.py +100 -0
- aider_ce-0.96.0/cecli/commands/save.py +49 -0
- aider_ce-0.96.0/cecli/commands/save_session.py +43 -0
- aider_ce-0.96.0/cecli/commands/settings.py +69 -0
- aider_ce-0.96.0/cecli/commands/terminal_setup.py +759 -0
- aider_ce-0.96.0/cecli/commands/test.py +58 -0
- aider_ce-0.96.0/cecli/commands/think_tokens.py +74 -0
- aider_ce-0.96.0/cecli/commands/tokens.py +208 -0
- aider_ce-0.96.0/cecli/commands/undo.py +145 -0
- aider_ce-0.96.0/cecli/commands/utils/base_command.py +198 -0
- aider_ce-0.96.0/cecli/commands/utils/helpers.py +142 -0
- aider_ce-0.96.0/cecli/commands/utils/registry.py +53 -0
- aider_ce-0.96.0/cecli/commands/utils/save_load_manager.py +98 -0
- aider_ce-0.96.0/cecli/commands/voice.py +78 -0
- aider_ce-0.96.0/cecli/commands/weak_model.py +167 -0
- aider_ce-0.96.0/cecli/commands/web.py +88 -0
- aider_ce-0.96.0/cecli/deprecated_args.py +185 -0
- aider_ce-0.96.0/cecli/diffs.py +129 -0
- aider_ce-0.96.0/cecli/editor.py +147 -0
- aider_ce-0.96.0/cecli/exceptions.py +115 -0
- aider_ce-0.96.0/cecli/help.py +119 -0
- aider_ce-0.96.0/cecli/helpers/__init__.py +9 -0
- aider_ce-0.96.0/cecli/helpers/background_commands.py +430 -0
- aider_ce-0.96.0/cecli/helpers/conversation/__init__.py +20 -0
- aider_ce-0.96.0/cecli/helpers/conversation/base_message.py +138 -0
- aider_ce-0.96.0/cecli/helpers/conversation/files.py +398 -0
- aider_ce-0.96.0/cecli/helpers/conversation/integration.py +743 -0
- aider_ce-0.96.0/cecli/helpers/conversation/manager.py +692 -0
- aider_ce-0.96.0/cecli/helpers/conversation/tags.py +87 -0
- aider_ce-0.96.0/cecli/helpers/conversation/utils.py +160 -0
- aider_ce-0.96.0/cecli/helpers/copypaste.py +123 -0
- aider_ce-0.96.0/cecli/helpers/coroutines.py +8 -0
- aider_ce-0.96.0/cecli/helpers/file_searcher.py +142 -0
- aider_ce-0.96.0/cecli/helpers/model_providers.py +602 -0
- aider_ce-0.96.0/cecli/helpers/nested.py +83 -0
- aider_ce-0.96.0/cecli/helpers/plugin_manager.py +81 -0
- aider_ce-0.96.0/cecli/helpers/profiler.py +162 -0
- aider_ce-0.96.0/cecli/helpers/requests.py +134 -0
- aider_ce-0.96.0/cecli/helpers/similarity.py +98 -0
- aider_ce-0.96.0/cecli/helpers/skills.py +577 -0
- aider_ce-0.96.0/cecli/history.py +186 -0
- aider_ce-0.96.0/cecli/io.py +1793 -0
- aider_ce-0.96.0/cecli/linter.py +304 -0
- aider_ce-0.96.0/cecli/llm.py +101 -0
- aider_ce-0.96.0/cecli/main.py +1316 -0
- aider_ce-0.96.0/cecli/mcp/__init__.py +14 -0
- aider_ce-0.96.0/cecli/mcp/manager.py +292 -0
- aider_ce-0.96.0/cecli/mcp/oauth.py +225 -0
- aider_ce-0.96.0/cecli/mcp/server.py +295 -0
- aider_ce-0.96.0/cecli/mcp/utils.py +184 -0
- aider_ce-0.96.0/cecli/mdstream.py +243 -0
- aider_ce-0.96.0/cecli/models.py +1367 -0
- aider_ce-0.96.0/cecli/onboarding.py +301 -0
- aider_ce-0.96.0/cecli/prompts/agent.yml +72 -0
- aider_ce-0.96.0/cecli/prompts/architect.yml +35 -0
- aider_ce-0.96.0/cecli/prompts/ask.yml +31 -0
- aider_ce-0.96.0/cecli/prompts/base.yml +100 -0
- aider_ce-0.96.0/cecli/prompts/context.yml +60 -0
- aider_ce-0.96.0/cecli/prompts/copypaste.yml +5 -0
- aider_ce-0.96.0/cecli/prompts/editblock.yml +143 -0
- aider_ce-0.96.0/cecli/prompts/editblock_fenced.yml +106 -0
- aider_ce-0.96.0/cecli/prompts/editblock_func.yml +25 -0
- aider_ce-0.96.0/cecli/prompts/editor_diff_fenced.yml +115 -0
- aider_ce-0.96.0/cecli/prompts/editor_editblock.yml +121 -0
- aider_ce-0.96.0/cecli/prompts/editor_whole.yml +46 -0
- aider_ce-0.96.0/cecli/prompts/help.yml +37 -0
- aider_ce-0.96.0/cecli/prompts/patch.yml +110 -0
- aider_ce-0.96.0/cecli/prompts/single_wholefile_func.yml +24 -0
- aider_ce-0.96.0/cecli/prompts/udiff.yml +106 -0
- aider_ce-0.96.0/cecli/prompts/udiff_simple.yml +13 -0
- aider_ce-0.96.0/cecli/prompts/utils/__init__.py +0 -0
- aider_ce-0.96.0/cecli/prompts/utils/registry.py +203 -0
- aider_ce-0.96.0/cecli/prompts/wholefile.yml +50 -0
- aider_ce-0.96.0/cecli/prompts/wholefile_func.yml +24 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/c-tags.scm +12 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/clojure-tags.scm +12 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/commonlisp-tags.scm +127 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/cpp-tags.scm +18 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/csharp-tags.scm +32 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/dart-tags.scm +97 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/elixir-tags.scm +59 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/elm-tags.scm +22 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/go-tags.scm +49 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/java-tags.scm +26 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/javascript-tags.scm +96 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/lua-tags.scm +39 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +101 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/python-tags.scm +24 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/r-tags.scm +27 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/ruby-tags.scm +69 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/rust-tags.scm +63 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/solidity-tags.scm +43 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-language-pack/swift-tags.scm +54 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/c-tags.scm +12 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/c_sharp-tags.scm +52 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/cpp-tags.scm +18 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/dart-tags.scm +92 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/elixir-tags.scm +59 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/elm-tags.scm +22 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/fortran-tags.scm +18 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/go-tags.scm +36 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/haskell-tags.scm +5 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/java-tags.scm +26 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/javascript-tags.scm +96 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/julia-tags.scm +60 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/kotlin-tags.scm +30 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/ocaml_interface-tags.scm +104 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/php-tags.scm +32 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/python-tags.scm +22 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/ruby-tags.scm +69 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/rust-tags.scm +63 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/scala-tags.scm +64 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/typescript-tags.scm +44 -0
- aider_ce-0.96.0/cecli/queries/tree-sitter-languages/zig-tags.scm +20 -0
- aider_ce-0.96.0/cecli/reasoning_tags.py +82 -0
- aider_ce-0.96.0/cecli/repo.py +626 -0
- aider_ce-0.96.0/cecli/repomap.py +1434 -0
- aider_ce-0.96.0/cecli/report.py +278 -0
- aider_ce-0.96.0/cecli/resources/__init__.py +3 -0
- aider_ce-0.96.0/cecli/resources/model-metadata.json +25751 -0
- aider_ce-0.96.0/cecli/resources/model-settings.yml +2394 -0
- aider_ce-0.96.0/cecli/resources/providers.json +76 -0
- aider_ce-0.96.0/cecli/run_cmd.py +143 -0
- aider_ce-0.96.0/cecli/scrape.py +295 -0
- aider_ce-0.96.0/cecli/sendchat.py +250 -0
- aider_ce-0.96.0/cecli/sessions.py +302 -0
- aider_ce-0.96.0/cecli/tools/__init__.py +66 -0
- aider_ce-0.96.0/cecli/tools/command.py +158 -0
- aider_ce-0.96.0/cecli/tools/command_interactive.py +113 -0
- aider_ce-0.96.0/cecli/tools/context_manager.py +175 -0
- aider_ce-0.96.0/cecli/tools/delete_block.py +150 -0
- aider_ce-0.96.0/cecli/tools/delete_line.py +114 -0
- aider_ce-0.96.0/cecli/tools/delete_lines.py +138 -0
- aider_ce-0.96.0/cecli/tools/extract_lines.py +281 -0
- aider_ce-0.96.0/cecli/tools/finished.py +35 -0
- aider_ce-0.96.0/cecli/tools/git_branch.py +132 -0
- aider_ce-0.96.0/cecli/tools/git_diff.py +49 -0
- aider_ce-0.96.0/cecli/tools/git_log.py +43 -0
- aider_ce-0.96.0/cecli/tools/git_remote.py +39 -0
- aider_ce-0.96.0/cecli/tools/git_show.py +37 -0
- aider_ce-0.96.0/cecli/tools/git_status.py +32 -0
- aider_ce-0.96.0/cecli/tools/grep.py +242 -0
- aider_ce-0.96.0/cecli/tools/indent_lines.py +191 -0
- aider_ce-0.96.0/cecli/tools/insert_block.py +263 -0
- aider_ce-0.96.0/cecli/tools/list_changes.py +71 -0
- aider_ce-0.96.0/cecli/tools/load_skill.py +51 -0
- aider_ce-0.96.0/cecli/tools/ls.py +77 -0
- aider_ce-0.96.0/cecli/tools/remove_skill.py +51 -0
- aider_ce-0.96.0/cecli/tools/replace_text.py +368 -0
- aider_ce-0.96.0/cecli/tools/show_numbered_context.py +137 -0
- aider_ce-0.96.0/cecli/tools/thinking.py +52 -0
- aider_ce-0.96.0/cecli/tools/undo_change.py +82 -0
- aider_ce-0.96.0/cecli/tools/update_todo_list.py +132 -0
- aider_ce-0.96.0/cecli/tools/utils/base_tool.py +64 -0
- aider_ce-0.96.0/cecli/tools/utils/helpers.py +359 -0
- aider_ce-0.96.0/cecli/tools/utils/output.py +119 -0
- aider_ce-0.96.0/cecli/tools/utils/registry.py +145 -0
- aider_ce-0.96.0/cecli/tools/view_files_matching.py +138 -0
- aider_ce-0.96.0/cecli/tools/view_files_with_symbol.py +117 -0
- aider_ce-0.96.0/cecli/tui/__init__.py +83 -0
- aider_ce-0.96.0/cecli/tui/app.py +981 -0
- aider_ce-0.96.0/cecli/tui/io.py +558 -0
- aider_ce-0.96.0/cecli/tui/styles.tcss +117 -0
- aider_ce-0.96.0/cecli/tui/widgets/__init__.py +19 -0
- aider_ce-0.96.0/cecli/tui/widgets/completion_bar.py +332 -0
- aider_ce-0.96.0/cecli/tui/widgets/file_list.py +76 -0
- aider_ce-0.96.0/cecli/tui/widgets/footer.py +165 -0
- aider_ce-0.96.0/cecli/tui/widgets/input_area.py +324 -0
- aider_ce-0.96.0/cecli/tui/widgets/key_hints.py +16 -0
- aider_ce-0.96.0/cecli/tui/widgets/output.py +367 -0
- aider_ce-0.96.0/cecli/tui/widgets/status_bar.py +279 -0
- aider_ce-0.96.0/cecli/tui/worker.py +160 -0
- aider_ce-0.96.0/cecli/urls.py +16 -0
- aider_ce-0.96.0/cecli/utils.py +502 -0
- aider_ce-0.96.0/cecli/versioncheck.py +94 -0
- aider_ce-0.96.0/cecli/voice.py +90 -0
- aider_ce-0.96.0/cecli/watch.py +316 -0
- aider_ce-0.96.0/cecli/website/_includes/help.md +24 -0
- aider_ce-0.96.0/cecli/website/docs/config/adv-model-settings.md +2498 -0
- aider_ce-0.96.0/cecli/website/docs/config/agent-mode.md +320 -0
- aider_ce-0.96.0/cecli/website/docs/config/custom-commands.md +189 -0
- aider_ce-0.96.0/cecli/website/docs/config/custom-system-prompts.md +162 -0
- aider_ce-0.96.0/cecli/website/docs/config/dotenv.md +493 -0
- aider_ce-0.96.0/cecli/website/docs/config/editor.md +127 -0
- aider_ce-0.96.0/cecli/website/docs/config/mcp.md +214 -0
- aider_ce-0.96.0/cecli/website/docs/config/model-aliases.md +173 -0
- aider_ce-0.96.0/cecli/website/docs/config/options.md +890 -0
- aider_ce-0.96.0/cecli/website/docs/config/skills.md +172 -0
- aider_ce-0.96.0/cecli/website/docs/config/tui.md +134 -0
- aider_ce-0.96.0/cecli/website/docs/config.md +74 -0
- aider_ce-0.96.0/cecli/website/docs/faq.md +379 -0
- aider_ce-0.96.0/cecli/website/docs/install/docker.md +48 -0
- aider_ce-0.96.0/cecli/website/docs/languages.md +264 -0
- aider_ce-0.96.0/cecli/website/docs/more/infinite-output.md +192 -0
- aider_ce-0.96.0/cecli/website/docs/scripting.md +100 -0
- aider_ce-0.96.0/cecli/website/docs/sessions.md +213 -0
- aider_ce-0.96.0/cecli/website/docs/usage/commands.md +135 -0
- aider_ce-0.96.0/cecli/website/docs/usage/copypaste.md +136 -0
- aider_ce-0.96.0/cecli/website/docs/usage/notifications.md +87 -0
- aider_ce-0.96.0/docker/Dockerfile +73 -0
- aider_ce-0.96.0/docker/Dockerfile.local.nvidia.cuda.ubuntu +90 -0
- aider_ce-0.96.0/pyproject.toml +50 -0
- aider_ce-0.96.0/pytest.ini +14 -0
- aider_ce-0.96.0/requirements/common-constraints.txt +671 -0
- aider_ce-0.96.0/requirements/requirements-dev.in +16 -0
- aider_ce-0.96.0/requirements/requirements-dev.txt +302 -0
- aider_ce-0.96.0/requirements/requirements-help.txt +419 -0
- aider_ce-0.96.0/requirements/requirements-playwright.txt +18 -0
- aider_ce-0.96.0/requirements/requirements.in +49 -0
- aider_ce-0.96.0/requirements.txt +597 -0
- aider_ce-0.96.0/scripts/30k-image.py +235 -0
- aider_ce-0.96.0/scripts/__init__.py +0 -0
- aider_ce-0.96.0/scripts/blame.py +296 -0
- aider_ce-0.96.0/scripts/clean_metadata.py +258 -0
- aider_ce-0.96.0/scripts/cost_analyzer.py +144 -0
- aider_ce-0.96.0/scripts/dl_icons.py +59 -0
- aider_ce-0.96.0/scripts/filter-chat-mode.js +105 -0
- aider_ce-0.96.0/scripts/generate_providers.py +224 -0
- aider_ce-0.96.0/scripts/get_contributor_list.js +38 -0
- aider_ce-0.96.0/scripts/history_prompts.py +26 -0
- aider_ce-0.96.0/scripts/homepage.py +619 -0
- aider_ce-0.96.0/scripts/issues.py +458 -0
- aider_ce-0.96.0/scripts/logo_svg.py +174 -0
- aider_ce-0.96.0/scripts/pip-compile.sh +43 -0
- aider_ce-0.96.0/scripts/recording_audio.py +338 -0
- aider_ce-0.96.0/scripts/redact-cast.py +62 -0
- aider_ce-0.96.0/scripts/rename_to_cecli.py +863 -0
- aider_ce-0.96.0/scripts/tsl_pack_langs.py +145 -0
- aider_ce-0.96.0/scripts/update-history.py +162 -0
- aider_ce-0.96.0/scripts/versionbump.py +175 -0
- aider_ce-0.96.0/scripts/yank-old-versions.py +51 -0
- aider_ce-0.96.0/shim.pyproject.toml +50 -0
- aider_ce-0.96.0/tests/__init__.py +0 -0
- aider_ce-0.96.0/tests/basic/__init__.py +0 -0
- aider_ce-0.96.0/tests/basic/test_aws_credentials.py +169 -0
- aider_ce-0.96.0/tests/basic/test_background_commands.py +181 -0
- aider_ce-0.96.0/tests/basic/test_coder.py +1839 -0
- aider_ce-0.96.0/tests/basic/test_commands.py +2326 -0
- aider_ce-0.96.0/tests/basic/test_custom_commands.py +64 -0
- aider_ce-0.96.0/tests/basic/test_deprecated.py +140 -0
- aider_ce-0.96.0/tests/basic/test_editblock.py +593 -0
- aider_ce-0.96.0/tests/basic/test_editor.py +159 -0
- aider_ce-0.96.0/tests/basic/test_exceptions.py +95 -0
- aider_ce-0.96.0/tests/basic/test_find_or_blocks.py +114 -0
- aider_ce-0.96.0/tests/basic/test_history.py +118 -0
- aider_ce-0.96.0/tests/basic/test_io.py +645 -0
- aider_ce-0.96.0/tests/basic/test_linter.py +92 -0
- aider_ce-0.96.0/tests/basic/test_main.py +1383 -0
- aider_ce-0.96.0/tests/basic/test_model_info_manager.py +80 -0
- aider_ce-0.96.0/tests/basic/test_model_provider_manager.py +563 -0
- aider_ce-0.96.0/tests/basic/test_models.py +792 -0
- aider_ce-0.96.0/tests/basic/test_onboarding.py +410 -0
- aider_ce-0.96.0/tests/basic/test_plugin_manager.py +325 -0
- aider_ce-0.96.0/tests/basic/test_prompts.py +486 -0
- aider_ce-0.96.0/tests/basic/test_reasoning.py +627 -0
- aider_ce-0.96.0/tests/basic/test_repo.py +712 -0
- aider_ce-0.96.0/tests/basic/test_repomap.py +651 -0
- aider_ce-0.96.0/tests/basic/test_run_cmd.py +11 -0
- aider_ce-0.96.0/tests/basic/test_sanity_check_repo.py +190 -0
- aider_ce-0.96.0/tests/basic/test_scripting.py +35 -0
- aider_ce-0.96.0/tests/basic/test_sendchat.py +179 -0
- aider_ce-0.96.0/tests/basic/test_sessions.py +196 -0
- aider_ce-0.96.0/tests/basic/test_skills.py +531 -0
- aider_ce-0.96.0/tests/basic/test_special.py +76 -0
- aider_ce-0.96.0/tests/basic/test_ssl_verification.py +84 -0
- aider_ce-0.96.0/tests/basic/test_udiff.py +113 -0
- aider_ce-0.96.0/tests/basic/test_urls.py +15 -0
- aider_ce-0.96.0/tests/basic/test_voice.py +238 -0
- aider_ce-0.96.0/tests/basic/test_watch.py +166 -0
- aider_ce-0.96.0/tests/basic/test_wholefile.py +380 -0
- aider_ce-0.96.0/tests/coders/test_copypaste_coder.py +170 -0
- aider_ce-0.96.0/tests/conftest.py +16 -0
- aider_ce-0.96.0/tests/fixtures/chat-history-search-replace-gold.txt +27810 -0
- aider_ce-0.96.0/tests/fixtures/chat-history.md +99961 -0
- aider_ce-0.96.0/tests/fixtures/watch.py +21 -0
- aider_ce-0.96.0/tests/help/test_help.py +154 -0
- aider_ce-0.96.0/tests/mcp/__init__.py +0 -0
- aider_ce-0.96.0/tests/mcp/test_manager.py +319 -0
- aider_ce-0.96.0/tests/scrape/test_playwright_disable.py +139 -0
- aider_ce-0.96.0/tests/scrape/test_scrape.py +198 -0
- aider_ce-0.96.0/tests/test_conversation_integration.py +89 -0
- aider_ce-0.96.0/tests/test_conversation_system.py +710 -0
- aider_ce-0.96.0/tests/tools/test_git_branch.py +51 -0
- aider_ce-0.96.0/tests/tools/test_git_diff.py +29 -0
- aider_ce-0.96.0/tests/tools/test_grep.py +52 -0
- aider_ce-0.96.0/tests/tools/test_insert_block.py +149 -0
- aider_ce-0.96.0/tests/tools/test_registry.py +187 -0
- aider_ce-0.96.0/tests/tools/test_show_numbered_context.py +106 -0
- aider_ce-0.88.11/.dockerignore +0 -29
- aider_ce-0.88.11/.github/ISSUE_TEMPLATE/issue.yml +0 -21
- aider_ce-0.88.11/.github/workflows/check_pypi_version.yml +0 -86
- aider_ce-0.88.11/.github/workflows/docker-build-test.yml +0 -66
- aider_ce-0.88.11/.github/workflows/pages.yml +0 -87
- aider_ce-0.88.11/.github/workflows/release.yml +0 -34
- aider_ce-0.88.11/.github/workflows/ubuntu-tests.yml +0 -63
- aider_ce-0.88.11/.github/workflows/windows-tests.yml +0 -52
- aider_ce-0.88.11/.github/workflows/windows_check_pypi_version.yml +0 -90
- aider_ce-0.88.11/.gitignore +0 -34
- aider_ce-0.88.11/.pre-commit-config.yaml +0 -23
- aider_ce-0.88.11/CNAME +0 -1
- aider_ce-0.88.11/CONTRIBUTING.md +0 -241
- aider_ce-0.88.11/MANIFEST.in +0 -20
- aider_ce-0.88.11/PKG-INFO +0 -371
- aider_ce-0.88.11/README.md +0 -290
- aider_ce-0.88.11/aider/__init__.py +0 -20
- aider_ce-0.88.11/aider/_version.py +0 -34
- aider_ce-0.88.11/aider/analytics.py +0 -258
- aider_ce-0.88.11/aider/args.py +0 -1044
- aider_ce-0.88.11/aider/args_formatter.py +0 -228
- aider_ce-0.88.11/aider/coders/__init__.py +0 -36
- aider_ce-0.88.11/aider/coders/agent_coder.py +0 -2155
- aider_ce-0.88.11/aider/coders/agent_prompts.py +0 -104
- aider_ce-0.88.11/aider/coders/architect_coder.py +0 -48
- aider_ce-0.88.11/aider/coders/architect_prompts.py +0 -40
- aider_ce-0.88.11/aider/coders/ask_coder.py +0 -9
- aider_ce-0.88.11/aider/coders/ask_prompts.py +0 -35
- aider_ce-0.88.11/aider/coders/base_coder.py +0 -3547
- aider_ce-0.88.11/aider/coders/base_prompts.py +0 -87
- aider_ce-0.88.11/aider/coders/chat_chunks.py +0 -64
- aider_ce-0.88.11/aider/coders/context_coder.py +0 -53
- aider_ce-0.88.11/aider/coders/context_prompts.py +0 -75
- aider_ce-0.88.11/aider/coders/editblock_coder.py +0 -657
- aider_ce-0.88.11/aider/coders/editblock_fenced_coder.py +0 -10
- aider_ce-0.88.11/aider/coders/editblock_fenced_prompts.py +0 -143
- aider_ce-0.88.11/aider/coders/editblock_func_coder.py +0 -141
- aider_ce-0.88.11/aider/coders/editblock_func_prompts.py +0 -27
- aider_ce-0.88.11/aider/coders/editblock_prompts.py +0 -175
- aider_ce-0.88.11/aider/coders/editor_diff_fenced_coder.py +0 -9
- aider_ce-0.88.11/aider/coders/editor_diff_fenced_prompts.py +0 -11
- aider_ce-0.88.11/aider/coders/editor_editblock_coder.py +0 -9
- aider_ce-0.88.11/aider/coders/editor_editblock_prompts.py +0 -21
- aider_ce-0.88.11/aider/coders/editor_whole_coder.py +0 -9
- aider_ce-0.88.11/aider/coders/editor_whole_prompts.py +0 -12
- aider_ce-0.88.11/aider/coders/help_coder.py +0 -16
- aider_ce-0.88.11/aider/coders/help_prompts.py +0 -46
- aider_ce-0.88.11/aider/coders/patch_coder.py +0 -706
- aider_ce-0.88.11/aider/coders/patch_prompts.py +0 -159
- aider_ce-0.88.11/aider/coders/search_replace.py +0 -757
- aider_ce-0.88.11/aider/coders/single_wholefile_func_coder.py +0 -102
- aider_ce-0.88.11/aider/coders/single_wholefile_func_prompts.py +0 -27
- aider_ce-0.88.11/aider/coders/udiff_coder.py +0 -429
- aider_ce-0.88.11/aider/coders/udiff_prompts.py +0 -115
- aider_ce-0.88.11/aider/coders/udiff_simple.py +0 -14
- aider_ce-0.88.11/aider/coders/udiff_simple_prompts.py +0 -25
- aider_ce-0.88.11/aider/coders/wholefile_coder.py +0 -144
- aider_ce-0.88.11/aider/coders/wholefile_func_coder.py +0 -134
- aider_ce-0.88.11/aider/coders/wholefile_func_prompts.py +0 -27
- aider_ce-0.88.11/aider/coders/wholefile_prompts.py +0 -65
- aider_ce-0.88.11/aider/commands.py +0 -2274
- aider_ce-0.88.11/aider/copypaste.py +0 -72
- aider_ce-0.88.11/aider/deprecated.py +0 -126
- aider_ce-0.88.11/aider/diffs.py +0 -128
- aider_ce-0.88.11/aider/editor.py +0 -147
- aider_ce-0.88.11/aider/exceptions.py +0 -115
- aider_ce-0.88.11/aider/gui.py +0 -545
- aider_ce-0.88.11/aider/help.py +0 -163
- aider_ce-0.88.11/aider/history.py +0 -180
- aider_ce-0.88.11/aider/io.py +0 -1569
- aider_ce-0.88.11/aider/linter.py +0 -304
- aider_ce-0.88.11/aider/llm.py +0 -55
- aider_ce-0.88.11/aider/main.py +0 -1379
- aider_ce-0.88.11/aider/mcp/__init__.py +0 -174
- aider_ce-0.88.11/aider/mcp/server.py +0 -149
- aider_ce-0.88.11/aider/mdstream.py +0 -243
- aider_ce-0.88.11/aider/models.py +0 -1313
- aider_ce-0.88.11/aider/onboarding.py +0 -428
- aider_ce-0.88.11/aider/openrouter.py +0 -129
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/c-tags.scm +0 -9
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/clojure-tags.scm +0 -7
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/commonlisp-tags.scm +0 -122
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/cpp-tags.scm +0 -15
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/csharp-tags.scm +0 -26
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/dart-tags.scm +0 -92
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/elixir-tags.scm +0 -54
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/elm-tags.scm +0 -19
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/go-tags.scm +0 -42
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/java-tags.scm +0 -20
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/javascript-tags.scm +0 -88
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/lua-tags.scm +0 -34
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +0 -98
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/python-tags.scm +0 -14
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/r-tags.scm +0 -21
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/ruby-tags.scm +0 -64
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/rust-tags.scm +0 -60
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/solidity-tags.scm +0 -43
- aider_ce-0.88.11/aider/queries/tree-sitter-language-pack/swift-tags.scm +0 -51
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/c-tags.scm +0 -9
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/c_sharp-tags.scm +0 -46
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/cpp-tags.scm +0 -15
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/dart-tags.scm +0 -91
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/elixir-tags.scm +0 -54
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/elm-tags.scm +0 -19
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/fortran-tags.scm +0 -15
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/go-tags.scm +0 -30
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/haskell-tags.scm +0 -3
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/java-tags.scm +0 -20
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/javascript-tags.scm +0 -88
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/julia-tags.scm +0 -60
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/kotlin-tags.scm +0 -27
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/ocaml_interface-tags.scm +0 -98
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/php-tags.scm +0 -26
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/python-tags.scm +0 -12
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/ruby-tags.scm +0 -64
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/rust-tags.scm +0 -60
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/scala-tags.scm +0 -65
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/typescript-tags.scm +0 -41
- aider_ce-0.88.11/aider/queries/tree-sitter-languages/zig-tags.scm +0 -3
- aider_ce-0.88.11/aider/reasoning_tags.py +0 -82
- aider_ce-0.88.11/aider/repo.py +0 -621
- aider_ce-0.88.11/aider/repomap.py +0 -1085
- aider_ce-0.88.11/aider/report.py +0 -200
- aider_ce-0.88.11/aider/resources/__init__.py +0 -3
- aider_ce-0.88.11/aider/resources/model-metadata.json +0 -776
- aider_ce-0.88.11/aider/resources/model-settings.yml +0 -2068
- aider_ce-0.88.11/aider/run_cmd.py +0 -132
- aider_ce-0.88.11/aider/scrape.py +0 -284
- aider_ce-0.88.11/aider/sendchat.py +0 -242
- aider_ce-0.88.11/aider/tools/__init__.py +0 -68
- aider_ce-0.88.11/aider/tools/command.py +0 -97
- aider_ce-0.88.11/aider/tools/command_interactive.py +0 -92
- aider_ce-0.88.11/aider/tools/delete_block.py +0 -182
- aider_ce-0.88.11/aider/tools/delete_line.py +0 -155
- aider_ce-0.88.11/aider/tools/delete_lines.py +0 -184
- aider_ce-0.88.11/aider/tools/extract_lines.py +0 -341
- aider_ce-0.88.11/aider/tools/finished.py +0 -48
- aider_ce-0.88.11/aider/tools/git_diff.py +0 -60
- aider_ce-0.88.11/aider/tools/git_log.py +0 -57
- aider_ce-0.88.11/aider/tools/git_show.py +0 -51
- aider_ce-0.88.11/aider/tools/git_status.py +0 -46
- aider_ce-0.88.11/aider/tools/grep.py +0 -253
- aider_ce-0.88.11/aider/tools/indent_lines.py +0 -221
- aider_ce-0.88.11/aider/tools/insert_block.py +0 -288
- aider_ce-0.88.11/aider/tools/list_changes.py +0 -86
- aider_ce-0.88.11/aider/tools/ls.py +0 -93
- aider_ce-0.88.11/aider/tools/make_editable.py +0 -85
- aider_ce-0.88.11/aider/tools/make_readonly.py +0 -69
- aider_ce-0.88.11/aider/tools/remove.py +0 -91
- aider_ce-0.88.11/aider/tools/replace_all.py +0 -126
- aider_ce-0.88.11/aider/tools/replace_line.py +0 -173
- aider_ce-0.88.11/aider/tools/replace_lines.py +0 -217
- aider_ce-0.88.11/aider/tools/replace_text.py +0 -187
- aider_ce-0.88.11/aider/tools/show_numbered_context.py +0 -147
- aider_ce-0.88.11/aider/tools/tool_utils.py +0 -313
- aider_ce-0.88.11/aider/tools/undo_change.py +0 -95
- aider_ce-0.88.11/aider/tools/update_todo_list.py +0 -156
- aider_ce-0.88.11/aider/tools/view.py +0 -57
- aider_ce-0.88.11/aider/tools/view_files_matching.py +0 -141
- aider_ce-0.88.11/aider/tools/view_files_with_symbol.py +0 -129
- aider_ce-0.88.11/aider/urls.py +0 -17
- aider_ce-0.88.11/aider/utils.py +0 -454
- aider_ce-0.88.11/aider/versioncheck.py +0 -113
- aider_ce-0.88.11/aider/voice.py +0 -205
- aider_ce-0.88.11/aider/watch.py +0 -318
- aider_ce-0.88.11/aider/website/_includes/help.md +0 -24
- aider_ce-0.88.11/aider/website/docs/config/adv-model-settings.md +0 -2261
- aider_ce-0.88.11/aider/website/docs/config/agent-mode.md +0 -192
- aider_ce-0.88.11/aider/website/docs/config/dotenv.md +0 -493
- aider_ce-0.88.11/aider/website/docs/config/editor.md +0 -127
- aider_ce-0.88.11/aider/website/docs/config/mcp.md +0 -95
- aider_ce-0.88.11/aider/website/docs/config/model-aliases.md +0 -104
- aider_ce-0.88.11/aider/website/docs/config/options.md +0 -890
- aider_ce-0.88.11/aider/website/docs/config.md +0 -44
- aider_ce-0.88.11/aider/website/docs/faq.md +0 -384
- aider_ce-0.88.11/aider/website/docs/install/docker.md +0 -57
- aider_ce-0.88.11/aider/website/docs/languages.md +0 -264
- aider_ce-0.88.11/aider/website/docs/more/infinite-output.md +0 -165
- aider_ce-0.88.11/aider/website/docs/scripting.md +0 -100
- aider_ce-0.88.11/aider/website/docs/sessions.md +0 -182
- aider_ce-0.88.11/aider/website/docs/usage/commands.md +0 -133
- aider_ce-0.88.11/aider/website/docs/usage/copypaste.md +0 -121
- aider_ce-0.88.11/aider/website/docs/usage/notifications.md +0 -87
- aider_ce-0.88.11/aider_ce.egg-info/PKG-INFO +0 -371
- aider_ce-0.88.11/aider_ce.egg-info/SOURCES.txt +0 -441
- aider_ce-0.88.11/aider_ce.egg-info/entry_points.txt +0 -2
- aider_ce-0.88.11/aider_ce.egg-info/requires.txt +0 -69
- aider_ce-0.88.11/aider_ce.egg-info/top_level.txt +0 -1
- aider_ce-0.88.11/benchmark/Dockerfile +0 -64
- aider_ce-0.88.11/benchmark/README.md +0 -147
- aider_ce-0.88.11/benchmark/benchmark.py +0 -1265
- aider_ce-0.88.11/benchmark/docker.sh +0 -19
- aider_ce-0.88.11/benchmark/docker_build.sh +0 -8
- aider_ce-0.88.11/benchmark/over_time.py +0 -168
- aider_ce-0.88.11/benchmark/plots.py +0 -417
- aider_ce-0.88.11/benchmark/problem_stats.py +0 -355
- aider_ce-0.88.11/benchmark/refactor_tools.py +0 -209
- aider_ce-0.88.11/benchmark/rungrid.py +0 -61
- aider_ce-0.88.11/benchmark/swe_bench.py +0 -131
- aider_ce-0.88.11/benchmark/test_benchmark.py +0 -47
- aider_ce-0.88.11/docker/Dockerfile +0 -73
- aider_ce-0.88.11/pyproject.toml +0 -52
- aider_ce-0.88.11/pytest.ini +0 -13
- aider_ce-0.88.11/requirements/common-constraints.txt +0 -689
- aider_ce-0.88.11/requirements/requirements-browser.in +0 -1
- aider_ce-0.88.11/requirements/requirements-browser.txt +0 -159
- aider_ce-0.88.11/requirements/requirements-dev.in +0 -15
- aider_ce-0.88.11/requirements/requirements-dev.txt +0 -291
- aider_ce-0.88.11/requirements/requirements-help.txt +0 -416
- aider_ce-0.88.11/requirements/requirements-playwright.txt +0 -18
- aider_ce-0.88.11/requirements/requirements.in +0 -56
- aider_ce-0.88.11/requirements.txt +0 -571
- aider_ce-0.88.11/scripts/30k-image.py +0 -235
- aider_ce-0.88.11/scripts/blame.py +0 -296
- aider_ce-0.88.11/scripts/clean_metadata.py +0 -258
- aider_ce-0.88.11/scripts/dl_icons.py +0 -59
- aider_ce-0.88.11/scripts/history_prompts.py +0 -26
- aider_ce-0.88.11/scripts/homepage.py +0 -619
- aider_ce-0.88.11/scripts/issues.py +0 -458
- aider_ce-0.88.11/scripts/logo_svg.py +0 -174
- aider_ce-0.88.11/scripts/my_models.py +0 -98
- aider_ce-0.88.11/scripts/pip-compile.sh +0 -43
- aider_ce-0.88.11/scripts/recording_audio.py +0 -338
- aider_ce-0.88.11/scripts/redact-cast.py +0 -62
- aider_ce-0.88.11/scripts/tsl_pack_langs.py +0 -145
- aider_ce-0.88.11/scripts/update-history.py +0 -162
- aider_ce-0.88.11/scripts/versionbump.py +0 -175
- aider_ce-0.88.11/scripts/yank-old-versions.py +0 -51
- aider_ce-0.88.11/tests/basic/test_analytics.py +0 -136
- aider_ce-0.88.11/tests/basic/test_aws_credentials.py +0 -169
- aider_ce-0.88.11/tests/basic/test_coder.py +0 -1956
- aider_ce-0.88.11/tests/basic/test_commands.py +0 -2307
- aider_ce-0.88.11/tests/basic/test_deprecated.py +0 -140
- aider_ce-0.88.11/tests/basic/test_editblock.py +0 -620
- aider_ce-0.88.11/tests/basic/test_editor.py +0 -159
- aider_ce-0.88.11/tests/basic/test_exceptions.py +0 -84
- aider_ce-0.88.11/tests/basic/test_find_or_blocks.py +0 -115
- aider_ce-0.88.11/tests/basic/test_history.py +0 -118
- aider_ce-0.88.11/tests/basic/test_io.py +0 -646
- aider_ce-0.88.11/tests/basic/test_linter.py +0 -84
- aider_ce-0.88.11/tests/basic/test_main.py +0 -1556
- aider_ce-0.88.11/tests/basic/test_model_info_manager.py +0 -80
- aider_ce-0.88.11/tests/basic/test_models.py +0 -604
- aider_ce-0.88.11/tests/basic/test_onboarding.py +0 -439
- aider_ce-0.88.11/tests/basic/test_openrouter.py +0 -73
- aider_ce-0.88.11/tests/basic/test_reasoning.py +0 -609
- aider_ce-0.88.11/tests/basic/test_repo.py +0 -720
- aider_ce-0.88.11/tests/basic/test_repomap.py +0 -563
- aider_ce-0.88.11/tests/basic/test_run_cmd.py +0 -11
- aider_ce-0.88.11/tests/basic/test_sanity_check_repo.py +0 -189
- aider_ce-0.88.11/tests/basic/test_scripting.py +0 -39
- aider_ce-0.88.11/tests/basic/test_sendchat.py +0 -177
- aider_ce-0.88.11/tests/basic/test_sessions.py +0 -234
- aider_ce-0.88.11/tests/basic/test_special.py +0 -76
- aider_ce-0.88.11/tests/basic/test_ssl_verification.py +0 -84
- aider_ce-0.88.11/tests/basic/test_udiff.py +0 -119
- aider_ce-0.88.11/tests/basic/test_urls.py +0 -15
- aider_ce-0.88.11/tests/basic/test_voice.py +0 -99
- aider_ce-0.88.11/tests/basic/test_watch.py +0 -166
- aider_ce-0.88.11/tests/basic/test_wholefile.py +0 -361
- aider_ce-0.88.11/tests/browser/test_browser.py +0 -34
- aider_ce-0.88.11/tests/fixtures/chat-history-search-replace-gold.txt +0 -27810
- aider_ce-0.88.11/tests/fixtures/chat-history.md +0 -99961
- aider_ce-0.88.11/tests/fixtures/watch.py +0 -21
- aider_ce-0.88.11/tests/help/test_help.py +0 -163
- aider_ce-0.88.11/tests/scrape/test_playwright_disable.py +0 -139
- aider_ce-0.88.11/tests/scrape/test_scrape.py +0 -192
- {aider_ce-0.88.11 → aider_ce-0.96.0}/.flake8 +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/.github/workflows/docker-release.yml +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/.github/workflows/issues.yml +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/.github/workflows/pre-commit.yml +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/HISTORY.md +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/LICENSE.txt +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/aider_ce.egg-info/dependency_links.txt +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/__init__.py +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/clone-exercism.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/cpp-test.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/install-docker-ubuntu.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/npm-test.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/plot.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/prompts.py +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/rsync.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/swe-bench-lite.txt +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/benchmark/swe-bench.txt +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/__main__.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/change_tracker.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/coders/shell.py +0 -0
- /aider_ce-0.88.11/scripts/__init__.py → /aider_ce-0.96.0/cecli/commands/chat_mode.py +0 -0
- {aider_ce-0.88.11/tests → aider_ce-0.96.0/cecli/commands/utils}/__init__.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/dump.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/format_settings.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/help_pats.py +0 -0
- {aider_ce-0.88.11/tests/basic → aider_ce-0.96.0/cecli/prompts}/__init__.py +0 -0
- /aider_ce-0.88.11/aider/prompts.py → /aider_ce-0.96.0/cecli/prompts/utils/system.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/README.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/arduino-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/chatito-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/d-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/elisp-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/gleam-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/matlab-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/ocaml-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/pony-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/properties-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/racket-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-language-pack/udev-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-languages/README.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-languages/elisp-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-languages/hcl-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-languages/matlab-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-languages/ocaml-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/queries/tree-sitter-languages/ql-tags.scm +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/special.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/waiting.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/watch_prompts.py +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/Gemfile +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/blame.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/get-started.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/help-tip.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/install.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/keys.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/model-warnings.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/multi-line.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/python-m-aider.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/recording.css +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/recording.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/replit-pipx.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_includes/works-best.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/_sass/custom/custom.scss +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/config/aider_conf.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/config/api-keys.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/config/reasoning.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/git.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/index.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/install/codespaces.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/install/optional.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/install/replit.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/install.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/legal/contributor-agreement.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/legal/privacy.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/anthropic.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/azure.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/bedrock.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/cohere.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/deepseek.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/gemini.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/github.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/groq.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/lm-studio.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/ollama.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/openai-compat.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/openai.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/openrouter.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/other.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/vertex.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/warnings.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms/xai.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/llms.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/more/analytics.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/more/edit-formats.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/more-info.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/recordings/auto-accept-architect.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/recordings/dont-drop-original-read-files.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/recordings/index.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/recordings/model-accepts-settings.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/recordings/tree-sitter-language-pack.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/repomap.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/aider-not-found.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/edit-errors.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/imports.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/models-and-keys.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/support.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/token-limits.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting/warnings.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/troubleshooting.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/browser.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/caching.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/conventions.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/images-urls.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/lint-test.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/modes.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/not-code.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/tips.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/tutorials.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/voice.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage/watch.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/docs/usage.md +0 -0
- {aider_ce-0.88.11/aider → aider_ce-0.96.0/cecli}/website/share/index.md +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/requirements/requirements-help.in +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/requirements/requirements-playwright.in +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/requirements/tree-sitter.in +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/scripts/Dockerfile.jekyll +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/scripts/jekyll_build.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/scripts/jekyll_run.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/scripts/tmux_record.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/scripts/update-blame.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/scripts/update-docs.sh +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/setup.cfg +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/arduino/test.ino +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/c/test.c +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/chatito/test.chatito +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/clojure/test.clj +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/commonlisp/test.lisp +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/cpp/test.cpp +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/csharp/test.cs +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/d/test.d +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/dart/test.dart +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/elisp/test.el +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/elixir/test.ex +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/elm/test.elm +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/gleam/test.gleam +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/go/test.go +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/haskell/test.hs +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/hcl/test.tf +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/java/test.java +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/javascript/test.js +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/kotlin/test.kt +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/lua/test.lua +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/matlab/test.m +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/ocaml/test.ml +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/ocaml_interface/test.mli +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/php/test.php +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/pony/test.pony +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/properties/test.properties +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/python/test.py +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/ql/test.ql +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/r/test.r +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/racket/test.rkt +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/ruby/test.rb +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/rust/test.rs +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/scala/test.scala +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/solidity/test.sol +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/swift/test.swift +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/tsx/test.tsx +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/typescript/test.ts +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/udev/test.rules +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/languages/zig/test.zig +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/sample-code-base/sample.js +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/sample-code-base/sample.py +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/sample-code-base-repo-map.txt +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/watch.js +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/watch.lisp +0 -0
- {aider_ce-0.88.11 → aider_ce-0.96.0}/tests/fixtures/watch_question.js +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Ignore everything
|
|
2
|
+
*
|
|
3
|
+
|
|
4
|
+
# But descend into directories
|
|
5
|
+
!*/
|
|
6
|
+
|
|
7
|
+
# Recursively allow files under subtree
|
|
8
|
+
!/.github/**
|
|
9
|
+
!/cecli/**
|
|
10
|
+
!/benchmark/**
|
|
11
|
+
!/docker/**
|
|
12
|
+
!/requirements/**
|
|
13
|
+
!/scripts/**
|
|
14
|
+
!/tests/**
|
|
15
|
+
|
|
16
|
+
# Specific Files
|
|
17
|
+
!/.dockerignore
|
|
18
|
+
!/.flake8
|
|
19
|
+
!/.gitignore
|
|
20
|
+
!/.pre-commit-config.yaml
|
|
21
|
+
!/CNAME
|
|
22
|
+
!/CONTRIBUTING.metadata
|
|
23
|
+
!/HISTORY.md
|
|
24
|
+
!/LICENSE.txt
|
|
25
|
+
!/MANIFEST.in
|
|
26
|
+
!/pyproject.toml
|
|
27
|
+
!/pytest.ini
|
|
28
|
+
!/README.md
|
|
29
|
+
!/requirements.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* text=auto eol=lf
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Question or bug report
|
|
2
|
+
description: Submit a question or bug report to help us improve cecli
|
|
3
|
+
labels: []
|
|
4
|
+
body:
|
|
5
|
+
- type: textarea
|
|
6
|
+
attributes:
|
|
7
|
+
label: Issue
|
|
8
|
+
description: Please describe your problem or question.
|
|
9
|
+
validations:
|
|
10
|
+
required: true
|
|
11
|
+
- type: textarea
|
|
12
|
+
attributes:
|
|
13
|
+
label: Version and model info
|
|
14
|
+
description: Please include cecli version, model being used (`gemini-3-xxx`, etc) and any other switches or config settings that are active.
|
|
15
|
+
placeholder: |
|
|
16
|
+
cecli v0.XX.Y
|
|
17
|
+
Model: gpt-N-... using ???? edit format
|
|
18
|
+
Git repo: .git with ### files
|
|
19
|
+
Repo-map: using #### tokens
|
|
20
|
+
validations:
|
|
21
|
+
required: false
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: Check PyPI Version
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
# Run once a day at midnight UTC
|
|
6
|
+
- cron: '0 0 * * *'
|
|
7
|
+
workflow_dispatch: # Allows manual triggering
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
check_version:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ["3.12", "3.11", "3.10"]
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
18
|
+
uses: actions/setup-python@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: ${{ matrix.python-version }}
|
|
21
|
+
|
|
22
|
+
- name: Install aider-ce
|
|
23
|
+
run: pip install aider-ce
|
|
24
|
+
|
|
25
|
+
- name: Get installed cecli version
|
|
26
|
+
id: installed_version
|
|
27
|
+
run: |
|
|
28
|
+
set -x # Enable debugging output
|
|
29
|
+
cecli_version_output=$(aider-ce --version)
|
|
30
|
+
if [ $? -ne 0 ]; then
|
|
31
|
+
echo "Error: 'cecli --version' command failed."
|
|
32
|
+
exit 1
|
|
33
|
+
fi
|
|
34
|
+
echo "Raw cecli --version output: $cecli_version_output"
|
|
35
|
+
|
|
36
|
+
# Extract version number (format X.Y.Z)
|
|
37
|
+
version_num=$(echo "$cecli_version_output" | grep -oP '\d+\.\d+\.\d+')
|
|
38
|
+
|
|
39
|
+
# Check if grep found anything
|
|
40
|
+
if [ -z "$version_num" ]; then
|
|
41
|
+
echo "Error: Could not extract version number using grep -oP '\d+\.\d+\.\d+' from output: $cecli_version_output"
|
|
42
|
+
exit 1
|
|
43
|
+
fi
|
|
44
|
+
|
|
45
|
+
echo "Extracted version number: $version_num"
|
|
46
|
+
echo "version=$version_num" >> $GITHUB_OUTPUT
|
|
47
|
+
|
|
48
|
+
- name: Check out code
|
|
49
|
+
uses: actions/checkout@v4
|
|
50
|
+
with:
|
|
51
|
+
fetch-depth: 0 # Fetch all history for all tags
|
|
52
|
+
|
|
53
|
+
- name: Get latest tag
|
|
54
|
+
id: latest_tag
|
|
55
|
+
run: |
|
|
56
|
+
set -x # Enable debugging output
|
|
57
|
+
# Fetch all tags from remote just in case
|
|
58
|
+
git fetch --tags origin main
|
|
59
|
+
# Get the latest tag that strictly matches vX.Y.Z (no suffixes like .dev)
|
|
60
|
+
# List all tags, sort by version descending, filter for exact pattern, take the first one
|
|
61
|
+
latest_tag=$(git tag --sort=-v:refname | grep -P '^v\d+\.\d+\.\d+$' | head -n 1)
|
|
62
|
+
|
|
63
|
+
if [ -z "$latest_tag" ]; then
|
|
64
|
+
echo "Error: Could not find any tags matching the pattern '^v\d+\.\d+\.\d+$'"
|
|
65
|
+
exit 1
|
|
66
|
+
fi
|
|
67
|
+
|
|
68
|
+
echo "Latest non-dev tag: $latest_tag"
|
|
69
|
+
# Remove 'v' prefix for comparison
|
|
70
|
+
tag_num=${latest_tag#v}
|
|
71
|
+
echo "Extracted tag number: $tag_num"
|
|
72
|
+
echo "tag=$tag_num" >> $GITHUB_OUTPUT
|
|
73
|
+
|
|
74
|
+
- name: Compare versions
|
|
75
|
+
run: |
|
|
76
|
+
echo "Installed version: ${{ steps.installed_version.outputs.version }}"
|
|
77
|
+
echo "Latest tag version: ${{ steps.latest_tag.outputs.tag }}"
|
|
78
|
+
if [ "${{ steps.installed_version.outputs.version }}" != "${{ steps.latest_tag.outputs.tag }}" ]; then
|
|
79
|
+
echo "Error: Installed cecli version (${{ steps.installed_version.outputs.version }}) does not match the latest tag (${{ steps.latest_tag.outputs.tag }})."
|
|
80
|
+
exit 1
|
|
81
|
+
fi
|
|
82
|
+
echo "Versions match."
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
name: Docker Build Test
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
paths-ignore:
|
|
6
|
+
- 'cecli/website/**'
|
|
7
|
+
- 'README.md'
|
|
8
|
+
- 'HISTORY.md'
|
|
9
|
+
- '.github/workflows/*'
|
|
10
|
+
- '!.github/workflows/docker-build-test.yml'
|
|
11
|
+
branches:
|
|
12
|
+
- main
|
|
13
|
+
pull_request:
|
|
14
|
+
paths-ignore:
|
|
15
|
+
- 'cecli/website/**'
|
|
16
|
+
- 'README.md'
|
|
17
|
+
- 'HISTORY.md'
|
|
18
|
+
- '.github/workflows/*'
|
|
19
|
+
- '!.github/workflows/docker-build-test.yml'
|
|
20
|
+
branches:
|
|
21
|
+
- main
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
docker_build_and_push:
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
steps:
|
|
27
|
+
- name: Checkout code
|
|
28
|
+
uses: actions/checkout@v4
|
|
29
|
+
with:
|
|
30
|
+
fetch-depth: 0
|
|
31
|
+
|
|
32
|
+
- name: Set up QEMU
|
|
33
|
+
uses: docker/setup-qemu-action@v3
|
|
34
|
+
|
|
35
|
+
- name: Set up Docker Buildx
|
|
36
|
+
uses: docker/setup-buildx-action@v3
|
|
37
|
+
|
|
38
|
+
- name: Login to DockerHub
|
|
39
|
+
if: ${{ github.event_name != 'pull_request' }}
|
|
40
|
+
uses: docker/login-action@v3
|
|
41
|
+
with:
|
|
42
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
43
|
+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
44
|
+
|
|
45
|
+
- name: Build Docker images (PR)
|
|
46
|
+
if: ${{ github.event_name == 'pull_request' }}
|
|
47
|
+
uses: docker/build-push-action@v5
|
|
48
|
+
with:
|
|
49
|
+
context: .
|
|
50
|
+
file: ./docker/Dockerfile
|
|
51
|
+
platforms: linux/amd64,linux/arm64
|
|
52
|
+
push: false
|
|
53
|
+
target: aider-ce
|
|
54
|
+
cache-from: type=registry,ref=${{ secrets.DOCKERHUB_USERNAME }}/aider-ce:latest-bc
|
|
55
|
+
|
|
56
|
+
- name: Build Docker images (Push)
|
|
57
|
+
if: ${{ github.event_name != 'pull_request' }}
|
|
58
|
+
uses: docker/build-push-action@v5
|
|
59
|
+
with:
|
|
60
|
+
context: .
|
|
61
|
+
file: ./docker/Dockerfile
|
|
62
|
+
platforms: linux/amd64,linux/arm64
|
|
63
|
+
push: true
|
|
64
|
+
tags: ${{ secrets.DOCKERHUB_USERNAME }}/aider-ce:dev
|
|
65
|
+
target: aider-ce
|
|
66
|
+
cache-from: type=registry,ref=${{ secrets.DOCKERHUB_USERNAME }}/aider-ce:latest-bc
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
+
# They are provided by a third-party and are governed by
|
|
3
|
+
# separate terms of service, privacy policy, and support
|
|
4
|
+
# documentation.
|
|
5
|
+
|
|
6
|
+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
|
|
7
|
+
name: Deploy Jekyll site to Pages
|
|
8
|
+
|
|
9
|
+
on:
|
|
10
|
+
push:
|
|
11
|
+
branches:
|
|
12
|
+
- "main"
|
|
13
|
+
paths:
|
|
14
|
+
- "cecli/website/**"
|
|
15
|
+
- ".github/workflows/pages.yml"
|
|
16
|
+
|
|
17
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
18
|
+
workflow_dispatch:
|
|
19
|
+
|
|
20
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
21
|
+
permissions:
|
|
22
|
+
contents: read
|
|
23
|
+
pages: write
|
|
24
|
+
id-token: write
|
|
25
|
+
|
|
26
|
+
# Allow one concurrent deployment
|
|
27
|
+
concurrency:
|
|
28
|
+
group: "pages"
|
|
29
|
+
cancel-in-progress: true
|
|
30
|
+
|
|
31
|
+
jobs:
|
|
32
|
+
# Build job
|
|
33
|
+
build:
|
|
34
|
+
runs-on: ubuntu-latest
|
|
35
|
+
defaults:
|
|
36
|
+
run:
|
|
37
|
+
working-directory: cecli/website
|
|
38
|
+
steps:
|
|
39
|
+
- name: Checkout
|
|
40
|
+
uses: actions/checkout@v4
|
|
41
|
+
with:
|
|
42
|
+
fetch-depth: 0
|
|
43
|
+
- name: Setup Ruby
|
|
44
|
+
uses: ruby/setup-ruby@v1
|
|
45
|
+
with:
|
|
46
|
+
ruby-version: '3.3' # Not needed with a .ruby-version file
|
|
47
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
48
|
+
cache-version: 0 # Increment this number if you need to re-download cached gems
|
|
49
|
+
working-directory: '${{ github.workspace }}/cecli/website'
|
|
50
|
+
- name: Setup Pages
|
|
51
|
+
id: pages
|
|
52
|
+
uses: actions/configure-pages@v3
|
|
53
|
+
- name: Build with Jekyll
|
|
54
|
+
# Outputs to the './_site' directory by default
|
|
55
|
+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
|
|
56
|
+
env:
|
|
57
|
+
JEKYLL_ENV: production
|
|
58
|
+
- name: Upload artifact
|
|
59
|
+
uses: actions/upload-pages-artifact@v3
|
|
60
|
+
with:
|
|
61
|
+
path: "cecli/website/_site"
|
|
62
|
+
|
|
63
|
+
# Deployment job
|
|
64
|
+
deploy:
|
|
65
|
+
environment:
|
|
66
|
+
name: github-pages
|
|
67
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
68
|
+
runs-on: ubuntu-latest
|
|
69
|
+
needs: build
|
|
70
|
+
steps:
|
|
71
|
+
- name: Deploy to GitHub Pages
|
|
72
|
+
id: deployment
|
|
73
|
+
uses: actions/deploy-pages@v4
|
|
74
|
+
|
|
75
|
+
- name: Set up Python 3.12
|
|
76
|
+
uses: actions/setup-python@v5
|
|
77
|
+
with:
|
|
78
|
+
python-version: '3.12'
|
|
79
|
+
|
|
80
|
+
- name: Install linkchecker
|
|
81
|
+
run: |
|
|
82
|
+
python -m pip install --upgrade pip
|
|
83
|
+
python -m pip install linkchecker
|
|
84
|
+
|
|
85
|
+
- name: Run linkchecker
|
|
86
|
+
run: |
|
|
87
|
+
linkchecker --ignore-url='.+\.(mp4|mov|avi)' https://cecli.dev
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
name: PyPI Release (cecli + aider-ce)
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
tags:
|
|
7
|
+
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
publish_cecli:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout code
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
fetch-depth: 0
|
|
17
|
+
ref: ${{ github.ref }}
|
|
18
|
+
|
|
19
|
+
- name: Set up Python
|
|
20
|
+
uses: actions/setup-python@v5
|
|
21
|
+
with:
|
|
22
|
+
python-version: 3.x
|
|
23
|
+
|
|
24
|
+
- name: Verify pyproject.toml is cecli-dev package
|
|
25
|
+
run: |
|
|
26
|
+
# Check that pyproject.toml has name = "cecli-dev"
|
|
27
|
+
if ! grep -q 'name = "cecli-dev"' pyproject.toml; then
|
|
28
|
+
echo "ERROR: pyproject.toml does not have name = 'cecli-dev'"
|
|
29
|
+
exit 1
|
|
30
|
+
fi
|
|
31
|
+
|
|
32
|
+
- name: Install dependencies
|
|
33
|
+
run: |
|
|
34
|
+
python -m pip install --upgrade pip
|
|
35
|
+
pip install build setuptools wheel twine importlib-metadata==7.2.1
|
|
36
|
+
|
|
37
|
+
- name: Build and publish cecli
|
|
38
|
+
env:
|
|
39
|
+
TWINE_USERNAME: __token__
|
|
40
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
41
|
+
run: |
|
|
42
|
+
python -m build
|
|
43
|
+
twine upload dist/*
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
publish_aider_ce:
|
|
48
|
+
runs-on: ubuntu-latest
|
|
49
|
+
needs: publish_cecli
|
|
50
|
+
steps:
|
|
51
|
+
- name: Clean workspace
|
|
52
|
+
run: |
|
|
53
|
+
# Clean any previous workspace state
|
|
54
|
+
rm -rf ./*
|
|
55
|
+
rm -rf .[!.]* || true
|
|
56
|
+
|
|
57
|
+
- name: Checkout code with explicit tag
|
|
58
|
+
uses: actions/checkout@v4
|
|
59
|
+
with:
|
|
60
|
+
fetch-depth: 0
|
|
61
|
+
ref: ${{ github.ref }}
|
|
62
|
+
|
|
63
|
+
- name: Set up Python
|
|
64
|
+
uses: actions/setup-python@v5
|
|
65
|
+
with:
|
|
66
|
+
python-version: 3.x
|
|
67
|
+
|
|
68
|
+
- name: Copy shim.pyproject.toml for aider-ce build
|
|
69
|
+
run: |
|
|
70
|
+
# Backup current pyproject.toml (which is cecli)
|
|
71
|
+
if [ -f "pyproject.toml" ]; then
|
|
72
|
+
mv pyproject.toml pyproject.toml.backup
|
|
73
|
+
fi
|
|
74
|
+
# Copy shim.pyproject.toml to pyproject.toml
|
|
75
|
+
cp shim.pyproject.toml pyproject.toml
|
|
76
|
+
|
|
77
|
+
- name: Install dependencies
|
|
78
|
+
run: |
|
|
79
|
+
python -m pip install --upgrade pip
|
|
80
|
+
pip install build setuptools wheel twine importlib-metadata==7.2.1
|
|
81
|
+
|
|
82
|
+
- name: Build and publish aider-ce (shim package)
|
|
83
|
+
env:
|
|
84
|
+
TWINE_USERNAME: __token__
|
|
85
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
86
|
+
run: |
|
|
87
|
+
# Extract version from tag (remove 'v' prefix)
|
|
88
|
+
export SETUPTOOLS_SCM_PRETEND_VERSION="${GITHUB_REF#refs/tags/v}"
|
|
89
|
+
echo "Forcing version: $SETUPTOOLS_SCM_PRETEND_VERSION"
|
|
90
|
+
|
|
91
|
+
python -m build
|
|
92
|
+
twine upload dist/*
|
|
93
|
+
|
|
94
|
+
- name: Restore original pyproject.toml
|
|
95
|
+
run: |
|
|
96
|
+
# Restore original pyproject.toml (cecli) if it was backed up
|
|
97
|
+
if [ -f "pyproject.toml.backup" ]; then
|
|
98
|
+
mv pyproject.toml.backup pyproject.toml
|
|
99
|
+
fi
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
name: Ubuntu Python Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
paths-ignore:
|
|
6
|
+
- 'cecli/website/**'
|
|
7
|
+
- 'README.md'
|
|
8
|
+
- 'HISTORY.md'
|
|
9
|
+
- '.github/workflows/*'
|
|
10
|
+
- '!.github/workflows/ubuntu-tests.yml'
|
|
11
|
+
branches:
|
|
12
|
+
- main
|
|
13
|
+
pull_request:
|
|
14
|
+
paths-ignore:
|
|
15
|
+
- 'cecli/website/**'
|
|
16
|
+
- 'README.md'
|
|
17
|
+
- 'HISTORY.md'
|
|
18
|
+
- '.github/workflows/*'
|
|
19
|
+
- '!.github/workflows/ubuntu-tests.yml'
|
|
20
|
+
branches:
|
|
21
|
+
- main
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
build:
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
strategy:
|
|
27
|
+
matrix:
|
|
28
|
+
python-version: ["3.12", "3.11", "3.10"]
|
|
29
|
+
|
|
30
|
+
steps:
|
|
31
|
+
- name: Check out repository
|
|
32
|
+
uses: actions/checkout@v4
|
|
33
|
+
with:
|
|
34
|
+
fetch-depth: 0
|
|
35
|
+
|
|
36
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
37
|
+
uses: actions/setup-python@v5
|
|
38
|
+
with:
|
|
39
|
+
python-version: ${{ matrix.python-version }}
|
|
40
|
+
|
|
41
|
+
- name: Install system dependencies
|
|
42
|
+
run: |
|
|
43
|
+
sudo apt-get update
|
|
44
|
+
sudo apt-get install -y libportaudio2
|
|
45
|
+
|
|
46
|
+
- name: Install dependencies
|
|
47
|
+
run: |
|
|
48
|
+
python -m pip install --upgrade pip
|
|
49
|
+
pip install uv
|
|
50
|
+
uv pip install --system \
|
|
51
|
+
pytest \
|
|
52
|
+
pytest-asyncio \
|
|
53
|
+
pytest-mock \
|
|
54
|
+
-r requirements/requirements.in \
|
|
55
|
+
-r requirements/requirements-help.in \
|
|
56
|
+
-r requirements/requirements-playwright.in \
|
|
57
|
+
".[help,playwright]"
|
|
58
|
+
|
|
59
|
+
- name: Run tests
|
|
60
|
+
run: |
|
|
61
|
+
pytest
|
|
62
|
+
env:
|
|
63
|
+
CECLI_TUI: "false"
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
name: Windows Python Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
paths-ignore:
|
|
6
|
+
- 'cecli/website/**'
|
|
7
|
+
- 'README.md'
|
|
8
|
+
- 'HISTORY.md'
|
|
9
|
+
- '.github/workflows/*'
|
|
10
|
+
- '!.github/workflows/windows-tests.yml'
|
|
11
|
+
branches:
|
|
12
|
+
- main
|
|
13
|
+
pull_request:
|
|
14
|
+
paths-ignore:
|
|
15
|
+
- 'cecli/website/**'
|
|
16
|
+
- 'README.md'
|
|
17
|
+
- 'HISTORY.md'
|
|
18
|
+
- '.github/workflows/*'
|
|
19
|
+
- '!.github/workflows/windows-tests.yml'
|
|
20
|
+
branches:
|
|
21
|
+
- main
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
build:
|
|
25
|
+
runs-on: windows-latest
|
|
26
|
+
strategy:
|
|
27
|
+
matrix:
|
|
28
|
+
python-version: ["3.12", "3.11", "3.10"]
|
|
29
|
+
|
|
30
|
+
steps:
|
|
31
|
+
- name: Check out repository
|
|
32
|
+
uses: actions/checkout@v4
|
|
33
|
+
with:
|
|
34
|
+
fetch-depth: 0
|
|
35
|
+
|
|
36
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
37
|
+
uses: actions/setup-python@v5
|
|
38
|
+
with:
|
|
39
|
+
python-version: ${{ matrix.python-version }}
|
|
40
|
+
|
|
41
|
+
- name: Install dependencies
|
|
42
|
+
run: |
|
|
43
|
+
python -m pip install --upgrade pip
|
|
44
|
+
pip install uv
|
|
45
|
+
uv pip install --system pytest pytest-asyncio pytest-mock -r requirements/requirements.in -r requirements/requirements-help.in -r requirements/requirements-playwright.in '.[help,playwright]'
|
|
46
|
+
|
|
47
|
+
- name: Run tests
|
|
48
|
+
run: |
|
|
49
|
+
pytest
|
|
50
|
+
env:
|
|
51
|
+
CECLI_TUI: "false"
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
name: Windows Check PyPI Version
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
# Run once a day at 1 AM UTC (offset from Ubuntu check)
|
|
6
|
+
- cron: '0 1 * * *'
|
|
7
|
+
workflow_dispatch: # Allows manual triggering
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
check_version:
|
|
11
|
+
runs-on: windows-latest
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ["3.12", "3.11", "3.10"]
|
|
15
|
+
defaults:
|
|
16
|
+
run:
|
|
17
|
+
shell: pwsh # Use PowerShell for all run steps
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
21
|
+
uses: actions/setup-python@v5
|
|
22
|
+
with:
|
|
23
|
+
python-version: ${{ matrix.python-version }}
|
|
24
|
+
|
|
25
|
+
- name: Install aider-ce
|
|
26
|
+
run: pip install aider-ce
|
|
27
|
+
|
|
28
|
+
- name: Get installed cecli version
|
|
29
|
+
id: installed_version
|
|
30
|
+
run: |
|
|
31
|
+
Write-Host "Running 'cecli --version'..."
|
|
32
|
+
$cecli_version_output = aider-ce --version
|
|
33
|
+
if ($LASTEXITCODE -ne 0) {
|
|
34
|
+
Write-Error "Error: 'cecli --version' command failed."
|
|
35
|
+
exit 1
|
|
36
|
+
}
|
|
37
|
+
Write-Host "Raw cecli --version output: $cecli_version_output"
|
|
38
|
+
|
|
39
|
+
# Extract version number (format X.Y.Z) using PowerShell regex
|
|
40
|
+
$match = [regex]::Match($cecli_version_output, '\d+\.\d+\.\d+')
|
|
41
|
+
|
|
42
|
+
if (-not $match.Success) {
|
|
43
|
+
Write-Error "Error: Could not extract version number using regex '\d+\.\d+\.\d+' from output: $cecli_version_output"
|
|
44
|
+
exit 1
|
|
45
|
+
}
|
|
46
|
+
$version_num = $match.Value
|
|
47
|
+
|
|
48
|
+
Write-Host "Extracted version number: $version_num"
|
|
49
|
+
echo "version=$version_num" >> $env:GITHUB_OUTPUT
|
|
50
|
+
|
|
51
|
+
- name: Check out code
|
|
52
|
+
uses: actions/checkout@v4
|
|
53
|
+
with:
|
|
54
|
+
fetch-depth: 0 # Fetch all history for all tags
|
|
55
|
+
|
|
56
|
+
- name: Get latest tag
|
|
57
|
+
id: latest_tag
|
|
58
|
+
run: |
|
|
59
|
+
Write-Host "Fetching tags..."
|
|
60
|
+
# Fetch all tags from remote just in case
|
|
61
|
+
git fetch --tags origin main
|
|
62
|
+
Write-Host "Getting latest non-dev tag..."
|
|
63
|
+
# Get the latest tag that strictly matches vX.Y.Z (no suffixes like .dev)
|
|
64
|
+
# List all tags, sort by version descending, filter for exact pattern, take the first one
|
|
65
|
+
$latest_tag = (git tag --sort=-v:refname | Select-String -Pattern '^v\d+\.\d+\.\d+$' | Select-Object -First 1).Line
|
|
66
|
+
|
|
67
|
+
if (-not $latest_tag) {
|
|
68
|
+
Write-Error "Error: Could not find any tags matching the pattern '^v\d+\.\d+\.\d+$'"
|
|
69
|
+
exit 1
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
Write-Host "Latest non-dev tag: $latest_tag"
|
|
73
|
+
# Remove 'v' prefix for comparison
|
|
74
|
+
$tag_num = $latest_tag.Substring(1)
|
|
75
|
+
Write-Host "Extracted tag number: $tag_num"
|
|
76
|
+
echo "tag=$tag_num" >> $env:GITHUB_OUTPUT
|
|
77
|
+
|
|
78
|
+
- name: Compare versions
|
|
79
|
+
run: |
|
|
80
|
+
Write-Host "Installed version: ${{ steps.installed_version.outputs.version }}"
|
|
81
|
+
Write-Host "Latest tag version: ${{ steps.latest_tag.outputs.tag }}"
|
|
82
|
+
if ("${{ steps.installed_version.outputs.version }}" -ne "${{ steps.latest_tag.outputs.tag }}") {
|
|
83
|
+
Write-Error "Error: Installed cecli version (${{ steps.installed_version.outputs.version }}) does not match the latest tag (${{ steps.latest_tag.outputs.tag }})."
|
|
84
|
+
exit 1
|
|
85
|
+
}
|
|
86
|
+
Write-Host "Versions match."
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Ignore everything
|
|
2
|
+
*
|
|
3
|
+
|
|
4
|
+
# But descend into directories
|
|
5
|
+
!*/
|
|
6
|
+
|
|
7
|
+
# Recursively allow files under subtree
|
|
8
|
+
!/.github/**
|
|
9
|
+
!/cecli/**
|
|
10
|
+
!/benchmark/**
|
|
11
|
+
!/docker/**
|
|
12
|
+
!/requirements/**
|
|
13
|
+
!/scripts/**
|
|
14
|
+
!/tests/**
|
|
15
|
+
|
|
16
|
+
# Specific Files
|
|
17
|
+
!/.dockerignore
|
|
18
|
+
!/.flake8
|
|
19
|
+
!/.gitattributes
|
|
20
|
+
!/.gitignore
|
|
21
|
+
!/.pre-commit-config.yaml
|
|
22
|
+
!/CHANGELOG.md
|
|
23
|
+
!/CNAME
|
|
24
|
+
!/CONTRIBUTING.metadata
|
|
25
|
+
!/HISTORY.md
|
|
26
|
+
!/LICENSE.txt
|
|
27
|
+
!/MANIFEST.in
|
|
28
|
+
!/shim.pyproject.toml
|
|
29
|
+
!/pyproject.toml
|
|
30
|
+
!/pytest.ini
|
|
31
|
+
!/README.md
|
|
32
|
+
!/requirements.txt
|
|
33
|
+
|
|
34
|
+
# Ignore specific files
|
|
35
|
+
.aider*
|
|
36
|
+
aider/__version__.py
|
|
37
|
+
aider/_version.py
|
|
38
|
+
.cecli*
|
|
39
|
+
cecli/__version__.py
|
|
40
|
+
cecli/_version.py
|
|
41
|
+
*.pyc
|
|
42
|
+
env/
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/PyCQA/isort
|
|
3
|
+
rev: 5.12.0
|
|
4
|
+
hooks:
|
|
5
|
+
- id: isort
|
|
6
|
+
args: ["--profile", "black"]
|
|
7
|
+
- repo: https://github.com/psf/black
|
|
8
|
+
rev: 23.3.0
|
|
9
|
+
hooks:
|
|
10
|
+
- id: black
|
|
11
|
+
args: ["--line-length", "100", "--preview"]
|
|
12
|
+
- repo: https://github.com/pycqa/flake8
|
|
13
|
+
rev: 7.1.0
|
|
14
|
+
hooks:
|
|
15
|
+
- id: flake8
|
|
16
|
+
args: ["--show-source"]
|
|
17
|
+
- repo: https://github.com/codespell-project/codespell
|
|
18
|
+
rev: v2.2.6
|
|
19
|
+
hooks:
|
|
20
|
+
- id: codespell
|
|
21
|
+
args: ["--skip", "cecli/website/docs/languages.md"]
|
|
22
|
+
additional_dependencies:
|
|
23
|
+
- tomli
|
|
24
|
+
- repo: local
|
|
25
|
+
hooks:
|
|
26
|
+
- id: filter-model-metadata
|
|
27
|
+
name: Filter model metadata to chat mode only
|
|
28
|
+
entry: node scripts/filter-chat-mode.js
|
|
29
|
+
args: ["cecli/resources/model-metadata.json"]
|
|
30
|
+
language: system
|
|
31
|
+
files: ^cecli/resources/model-metadata\.json$
|
|
32
|
+
pass_filenames: false
|