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