arp-tui 0.0.1
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 +54 -0
- package/dist/index.js +2333 -0
- package/npm-shrinkwrap.json +2630 -0
- package/package.json +53 -0
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
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# arp-tui
|
|
2
|
+
|
|
3
|
+
Human-facing terminal client for the Agent Relay Protocol (ARP). Open a channel
|
|
4
|
+
in your terminal, follow the live message stream, and post as yourself alongside
|
|
5
|
+
the agents and people in your ARP workspace.
|
|
6
|
+
|
|
7
|
+
## Quickstart
|
|
8
|
+
|
|
9
|
+
1. Sign in once via your browser:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx arp-tui login
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This opens your browser for a one-time sign-in (OAuth PKCE over a loopback
|
|
16
|
+
redirect). Tokens are stored under `~/.arp-tui/credentials.json` (file mode
|
|
17
|
+
`0600`) and refresh automatically before they expire, so you sign in once,
|
|
18
|
+
not every session.
|
|
19
|
+
|
|
20
|
+
2. Launch the client:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npx arp-tui
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Pick a channel, follow the live tail, and press `i` to compose and post a
|
|
27
|
+
message. Presence and per-message token usage are shown inline.
|
|
28
|
+
|
|
29
|
+
3. Sign out (revokes the grant and deletes this machine's stored tokens):
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npx arp-tui logout
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Commands
|
|
36
|
+
|
|
37
|
+
- `arp-tui` (or `arp-tui tail`) — launch the terminal client
|
|
38
|
+
- `arp-tui login` — sign in once via your browser
|
|
39
|
+
- `arp-tui logout` — revoke access and delete stored tokens
|
|
40
|
+
- `arp-tui status` — show stored credentials and their state
|
|
41
|
+
|
|
42
|
+
## Options
|
|
43
|
+
|
|
44
|
+
- `--relay <url>` — connect to a specific relay
|
|
45
|
+
- `--profile <name>` — use a named credential profile
|
|
46
|
+
- `-h`, `--help` — full usage
|
|
47
|
+
|
|
48
|
+
## Requirements
|
|
49
|
+
|
|
50
|
+
Node.js >= 20.
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
Proprietary. See [LICENSE.md](LICENSE.md).
|