devlaunch 0.0.4__tar.gz → 0.0.5__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.
- {devlaunch-0.0.4 → devlaunch-0.0.5}/.gitignore +17 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/PKG-INFO +15 -4
- {devlaunch-0.0.4 → devlaunch-0.0.5}/README.md +14 -3
- {devlaunch-0.0.4 → devlaunch-0.0.5}/pyproject.toml +3 -2
- {devlaunch-0.0.4 → devlaunch-0.0.5}/LICENSE +0 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/devlaunch/__init__.py +0 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/devlaunch/completion.py +0 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/devlaunch/completion_loader.py +0 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/devlaunch/completions/__init__.py +0 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/devlaunch/completions/dl.bash +0 -0
- {devlaunch-0.0.4 → devlaunch-0.0.5}/devlaunch/dl.py +0 -0
|
@@ -174,3 +174,20 @@ test_suite_analysis/metadata.json
|
|
|
174
174
|
.devpod/
|
|
175
175
|
.devpod-internal/
|
|
176
176
|
.*.swp
|
|
177
|
+
|
|
178
|
+
# Claude Code local settings (personal, not shared)
|
|
179
|
+
.claude/settings.local.json
|
|
180
|
+
|
|
181
|
+
# Ralph autonomous agent state files
|
|
182
|
+
.call_count
|
|
183
|
+
.circuit_breaker_history
|
|
184
|
+
.circuit_breaker_state
|
|
185
|
+
.exit_signals
|
|
186
|
+
.last_reset
|
|
187
|
+
.ralph_session
|
|
188
|
+
.ralph_session_history
|
|
189
|
+
.response_analysis
|
|
190
|
+
.claude_session_id
|
|
191
|
+
progress.json
|
|
192
|
+
status.json
|
|
193
|
+
logs/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devlaunch
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: DevLaunch - A streamlined CLI for devpod workspaces
|
|
5
5
|
Project-URL: Source, https://github.com/blooop/devlaunch
|
|
6
6
|
Project-URL: Home, https://github.com/blooop/devlaunch
|
|
@@ -31,20 +31,31 @@ A streamlined CLI for [devpod](https://devpod.sh) with intuitive autocomplete an
|
|
|
31
31
|
[](https://github.com/blooop/devlaunch/pulls?q=is%3Amerged)
|
|
32
32
|
[](https://GitHub.com/blooop/devlaunch/releases/)
|
|
33
33
|
[](https://pypi.org/project/devlaunch/)
|
|
34
|
+
[](https://prefix.dev/channels/blooop/packages/devlaunch)
|
|
34
35
|
[](https://opensource.org/license/mit/)
|
|
35
36
|
[](https://www.python.org/downloads/)
|
|
36
37
|
[](https://pixi.sh)
|
|
37
38
|
|
|
38
39
|
## Installation
|
|
39
40
|
|
|
41
|
+
### Pixi (Recommended)
|
|
42
|
+
|
|
40
43
|
```bash
|
|
41
|
-
|
|
42
|
-
|
|
44
|
+
pixi global install --channel conda-forge --channel https://prefix.dev/blooop devlaunch
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
This installs `devlaunch` along with `devpod` and all dependencies automatically.
|
|
48
|
+
|
|
49
|
+
### Pip
|
|
43
50
|
|
|
44
|
-
|
|
51
|
+
```bash
|
|
45
52
|
pip install devlaunch
|
|
46
53
|
```
|
|
47
54
|
|
|
55
|
+
Note: When using pip, you must install [devpod](https://devpod.sh/docs/getting-started/install) separately.
|
|
56
|
+
|
|
57
|
+
### Shell Completions
|
|
58
|
+
|
|
48
59
|
After installation, set up shell completions:
|
|
49
60
|
|
|
50
61
|
```bash
|
|
@@ -10,20 +10,31 @@ A streamlined CLI for [devpod](https://devpod.sh) with intuitive autocomplete an
|
|
|
10
10
|
[](https://github.com/blooop/devlaunch/pulls?q=is%3Amerged)
|
|
11
11
|
[](https://GitHub.com/blooop/devlaunch/releases/)
|
|
12
12
|
[](https://pypi.org/project/devlaunch/)
|
|
13
|
+
[](https://prefix.dev/channels/blooop/packages/devlaunch)
|
|
13
14
|
[](https://opensource.org/license/mit/)
|
|
14
15
|
[](https://www.python.org/downloads/)
|
|
15
16
|
[](https://pixi.sh)
|
|
16
17
|
|
|
17
18
|
## Installation
|
|
18
19
|
|
|
20
|
+
### Pixi (Recommended)
|
|
21
|
+
|
|
19
22
|
```bash
|
|
20
|
-
|
|
21
|
-
|
|
23
|
+
pixi global install --channel conda-forge --channel https://prefix.dev/blooop devlaunch
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
This installs `devlaunch` along with `devpod` and all dependencies automatically.
|
|
27
|
+
|
|
28
|
+
### Pip
|
|
22
29
|
|
|
23
|
-
|
|
30
|
+
```bash
|
|
24
31
|
pip install devlaunch
|
|
25
32
|
```
|
|
26
33
|
|
|
34
|
+
Note: When using pip, you must install [devpod](https://devpod.sh/docs/getting-started/install) separately.
|
|
35
|
+
|
|
36
|
+
### Shell Completions
|
|
37
|
+
|
|
27
38
|
After installation, set up shell completions:
|
|
28
39
|
|
|
29
40
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "devlaunch"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.5"
|
|
4
4
|
authors = [{ name = "Austin Gregg-Smith", email = "blooop@gmail.com" }]
|
|
5
5
|
description = "DevLaunch - A streamlined CLI for devpod workspaces"
|
|
6
6
|
readme = "README.md"
|
|
@@ -22,7 +22,8 @@ platforms = ["linux-64"]
|
|
|
22
22
|
python = ">=3.10"
|
|
23
23
|
shellcheck = ">=0.10.0,<0.11"
|
|
24
24
|
devpod = ">=0.8.0,<0.9"
|
|
25
|
-
gh = ">=2.
|
|
25
|
+
gh = ">=2.83.0,<3.0"
|
|
26
|
+
ralph-claude-code = ">=0.1.0"
|
|
26
27
|
|
|
27
28
|
[tool.pixi.feature.py310.dependencies]
|
|
28
29
|
python = "3.10.*"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|