naturally-linux 0.1.0__py3-none-any.whl → 0.1.1__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.
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: naturally-linux
3
+ Version: 0.1.1
4
+ Summary: Natural-language to Linux shell command AI CLI tool with safety checks
5
+ Requires-Python: >=3.13
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: groq>=1.0.0
8
+ Requires-Dist: pytest>=9.0.2
9
+ Requires-Dist: python-dotenv>=1.2.1
10
+ Requires-Dist: typer>=0.21.1
11
+
12
+ # Naturally Linux
13
+
14
+ Naturally Linux is a command-line tool that turns natural-language requests into safe, reviewable Linux shell commands. It shows you the proposed command, explains what it does, and runs it only after confirmation.
15
+
16
+ ## Features
17
+
18
+ - Natural-language → shell command generation
19
+ - Command preview and explanation
20
+ - Safety checks before execution
21
+ - Confirmation before running commands
22
+
23
+ ## Install
24
+
25
+ ```
26
+ pip install naturally-linux
27
+ ```
28
+
29
+ ## Setup
30
+
31
+ Set your Groq API key:
32
+
33
+ ```
34
+ export GROQ_API_KEY="your-key"
35
+ ```
36
+
37
+ ## Usage
38
+
39
+ Generate and run a command:
40
+
41
+ ```
42
+ naturally-linux run "list files larger than 10MB"
43
+ ```
44
+
45
+ Preview with explanation only:
46
+
47
+ ```
48
+ naturally-linux run "list files larger than 10MB" --dry-run
49
+ ```
50
+
51
+ ## License
52
+
53
+ MIT
@@ -4,8 +4,8 @@ naturally_linux/cli.py,sha256=c_tGFwTI7rGUd-JVCxpXnDOvkPuXhVqPfwfKLt8Kjxs,2996
4
4
  naturally_linux/executor.py,sha256=Ajb3AggqmXkrUpEsluLpB91WHDmh8UUM7P0KHydRA5Y,520
5
5
  naturally_linux/generator.py,sha256=g22VfYxNzpDAKbYCwaVPaIjcl7Ls1YElCvtTKkCHhcc,2185
6
6
  naturally_linux/safety.py,sha256=-jYNkwvU-qlsHf4jrv3mJHe0IURi0ShcDOB2OmD9K_A,791
7
- naturally_linux-0.1.0.dist-info/METADATA,sha256=EqvpK1uwptY1kMfGRcZ294cLEewguj5yu9xwzBfl-eU,279
8
- naturally_linux-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
9
- naturally_linux-0.1.0.dist-info/entry_points.txt,sha256=zRxt5J_zOY94Ijs4Y0Yj2b7DlFKXNUA77xUZRC_IpMQ,60
10
- naturally_linux-0.1.0.dist-info/top_level.txt,sha256=5lYicPTSDEtiFpblhG34QIdpy0mUR_IsDGO_gY8raQw,16
11
- naturally_linux-0.1.0.dist-info/RECORD,,
7
+ naturally_linux-0.1.1.dist-info/METADATA,sha256=ci-TPM41t4B96GO-kBGUowVaF6__evgNsGCJ6cESzLY,1066
8
+ naturally_linux-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
9
+ naturally_linux-0.1.1.dist-info/entry_points.txt,sha256=zRxt5J_zOY94Ijs4Y0Yj2b7DlFKXNUA77xUZRC_IpMQ,60
10
+ naturally_linux-0.1.1.dist-info/top_level.txt,sha256=5lYicPTSDEtiFpblhG34QIdpy0mUR_IsDGO_gY8raQw,16
11
+ naturally_linux-0.1.1.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: naturally-linux
3
- Version: 0.1.0
4
- Summary: Add your description here
5
- Requires-Python: >=3.13
6
- Description-Content-Type: text/markdown
7
- Requires-Dist: groq>=1.0.0
8
- Requires-Dist: pytest>=9.0.2
9
- Requires-Dist: python-dotenv>=1.2.1
10
- Requires-Dist: typer>=0.21.1