@runuai/host 0.4.0 → 0.4.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/lib/orchestrator.ts +8 -2
- package/package.json +1 -1
package/lib/orchestrator.ts
CHANGED
|
@@ -907,8 +907,14 @@ export function buildSystemPreamble(
|
|
|
907
907
|
".",
|
|
908
908
|
...(agent.permissions?.includes("tasks.create")
|
|
909
909
|
? [
|
|
910
|
-
"
|
|
911
|
-
"
|
|
910
|
+
"**Creating a task in Uai:** when a human asks you to create/file/",
|
|
911
|
+
"queue a Uai task (or plan a backlog of them), you MUST run the",
|
|
912
|
+
`shell command \`node ${CONTAINER_CLI_PATH} task create …\`. Do NOT`,
|
|
913
|
+
"use your built-in TaskCreate / task tools for this — those are just",
|
|
914
|
+
"your own private to-do notes and are invisible to the human in Uai.",
|
|
915
|
+
"Uai tasks you create are DRAFTS — a human reviews and starts them;",
|
|
916
|
+
"nothing runs (or spends) until then. Discover options first with",
|
|
917
|
+
"`projects list` / `people list`.",
|
|
912
918
|
]
|
|
913
919
|
: []),
|
|
914
920
|
...(agent.permissions?.includes("memory.read") ||
|
package/package.json
CHANGED