hey-cli-python 1.0.16__tar.gz → 1.1.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.
Files changed (20) hide show
  1. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/PKG-INFO +31 -33
  2. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/README.md +30 -32
  3. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli_python.egg-info/PKG-INFO +31 -33
  4. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/pyproject.toml +1 -1
  5. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/LICENSE +0 -0
  6. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/__init__.py +0 -0
  7. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/cli.py +0 -0
  8. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/governance.py +0 -0
  9. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/history.py +0 -0
  10. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/llm.py +0 -0
  11. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/models.py +0 -0
  12. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/runner.py +0 -0
  13. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli/skills.py +0 -0
  14. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli_python.egg-info/SOURCES.txt +0 -0
  15. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli_python.egg-info/dependency_links.txt +0 -0
  16. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli_python.egg-info/entry_points.txt +0 -0
  17. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli_python.egg-info/requires.txt +0 -0
  18. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/hey_cli_python.egg-info/top_level.txt +0 -0
  19. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/setup.cfg +0 -0
  20. {hey_cli_python-1.0.16 → hey_cli_python-1.1.0}/tests/test_cli.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hey-cli-python
3
- Version: 1.0.16
3
+ Version: 1.1.0
4
4
  Summary: A secure, zero-bloat CLI companion that turns natural language and error logs into executable commands.
5
5
  Author: Mohit Singh Sinsniwal
6
6
  Project-URL: Homepage, https://github.com/sinsniwal/hey-cli
@@ -30,26 +30,22 @@ Dynamic: license-file
30
30
  <h1>hey-cli</h1>
31
31
  <p><strong>Your terminal buddy that turns plain English into shell scripts — and runs them for you.</strong></p>
32
32
 
33
- <a href="https://pypi.org/project/hey-cli-python/"><img src="https://img.shields.io/pypi/v/hey-cli-python?label=PyPI&color=blue" alt="PyPI" /></a>
34
- <img src="https://img.shields.io/pypi/pyversions/hey-cli-python?color=blue" alt="Python" />
35
- <a href="https://github.com/sinsniwal/hey-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License" /></a>
36
- <a href="https://github.com/sinsniwal/hey-cli/releases/latest"><img src="https://img.shields.io/github/v/release/sinsniwal/hey-cli?label=Release&color=orange" alt="Release" /></a>
33
+ <a href="https://pypi.org/project/hey-cli-python/"><img src="https://img.shields.io/pypi/v/hey-cli-python?label=PyPI&color=blue" alt="PyPI" /></a>
34
+ <img src="https://img.shields.io/pypi/pyversions/hey-cli-python?color=blue" alt="Python" />
35
+ <a href="https://github.com/sinsniwal/hey-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License" /></a>
36
+ <a href="https://github.com/sinsniwal/hey-cli/releases/latest"><img src="https://img.shields.io/github/v/release/sinsniwal/hey-cli?label=Release&color=orange" alt="Release" /></a>
37
+
37
38
  </div>
38
39
 
39
40
  <br>
40
41
 
41
42
  `hey` is a terminal-native AI assistant that translates plain English into executable shell commands using a locally-hosted LLM via [Ollama](https://ollama.com). Your data never leaves your machine.
42
43
 
43
- ```
44
- $ hey find all python files modified in the last 24 hours
45
- ● Thinking...
46
-
47
- ▶ find . -name "*.py" -mtime -1 -type f
48
-
49
- Run this command? [Y/n]:
50
- ```
44
+ <div align="center">
45
+ <img src="https://github.com/sinsniwal/hey-cli/raw/main/assets/demo.gif" width="800" alt="Hey CLI Demo">
46
+ </div>
51
47
 
52
- ---
48
+ <br>
53
49
 
54
50
  ## Features
55
51
 
@@ -99,10 +95,10 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main
99
95
 
100
96
  Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cli/releases/latest). No Python required.
101
97
 
102
- ### pip / pipx
98
+ ### uv (Recommended)
103
99
 
104
100
  ```bash
105
- pipx install hey-cli-python
101
+ uv tool install hey-cli-python
106
102
  ```
107
103
 
108
104
  > **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
@@ -110,11 +106,13 @@ pipx install hey-cli-python
110
106
  ### Uninstallation
111
107
 
112
108
  **macOS & Linux:**
109
+
113
110
  ```bash
114
111
  curl -sL https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.sh | bash
115
112
  ```
