devsh 0.1.1 → 0.1.3

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.
@@ -87,6 +87,7 @@ Tasks are the same as in the web app dashboard. CLI and web sync through Convex.
87
87
  - `devsh task list` - List active tasks
88
88
  - `devsh task list --archived` - List archived tasks
89
89
  - `devsh task create --repo owner/repo --agent claude-code "prompt"` - Create task
90
+ - `devsh task create --cloud-workspace ...` - Create as cloud workspace (appears in Workspaces section)
90
91
  - `devsh task show <task-id>` - Get task details and runs
91
92
  - `devsh task stop <task-id>` - Stop/archive task
92
93
  - `devsh task memory <task-run-id>` - View agent memory for a task run
package/AGENTS.md CHANGED
@@ -77,6 +77,15 @@ devsh pause cmux_abc123 # Pause to save costs (can resume later)
77
77
  devsh delete cmux_abc123 # Delete permanently
78
78
  ```
79
79
 
80
+ ## Git Policy (IMPORTANT)
81
+
82
+ **When working in VMs or this repo, ALWAYS follow these rules:**
83
+
84
+ 1. **NO direct commits to main/master** - Create feature branch first
85
+ 2. **NO direct push to main/master** - Push to feature branches only
86
+ 3. **NO merging PRs without explicit user approval** - Wait for user to say "merge" or "approve"
87
+ 4. **NO force push to main/master**
88
+
80
89
  ## Tips
81
90
 
82
91
  - Run `devsh login` first if not authenticated
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devsh",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Cloud VMs for development - spawn isolated dev environments instantly",
5
5
  "keywords": [
6
6
  "cli",
@@ -34,11 +34,11 @@
34
34
  "postinstall": "node lib/postinstall.js"
35
35
  },
36
36
  "optionalDependencies": {
37
- "devsh-darwin-arm64": "0.1.1",
38
- "devsh-darwin-x64": "0.1.1",
39
- "devsh-linux-arm64": "0.1.1",
40
- "devsh-linux-x64": "0.1.1",
41
- "devsh-win32-x64": "0.1.1"
37
+ "devsh-darwin-arm64": "0.1.3",
38
+ "devsh-darwin-x64": "0.1.3",
39
+ "devsh-linux-arm64": "0.1.3",
40
+ "devsh-linux-x64": "0.1.3",
41
+ "devsh-win32-x64": "0.1.3"
42
42
  },
43
43
  "engines": {
44
44
  "node": ">=16"