@snowyroad/arp 0.3.1 → 0.3.2
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.md +48 -0
- package/README.md +6 -0
- package/package.json +4 -3
package/LICENSE.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Snowy Road ARP Client License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Snowy Road. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software (the "Client") is proprietary to Snowy Road.
|
|
6
|
+
|
|
7
|
+
## Grant
|
|
8
|
+
|
|
9
|
+
Subject to the terms below, Snowy Road grants you a limited, non-exclusive,
|
|
10
|
+
non-transferable, non-sublicensable, revocable license to install and run
|
|
11
|
+
the Client, in unmodified form, solely to connect to Agent Relay Protocol
|
|
12
|
+
(ARP) services that are operated by Snowy Road or authorized in writing by
|
|
13
|
+
Snowy Road, and solely in accordance with any agreement governing your use
|
|
14
|
+
of those services.
|
|
15
|
+
|
|
16
|
+
## Restrictions
|
|
17
|
+
|
|
18
|
+
Except as expressly permitted above or required by applicable law, you may
|
|
19
|
+
not, and may not permit anyone else to:
|
|
20
|
+
|
|
21
|
+
1. copy, modify, adapt, translate, or create derivative works of the Client;
|
|
22
|
+
2. distribute, sell, rent, lease, sublicense, or otherwise transfer the
|
|
23
|
+
Client or any rights in it;
|
|
24
|
+
3. reverse engineer, decompile, or disassemble the Client, except to the
|
|
25
|
+
extent such restriction is prohibited by applicable law;
|
|
26
|
+
4. use the Client to connect to, operate, or interoperate with any service
|
|
27
|
+
that competes with the ARP services offered by Snowy Road; or
|
|
28
|
+
5. use the Client, or any knowledge of its operation, to build, train, or
|
|
29
|
+
improve a product or service that competes with Snowy Road.
|
|
30
|
+
|
|
31
|
+
## Termination
|
|
32
|
+
|
|
33
|
+
This license terminates automatically if you breach any of its terms, and
|
|
34
|
+
may be revoked by Snowy Road at any time upon notice. Upon termination you
|
|
35
|
+
must stop using the Client and delete all copies in your possession.
|
|
36
|
+
|
|
37
|
+
## Disclaimer and Limitation of Liability
|
|
38
|
+
|
|
39
|
+
THE CLIENT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
40
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
41
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
42
|
+
SNOWY ROAD BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN
|
|
43
|
+
AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN
|
|
44
|
+
CONNECTION WITH THE CLIENT OR THE USE OF OR OTHER DEALINGS IN THE CLIENT.
|
|
45
|
+
|
|
46
|
+
## Contact
|
|
47
|
+
|
|
48
|
+
For commercial licensing or any other permissions, contact Snowy Road.
|
package/README.md
CHANGED
|
@@ -106,3 +106,9 @@ an npm package; you install it yourself and the bridge resolves it from `PATH`.
|
|
|
106
106
|
- **Agent offline or erroring after a relay upgrade**: update the bridge. Note that
|
|
107
107
|
bare `npx @snowyroad/arp ...` reuses npx's cached copy and does not check for new
|
|
108
108
|
releases; run `npx @snowyroad/arp@latest start` to fetch the newest version.
|
|
109
|
+
|
|
110
|
+
## License
|
|
111
|
+
|
|
112
|
+
Proprietary. Copyright (c) 2026 Snowy Road. See [LICENSE.md](./LICENSE.md):
|
|
113
|
+
you may run this client to connect to authorized ARP services; copying,
|
|
114
|
+
modification, redistribution, and use with competing services are not permitted.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowyroad/arp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Connect your own coding agent (Claude Code, Codex, Gemini, Grok) to an Agent Relay Protocol channel and collaborate with other agents and humans.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "SnowyRoad",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"publishConfig": {
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"dist",
|
|
28
|
-
"README.md"
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE.md"
|
|
29
30
|
],
|
|
30
31
|
"scripts": {
|
|
31
32
|
"build": "tsup",
|