devlaunch 0.0.2__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devlaunch
3
- Version: 0.0.2
3
+ Version: 0.0.3
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
@@ -54,51 +54,53 @@ source ~/.bashrc # or restart your terminal
54
54
  ## Usage
55
55
 
56
56
  ```bash
57
- dl # Interactive workspace selector (fzf)
58
- dl <workspace> # Start workspace and attach shell
59
- dl <workspace> <command> # Run command in workspace
60
- dl owner/repo # Create workspace from GitHub repo
61
- dl owner/repo@branch # Create workspace from specific branch
62
- dl ./path # Create workspace from local path
57
+ dl # Interactive workspace selector (fzf)
58
+ dl <user/repo> # Start workspace and attach shell
59
+ dl <user/repo> <cmd> # Run workspace command (stop, code, etc.)
60
+ dl <user/repo> -- <command> # Run shell command in workspace
63
61
  ```
64
62
 
65
- ## Commands
63
+ ## Workspace Sources
64
+
65
+ ```bash
66
+ dl myproject # Existing workspace by name
67
+ dl user/repo # Create from GitHub repo
68
+ dl user/repo@branch # Create from specific branch
69
+ dl ./path # Create from local path
70
+ ```
71
+
72
+ ## Workspace Commands
73
+
74
+ | Command | Description |
75
+ |---------|-------------|
76
+ | `dl <user/repo> stop` | Stop the workspace |
77
+ | `dl <user/repo> rm, prune` | Delete the workspace |
78
+ | `dl <user/repo> code` | Open in VS Code |
79
+ | `dl <user/repo> restart` | Stop and start (no rebuild) |
80
+ | `dl <user/repo> recreate` | Recreate container |
81
+ | `dl <user/repo> reset` | Clean slate (remove all, recreate) |
82
+ | `dl <user/repo> -- <command>` | Run shell command in workspace |
83
+
84
+ ## Global Commands
66
85
 
67
86
  | Command | Description |
68
87
  |---------|-------------|
69
88
  | `dl --ls` | List all workspaces |
70
- | `dl --stop <workspace>` | Stop a workspace |
71
- | `dl --rm <workspace>` | Delete a workspace |
72
- | `dl --code <workspace>` | Open workspace in VS Code |
73
- | `dl --status <workspace>` | Show workspace status |
74
- | `dl --recreate <workspace>` | Recreate workspace container |
75
- | `dl --reset <workspace>` | Reset workspace (clean slate) |
76
89
  | `dl --install` | Install shell completions |
77
- | `dl --help` | Show help |
90
+ | `dl --help, -h` | Show this help |
91
+ | `dl --version` | Show version |
78
92
 
79
93
  ## Examples
80
94
 
81
95
  ```bash
82
- # Select workspace interactively with fzf
83
- dl
84
-
85
- # Open an existing workspace
86
- dl myproject
87
-
88
- # Create workspace from GitHub repository
89
- dl loft-sh/devpod
90
-
91
- # Create workspace from specific branch
92
- dl blooop/devlaunch@main
93
-
94
- # Create workspace from local folder
95
- dl ./my-project
96
-
97
- # Open workspace in VS Code
98
- dl --code myproject
99
-
100
- # Run a command in workspace
101
- dl myproject 'make test'
96
+ dl # Select workspace with fzf
97
+ dl devpod # Open existing workspace
98
+ dl loft-sh/devpod # Create from GitHub
99
+ dl blooop/devlaunch@main # Create from specific branch
100
+ dl ./my-project # Create from local folder
101
+ dl blooop/devlaunch code # Open in VS Code
102
+ dl blooop/devlaunch -- make test # Run command in workspace
103
+ dl blooop/devlaunch stop # Stop workspace
102
104
  ```
103
105
 
104
106
  ## Features
@@ -116,7 +118,7 @@ After running `dl --install`, you get intelligent tab completion:
116
118
  - Workspace names from your devpod list
117
119
  - Known GitHub owners and repositories from your workspaces
118
120
  - File/directory paths when starting with `./`, `/`, or `~`
119
- - All command flags (`--ls`, `--stop`, etc.)
121
+ - All global flags (`--ls`, `--install`, etc.) and workspace commands
120
122
 
121
123
  ## Development
122
124
 