116
113
 
117
114
  **Windows (PowerShell):**
115
+
118
116
  ```powershell
119
117
  Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.ps1" -OutFile "$env:TEMP\hey_uninstall.ps1"; & "$env:TEMP\hey_uninstall.ps1"
120
118
  ```
@@ -129,27 +127,26 @@ hey <your objective in plain English>
129
127
 
130
128
  ### Examples
131
129
 
132
- | Command | What happens |
133
- |---------|-------------|
134
- | `hey list all running docker containers` | Generates and runs `docker ps` |
135
- | `hey is port 8080 in use?` | Silently runs `lsof -i :8080`, reads output, answers in English |
136
- | `hey forcefully delete all .pyc files` | Generates `find . -name "*.pyc" -delete`, pauses for confirmation |
137
- | `hey compress this folder into a tar.gz` | Generates the correct `tar` command for your OS |
138
- | `npm run build 2>&1 \| hey what broke?` | Reads piped stderr and explains the error |
139
- | `hey --clear` | Wipes conversational memory |
130
+ | Command | What happens |
131
+ | ---------------------------------------- | ----------------------------------------------------------------- |
132
+ | `hey list all running docker containers` | Generates and runs `docker ps` |
133
+ | `hey is port 8080 in use?` | Silently runs `lsof -i :8080`, reads output, answers in English |
134
+ | `hey forcefully delete all .pyc files` | Generates `find . -name "*.pyc" -delete`, pauses for confirmation |
135
+ | `hey compress this folder into a tar.gz` | Generates the correct `tar` command for your OS |
136
+ | `npm run build 2>&1 \| hey what broke?` | Reads piped stderr and explains the error |
137
+ | `hey --clear` | Wipes conversational memory |
140
138
 
141
139
  ### Execution Levels
142
140
 
143
- | Level | Flag | Behavior |
144
- |-------|------|----------|
145
- | 0 | `--level 0` | Dry-run — shows the command but never executes |
146
- | 1 | *(default)* | Supervised — safe commands auto-run, risky ones ask for confirmation |
147
- | 2 | `--level 2` | Unrestricted — executes everything without confirmation |
148
- | 3 | `--level 3` | Troubleshooter — iteratively debugs until the objective is resolved |
141
+ | Level | Flag | Behavior |
142
+ | ----- | ----------- | -------------------------------------------------------------------- |
143
+ | 0 | `--level 0` | Dry-run — shows the command but never executes |
144
+ | 1 | _(default)_ | Supervised — safe commands auto-run, risky ones ask for confirmation |
145
+ | 2 | `--level 2` | Unrestricted — executes everything without confirmation |
146
+ | 3 | `--level 3` | Troubleshooter — iteratively debugs until the objective is resolved |
149
147
 
150
148
  ---
151
149
 
152
-
153
150
  ---
154
151
 
155
152
  ## Authentication & Custom Endpoints
