swe-swe 0.1.0 → 0.1.1
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 +6 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -7,12 +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: install via curl (recommended)
|
|
10
12
|
```bash
|
|
11
|
-
# Option A: install via curl (recommended)
|
|
12
13
|
curl -fsSL https://raw.githubusercontent.com/choonkeat/swe-swe/main/install.sh | sh
|
|
14
|
+
```
|
|
13
15
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
+
Option B: run via npx (no install needed)
|
|
17
|
+
```bash
|
|
18
|
+
npx -y swe-swe init
|
|
16
19
|
alias swe-swe='npx -y swe-swe' # so the rest of the commands below work
|
|
17
20
|
```
|
|
18
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swe-swe",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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.
|
|
19
|
-
"@choonkeat/swe-swe-linux-arm64": "0.1.
|
|
20
|
-
"@choonkeat/swe-swe-darwin-x64": "0.1.
|
|
21
|
-
"@choonkeat/swe-swe-darwin-arm64": "0.1.
|
|
22
|
-
"@choonkeat/swe-swe-win32-x64": "0.1.
|
|
23
|
-
"@choonkeat/swe-swe-win32-arm64": "0.1.
|
|
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"
|
|
24
24
|
}
|
|
25
25
|
}
|