swe-swe 0.1.1 → 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.
Files changed (2) hide show
  1. package/README.md +4 -5
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -8,15 +8,14 @@ Works with Claude, Aider, Goose, Gemini, Codex, OpenCode. Not listed? [Let us kn
8
8
 
9
9
  1. **Install swe-swe**
10
10
 
11
- Option A: install via curl (recommended)
11
+ Option A: run via npx (recommended, no install needed)
12
12
  ```bash
13
- curl -fsSL https://raw.githubusercontent.com/choonkeat/swe-swe/main/install.sh | sh
13
+ alias swe-swe='npx --prefer-online --yes swe-swe'
14
14
  ```
15
15
 
16
- Option B: run via npx (no install needed)
16
+ Option B: install via curl
17
17
  ```bash
18
- npx -y swe-swe init
19
- alias swe-swe='npx -y swe-swe' # so the rest of the commands below work
18
+ curl -fsSL https://raw.githubusercontent.com/choonkeat/swe-swe/main/install.sh | sh
20
19
  ```
21
20
 
22
21
  2. **Initialize a project**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swe-swe",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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": "0.1.1",
19
- "@choonkeat/swe-swe-linux-arm64": "0.1.1",
20
- "@choonkeat/swe-swe-darwin-x64": "0.1.1",
21
- "@choonkeat/swe-swe-darwin-arm64": "0.1.1",
22
- "@choonkeat/swe-swe-win32-x64": "0.1.1",
23
- "@choonkeat/swe-swe-win32-arm64": "0.1.1"
18
+ "@choonkeat/swe-swe-linux-x64": "0.1.2",
19
+ "@choonkeat/swe-swe-linux-arm64": "0.1.2",
20
+ "@choonkeat/swe-swe-darwin-x64": "0.1.2",
21
+ "@choonkeat/swe-swe-darwin-arm64": "0.1.2",
22
+ "@choonkeat/swe-swe-win32-x64": "0.1.2",
23
+ "@choonkeat/swe-swe-win32-arm64": "0.1.2"
24
24
  }
25
25
  }