@@ -215,8 +212,9 @@ hey "your question"
215
212
  ```
216
213
 
217
214
  - **Zero external API calls** — communicates with Ollama via `localhost:11434` using Python's built-in `urllib`.
218
- - **Zero compiled dependencies** — the only runtime dependency is `rich` (for terminal formatting).
219
- - **Pure Python 3.9–3.14** — no C extensions, no Rust, no build tools required.
215
+ - **Zero compiled dependencies** — the core logic is pure Python (only `rich` is used for formatting).
216
+ - **Pure Python 3.9–3.14** — works with `uv`, `pipx`, or standard `pip`. No build tools required.
217
+ - **Instant Speed** — Installation with `uv` or `brew` binaries takes < 2 seconds.
220
218
 
221
219
  ---
222
220
 
@@ -2,26 +2,22 @@
2
2
  <h1>hey-cli</h1>
3
3
  <p><strong>Your terminal buddy that turns plain English into shell scripts — and runs them for you.</strong></p>
4
4
 
5
- <a href="https://pypi.org/project/hey-cli-python/"><img src="https://img.shields.io/pypi/v/hey-cli-python?label=PyPI&color=blue" alt="PyPI" /></a>
6
- <img src="https://img.shields.io/pypi/pyversions/hey-cli-python?color=blue" alt="Python" />
7
- <a href="https://github.com/sinsniwal/hey-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License" /></a>
8
- <a href="https://github.com/sinsniwal/hey-cli/releases/latest"><img src="https://img.shields.io/github/v/release/sinsniwal/hey-cli?label=Release&color=orange" alt="Release" /></a>
5
+ <a href="https://pypi.org/project/hey-cli-python/"><img src="https://img.shields.io/pypi/v/hey-cli-python?label=PyPI&color=blue" alt="PyPI" /></a>
6
+ <img src="https://img.shields.io/pypi/pyversions/hey-cli-python?color=blue" alt="Python" />
7
+ <a href="https://github.com/sinsniwal/hey-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License" /></a>
8
+ <a href="https://github.com/sinsniwal/hey-cli/releases/latest"><img src="https://img.shields.io/github/v/release/sinsniwal/hey-cli?label=Release&color=orange" alt="Release" /></a>
9
+
9
10
  </div>
10
11
 
11
12
  <br>
12
13
 
13
14
  `hey` is a terminal-native AI assistant that translates plain English into executable shell commands using a locally-hosted LLM via [Ollama](https://ollama.com). Your data never leaves your machine.
14
15
 
15
- ```
16
- $ hey find all python files modified in the last 24 hours
17
- ● Thinking...
18
-
19
- ▶ find . -name "*.py" -mtime -1 -type f
20
-
21
- Run this command? [Y/n]:
22
- ```
16
+ <div align="center">
17
+ <img src="https://github.com/sinsniwal/hey-cli/raw/main/assets/demo.gif" width="800" alt="Hey CLI Demo">
18
+ </div>
23
19
 
24
- ---
20
+ <br>
25
21
 
26
22
  ## Features
27
23
 
@@ -71,10 +67,10 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main
71
67
 
72
68
  Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cli/releases/latest). No Python required.
73
69
 
74
- ### pip / pipx
70
+ ### uv (Recommended)
75
71
 
76
72
  ```bash
77
- pipx install hey-cli-python
73
+ uv tool install hey-cli-python
78
74
  ```
79
75
 
80
76
  > **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
@@ -82,11 +78,13 @@ pipx install hey-cli-python
82
78
  ### Uninstallation
83
79
 
84
80
  **macOS & Linux:**
81
+
85
82
  ```bash
86
83
  curl -sL https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.sh | bash
87
84
  ```
88
85
 
89
86
  **Windows (PowerShell):**
87
+
90
88
  ```powershell
91
89
  Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.ps1" -OutFile "$env:TEMP\hey_uninstall.ps1"; & "$env:TEMP\hey_uninstall.ps1"
92
90
  ```
@@ -101,27 +99,26 @@ hey <your objective in plain English>
101
99
 
102
100
  ### Examples
103
101
 
104
- | Command | What happens |
105
- |---------|-------------|
106
- | `hey list all running docker containers` | Generates and runs `docker ps` |
107
- | `hey is port 8080 in use?` | Silently runs `lsof -i :8080`, reads output, answers in English |
108
- | `hey forcefully delete all .pyc files` | Generates `find . -name "*.pyc" -delete`, pauses for confirmation |
109
- | `hey compress this folder into a tar.gz` | Generates the correct `tar` command for your OS |
110
- | `npm run build 2>&1 \| hey what broke?` | Reads piped stderr and explains the error |
111
- | `hey --clear` | Wipes conversational memory |
102
+ | Command | What happens |
103
+ | ---------------------------------------- | ----------------------------------------------------------------- |
104
+ | `hey list all running docker containers` | Generates and runs `docker ps` |
105
+ | `hey is port 8080 in use?` | Silently runs `lsof -i :8080`, reads output, answers in English |
106
+ | `hey forcefully delete all .pyc files` | Generates `find . -name "*.pyc" -delete`, pauses for confirmation |
107
+ | `hey compress this folder into a tar.gz` | Generates the correct `tar` command for your OS |
108
+ | `npm run build 2>&1 \| hey what broke?` | Reads piped stderr and explains the error |
109
+ | `hey --clear` | Wipes conversational memory |
112
110
 
113
111
  ### Execution Levels
114
112
 
115
- | Level | Flag | Behavior |
116
- |-------|------|----------|
117
- | 0 | `--level 0` | Dry-run — shows the command but never executes |
118
- | 1 | *(default)* | Supervised — safe commands auto-run, risky ones ask for confirmation |
119
- | 2 | `--level 2` | Unrestricted — executes everything without confirmation |
120
- | 3 | `--level 3` | Troubleshooter — iteratively debugs until the objective is resolved |
113
+ | Level | Flag | Behavior |
114
+ | ----- | ----------- | -------------------------------------------------------------------- |
115
+ | 0 | `--level 0` | Dry-run — shows the command but never executes |
116
+ | 1 | _(default)_ | Supervised — safe commands auto-run, risky ones ask for confirmation |
117
+ | 2 | `--level 2` | Unrestricted — executes everything without confirmation |
118
+ | 3 | `--level 3` | Troubleshooter — iteratively debugs until the objective is resolved |
121
119
 
122
120
  ---
123
121
 
124
-
125
122
  ---
126
123
 
127
124
  ## Authentication & Custom Endpoints
@@ -187,8 +184,9 @@ hey "your question"
187
184
  ```
