hey-cli-python 1.0.17__py3-none-any.whl → 1.1.0__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hey-cli-python
3
- Version: 1.0.17
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
 
@@ -110,11 +106,13 @@ uv tool 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
@@ -6,9 +6,9 @@ hey_cli/llm.py,sha256=dFy7iYvYE9_ikOblapp0Ehvj-Nk4iqQ47avi9lzg5d4,8757
6
6
  hey_cli/models.py,sha256=Jye_btuL39R7BA5bG59JbJFtpDUS0ZrSw0veUUTf0kM,302
7
7
  hey_cli/runner.py,sha256=cEF9vePK-g9VOW-8XrsafR7lyRSHQGMOl45hC2nA7sg,8431
8
8
  hey_cli/skills.py,sha256=RX6rSnkQ6FG_hogKUhASI5dazvNAphi2n2c1Rw_NAxw,3569
9
- hey_cli_python-1.0.17.dist-info/licenses/LICENSE,sha256=15ubdFS3laW1SETf6f8fd8-sbqZeGz_FFdJgJATDAVI,1065
10
- hey_cli_python-1.0.17.dist-info/METADATA,sha256=IINj7CBVpMT28Sf2AKHOzb7Wv00PmGFAWlBOWg9ZmIQ,9102
11
- hey_cli_python-1.0.17.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
12
- hey_cli_python-1.0.17.dist-info/entry_points.txt,sha256=N4bcRze9-LYaO624Gpg5Th_4CSQCDN04EXUHFve7uGw,41
13
- hey_cli_python-1.0.17.dist-info/top_level.txt,sha256=UNOjINF-x81p5IeEawLMkXdUnlybKKYKx8UGTzP6IuU,8
14
- hey_cli_python-1.0.17.dist-info/RECORD,,
9
+ hey_cli_python-1.1.0.dist-info/licenses/LICENSE,sha256=15ubdFS3laW1SETf6f8fd8-sbqZeGz_FFdJgJATDAVI,1065
10
+ hey_cli_python-1.1.0.dist-info/METADATA,sha256=p_eGnMTvHcsrAZqFAGR4DP5JEBZ_JZ30CN3U13cT1WQ,9600
11
+ hey_cli_python-1.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
12
+ hey_cli_python-1.1.0.dist-info/entry_points.txt,sha256=N4bcRze9-LYaO624Gpg5Th_4CSQCDN04EXUHFve7uGw,41
13
+ hey_cli_python-1.1.0.dist-info/top_level.txt,sha256=UNOjINF-x81p5IeEawLMkXdUnlybKKYKx8UGTzP6IuU,8
14
+ hey_cli_python-1.1.0.dist-info/RECORD,,