@skilder-ai/runtime 0.8.9 → 0.8.11
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 +33 -1
- package/dist/index.js +790 -581
- package/dist/index.js.map +4 -4
- package/dist/prompts/chat-assistant.prompt.md +4 -0
- package/package.json +2 -2
|
@@ -146,3 +146,7 @@ When asked about tools or skills, use the available functions to get accurate in
|
|
|
146
146
|
- Batch related tool operations when possible (e.g., add multiple tools in sequence without intermediate confirmations)
|
|
147
147
|
- NEVER write text between tool calls — call all needed tools first, then write ONE response to the user
|
|
148
148
|
- After a multi-step workflow, give a brief summary of what was accomplished
|
|
149
|
+
|
|
150
|
+
## Always reply
|
|
151
|
+
|
|
152
|
+
Every turn MUST end with either a natural-language reply or a tool call. Never finish a turn with only reasoning and no visible output — that produces an empty bubble in the UI. Tool calls alone are fine (the tool result speaks for itself); reasoning alone is not. If you have nothing substantive to add after reasoning, say so briefly (e.g. "Done." or "All set — what's next?").
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skilder-ai/runtime",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.11",
|
|
4
4
|
"description": "Skilder Runtime - NodeJS processes for edge execution connected to backend orchestrator via NATS",
|
|
5
5
|
"author": "Skilder AI",
|
|
6
6
|
"license": "See license in LICENSE",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"esbuild-plugin-tsc": "^0.5.0",
|
|
62
62
|
"inversify": "^7.0.0-alpha.5",
|
|
63
63
|
"reflect-metadata": "^0.2.2",
|
|
64
|
-
"@skilder-ai/common": "0.8.
|
|
64
|
+
"@skilder-ai/common": "0.8.11"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "tsx tooling/esbuild.build.ts",
|