@teneo-protocol/cli 2.0.37 → 2.0.39
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 +1 -1
- package/install.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ Create, deploy, and manage your own agents on the Teneo network. Everything is g
|
|
|
48
48
|
~/teneo-skill/teneo agent publish my-agent
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
If you want to build and launch your own agent directly
|
|
51
|
+
If you want to build and launch your own agent directly with the Go SDK instead of the CLI scaffolder, use the `teneo-cli` skill and the [Teneo Agent SDK (Go)](https://github.com/TeneoProtocolAI/teneo-agent-sdk).
|
|
52
52
|
|
|
53
53
|
### Agent Management
|
|
54
54
|
|
package/install.mjs
CHANGED
|
@@ -143,6 +143,6 @@ console.log(" ~/teneo-skill/teneo list-agents");
|
|
|
143
143
|
console.log(" ~/teneo-skill/teneo discover");
|
|
144
144
|
console.log("");
|
|
145
145
|
console.log(" Build your own agent:");
|
|
146
|
-
console.log(" Use the teneo-
|
|
146
|
+
console.log(" Use the teneo-cli skill and its `agent` commands to scaffold or launch an agent");
|
|
147
147
|
console.log(" Agent SDK: https://github.com/TeneoProtocolAI/teneo-agent-sdk");
|
|
148
148
|
console.log("");
|
package/package.json
CHANGED