@nimbus21.ai/the-link 3.7.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 +5 -0
- package/README.md +37 -0
- package/bin/.gitkeep +0 -0
- package/bin/the-link.js +488 -0
- package/package.json +26 -0
package/LICENSE
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @nimbus21.ai/the-link
|
|
2
|
+
|
|
3
|
+
Terminal agent for [Hub 360](https://thehub360.ai) — WebSocket-based terminal orchestration platform.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- [Bun](https://bun.sh) runtime (v1.0.0+)
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
bun install -g @nimbus21.ai/the-link
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
the-link start # Start agent
|
|
19
|
+
the-link list # List instances
|
|
20
|
+
the-link --help # Show all commands
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Configuration
|
|
24
|
+
|
|
25
|
+
Set up your agent credentials in `~/.the-link/.env`:
|
|
26
|
+
|
|
27
|
+
```env
|
|
28
|
+
HUB_URL=wss://thehub360.ai
|
|
29
|
+
HUB_TOKEN=<your-token>
|
|
30
|
+
AGENT_NAME=my-worker
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Get a token from the Hub 360 UI: Settings > Tokens > + Token.
|
|
34
|
+
|
|
35
|
+
## Support
|
|
36
|
+
|
|
37
|
+
Contact: issue@nimbus21.ai
|
package/bin/.gitkeep
ADDED
|
File without changes
|