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.
@@ -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.4
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
  [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/blooop/devlaunch)](https://github.com/blooop/devlaunch/pulls?q=is%3Amerged)
32
32
  [![GitHub release](https://img.shields.io/github/release/blooop/devlaunch.svg)](https://GitHub.com/blooop/devlaunch/releases/)
33
33
  [![PyPI](https://img.shields.io/pypi/v/devlaunch)](https://pypi.org/project/devlaunch/)
34
+ [![Conda](https://img.shields.io/badge/conda-blooop-green?logo=conda-forge)](https://prefix.dev/channels/blooop/packages/devlaunch)
34
35
  [![License](https://img.shields.io/github/license/blooop/devlaunch)](https://opensource.org/license/mit/)
35
36
  [![Python](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)](https://www.python.org/downloads/)
36
37
  [![Pixi Badge](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json)](https://pixi.sh)
37
38
 
38
39
  ## Installation
39
40
 
41
+ ### Pixi (Recommended)
42
+
40
43
  ```bash
41
- # Using pixi (recommended)
42
- pixi global install devlaunch
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
- # Using pip
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
  [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/blooop/devlaunch)](https://github.com/blooop/devlaunch/pulls?q=is%3Amerged)
11
11
  [![GitHub release](https://img.shields.io/github/release/blooop/devlaunch.svg)](https://GitHub.com/blooop/devlaunch/releases/)
12
12
  [![PyPI](https://img.shields.io/pypi/v/devlaunch)](https://pypi.org/project/devlaunch/)
13
+ [![Conda](https://img.shields.io/badge/conda-blooop-green?logo=conda-forge)](https://prefix.dev/channels/blooop/packages/devlaunch)
13
14
  [![License](https://img.shields.io/github/license/blooop/devlaunch)](https://opensource.org/license/mit/)
14
15
  [![Python](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)](https://www.python.org/downloads/)
15
16
  [![Pixi Badge](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json)](https://pixi.sh)
16
17
 
17
18
  ## Installation
18
19
 
20
+ ### Pixi (Recommended)
21
+
19
22
  ```bash
20
- # Using pixi (recommended)
21
- pixi global install devlaunch
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
- # Using pip
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.4"
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.63.0"
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