swe-swe 2.11.0 → 2.12.0
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/README.md +3 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -25,9 +25,8 @@ Works with Claude, Codex, OpenCode, Gemini, Aider, Goose. Not listed? [Let us kn
|
|
|
25
25
|
cd /path/to/your/project
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
3. **
|
|
28
|
+
3. **Start**
|
|
29
29
|
```bash
|
|
30
|
-
swe-swe init
|
|
31
30
|
swe-swe up
|
|
32
31
|
```
|
|
33
32
|
|
|
@@ -46,12 +45,12 @@ For the full command reference — all flags, examples, environment variables, a
|
|
|
46
45
|
|
|
47
46
|
```bash
|
|
48
47
|
# Native commands
|
|
49
|
-
swe-swe init [options] # Initialize a project
|
|
48
|
+
swe-swe init [options] # Initialize a project (advanced; `up` does this interactively)
|
|
50
49
|
swe-swe list # List initialized projects
|
|
51
50
|
swe-swe proxy <command> # Bridge host commands into containers
|
|
52
51
|
|
|
53
52
|
# Docker Compose pass-through (all other commands)
|
|
54
|
-
swe-swe up # Start the environment
|
|
53
|
+
swe-swe up # Start the environment (runs interactive setup on first use)
|
|
55
54
|
swe-swe down # Stop the environment
|
|
56
55
|
swe-swe build # Rebuild Docker images
|
|
57
56
|
swe-swe ps / logs / exec ... # Any docker compose command
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swe-swe",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "Your agent: containerized with browser, terminal, and parallel sessions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@choonkeat/swe-swe-linux-x64": "2.
|
|
19
|
-
"@choonkeat/swe-swe-linux-arm64": "2.
|
|
20
|
-
"@choonkeat/swe-swe-darwin-x64": "2.
|
|
21
|
-
"@choonkeat/swe-swe-darwin-arm64": "2.
|
|
22
|
-
"@choonkeat/swe-swe-win32-x64": "2.
|
|
23
|
-
"@choonkeat/swe-swe-win32-arm64": "2.
|
|
18
|
+
"@choonkeat/swe-swe-linux-x64": "2.12.0",
|
|
19
|
+
"@choonkeat/swe-swe-linux-arm64": "2.12.0",
|
|
20
|
+
"@choonkeat/swe-swe-darwin-x64": "2.12.0",
|
|
21
|
+
"@choonkeat/swe-swe-darwin-arm64": "2.12.0",
|
|
22
|
+
"@choonkeat/swe-swe-win32-x64": "2.12.0",
|
|
23
|
+
"@choonkeat/swe-swe-win32-arm64": "2.12.0"
|
|
24
24
|
}
|
|
25
25
|
}
|