hey-cli-python 1.0.9__tar.gz → 1.0.10__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.9 → hey_cli_python-1.0.10}/PKG-INFO +14 -2
  2. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/README.md +13 -1
  3. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli_python.egg-info/PKG-INFO +14 -2
  4. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/pyproject.toml +1 -1
  5. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/LICENSE +0 -0
  6. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/__init__.py +0 -0
  7. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/cli.py +0 -0
  8. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/governance.py +0 -0
  9. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/history.py +0 -0
  10. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/llm.py +0 -0
  11. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/models.py +0 -0
  12. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/runner.py +0 -0
  13. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli/skills.py +0 -0
  14. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli_python.egg-info/SOURCES.txt +0 -0
  15. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli_python.egg-info/dependency_links.txt +0 -0
  16. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli_python.egg-info/entry_points.txt +0 -0
  17. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli_python.egg-info/requires.txt +0 -0
  18. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/hey_cli_python.egg-info/top_level.txt +0 -0
  19. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/setup.cfg +0 -0
  20. {hey_cli_python-1.0.9 → hey_cli_python-1.0.10}/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.9
3
+ Version: 1.0.10
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.9
3
+ Version: 1.0.10
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.9"
7
+ version = "1.0.10"
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