hey-cli-python 1.0.16__tar.gz → 1.0.17__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.
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/PKG-INFO +6 -5
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/README.md +5 -4
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/PKG-INFO +6 -5
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/pyproject.toml +1 -1
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/LICENSE +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/__init__.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/cli.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/governance.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/history.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/llm.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/models.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/runner.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli/skills.py +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/SOURCES.txt +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/dependency_links.txt +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/entry_points.txt +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/requires.txt +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/top_level.txt +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/setup.cfg +0 -0
- {hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/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.
|
|
3
|
+
Version: 1.0.17
|
|
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
|
|
@@ -99,10 +99,10 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main
|
|
|
99
99
|
|
|
100
100
|
Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cli/releases/latest). No Python required.
|
|
101
101
|
|
|
102
|
-
###
|
|
102
|
+
### uv (Recommended)
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
|
|
105
|
+
uv tool install hey-cli-python
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
> **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
@@ -215,8 +215,9 @@ hey "your question"
|
|
|
215
215
|
```
|
|
216
216
|
|
|
217
217
|
- **Zero external API calls** — communicates with Ollama via `localhost:11434` using Python's built-in `urllib`.
|
|
218
|
-
- **Zero compiled dependencies** — the
|
|
219
|
-
- **Pure Python 3.9–3.14** —
|
|
218
|
+
- **Zero compiled dependencies** — the core logic is pure Python (only `rich` is used for formatting).
|
|
219
|
+
- **Pure Python 3.9–3.14** — works with `uv`, `pipx`, or standard `pip`. No build tools required.
|
|
220
|
+
- **Instant Speed** — Installation with `uv` or `brew` binaries takes < 2 seconds.
|
|
220
221
|
|
|
221
222
|
---
|
|
222
223
|
|
|
@@ -71,10 +71,10 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main
|
|
|
71
71
|
|
|
72
72
|
Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cli/releases/latest). No Python required.
|
|
73
73
|
|
|
74
|
-
###
|
|
74
|
+
### uv (Recommended)
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
|
|
77
|
+
uv tool install hey-cli-python
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
> **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
@@ -187,8 +187,9 @@ hey "your question"
|
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
- **Zero external API calls** — communicates with Ollama via `localhost:11434` using Python's built-in `urllib`.
|
|
190
|
-
- **Zero compiled dependencies** — the
|
|
191
|
-
- **Pure Python 3.9–3.14** —
|
|
190
|
+
- **Zero compiled dependencies** — the core logic is pure Python (only `rich` is used for formatting).
|
|
191
|
+
- **Pure Python 3.9–3.14** — works with `uv`, `pipx`, or standard `pip`. No build tools required.
|
|
192
|
+
- **Instant Speed** — Installation with `uv` or `brew` binaries takes < 2 seconds.
|
|
192
193
|
|
|
193
194
|
---
|
|
194
195
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hey-cli-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.17
|
|
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
|
|
@@ -99,10 +99,10 @@ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sinsniwal/hey-cli/main
|
|
|
99
99
|
|
|
100
100
|
Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cli/releases/latest). No Python required.
|
|
101
101
|
|
|
102
|
-
###
|
|
102
|
+
### uv (Recommended)
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
|
|
105
|
+
uv tool install hey-cli-python
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
> **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
@@ -215,8 +215,9 @@ hey "your question"
|
|
|
215
215
|
```
|
|
216
216
|
|
|
217
217
|
- **Zero external API calls** — communicates with Ollama via `localhost:11434` using Python's built-in `urllib`.
|
|
218
|
-
- **Zero compiled dependencies** — the
|
|
219
|
-
- **Pure Python 3.9–3.14** —
|
|
218
|
+
- **Zero compiled dependencies** — the core logic is pure Python (only `rich` is used for formatting).
|
|
219
|
+
- **Pure Python 3.9–3.14** — works with `uv`, `pipx`, or standard `pip`. No build tools required.
|
|
220
|
+
- **Instant Speed** — Installation with `uv` or `brew` binaries takes < 2 seconds.
|
|
220
221
|
|
|
221
222
|
---
|
|
222
223
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hey-cli-python"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.17"
|
|
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
|
|
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
|
{hey_cli_python-1.0.16 → hey_cli_python-1.0.17}/hey_cli_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|