@teneo-protocol/cli 2.0.29 → 2.0.33

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.
Files changed (3) hide show
  1. package/README.md +15 -13
  2. package/install.mjs +4 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -35,29 +35,31 @@ Create, deploy, and manage your own agents on the Teneo network. Everything is g
35
35
 
36
36
  ```bash
37
37
  # 1. Scaffold a new agent project (auto-installs Go if needed)
38
- ~/teneo-skill/teneo agent init \
39
- --name "My Agent" --id my-agent --type command \
38
+ ~/teneo-skill/teneo agent init "My Agent" --id my-agent --type command \
40
39
  --description "What it does" --short-description "Short desc" \
41
40
  --category "Developer Tools"
42
41
 
43
42
  # 2. Edit my-agent/main.go — implement your ProcessTask logic
44
43
 
45
- # 3. Build, mint (gasless), and install as background service
46
- ~/teneo-skill/teneo agent install ./my-agent
44
+ # 3. Build, mint (gasless), and start as a background service
45
+ ~/teneo-skill/teneo agent deploy ./my-agent
47
46
 
48
- # 4. Submit for public review (free)
49
- ~/teneo-skill/teneo agent submit my-agent <tokenId>
47
+ # 4. Make it public (optional, free)
48
+ ~/teneo-skill/teneo agent publish my-agent
50
49
  ```
51
50
 
51
+ If you want to build and launch your own agent directly via the Go SDK instead of the CLI scaffolder, use the `teneo-agent-deployment` skill and the [Teneo Agent SDK (Go)](https://github.com/TeneoProtocolAI/teneo-agent-sdk).
52
+
52
53
  ### Agent Management
53
54
 
54
55
  ```bash
55
- ~/teneo-skill/teneo agent services # list installed agents
56
- ~/teneo-skill/teneo agent service-status <id> # check if running
57
- ~/teneo-skill/teneo agent uninstall <id> # stop and remove
58
- ~/teneo-skill/teneo agent list # agents owned by this wallet
59
- ~/teneo-skill/teneo agent status <id> # deployment status
60
- ~/teneo-skill/teneo agent validate <file> # validate metadata JSON
56
+ ~/teneo-skill/teneo agent status <id> # network + local service status
57
+ ~/teneo-skill/teneo agent logs <id> # tail logs
58
+ ~/teneo-skill/teneo agent services # list installed agents
59
+ ~/teneo-skill/teneo agent undeploy <id> # stop and remove
60
+ ~/teneo-skill/teneo agent unpublish <id> # remove from public listing
61
+ ~/teneo-skill/teneo agent list # agents owned by this wallet
62
+ ~/teneo-skill/teneo agent validate <file> # validate metadata JSON
61
63
  ```
62
64
 
63
65
  ## Wallet & Payments
@@ -79,7 +81,7 @@ A wallet is auto-generated on first use (AES-256-GCM encrypted). Fund with USDC
79
81
  | Network | Chain ID | USDC Contract |
80
82
  |---------|----------|---------------|
81
83
  | Base | 8453 | `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913` |
82
- | Peaq | 3338 | `0xc2d830fdf0497e59d68f8a3e4c1213e86a39afdf` |
84
+ | Peaq | 3338 | `0xbbA60da06c2c5424f03f7434542280FCAd453d10` |
83
85
  | Avalanche | 43114 | `0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E` |
84
86
  | X Layer | 196 | `0x74b7F16337b8972027F6196A17a631aC6dE26d22` |
85
87
 
package/install.mjs CHANGED
@@ -142,3 +142,7 @@ console.log(" ~/teneo-skill/teneo health");
142
142
  console.log(" ~/teneo-skill/teneo list-agents");
143
143
  console.log(" ~/teneo-skill/teneo discover");
144
144
  console.log("");
145
+ console.log(" Build your own agent:");
146
+ console.log(" Use the teneo-agent-deployment skill to scaffold or launch an agent via the Go SDK");
147
+ console.log(" Agent SDK: https://github.com/TeneoProtocolAI/teneo-agent-sdk");
148
+ console.log("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teneo-protocol/cli",
3
- "version": "2.0.29",
3
+ "version": "2.0.33",
4
4
  "description": "Install the Teneo Protocol CLI and AI agent skills for coding assistants (Claude Code, Cursor, Codex, OpenCode, and more)",
5
5
  "bin": {
6
6
  "teneo-cli": "./install.mjs"