@tpsdev-ai/cli-linux-arm64 0.3.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/README.md +65 -0
- package/package.json +15 -0
- package/tps +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# @tpsdev-ai/cli
|
|
2
|
+
|
|
3
|
+
> TPS (Team Provisioning System) — an Agent OS CLI for managing isolated AI agents.
|
|
4
|
+
|
|
5
|
+
Hire agents, provision secure branch offices, manage identity and encrypted comms, track operational health — all from the command line.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @tpsdev-ai/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Commands
|
|
14
|
+
|
|
15
|
+
| Command | Description |
|
|
16
|
+
|---------|-------------|
|
|
17
|
+
| `tps hire <report>` | Onboard a new agent from a TPS report |
|
|
18
|
+
| `tps roster` | List all agents and their status |
|
|
19
|
+
| `tps bootstrap <agent>` | Run first-boot health checks and workspace scaffolding |
|
|
20
|
+
| `tps office setup` | Configure sandbox environment from workspace manifest |
|
|
21
|
+
| `tps backup <agent>` | Create encrypted, checksummed workspace backup |
|
|
22
|
+
| `tps restore <agent> <archive>` | Restore agent workspace with transactional rollback |
|
|
23
|
+
| `tps status` | Operational dashboard — health, uptime, cost tracking |
|
|
24
|
+
| `tps heartbeat <agent>` | Agent self-reports health (workspace, gateway, provider) |
|
|
25
|
+
| `tps identity init` | Generate Ed25519 host keypair |
|
|
26
|
+
| `tps branch init` | Initialize a remote branch office |
|
|
27
|
+
| `tps office join` | Join a branch to the head office via Noise_IK handshake |
|
|
28
|
+
| `tps office connect` | Establish persistent encrypted relay channel |
|
|
29
|
+
| `tps mail send` | Send async mail to a branch agent |
|
|
30
|
+
| `tps mail check` | Check for incoming mail |
|
|
31
|
+
| `tps secrets set/get` | Encrypted vault for API keys and credentials |
|
|
32
|
+
|
|
33
|
+
## Architecture
|
|
34
|
+
|
|
35
|
+
TPS treats AI agents like employees in an organization:
|
|
36
|
+
|
|
37
|
+
- **Branch Offices** — isolated sandboxes (Docker, VMs, or `nono` process isolation)
|
|
38
|
+
- **The Mailroom** — async, persistent, cross-boundary messaging via Maildir
|
|
39
|
+
- **Wire Security** — Noise_IK protocol over WebSocket for E2E encrypted transport
|
|
40
|
+
- **Identity** — Ed25519 keypairs with signed join tokens
|
|
41
|
+
|
|
42
|
+
Agents communicate through three channels:
|
|
43
|
+
1. **Mail** for messages (tasks, status, coordination)
|
|
44
|
+
2. **Git** for artifacts (code, reports, generated files)
|
|
45
|
+
3. **APIs** for external data
|
|
46
|
+
|
|
47
|
+
## Security
|
|
48
|
+
|
|
49
|
+
- All inter-office traffic is E2E encrypted (Noise_IK + MessagePack)
|
|
50
|
+
- Sandbox profiles enforce filesystem, network, and exec boundaries
|
|
51
|
+
- Encrypted secrets vault (Argon2id key derivation)
|
|
52
|
+
- Audit trail with append-only logging and search
|
|
53
|
+
- Path traversal protection on all user-supplied identifiers
|
|
54
|
+
|
|
55
|
+
See [SECURITY.md](https://github.com/tpsdev-ai/cli/blob/main/SECURITY.md) for responsible disclosure.
|
|
56
|
+
|
|
57
|
+
## Links
|
|
58
|
+
|
|
59
|
+
- [GitHub](https://github.com/tpsdev-ai/cli)
|
|
60
|
+
- [Runtime Library](https://www.npmjs.com/package/@tpsdev-ai/agent)
|
|
61
|
+
- [Contributing](https://github.com/tpsdev-ai/cli/blob/main/CONTRIBUTING.md)
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
Apache-2.0
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tpsdev-ai/cli-linux-arm64",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "TPS CLI native binary for linux-arm64",
|
|
5
|
+
"os": ["linux"],
|
|
6
|
+
"cpu": ["arm64"],
|
|
7
|
+
"bin": {
|
|
8
|
+
"tps": "./tps"
|
|
9
|
+
},
|
|
10
|
+
"files": ["tps", "README.md"],
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
}
|
|
15
|
+
}
|
package/tps
ADDED
|
Binary file
|