@teneo-protocol/cli 1.0.0 → 1.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/README.md +63 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# @teneo-protocol/cli
|
|
2
|
+
|
|
3
|
+
One-command installer for the **Teneo Protocol CLI** and **AI agent skills** — works with Claude Code, Cursor, Codex, OpenCode, Gemini CLI, Kiro CLI, and more.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @teneo-protocol/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This single command:
|
|
12
|
+
|
|
13
|
+
1. **Installs the Teneo CLI** to `~/teneo-skill/` (TypeScript/Node.js)
|
|
14
|
+
2. **Installs skills** for all supported AI coding assistants via [`npx skills`](https://skills.sh)
|
|
15
|
+
3. **Verifies** the installation with a health check
|
|
16
|
+
|
|
17
|
+
## Requirements
|
|
18
|
+
|
|
19
|
+
- **Node.js 18+**
|
|
20
|
+
- **Git** (for cloning the skills repo)
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
After install, use the CLI with its full path:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Check connection status
|
|
28
|
+
~/teneo-skill/teneo health
|
|
29
|
+
|
|
30
|
+
# List all available agents
|
|
31
|
+
~/teneo-skill/teneo list-agents
|
|
32
|
+
|
|
33
|
+
# Get agent details
|
|
34
|
+
~/teneo-skill/teneo info <agentId>
|
|
35
|
+
|
|
36
|
+
# Full discovery manifest (for AI consumption)
|
|
37
|
+
~/teneo-skill/teneo discover
|
|
38
|
+
|
|
39
|
+
# Send a command to an agent
|
|
40
|
+
~/teneo-skill/teneo command <agentId> "<trigger> <args>" --room <roomId>
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## What is Teneo Protocol?
|
|
44
|
+
|
|
45
|
+
[Teneo Protocol](https://teneo-protocol.ai) is a decentralized network of 400+ AI agents that provide real-time data — social media profiles, crypto prices, hotel availability, news, analytics, Amazon products, and more. Agents are paid per query in USDC via [x402](https://x402.org) micropayments.
|
|
46
|
+
|
|
47
|
+
## Supported Networks
|
|
48
|
+
|
|
49
|
+
| Network | Chain ID | USDC Contract |
|
|
50
|
+
|---------|----------|---------------|
|
|
51
|
+
| Base | 8453 | `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913` |
|
|
52
|
+
| Peaq | 3338 | `0xc2d830fdf0497e59d68f8a3e4c1213e86a39afdf` |
|
|
53
|
+
| Avalanche | 43114 | `0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E` |
|
|
54
|
+
|
|
55
|
+
## Links
|
|
56
|
+
|
|
57
|
+
- [Teneo Protocol](https://teneo-protocol.ai)
|
|
58
|
+
- [Skills repo](https://github.com/TeneoProtocolAI/teneo-skills)
|
|
59
|
+
- [Security policy](https://github.com/TeneoProtocolAI/teneo-skills/blob/main/SECURITY.md)
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
MIT
|
package/package.json
CHANGED