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.
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/PKG-INFO +34 -9
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/README.md +33 -8
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/pyproject.toml +1 -1
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/.env.example +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/.github/workflows/tests.yml +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/.gitignore +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/__init__.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/__main__.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/changelog_generator.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/code_reviewer.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/commit_generator.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/conflict_resolver.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/gitignore_generator.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/history_analyzer.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/intent_parser.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/llm_factory.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/pr_drafter.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/changelog.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/commit.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/conflict.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/explain.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/ignore.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/intent.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/pr.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/review.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/search.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ai/prompts/undo.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/cli.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/config.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/context.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/git_ops.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/core/safety.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/banner.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/dashboard.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/display.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/prompts.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/ui/themes.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/utils/conflict_parser.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/utils/diff_parser.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/ace/utils/json_utils.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/conftest.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_changelog_generator.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_code_reviewer.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_conflict_resolver.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_diff_trimmer.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_git_ops.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_help.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_history_analyzer.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_ignore.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_intent_parser.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_llm_factory.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_pr_drafter.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_safety.py +0 -0
- {ace_git_copilot-0.1.2 → ace_git_copilot-0.1.3}/tests/test_search.py +0 -0
- {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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
68
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
48
|
-
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|