@getenki/ai-darwin-arm64 0.2.8 → 0.3.3

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 CHANGED
@@ -287,6 +287,13 @@ The repository examples in [`example/basic-js/index.js`](/I:/projects/enki/core-
287
287
  - a `get_today` tool
288
288
  - an in-memory `Map` for session memory storage
289
289
 
290
+ There are also richer examples in [`example/basic-js/multi-agent-tools-memory.js`](/I:/projects/enki/core-next/example/basic-js/multi-agent-tools-memory.js) and [`example/basic-ts/multi-agent-tools-memory.ts`](/I:/projects/enki/core-next/example/basic-ts/multi-agent-tools-memory.ts). Those examples show:
291
+
292
+ - a researcher agent with a custom `lookup_example_topics` tool
293
+ - a coordinator agent consuming a researcher handoff via its own tool
294
+ - shared in-process memory across both agents
295
+ - progress logging so long-running model calls do not look stalled
296
+
290
297
  Minimal JavaScript version:
291
298
 
292
299
  ```js
@@ -410,6 +417,7 @@ JavaScript example:
410
417
  cd example/basic-js
411
418
  npm install
412
419
  npm start
420
+ npm run start:multi-agent-tools-memory
413
421
  ```
414
422
 
415
423
  TypeScript example:
@@ -418,6 +426,7 @@ TypeScript example:
418
426
  cd example/basic-ts
419
427
  npm install
420
428
  npm start
429
+ npm run start:multi-agent-tools-memory
421
430
  ```
422
431
 
423
432
  The checked-in examples currently hardcode `ollama::qwen3.5:latest` as the model, so make sure that model is available in your local provider before running them.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getenki/ai-darwin-arm64",
3
- "version": "0.2.8",
3
+ "version": "0.3.3",
4
4
  "cpu": [
5
5
  "arm64"
6
6
  ],