hey-cli-python 1.0.9__tar.gz → 1.0.11__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.9 → hey_cli_python-1.0.11}/PKG-INFO +14 -2
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/README.md +13 -1
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli_python.egg-info/PKG-INFO +14 -2
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/pyproject.toml +1 -1
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/LICENSE +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/__init__.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/cli.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/governance.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/history.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/llm.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/models.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/runner.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli/skills.py +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli_python.egg-info/SOURCES.txt +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli_python.egg-info/dependency_links.txt +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli_python.egg-info/entry_points.txt +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli_python.egg-info/requires.txt +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/hey_cli_python.egg-info/top_level.txt +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/setup.cfg +0 -0
- {hey_cli_python-1.0.9 → hey_cli_python-1.0.11}/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.11
|
|
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
|
|
@@ -105,7 +105,19 @@ Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cl
|
|
|
105
105
|
pipx install hey-cli-python
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
> **Note:** After installation, pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
108
|
+
> **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
109
|
+
|
|
110
|
+
### Uninstallation
|
|
111
|
+
|
|
112
|
+
**macOS & Linux:**
|
|
113
|
+
```bash
|
|
114
|
+
curl -sL https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.sh | bash
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
**Windows (PowerShell):**
|
|
118
|
+
```powershell
|
|
119
|
+
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
|
+
```
|
|
109
121
|
|
|
110
122
|
---
|
|
111
123
|
|
|
@@ -77,7 +77,19 @@ Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cl
|
|
|
77
77
|
pipx install hey-cli-python
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
> **Note:** After installation, pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
80
|
+
> **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
81
|
+
|
|
82
|
+
### Uninstallation
|
|
83
|
+
|
|
84
|
+
**macOS & Linux:**
|
|
85
|
+
```bash
|
|
86
|
+
curl -sL https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.sh | bash
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**Windows (PowerShell):**
|
|
90
|
+
```powershell
|
|
91
|
+
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
|
+
```
|
|
81
93
|
|
|
82
94
|
---
|
|
83
95
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hey-cli-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.11
|
|
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
|
|
@@ -105,7 +105,19 @@ Download `hey.exe` from the [latest release](https://github.com/sinsniwal/hey-cl
|
|
|
105
105
|
pipx install hey-cli-python
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
> **Note:** After installation, pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
108
|
+
> **Note:** After installation, authenticate with `ollama login` and pull the default model: `ollama pull gpt-oss:20b-cloud`
|
|
109
|
+
|
|
110
|
+
### Uninstallation
|
|
111
|
+
|
|
112
|
+
**macOS & Linux:**
|
|
113
|
+
```bash
|
|
114
|
+
curl -sL https://raw.githubusercontent.com/sinsniwal/hey-cli/main/uninstall.sh | bash
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
**Windows (PowerShell):**
|
|
118
|
+
```powershell
|
|
119
|
+
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
|
+
```
|
|
109
121
|
|
|
110
122
|
---
|
|
111
123
|
|
|
@@ -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.11"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|