├── .github └── workflows │ └── build-and-release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh.md ├── _images ├── app_en.gif └── app_zh.gif ├── ai_code_context_helper ├── __init__.py ├── clipboard_operations.py ├── code_context_generator.py ├── config.py ├── dialogs.py ├── file_utils.py ├── gui_components.py ├── languages.py ├── resources │ ├── default_settings.json │ ├── icon.ico │ └── weixin.png ├── run.py ├── settings_manager.py ├── tooltip.py ├── tree_operations.py └── version.py ├── pyproject.toml └── scripts └── build_exe_poetry.bat /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | poetry.lock 2 | build/ 3 | venv/ 4 | dist/ 5 | .vscode/ 6 | **/__pycache__/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/README_zh.md -------------------------------------------------------------------------------- /_images/app_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/_images/app_en.gif -------------------------------------------------------------------------------- /_images/app_zh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/_images/app_zh.gif -------------------------------------------------------------------------------- /ai_code_context_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/__init__.py -------------------------------------------------------------------------------- /ai_code_context_helper/clipboard_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/clipboard_operations.py -------------------------------------------------------------------------------- /ai_code_context_helper/code_context_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/code_context_generator.py -------------------------------------------------------------------------------- /ai_code_context_helper/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/config.py -------------------------------------------------------------------------------- /ai_code_context_helper/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/dialogs.py -------------------------------------------------------------------------------- /ai_code_context_helper/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/file_utils.py -------------------------------------------------------------------------------- /ai_code_context_helper/gui_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/gui_components.py -------------------------------------------------------------------------------- /ai_code_context_helper/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/languages.py -------------------------------------------------------------------------------- /ai_code_context_helper/resources/default_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/resources/default_settings.json -------------------------------------------------------------------------------- /ai_code_context_helper/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/resources/icon.ico -------------------------------------------------------------------------------- /ai_code_context_helper/resources/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/resources/weixin.png -------------------------------------------------------------------------------- /ai_code_context_helper/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/run.py -------------------------------------------------------------------------------- /ai_code_context_helper/settings_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/settings_manager.py -------------------------------------------------------------------------------- /ai_code_context_helper/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/tooltip.py -------------------------------------------------------------------------------- /ai_code_context_helper/tree_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/ai_code_context_helper/tree_operations.py -------------------------------------------------------------------------------- /ai_code_context_helper/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.2.0" 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/build_exe_poetry.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansan0/ai-code-context-helper/HEAD/scripts/build_exe_poetry.bat --------------------------------------------------------------------------------