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.
Files changed (2) hide show
  1. package/README.md +3 -4
  2. 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. **Initialize and start**
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.11.0",
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.11.0",
19
- "@choonkeat/swe-swe-linux-arm64": "2.11.0",
20
- "@choonkeat/swe-swe-darwin-x64": "2.11.0",
21
- "@choonkeat/swe-swe-darwin-arm64": "2.11.0",
22
- "@choonkeat/swe-swe-win32-x64": "2.11.0",
23
- "@choonkeat/swe-swe-win32-arm64": "2.11.0"
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
  }