swe-swe 2.22.0 → 2.24.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.
package/README.md CHANGED
@@ -4,7 +4,20 @@
4
4
  **Your terminal:** pair live or share recordings with teammates.<br>
5
5
  **Your sessions:** run multiple in parallel, each on its own git worktree.
6
6
 
7
- Works with Claude, Codex, OpenCode, Gemini, Aider, Goose. Not listed? [Let us know](https://github.com/choonkeat/swe-swe/issues)!
7
+ Works with Claude, Codex, OpenCode, Gemini, Aider, Goose, and Pi. Not listed? [Let us know](https://github.com/choonkeat/swe-swe/issues)!
8
+
9
+ ![swe-swe in action: agent chat, app preview, and a live docs pane side by side](docs/images/swe-swe-screenshot.png)
10
+
11
+ ## Features
12
+
13
+ - **Containerized agent + browser**: each session runs in its own container with a browser for agentic testing (Playwright MCP plus a live Agent View).
14
+ - **Parallel sessions on git worktrees**: run several agents at once, each isolated on its own worktree.
15
+ - **Live pairing and recordings**: pair on a live terminal, or share session recordings with teammates.
16
+ - **Remote access via tunnel mode**: reach a container over the public internet with no open ports and no TLS to manage -- the container dials out. See [Tunnel mode explained](docs/tunnel-explained.md), plus the runbooks for [laptop](docs/tunnel-laptop.md), [Fly.io](docs/tunnel-fly.md), and [PaaS](docs/tunnel-paas.md).
17
+ - **One-container deploy**: ship to Fly.io / Railway / Render / Cloud Run, or join a Tailscale tailnet.
18
+ - **SSH commit signing**: sign commits with a per-session key that never touches disk.
19
+ - **Skills from any git repo**: `swe-swe init --with-skills <alias>@<url>` clones external skill repos and surfaces them to the agent.
20
+ - **Built-in panes**: live preview, a read-only Files browser, VS Code (code-server), and agent chat.
8
21
 
9
22
  ## Quick Start
10
23
 
@@ -39,7 +52,7 @@ Works with Claude, Codex, OpenCode, Gemini, Aider, Goose. Not listed? [Let us kn
39
52
 
40
53
  ## Commands
41
54
 
42
- For the full command reference all flags, examples, environment variables, and architecture details see [docs/cli-commands-and-binary-management.md](docs/cli-commands-and-binary-management.md). For configuration options, see [docs/configuration.md](docs/configuration.md).
55
+ For the full command reference -- all flags, examples, environment variables, and architecture details -- see [docs/cli-commands-and-binary-management.md](docs/cli-commands-and-binary-management.md). For configuration options, see [docs/configuration.md](docs/configuration.md).
43
56
 
44
57
  **Quick reference:**
45
58
 
@@ -60,10 +73,11 @@ Use `--project-directory` to specify which project (defaults to current director
60
73
 
61
74
  ## Documentation
62
75
 
63
- - [Configuration Reference](docs/configuration.md) all init flags, environment variables, and config files
64
- - [CLI Commands and Build Architecture](docs/cli-commands-and-binary-management.md) full command reference, troubleshooting, build system
65
- - [Browser Automation](docs/browser-automation.md) Chrome CDP and MCP Playwright
66
- - [WebSocket Protocol](docs/websocket-protocol.md) terminal communication protocol
76
+ - [Configuration Reference](docs/configuration.md) - all init flags, environment variables, and config files
77
+ - [CLI Commands and Build Architecture](docs/cli-commands-and-binary-management.md) - full command reference, troubleshooting, build system
78
+ - [Browser Automation](docs/browser-automation.md) - Chrome CDP and MCP Playwright
79
+ - [WebSocket Protocol](docs/websocket-protocol.md) - terminal communication protocol
80
+ - **Tunnel mode** - reach a container from the public internet: [explained](docs/tunnel-explained.md), [laptop](docs/tunnel-laptop.md), [Fly.io](docs/tunnel-fly.md), [PaaS](docs/tunnel-paas.md)
67
81
 
68
82
  ## Development
69
83
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swe-swe",
3
- "version": "2.22.0",
3
+ "version": "2.24.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": "2.22.0",
19
- "@choonkeat/swe-swe-linux-arm64": "2.22.0",
20
- "@choonkeat/swe-swe-darwin-x64": "2.22.0",
21
- "@choonkeat/swe-swe-darwin-arm64": "2.22.0",
22
- "@choonkeat/swe-swe-win32-x64": "2.22.0",
23
- "@choonkeat/swe-swe-win32-arm64": "2.22.0"
18
+ "@choonkeat/swe-swe-linux-x64": "2.24.0",
19
+ "@choonkeat/swe-swe-linux-arm64": "2.24.0",
20
+ "@choonkeat/swe-swe-darwin-x64": "2.24.0",
21
+ "@choonkeat/swe-swe-darwin-arm64": "2.24.0",
22
+ "@choonkeat/swe-swe-win32-x64": "2.24.0",
23
+ "@choonkeat/swe-swe-win32-arm64": "2.24.0"
24
24
  }
25
25
  }