188
185
 
189
186
  - **Zero external API calls** — communicates with Ollama via `localhost:11434` using Python's built-in `urllib`.
190
- - **Zero compiled dependencies** — the only runtime dependency is `rich` (for terminal formatting).
191
- - **Pure Python 3.9–3.14** — no C extensions, no Rust, no build tools required.
187
+ - **Zero compiled dependencies** — the core logic is pure Python (only `rich` is used for formatting).
188
+ - **Pure Python 3.9–3.14** — works with `uv`, `pipx`, or standard `pip`. No build tools required.
189
+ - **Instant Speed** — Installation with `uv` or `brew` binaries takes < 2 seconds.
192
190
 
193
191
  ---
194
192
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hey-cli-python
3
- Version: 1.0.16
3
+ Version: 1.1.0
4
4
  Summary: A secure, zero-bloat CLI companion that turns natural language and error logs into executable commands.
5
5
  Author: Mohit Singh Sinsniwal
6
6
  Project-URL: Homepage, https://github.com/sinsniwal/hey-cli
@@ -30,26 +30,22 @@ Dynamic: license-file
30
30
  <h1>hey-cli</h1>
31
31
  <p><strong>Your terminal buddy that turns plain English into shell scripts — and runs them for you.</strong></p>
32
32
 
33
- <a href="https://pypi.org/project/hey-cli-python/"><img src="https://img.shields.io/pypi/v/hey-cli-python?label=PyPI&color=blue" alt="PyPI" /></a>
34
- <img src="https://img.shields.io/pypi/pyversions/hey-cli-python?color=blue" alt="Python" />
35
- <a href="https://github.com/sinsniwal/hey-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License" /></a>
36
- <a href="https://github.com/sinsniwal/hey-cli/releases/latest"><img src="https://img.shields.io/github/v/release/sinsniwal/hey-cli?label=Release&color=orange" alt="Release" /></a>
33
+ <a href="https://pypi.org/project/hey-cli-python/"><img src="https://img.shields.io/pypi/v/hey-cli-python?label=PyPI&color=blue" alt="PyPI" /></a>
34
+ <img src="https://img.shields.io/pypi/pyversions/hey-cli-python?color=blue" alt="Python" />
35
+ <a href="https://github.com/sinsniwal/hey-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License" /></a>
36
+ <a href="https://github.com/sinsniwal/hey-cli/releases/latest"><img src="https://img.shields.io/github/v/release/sinsniwal/hey-cli?label=Release&color=orange" alt="Release" /></a>
37
+
37
38
  </div>
38
39
 
39
40
  <br>
40
41
 
41
42
  `hey` is a terminal-native AI assistant that translates plain English into executable shell commands using a locally-hosted LLM via [Ollama](https://ollama.com). Your data never leaves your machine.
42
43
 
43
- ```
44
- $ hey find all python files modified in the last 24 hours
45
- ● Thinking...
46
-
47
- ▶ find . -name "*.py" -mtime -1 -type f
48
-
49
- Run this command? [Y/n]:
50
- ```
44
+ <div align="center">
45
+ <img src="https://github.com/sinsniwal/hey-cli/raw/main/assets/demo.gif" width="800" alt="Hey CLI Demo">
46
+ </div>
51
47
 
52
- ---
48
+ <br>
53
49
 
54
50
  ## Features
55
51
 
@@ -99,10 +95,10 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main
99
95
 
100
96
  Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cli/releases/latest). No Python required.
101
97
 
