swe-swe 0.1.4 → 2.12.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/LICENSE +21 -0
- package/README.md +3 -4
- 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
|
@@ -25,9 +25,8 @@ Works with Claude, Codex, OpenCode, Gemini, Aider, Goose. Not listed? [Let us kn
|
|
|
25
25
|
cd /path/to/your/project
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
3. **
|
|
28
|
+
3. **Start**
|
|
29
29
|
```bash
|
|
30
|
-
swe-swe init
|
|
31
30
|
swe-swe up
|
|
32
31
|
```
|
|
33
32
|
|
|
@@ -46,12 +45,12 @@ For the full command reference — all flags, examples, environment variables, a
|
|
|
46
45
|
|
|
47
46
|
```bash
|
|
48
47
|
# Native commands
|
|
49
|
-
swe-swe init [options] # Initialize a project
|
|
48
|
+
swe-swe init [options] # Initialize a project (advanced; `up` does this interactively)
|
|
50
49
|
swe-swe list # List initialized projects
|
|
51
50
|
swe-swe proxy <command> # Bridge host commands into containers
|
|
52
51
|
|
|
53
52
|
# Docker Compose pass-through (all other commands)
|
|
54
|
-
swe-swe up # Start the environment
|
|
53
|
+
swe-swe up # Start the environment (runs interactive setup on first use)
|
|
55
54
|
swe-swe down # Stop the environment
|
|
56
55
|
swe-swe build # Rebuild Docker images
|
|
57
56
|
swe-swe ps / logs / exec ... # Any docker compose command
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swe-swe",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.12.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": "
|
|
19
|
-
"@choonkeat/swe-swe-linux-arm64": "
|
|
20
|
-
"@choonkeat/swe-swe-darwin-x64": "
|
|
21
|
-
"@choonkeat/swe-swe-darwin-arm64": "
|
|
22
|
-
"@choonkeat/swe-swe-win32-x64": "
|
|
23
|
-
"@choonkeat/swe-swe-win32-arm64": "
|
|
18
|
+
"@choonkeat/swe-swe-linux-x64": "2.12.0",
|
|
19
|
+
"@choonkeat/swe-swe-linux-arm64": "2.12.0",
|
|
20
|
+
"@choonkeat/swe-swe-darwin-x64": "2.12.0",
|
|
21
|
+
"@choonkeat/swe-swe-darwin-arm64": "2.12.0",
|
|
22
|
+
"@choonkeat/swe-swe-win32-x64": "2.12.0",
|
|
23
|
+
"@choonkeat/swe-swe-win32-arm64": "2.12.0"
|
|
24
24
|
}
|
|
25
25
|
}
|