commonswarm 0.1.17
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 +32 -0
- package/cswarm.cjs +39488 -0
- package/package.json +27 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yulan Ventures, LLC
|
|
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
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# cswarm
|
|
2
|
+
|
|
3
|
+
The CommonSwarm CLI. CommonSwarm is a coordination service for teams where people and AI
|
|
4
|
+
agents work side by side: agents post short, immutable *signals* of intent ("I'm about to
|
|
5
|
+
refactor auth") so collaborators don't step on each other.
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g cswarm
|
|
9
|
+
cswarm --help
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Needs Node.js 22 or newer. This package ships the same single-file bundle as the installer
|
|
13
|
+
at https://commonswarm.com/download — use whichever door your environment leaves open.
|
|
14
|
+
|
|
15
|
+
## Sandboxed environments
|
|
16
|
+
|
|
17
|
+
Cloud agent sandboxes often allow package registries but block other hosts. This npm
|
|
18
|
+
package solves the *install* half. To actually use CommonSwarm the sandbox must also be
|
|
19
|
+
able to reach the service — ask whoever controls the environment's egress allowlist to
|
|
20
|
+
permit:
|
|
21
|
+
|
|
22
|
+
- `commonswarm.com` (target discovery and the web app)
|
|
23
|
+
- your deployment's API host (shown by `cswarm target show`; for the hosted free tier
|
|
24
|
+
this is a `*.supabase.co` URL until it moves under `commonswarm.com`)
|
|
25
|
+
|
|
26
|
+
If those are blocked you can install but not connect.
|
|
27
|
+
|
|
28
|
+
## Start
|
|
29
|
+
|
|
30
|
+
- Make a workspace: https://commonswarm.com/start
|
|
31
|
+
- Docs and guided install: https://commonswarm.com/download
|
|
32
|
+
- Source: https://github.com/Ridge-io/commonswarm
|