ace-git-copilot 0.1.2__tar.gz → 0.1.3__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.
Files changed (55) hide show
  1. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/PKG-INFO +34 -9
  2. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/README.md +33 -8
  3. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/pyproject.toml +1 -1
  4. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/.env.example +0 -0
  5. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/.github/workflows/tests.yml +0 -0
  6. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/.gitignore +0 -0
  7. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/__init__.py +0 -0
  8. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/__main__.py +0 -0
  9. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/changelog_generator.py +0 -0
  10. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/code_reviewer.py +0 -0
  11. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/commit_generator.py +0 -0
  12. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/conflict_resolver.py +0 -0
  13. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/gitignore_generator.py +0 -0
  14. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/history_analyzer.py +0 -0
  15. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/intent_parser.py +0 -0
  16. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/llm_factory.py +0 -0
  17. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/pr_drafter.py +0 -0
  18. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/changelog.py +0 -0
  19. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/commit.py +0 -0
  20. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/conflict.py +0 -0
  21. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/explain.py +0 -0
  22. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/ignore.py +0 -0
  23. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/intent.py +0 -0
  24. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/pr.py +0 -0
  25. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/review.py +0 -0
  26. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/search.py +0 -0
  27. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/undo.py +0 -0
  28. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/cli.py +0 -0
  29. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/config.py +0 -0
  30. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/context.py +0 -0
  31. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/git_ops.py +0 -0
  32. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/safety.py +0 -0
  33. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/banner.py +0 -0
  34. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/dashboard.py +0 -0
  35. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/display.py +0 -0
  36. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/prompts.py +0 -0
  37. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/themes.py +0 -0
  38. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/utils/conflict_parser.py +0 -0
  39. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/utils/diff_parser.py +0 -0
  40. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/utils/json_utils.py +0 -0
  41. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/conftest.py +0 -0
  42. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_changelog_generator.py +0 -0
  43. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_code_reviewer.py +0 -0
  44. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_conflict_resolver.py +0 -0
  45. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_diff_trimmer.py +0 -0
  46. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_git_ops.py +0 -0
  47. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_help.py +0 -0
  48. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_history_analyzer.py +0 -0
  49. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_ignore.py +0 -0
  50. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_intent_parser.py +0 -0
  51. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_llm_factory.py +0 -0
  52. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_pr_drafter.py +0 -0
  53. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_safety.py +0 -0
  54. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_search.py +0 -0
  55. {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_undo.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ace-git-copilot
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: AI-powered Git copilot — talk to Git in plain English
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: click>=8.0
@@ -43,16 +43,34 @@ Description-Content-Type: text/markdown
43
43
 
44
44
  ## 🚀 Installation
45
45
 
46
- Install the package directly from PyPI:
46
+ For Python command-line applications like Ace, it is highly recommended to install using **`pipx`**. `pipx` automatically installs the application in an isolated environment and manages your system `PATH` so the executable works globally without conflict.
47
+
48
+ ### Option A: Install via pipx (Recommended)
49
+ 1. Install `pipx` and configure your system `PATH` (only needs to be done once):
50
+ ```bash
51
+ pip install pipx
52
+ pipx ensurepath
53
+ ```
54
+ *(Note: If `pipx ensurepath` modified your path, close your current terminal window and open a new one to apply).*
55
+
56
+ 2. Install Ace:
57
+ ```bash
58
+ pipx install ace-git-copilot
59
+ ```
60
+
61
+ 3. Run it directly:
62
+ ```bash
63
+ ace dash
64
+ ```
65
+
66
+ ### Option B: Install via standard pip (Alternative)
67
+ You can also install Ace globally using standard `pip`:
47
68
  ```bash
48
69
  pip install ace-git-copilot
49
70
  ```
50
-
51
- *Note: Make sure your Python scripts path (e.g., `AppData\Roaming\Python\Python3xx\Scripts` on Windows) is added to your environment `PATH` variable.*
52
-
53
- To update to the latest version:
71
+ *Note: If you run into a `command not found` error, you can bypass your system PATH and run the tool directly through Python module execution:*
54
72
  ```bash
55
- pip install --upgrade ace-git-copilot
73
+ python -m ace dash
56
74
  ```
57
75
 
58
76
  ---
@@ -64,8 +82,15 @@ Run the built-in configuration wizard to select your AI model provider:
64
82
  ace setup
65
83
  ```
66
84
  Ace saves your configuration file to `~/.ace/config.toml`. It supports:
67
- 1. **NVIDIA NIM Cloud API** (high-speed, high-accuracy models) using your NVIDIA developer API key.
68
- 2. **Local Ollama Models** (100% offline, free private local models like `qwen2.5-coder`, `llama3.1`, or `mistral`). If the requested model isn't downloaded, Ace will automatically pull it for you.
85
+
86
+ ### 1. Cloud Models (NVIDIA NIM API)
87
+ Uses cloud-hosted high-performance models.
88
+ * To use this, you'll need an NVIDIA developer API key. Get one for free at [NVIDIA build](https://build.nvidia.com/).
89
+
90
+ ### 2. Local Models (Ollama)
91
+ For a 100% private, offline, and free experience.
92
+ * Ensure [Ollama](https://ollama.com/) is installed and running on your system.
93
+ * You can select models like `qwen2.5-coder`, `llama3.1`, or `mistral`. If the selected model is not downloaded yet, Ace will automatically pull it for you during setup.
69
94
 
70
95
  ---
71
96
 
@@ -23,16 +23,34 @@
23
23
 
24
24
  ## 🚀 Installation
25
25
 
26
- Install the package directly from PyPI:
26
+ For Python command-line applications like Ace, it is highly recommended to install using **`pipx`**. `pipx` automatically installs the application in an isolated environment and manages your system `PATH` so the executable works globally without conflict.
27
+
28
+ ### Option A: Install via pipx (Recommended)
29
+ 1. Install `pipx` and configure your system `PATH` (only needs to be done once):
30
+ ```bash
31
+ pip install pipx
32
+ pipx ensurepath
33
+ ```
34
+ *(Note: If `pipx ensurepath` modified your path, close your current terminal window and open a new one to apply).*
35
+
36
+ 2. Install Ace:
37
+ ```bash
38
+ pipx install ace-git-copilot
39
+ ```
40
+
41
+ 3. Run it directly:
42
+ ```bash
43
+ ace dash
44
+ ```
45
+
46
+ ### Option B: Install via standard pip (Alternative)
47
+ You can also install Ace globally using standard `pip`:
27
48
  ```bash
28
49
  pip install ace-git-copilot
29
50
  ```
30
-
31
- *Note: Make sure your Python scripts path (e.g., `AppData\Roaming\Python\Python3xx\Scripts` on Windows) is added to your environment `PATH` variable.*
32
-
33
- To update to the latest version:
51
+ *Note: If you run into a `command not found` error, you can bypass your system PATH and run the tool directly through Python module execution:*
34
52
  ```bash
35
- pip install --upgrade ace-git-copilot
53
+ python -m ace dash
36
54
  ```
37
55
 
38
56
  ---
@@ -44,8 +62,15 @@ Run the built-in configuration wizard to select your AI model provider:
44
62
  ace setup
45
63
  ```
46
64
  Ace saves your configuration file to `~/.ace/config.toml`. It supports:
47
- 1. **NVIDIA NIM Cloud API** (high-speed, high-accuracy models) using your NVIDIA developer API key.
48
- 2. **Local Ollama Models** (100% offline, free private local models like `qwen2.5-coder`, `llama3.1`, or `mistral`). If the requested model isn't downloaded, Ace will automatically pull it for you.
65
+
66
+ ### 1. Cloud Models (NVIDIA NIM API)
67
+ Uses cloud-hosted high-performance models.
68
+ * To use this, you'll need an NVIDIA developer API key. Get one for free at [NVIDIA build](https://build.nvidia.com/).
69
+
70
+ ### 2. Local Models (Ollama)
71
+ For a 100% private, offline, and free experience.
72
+ * Ensure [Ollama](https://ollama.com/) is installed and running on your system.
73
+ * You can select models like `qwen2.5-coder`, `llama3.1`, or `mistral`. If the selected model is not downloaded yet, Ace will automatically pull it for you during setup.
49
74
 
50
75
  ---
51
76
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ace-git-copilot"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "AI-powered Git copilot — talk to Git in plain English"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"