@teneo-protocol/cli 2.0.30 → 2.0.34
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 +14 -12
- package/install.mjs +4 -0
- 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
|
|
46
|
-
~/teneo-skill/teneo agent
|
|
44
|
+
# 3. Build, mint (gasless), and start as a background service
|
|
45
|
+
~/teneo-skill/teneo agent deploy ./my-agent
|
|
47
46
|
|
|
48
|
-
# 4.
|
|
49
|
-
~/teneo-skill/teneo agent
|
|
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
|
|
56
|
-
~/teneo-skill/teneo agent
|
|
57
|
-
~/teneo-skill/teneo agent
|
|
58
|
-
~/teneo-skill/teneo agent
|
|
59
|
-
~/teneo-skill/teneo agent
|
|
60
|
-
~/teneo-skill/teneo agent
|
|
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
|
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