clanka 0.0.24 → 0.0.25

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/dist/Agent.js CHANGED
@@ -85,7 +85,7 @@ ${content}
85
85
  const taskServices = SubagentContext.serviceMap({
86
86
  spawn: ({ prompt }) => {
87
87
  let id = agentCounter++;
88
- const stream = spawn(id, Prompt.make(`You have been asked using "delegate" to complete the following task:
88
+ const stream = spawn(id, Prompt.make(`You have been asked using the "delegate" function to complete the following task. Avoid using the "delegate" function yourself unless strictly necessary:
89
89
 
90
90
  ${prompt}`));
91
91
  return Effect.gen(function* () {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "clanka",
3
3
  "type": "module",
4
- "version": "0.0.24",
4
+ "version": "0.0.25",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/src/Agent.ts CHANGED
@@ -230,7 +230,7 @@ ${content}
230
230
  let id = agentCounter++
231
231
  const stream = spawn(
232
232
  id,
233
- Prompt.make(`You have been asked using "delegate" to complete the following task:
233
+ Prompt.make(`You have been asked using the "delegate" function to complete the following task. Avoid using the "delegate" function yourself unless strictly necessary:
234
234
 
235
235
  ${prompt}`),
236
236
  )