swe-swe 0.1.3 → 2.11.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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +12 -19
  3. package/package.json +7 -7
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Chew Choon Keat
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,16 +1,18 @@
1
1
  # swe-swe
2
2
 
3
- Your agent: containerized with its own browser for manual testing. Your terminal: pair live or share recordings with teammates. Your sessions: run multiple in parallel, each on its own git worktree.
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, Aider, Goose, Gemini, Codex, OpenCode. Not listed? [Let us know](https://github.com/choonkeat/swe-swe/issues)!
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 (recommended, no install needed)
13
+ Option A: run via npx (requires Node.js)
12
14
  ```bash
13
- alias swe-swe='npx --prefer-online --yes swe-swe'
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. **Initialize a project**
23
+ 2. **Go to your project**
22
24
  ```bash
23
- swe-swe init --project-directory /path/to/your/project
25
+ cd /path/to/your/project
24
26
  ```
25
27
 
26
- 3. **Start the environment**
28
+ 3. **Initialize and start**
27
29
  ```bash
28
- swe-swe up --project-directory /path/to/your/project
30
+ swe-swe init
31
+ swe-swe up
29
32
  ```
30
33
 
31
- 4. **Access the services** at http://localhost:1977 (or `https://<hostname>:1977` if initialized with `--ssl`)
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",
3
+ "version": "2.11.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": "0.1.3",
19
- "@choonkeat/swe-swe-linux-arm64": "0.1.3",
20
- "@choonkeat/swe-swe-darwin-x64": "0.1.3",
21
- "@choonkeat/swe-swe-darwin-arm64": "0.1.3",
22
- "@choonkeat/swe-swe-win32-x64": "0.1.3",
23
- "@choonkeat/swe-swe-win32-arm64": "0.1.3"
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"
24
24
  }
25
25
  }