redo-cli 0.1.1__tar.gz → 0.1.2__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.
- {redo_cli-0.1.1 → redo_cli-0.1.2}/PKG-INFO +6 -6
- {redo_cli-0.1.1 → redo_cli-0.1.2}/README.md +5 -5
- {redo_cli-0.1.1 → redo_cli-0.1.2}/pyproject.toml +1 -1
- {redo_cli-0.1.1 → redo_cli-0.1.2}/redo_cli.egg-info/PKG-INFO +6 -6
- {redo_cli-0.1.1 → redo_cli-0.1.2}/license.txt +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/main.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/modules/__init__.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/modules/placeholders.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/modules/runner.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/modules/storage.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/modules/ui.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/redo_cli.egg-info/SOURCES.txt +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/redo_cli.egg-info/dependency_links.txt +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/redo_cli.egg-info/entry_points.txt +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/redo_cli.egg-info/requires.txt +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/redo_cli.egg-info/top_level.txt +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/setup.cfg +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/tests/test_cli.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/tests/test_packaging.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/tests/test_placeholders.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/tests/test_runner.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/tests/test_storage.py +0 -0
- {redo_cli-0.1.1 → redo_cli-0.1.2}/tests/test_ui.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redo-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Bookmarks for terminal workflows.
|
|
5
5
|
Author: Vibeslayer-code
|
|
6
6
|
Project-URL: Homepage, https://github.com/VibeSlayer-code/Redo
|
|
@@ -35,7 +35,7 @@ Dynamic: license-file
|
|
|
35
35
|
A CLI tool for saving repeated terminal workflows and running them again with one command.
|
|
36
36
|
|
|
37
37
|
<p align="center">
|
|
38
|
-
<img src="assets/banner.png" alt="Redo banner" width="100%" />
|
|
38
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/banner.png" alt="Redo banner" width="100%" />
|
|
39
39
|
</p>
|
|
40
40
|
|
|
41
41
|
<p align="center">
|
|
@@ -96,7 +96,7 @@ Think of Redo as **bookmarks for terminal workflows**.
|
|
|
96
96
|
## Demo Flow
|
|
97
97
|
|
|
98
98
|
<p align="center">
|
|
99
|
-
<img src="assets/demo-run.png" alt="Redo demo running workflow" width="85%" />
|
|
99
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/demo-run.png" alt="Redo demo running workflow" width="85%" />
|
|
100
100
|
</p>
|
|
101
101
|
|
|
102
102
|
```bash
|
|
@@ -282,12 +282,12 @@ git push
|
|
|
282
282
|
## Screenshots
|
|
283
283
|
|
|
284
284
|
<p align="center">
|
|
285
|
-
<img src="assets/list-command.png" alt="Redo list command" width="48%" />
|
|
286
|
-
<img src="assets/dry-run.png" alt="Redo dry run preview" width="48%" />
|
|
285
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/list-command.png" alt="Redo list command" width="48%" />
|
|
286
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/dry-run.png" alt="Redo dry run preview" width="48%" />
|
|
287
287
|
</p>
|
|
288
288
|
|
|
289
289
|
<p align="center">
|
|
290
|
-
<img src="assets/error-panel.png" alt="Redo focused error panel" width="85%" />
|
|
290
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/error-panel.png" alt="Redo focused error panel" width="85%" />
|
|
291
291
|
</p>
|
|
292
292
|
|
|
293
293
|
Suggested files to add:
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
A CLI tool for saving repeated terminal workflows and running them again with one command.
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
<img src="assets/banner.png" alt="Redo banner" width="100%" />
|
|
6
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/banner.png" alt="Redo banner" width="100%" />
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
@@ -64,7 +64,7 @@ Think of Redo as **bookmarks for terminal workflows**.
|
|
|
64
64
|
## Demo Flow
|
|
65
65
|
|
|
66
66
|
<p align="center">
|
|
67
|
-
<img src="assets/demo-run.png" alt="Redo demo running workflow" width="85%" />
|
|
67
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/demo-run.png" alt="Redo demo running workflow" width="85%" />
|
|
68
68
|
</p>
|
|
69
69
|
|
|
70
70
|
```bash
|
|
@@ -250,12 +250,12 @@ git push
|
|
|
250
250
|
## Screenshots
|
|
251
251
|
|
|
252
252
|
<p align="center">
|
|
253
|
-
<img src="assets/list-command.png" alt="Redo list command" width="48%" />
|
|
254
|
-
<img src="assets/dry-run.png" alt="Redo dry run preview" width="48%" />
|
|
253
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/list-command.png" alt="Redo list command" width="48%" />
|
|
254
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/dry-run.png" alt="Redo dry run preview" width="48%" />
|
|
255
255
|
</p>
|
|
256
256
|
|
|
257
257
|
<p align="center">
|
|
258
|
-
<img src="assets/error-panel.png" alt="Redo focused error panel" width="85%" />
|
|
258
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/error-panel.png" alt="Redo focused error panel" width="85%" />
|
|
259
259
|
</p>
|
|
260
260
|
|
|
261
261
|
Suggested files to add:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redo-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Bookmarks for terminal workflows.
|
|
5
5
|
Author: Vibeslayer-code
|
|
6
6
|
Project-URL: Homepage, https://github.com/VibeSlayer-code/Redo
|
|
@@ -35,7 +35,7 @@ Dynamic: license-file
|
|
|
35
35
|
A CLI tool for saving repeated terminal workflows and running them again with one command.
|
|
36
36
|
|
|
37
37
|
<p align="center">
|
|
38
|
-
<img src="assets/banner.png" alt="Redo banner" width="100%" />
|
|
38
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/banner.png" alt="Redo banner" width="100%" />
|
|
39
39
|
</p>
|
|
40
40
|
|
|
41
41
|
<p align="center">
|
|
@@ -96,7 +96,7 @@ Think of Redo as **bookmarks for terminal workflows**.
|
|
|
96
96
|
## Demo Flow
|
|
97
97
|
|
|
98
98
|
<p align="center">
|
|
99
|
-
<img src="assets/demo-run.png" alt="Redo demo running workflow" width="85%" />
|
|
99
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/demo-run.png" alt="Redo demo running workflow" width="85%" />
|
|
100
100
|
</p>
|
|
101
101
|
|
|
102
102
|
```bash
|
|
@@ -282,12 +282,12 @@ git push
|
|
|
282
282
|
## Screenshots
|
|
283
283
|
|
|
284
284
|
<p align="center">
|
|
285
|
-
<img src="assets/list-command.png" alt="Redo list command" width="48%" />
|
|
286
|
-
<img src="assets/dry-run.png" alt="Redo dry run preview" width="48%" />
|
|
285
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/list-command.png" alt="Redo list command" width="48%" />
|
|
286
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/dry-run.png" alt="Redo dry run preview" width="48%" />
|
|
287
287
|
</p>
|
|
288
288
|
|
|
289
289
|
<p align="center">
|
|
290
|
-
<img src="assets/error-panel.png" alt="Redo focused error panel" width="85%" />
|
|
290
|
+
<img src="https://raw.githubusercontent.com/VibeSlayer-code/Redo/main/assets/error-panel.png" alt="Redo focused error panel" width="85%" />
|
|
291
291
|
</p>
|
|
292
292
|
|
|
293
293
|
Suggested files to add:
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|