naturally-linux 0.1.0__tar.gz → 0.1.1__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.
- naturally_linux-0.1.1/PKG-INFO +53 -0
- naturally_linux-0.1.1/README.md +42 -0
- naturally_linux-0.1.1/naturally_linux.egg-info/PKG-INFO +53 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/pyproject.toml +2 -2
- naturally_linux-0.1.0/PKG-INFO +0 -10
- naturally_linux-0.1.0/README.md +0 -0
- naturally_linux-0.1.0/naturally_linux.egg-info/PKG-INFO +0 -10
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux/__init__.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux/__main__.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux/cli.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux/executor.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux/generator.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux/safety.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux.egg-info/SOURCES.txt +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux.egg-info/dependency_links.txt +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux.egg-info/entry_points.txt +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux.egg-info/requires.txt +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux.egg-info/top_level.txt +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/setup.cfg +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/tests/test_executor.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/tests/test_generator.py +0 -0
- {naturally_linux-0.1.0 → naturally_linux-0.1.1}/tests/test_safety.py +0 -0
|
@@ -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
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Naturally Linux
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Natural-language → shell command generation
|
|
8
|
+
- Command preview and explanation
|
|
9
|
+
- Safety checks before execution
|
|
10
|
+
- Confirmation before running commands
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
pip install naturally-linux
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Setup
|
|
19
|
+
|
|
20
|
+
Set your Groq API key:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
export GROQ_API_KEY="your-key"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
Generate and run a command:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
naturally-linux run "list files larger than 10MB"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Preview with explanation only:
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
naturally-linux run "list files larger than 10MB" --dry-run
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT
|
|
@@ -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
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "naturally-linux"
|
|
3
|
-
version = "0.1.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.1.1"
|
|
4
|
+
description = "Natural-language to Linux shell command AI CLI tool with safety checks"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.13"
|
|
7
7
|
dependencies = [
|
naturally_linux-0.1.0/PKG-INFO
DELETED
|
@@ -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
|
naturally_linux-0.1.0/README.md
DELETED
|
File without changes
|
|
@@ -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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{naturally_linux-0.1.0 → naturally_linux-0.1.1}/naturally_linux.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|