devsh 0.1.0 → 0.1.2
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.
- package/AGENTS.md +9 -0
- package/package.json +7 -6
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.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Cloud VMs for development - spawn isolated dev environments instantly",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"bin",
|
|
28
28
|
"lib",
|
|
29
|
+
".agents",
|
|
29
30
|
"AGENTS.md",
|
|
30
31
|
"llms.txt"
|
|
31
32
|
],
|
|
@@ -33,11 +34,11 @@
|
|
|
33
34
|
"postinstall": "node lib/postinstall.js"
|
|
34
35
|
},
|
|
35
36
|
"optionalDependencies": {
|
|
36
|
-
"devsh-darwin-arm64": "0.1.
|
|
37
|
-
"devsh-darwin-x64": "0.1.
|
|
38
|
-
"devsh-linux-arm64": "0.1.
|
|
39
|
-
"devsh-linux-x64": "0.1.
|
|
40
|
-
"devsh-win32-x64": "0.1.
|
|
37
|
+
"devsh-darwin-arm64": "0.1.2",
|
|
38
|
+
"devsh-darwin-x64": "0.1.2",
|
|
39
|
+
"devsh-linux-arm64": "0.1.2",
|
|
40
|
+
"devsh-linux-x64": "0.1.2",
|
|
41
|
+
"devsh-win32-x64": "0.1.2"
|
|
41
42
|
},
|
|
42
43
|
"engines": {
|
|
43
44
|
"node": ">=16"
|