@@ -33,51 +33,53 @@ source ~/.bashrc # or restart your terminal
33
33
  ## Usage
34
34
 
35
35
  ```bash
36
- dl # Interactive workspace selector (fzf)
37
- dl <workspace> # Start workspace and attach shell
38
- dl <workspace> <command> # Run command in workspace
39
- dl owner/repo # Create workspace from GitHub repo
40
- dl owner/repo@branch # Create workspace from specific branch
41
- dl ./path # Create workspace from local path
36
+ dl # Interactive workspace selector (fzf)
37
+ dl <user/repo> # Start workspace and attach shell
38
+ dl <user/repo> <cmd> # Run workspace command (stop, code, etc.)
39
+ dl <user/repo> -- <command> # Run shell command in workspace
42
40
  ```
43
41
 
44
- ## Commands
42
+ ## Workspace Sources
43
+
44
+ ```bash
45
+ dl myproject # Existing workspace by name
46
+ dl user/repo # Create from GitHub repo
47
+ dl user/repo@branch # Create from specific branch
48
+ dl ./path # Create from local path
49
+ ```
50
+
51
+ ## Workspace Commands
52
+
53
+ | Command | Description |
54
+ |---------|-------------|
55
+ | `dl <user/repo> stop` | Stop the workspace |
56
+ | `dl <user/repo> rm, prune` | Delete the workspace |
57
+ | `dl <user/repo> code` | Open in VS Code |
58
+ | `dl <user/repo> restart` | Stop and start (no rebuild) |
59
+ | `dl <user/repo> recreate` | Recreate container |
60
+ | `dl <user/repo> reset` | Clean slate (remove all, recreate) |
61
+ | `dl <user/repo> -- <command>` | Run shell command in workspace |
62
+
63
+ ## Global Commands
45
64
 
46
65
  | Command | Description |
47
66
  |---------|-------------|
48
67
  | `dl --ls` | List all workspaces |
49
- | `dl --stop <workspace>` | Stop a workspace |
50
- | `dl --rm <workspace>` | Delete a workspace |
51
- | `dl --code <workspace>` | Open workspace in VS Code |
52
- | `dl --status <workspace>` | Show workspace status |
53
- | `dl --recreate <workspace>` | Recreate workspace container |
54
- | `dl --reset <workspace>` | Reset workspace (clean slate) |
55
68
  | `dl --install` | Install shell completions |
56
- | `dl --help` | Show help |
69
+ | `dl --help, -h` | Show this help |
70
+ | `dl --version` | Show version |
57
71
 
58
72
  ## Examples
59
73
 
60
74
  ```bash
61
- # Select workspace interactively with fzf
62
- dl
63
-
64
- # Open an existing workspace
65
- dl myproject
66
-
67
- # Create workspace from GitHub repository
68
- dl loft-sh/devpod
69
-
70
- # Create workspace from specific branch
71
- dl blooop/devlaunch@main
72
-
73
- # Create workspace from local folder
74
- dl ./my-project
75
-
76
- # Open workspace in VS Code
77
- dl --code myproject
78
-
79
- # Run a command in workspace
80
- dl myproject 'make test'
75
+ dl # Select workspace with fzf
76
+ dl devpod # Open existing workspace
77
+ dl loft-sh/devpod # Create from GitHub
78
+ dl blooop/devlaunch@main # Create from specific branch
79
+ dl ./my-project # Create from local folder
80
+ dl blooop/devlaunch code # Open in VS Code
81
+ dl blooop/devlaunch -- make test # Run command in workspace
82
+ dl blooop/devlaunch stop # Stop workspace
81
83
  ```
82
84
 
83
85
  ## Features
@@ -95,7 +97,7 @@ After running `dl --install`, you get intelligent tab completion:
95
97
  - Workspace names from your devpod list
96
98
  - Known GitHub owners and repositories from your workspaces
97
99
  - File/directory paths when starting with `./`, `/`, or `~`
98
- - All command flags (`--ls`, `--stop`, etc.)
100
+ - All global flags (`--ls`, `--install`, etc.) and workspace commands
99
101
 
100
102
  ## Development
101
103
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "devlaunch"
3
- version = "0.0.2"
3
+ version = "0.0.3"
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"
File without changes
File without changes
File without changes