swe-swe 0.1.3 → 0.1.4
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 +12 -19
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
# swe-swe
|
|
2
2
|
|
|
3
|
-
Your agent
|
|
3
|
+
**Your agent:** containerized with its own browser for agentic testing.<br>
|
|
4
|
+
**Your terminal:** pair live or share recordings with teammates.<br>
|
|
5
|
+
**Your sessions:** run multiple in parallel, each on its own git worktree.
|
|
4
6
|
|
|
5
|
-
Works with Claude,
|
|
7
|
+
Works with Claude, Codex, OpenCode, Gemini, Aider, Goose. Not listed? [Let us know](https://github.com/choonkeat/swe-swe/issues)!
|
|
6
8
|
|
|
7
9
|
## Quick Start
|
|
8
10
|
|
|
9
11
|
1. **Install swe-swe**
|
|
10
12
|
|
|
11
|
-
Option A: run via npx (
|
|
13
|
+
Option A: run via npx (requires Node.js)
|
|
12
14
|
```bash
|
|
13
|
-
alias swe-swe='npx
|
|
15
|
+
alias swe-swe='npx -y swe-swe'
|
|
14
16
|
```
|
|
15
17
|
|
|
16
18
|
Option B: install via curl
|
|
@@ -18,27 +20,18 @@ Works with Claude, Aider, Goose, Gemini, Codex, OpenCode. Not listed? [Let us kn
|
|
|
18
20
|
curl -fsSL https://raw.githubusercontent.com/choonkeat/swe-swe/main/install.sh | sh
|
|
19
21
|
```
|
|
20
22
|
|
|
21
|
-
2. **
|
|
23
|
+
2. **Go to your project**
|
|
22
24
|
```bash
|
|
23
|
-
|
|
25
|
+
cd /path/to/your/project
|
|
24
26
|
```
|
|
25
27
|
|
|
26
|
-
3. **
|
|
28
|
+
3. **Initialize and start**
|
|
27
29
|
```bash
|
|
28
|
-
swe-swe
|
|
30
|
+
swe-swe init
|
|
31
|
+
swe-swe up
|
|
29
32
|
```
|
|
30
33
|
|
|
31
|
-
4. **
|
|
32
|
-
|
|
33
|
-
5. **View all initialized projects**
|
|
34
|
-
```bash
|
|
35
|
-
swe-swe list
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
6. **Stop the environment**
|
|
39
|
-
```bash
|
|
40
|
-
swe-swe down --project-directory /path/to/your/project
|
|
41
|
-
```
|
|
34
|
+
4. **Open** http://localhost:1977
|
|
42
35
|
|
|
43
36
|
### Requirements
|
|
44
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swe-swe",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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.4",
|
|
19
|
+
"@choonkeat/swe-swe-linux-arm64": "0.1.4",
|
|
20
|
+
"@choonkeat/swe-swe-darwin-x64": "0.1.4",
|
|
21
|
+
"@choonkeat/swe-swe-darwin-arm64": "0.1.4",
|
|
22
|
+
"@choonkeat/swe-swe-win32-x64": "0.1.4",
|
|
23
|
+
"@choonkeat/swe-swe-win32-arm64": "0.1.4"
|
|
24
24
|
}
|
|
25
25
|
}
|