102
- ### pip / pipx
98
+ ### uv (Recommended)
103
99
 
104
100
  ```bash
105
- pipx install hey-cli-python
101
+ uv tool install hey-cli-python
106
102
  ```
107
103
 
108
104
  > **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
@@ -110,11 +106,13 @@ pipx install hey-cli-python
110
106
  ### Uninstallation
111
107
 
112
108
  **macOS & Linux:**
109
+
113
110
  ```bash
114
111
  curl -sL https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.sh | bash
115
112
  ```
116
113
 
117
114
  **Windows (PowerShell):**
115
+
118
116
  ```powershell
119
117
  Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.ps1" -OutFile "$env:TEMP\hey_uninstall.ps1"; & "$env:TEMP\hey_uninstall.ps1"
120
118
  ```
@@ -129,27 +127,26 @@ hey <your objective in plain English>
129
127
 
130
128
  ### Examples
131
129
 
132
- | Command | What happens |
133
- |---------|-------------|
134
- | `hey list all running docker containers` | Generates and runs `docker ps` |
135
- | `hey is port 8080 in use?` | Silently runs `lsof -i :8080`, reads output, answers in English |
136
- | `hey forcefully delete all .pyc files` | Generates `find . -name "*.pyc" -delete`, pauses for confirmation |
137
- | `hey compress this folder into a tar.gz` | Generates the correct `tar` command for your OS |
138
- | `npm run build 2>&1 \| hey what broke?` | Reads piped stderr and explains the error |
139
- | `hey --clear` | Wipes conversational memory |
130
+ | Command | What happens |
131
+ | ---------------------------------------- | ----------------------------------------------------------------- |
132
+ | `hey list all running docker containers` | Generates and runs `docker ps` |
133
+ | `hey is port 8080 in use?` | Silently runs `lsof -i :8080`, reads output, answers in English |
134
+ | `hey forcefully delete all .pyc files` | Generates `find . -name "*.pyc" -delete`, pauses for confirmation |
135
+ | `hey compress this folder into a tar.gz` | Generates the correct `tar` command for your OS |
136
+ | `npm run build 2>&1 \| hey what broke?` | Reads piped stderr and explains the error |
137
+ | `hey --clear` | Wipes conversational memory |
140
138
 
141
139
  ### Execution Levels
142
140
 
143
- | Level | Flag | Behavior |
144
- |-------|------|----------|
145
- | 0 | `--level 0` | Dry-run — shows the command but never executes |
146
- | 1 | *(default)* | Supervised — safe commands auto-run, risky ones ask for confirmation |
147
- | 2 | `--level 2` | Unrestricted — executes everything without confirmation |
148
- | 3 | `--level 3` | Troubleshooter — iteratively debugs until the objective is resolved |
141
+ | Level | Flag | Behavior |
142
+ | ----- | ----------- | -------------------------------------------------------------------- |
143
+ | 0 | `--level 0` | Dry-run — shows the command but never executes |
144
+ | 1 | _(default)_ | Supervised — safe commands auto-run, risky ones ask for confirmation |
145
+ | 2 | `--level 2` | Unrestricted — executes everything without confirmation |
146
+ | 3 | `--level 3` | Troubleshooter — iteratively debugs until the objective is resolved |
149
147
 
150
148
  ---
151
149
 
152
-
153
150
  ---
154
151
 
155
152
  ## Authentication & Custom Endpoints
@@ -215,8 +212,9 @@ hey "your question"
215
212
  ```
216
213
 
217
214
  - **Zero external API calls** — communicates with Ollama via `localhost:11434` using Python's built-in `urllib`.
218
- - **Zero compiled dependencies** — the only runtime dependency is `rich` (for terminal formatting).
219
- - **Pure Python 3.9–3.14** — no C extensions, no Rust, no build tools required.
215
+ - **Zero compiled dependencies** — the core logic is pure Python (only `rich` is used for formatting).
216
+ - **Pure Python 3.9–3.14** — works with `uv`, `pipx`, or standard `pip`. No build tools required.
217
+ - **Instant Speed** — Installation with `uv` or `brew` binaries takes < 2 seconds.
220
218
 
221
219
  ---
222
220
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hey-cli-python"
7
- version = "1.0.16"
7
+ version = "1.1.0"
8
8
  description = "A secure, zero-bloat CLI companion that turns natural language and error logs into executable commands."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes