@skein-js/core 0.8.0 → 0.9.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -370,7 +370,11 @@ interface QueuedRun {
370
370
  */
371
371
  type RunProcessor = (run: QueuedRun) => Promise<void>;
372
372
  interface RunConsumerOptions {
373
- /** Max runs a single consumer executes at once. Default 1 (per-thread serialization). */
373
+ /**
374
+ * Max runs a single consumer executes at once. Driver default 1 — the run worker always passes an
375
+ * explicit value (see `DEFAULT_RUN_CONCURRENCY` in `@skein-js/agent-protocol`). Per-thread
376
+ * serialization is the engine's guarantee, not the driver's.
377
+ */
374
378
  concurrency?: number;
375
379
  }
376
380
  /** A live consumer draining the queue; close it to stop pulling. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skein-js/core",
3
- "version": "0.8.0",
3
+ "version": "0.9.1",
4
4
  "description": "Framework-agnostic Agent Protocol engine for LangGraph.js — the heart of skein-js.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Maina Wycliffe <wmmaina7@gmail.com>",