clanka 0.0.16 → 0.0.17

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
@@ -331,7 +331,7 @@ const generateSystemMulti = (toolsDts) => {
331
331
 
332
332
  - Use \`console.log\` to print any output you need.
333
333
  - Top level await is supported.
334
- - **Prefer using the functions provided** over the bash tool
334
+ - AVOID passing scripts into the "bash" function, and instead write javascript.
335
335
 
336
336
  **When you have fully completed your task**, call the "taskComplete" function with the final output.
337
337
  Make sure every detail of the task is done before calling "taskComplete".
@@ -350,7 +350,7 @@ const generateSystemSingle = (toolsDts) => {
350
350
 
351
351
  - Use \`console.log\` to print any output you need.
352
352
  - Top level await is supported.
353
- - **Prefer using the functions provided** over the bash tool
353
+ - AVOID passing scripts into the "bash" function, and instead write javascript.
354
354
 
355
355
  You have the following functions available to you:
356
356
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "clanka",
3
3
  "type": "module",
4
- "version": "0.0.16",
4
+ "version": "0.0.17",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/src/Agent.ts CHANGED
@@ -543,7 +543,7 @@ const generateSystemMulti = (toolsDts: string) => {
543
543
 
544
544
  - Use \`console.log\` to print any output you need.
545
545
  - Top level await is supported.
546
- - **Prefer using the functions provided** over the bash tool
546
+ - AVOID passing scripts into the "bash" function, and instead write javascript.
547
547
 
548
548
  **When you have fully completed your task**, call the "taskComplete" function with the final output.
549
549
  Make sure every detail of the task is done before calling "taskComplete".
@@ -563,7 +563,7 @@ const generateSystemSingle = (toolsDts: string) => {
563
563
 
564
564
  - Use \`console.log\` to print any output you need.
565
565
  - Top level await is supported.
566
- - **Prefer using the functions provided** over the bash tool
566
+ - AVOID passing scripts into the "bash" function, and instead write javascript.
567
567
 
568
568
  You have the following functions available to you:
569
569