@open1s/jsbos 2.2.1 → 2.2.4

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
@@ -1,4 +1,4 @@
1
- # @open1s/jsbos
1
+ # @open1s/jsbos — v2.2.4
2
2
 
3
3
  > BrainOS JavaScript/Node.js bindings — AI agent framework with ReAct engine
4
4
 
@@ -32,14 +32,47 @@ yarn add @open1s/jsbos
32
32
 
33
33
  ## Quick Start
34
34
 
35
+ ### Using BrainOS (recommended)
36
+
37
+ ```javascript
38
+ import { BrainOS, ToolDef } from '@open1s/jsbos';
39
+
40
+ async function main() {
41
+ const brain = new BrainOS();
42
+ await brain.start();
43
+
44
+ // Define a tool
45
+ const addTool = new ToolDef(
46
+ 'add',
47
+ 'Add two numbers',
48
+ (args) => args.a + args.b,
49
+ { type: 'object', properties: { a: { type: 'number' }, b: { type: 'number' } }, required: ['a', 'b'] }
50
+ );
51
+
52
+ // Create and configure an agent
53
+ const agent = brain
54
+ .agent('assistant')
55
+ .register(addTool)
56
+ .start();
57
+
58
+ // Run the agent
59
+ const response = await agent.ask('What is 15 + 23?');
60
+ console.log(response);
61
+
62
+ await brain.stop();
63
+ }
64
+
65
+ main().catch(console.error);
66
+ ```
67
+
68
+ ### Using Agent directly (low-level)
69
+
35
70
  ```javascript
36
71
  import { Agent, Bus } from '@open1s/jsbos';
37
72
 
38
73
  async function main() {
39
- // Create a message bus for inter-agent communication
40
74
  const bus = await Bus.create();
41
75
 
42
- // Create an agent with LLM configuration
43
76
  const agent = await Agent.create({
44
77
  name: 'assistant',
45
78
  model: 'gpt-4',
@@ -50,26 +83,14 @@ async function main() {
50
83
  timeoutSecs: 120,
51
84
  }, bus);
52
85
 
53
- // Register a custom tool
54
86
  await agent.addTool(
55
87
  'calculator',
56
88
  'Evaluate a mathematical expression',
57
- JSON.stringify({
58
- expression: { type: 'string', description: 'Math expression like 2 + 2' }
59
- }),
60
- JSON.stringify({
61
- type: 'object',
62
- properties: { expression: { type: 'string' } },
63
- required: ['expression']
64
- }),
65
- (err, args) => {
66
- // Tool implementation
67
- const result = eval(args.expression);
68
- return JSON.stringify({ result });
69
- }
89
+ JSON.stringify({ expression: { type: 'string', description: 'Math expression' } }),
90
+ JSON.stringify({ type: 'object', properties: { expression: { type: 'string' } }, required: ['expression'] }),
91
+ (err, args) => JSON.stringify({ result: eval(args.expression) })
70
92
  );
71
93
 
72
- // Run the agent with a task
73
94
  const response = await agent.runSimple('What is 15 * 23?');
74
95
  console.log(response);
75
96
  }
@@ -79,7 +100,103 @@ main().catch(console.error);
79
100
 
80
101
  ## API Reference
81
102
 
82
- ### Agent
103
+ ### BrainOS (High-level API)
104
+
105
+ The recommended way to use jsbos — manages bus lifecycle, config loading, and tool registry.
106
+
107
+ #### `new BrainOS()` — Create a BrainOS instance
108
+
109
+ ```javascript
110
+ const brain = new BrainOS();
111
+ await brain.start(); // Loads config, starts bus, registers global tools
112
+ ```
113
+
114
+ #### `brain.agent(name, options)` — Create an agent builder
115
+
116
+ ```javascript
117
+ const agent = brain
118
+ .agent('assistant', { model: 'gpt-4', systemPrompt: 'Be helpful.' })
119
+ .register(myTool) // Register a ToolDef
120
+ .hook(HookEvent.BeforeLlmCall, (err, ctx) => 'continue')
121
+ .plugin('my-plugin', { onLlmRequest: (req) => req })
122
+ .skillsFromDir('./skills')
123
+ .start(); // Returns an AgentWrapper
124
+ ```
125
+
126
+ #### `agent.ask(prompt)` — Ask a question
127
+
128
+ ```javascript
129
+ const response = await agent.ask('What is 2+2?');
130
+ ```
131
+
132
+ #### `agent.react(task)` — Run with ReAct reasoning
133
+
134
+ ```javascript
135
+ const response = await agent.react('Find files modified in the last hour');
136
+ ```
137
+
138
+ #### `agent.stream(task, onToken)` — Stream responses
139
+
140
+ ```javascript
141
+ await agent.stream('Write a story', (token) => {
142
+ if (token.type === 'Text') process.stdout.write(token.text);
143
+ if (token.type === 'Done') console.log('\n[Done]');
144
+ });
145
+ ```
146
+
147
+ #### `agent.streamCollect(task)` — Collect all streaming tokens
148
+
149
+ ```javascript
150
+ const tokens = await agent.streamCollect('List 3 colors');
151
+ const text = tokens.filter(t => t.type === 'Text').map(t => t.text).join('');
152
+ ```
153
+
154
+ #### `agent.runSimple(prompt)` — Simple task execution
155
+
156
+ ```javascript
157
+ const response = await agent.runSimple('What is 100 * 100?');
158
+ ```
159
+
160
+ #### `agent.stop()` — Stop the agent
161
+
162
+ ```javascript
163
+ agent.stop();
164
+ ```
165
+
166
+ #### `agent.metrics()` — Get performance metrics
167
+
168
+ ```javascript
169
+ const m = agent.metrics();
170
+ console.log(m.llmCallCount, m.totalInputTokens, m.totalOutputTokens);
171
+ ```
172
+
173
+ #### `agent.session` — Session management
174
+
175
+ ```javascript
176
+ const session = agent.session;
177
+ const json = session.export();
178
+ await session.saveFull('./session.json');
179
+ await session.restoreFull('./session.json');
180
+ session.compact(2, 500); // keep 2 messages, max 500 chars summary
181
+ session.clear();
182
+ ```
183
+
184
+ ### ToolDef
185
+
186
+ Define tools with a clean declarative API.
187
+
188
+ ```javascript
189
+ import { ToolDef } from '@open1s/jsbos';
190
+
191
+ const addTool = new ToolDef(
192
+ 'add', // name
193
+ 'Add two numbers', // description
194
+ (args) => args.a + args.b, // handler
195
+ { type: 'object', properties: { a: { type: 'number' }, b: { type: 'number' } }, required: ['a', 'b'] } // schema
196
+ );
197
+ ```
198
+
199
+ ### Agent (Low-level API)
83
200
 
84
201
  The core AI agent class with tool-calling and ReAct reasoning capabilities.
85
202
 
@@ -103,11 +220,6 @@ const agent = await Agent.create({
103
220
  // Circuit breaker
104
221
  circuitBreakerMaxFailures: 5,
105
222
  circuitBreakerCooldownSecs: 30,
106
- // Context compaction (for long conversations)
107
- contextCompactionThresholdTokens: 100000,
108
- contextCompactionTriggerRatio: 0.8,
109
- contextCompactionKeepRecentMessages: 10,
110
- contextCompactionSummaryMaxTokens: 2000,
111
223
  }, bus); // Optional: bus for RPC communication
112
224
  ```
113
225
 
@@ -284,10 +396,12 @@ agent.clearSessionContext();
284
396
  agent.saveSession('./session.json');
285
397
  agent.restoreSession('./session.json');
286
398
 
287
- // Compact message log for long conversations
399
+ // Compact-message log for long conversations
288
400
  agent.compactMessageLog();
289
401
  ```
290
402
 
403
+ ### AgentWrapper (from BrainOS)
404
+
291
405
  ### Bus (Message Bus)
292
406
 
293
407
  Distributed message bus for inter-agent and process communication.
@@ -463,17 +577,22 @@ See the [examples](./examples/) directory for complete examples:
463
577
 
464
578
  | Example | Description |
465
579
  |---------|-------------|
466
- | `agent_demo.js` | Basic agent with tools |
580
+ | `brainos_demo.js` | High-level BrainOS API |
581
+ | `agent_demo.js` | Agent with tools |
467
582
  | `agent_mcp_demo.js` | Agent with MCP servers |
583
+ | `agent_stream_demo.js` | Streaming responses |
584
+ | `agent_metrics_demo.js` | Performance metrics |
585
+ | `agent_skill_demo.js` | Agent skills from directory |
586
+ | `agent_resilience_demo.js` | Rate limiting + circuit breaker |
468
587
  | `bus_demo.js` | Pub/sub messaging |
469
588
  | `caller_demo.js` | RPC pattern |
470
589
  | `query_demo.js` | Request/response queries |
471
590
  | `mcp_demo.js` | Standalone MCP client |
472
591
  | `mcp_http_demo.js` | HTTP MCP connections |
473
- | `agent_stream_demo.js` | Streaming responses |
474
592
  | `demo-hooks.js` | Lifecycle hooks |
475
593
  | `demo-plugins.js` | Plugin system |
476
594
  | `config_demo.js` | Configuration loading |
595
+ | `elegant-api-examples.js` | Tools, plugins, hooks, streaming, session, skills |
477
596
 
478
597
  Run an example:
479
598
  ```bash
@@ -506,15 +625,18 @@ yarn format
506
625
  │ JavaScript/Node.js │
507
626
  ├─────────────────────────────────────────────────────────────┤
508
627
  │ @open1s/jsbos (NAPI-RS bindings) │
509
- ┌─────────┐ ┌──────┐ ┌───────┐ ┌───────┐ ┌─────────────┐
510
- │ │ Agent │ │ Bus │ │ Hooks │ │Plugins│ MCP Client
511
- └────┬────┘ └──┬───┘ └───┬───┘ └───┬───┘ └──────┬──────┘
512
- └───────┼────────┼─────────┼─────────┼────────────┼──────────┘
513
- │ │ │
514
- ▼ ▼ ▼ ▼ ▼
628
+ ┌──────────┐ ┌──────────┐ ┌──────┐ ┌───────┐ ┌──────────┐
629
+ │ │ BrainOS │ │ToolDef │ Bus │ │ Hooks │ │McpClient │ │
630
+ └────┬─────┘ └────┬─────┘ └──┬───┘ └───┬───┘ └────┬─────┘
631
+ │ │ │ │ │ │ │
632
+ ┌────┴────────────┴───────────┴─────────┴────────────┴────┐
633
+ │ │ Agent │ │
634
+ │ └────────────────────┬────────────────────────────────────┘ │
635
+ └───────────────────────┼─────────────────────────────────────┘
636
+
515
637
  ┌─────────────────────────────────────────────────────────────┐
516
638
  │ BrainOS (Rust Core) │
517
- │ agent/ │ bus/ │ hooks/ │ mcp/ │ plugin/ │ config/
639
+ │ agent/ │ bus/ │ config/ │ logging/ │ react/ │ qserde/
518
640
  └─────────────────────────────────────────────────────────────┘
519
641
  ```
520
642
 
package/index.d.ts CHANGED
@@ -170,11 +170,6 @@ export interface AgentConfig {
170
170
  rateLimitMaxRetries?: number
171
171
  rateLimitRetryBackoffSecs?: number
172
172
  rateLimitAutoWait?: boolean
173
- contextCompactionThresholdTokens?: number
174
- contextCompactionTriggerRatio?: number
175
- contextCompactionKeepRecentMessages?: number
176
- contextCompactionMaxSummaryChars?: number
177
- contextCompactionSummaryMaxTokens?: number
178
173
  }
179
174
 
180
175
  export declare const enum BudgetStatus {
@@ -373,13 +368,14 @@ export class AgentBuilder {
373
368
  skillsFromDir(dirPath: any): this;
374
369
  mcp(namespace: any, command: any, args: any): this;
375
370
  mcpHttp(namespace: any, url: any): this;
376
- start(): Promise<jsbos.Agent>;
371
+ start(): Promise<this>;
377
372
  ask(prompt: any): Promise<string>;
378
373
  react(task: any): Promise<string>;
379
374
  stream(task: any, onToken: any): Promise<string>;
380
375
  streamCollect(task: any): Promise<any[]>;
381
376
  stop(options?: {}): any;
382
377
  isRunning(): boolean;
378
+ get session(): SessionManager;
383
379
  }
384
380
  export function tool(descriptionOrOptions: any, maybeOptions?: {}): (target: any, propertyKey: any, descriptor: any) => any;
385
381
  export class ToolDef {
package/index.js CHANGED
@@ -638,7 +638,7 @@ class AgentBuilder {
638
638
  }
639
639
  }
640
640
 
641
- return this._inner;
641
+ return this;
642
642
  }
643
643
 
644
644
  async ask(prompt) {
@@ -646,6 +646,11 @@ class AgentBuilder {
646
646
  return this._inner.runSimple(prompt);
647
647
  }
648
648
 
649
+ async runSimple(prompt) {
650
+ if (!this._inner) await this.start();
651
+ return this._inner.runSimple(prompt);
652
+ }
653
+
649
654
  async react(task) {
650
655
  if (!this._inner) await this.start();
651
656
  return this._inner.react(task);
@@ -656,7 +661,7 @@ class AgentBuilder {
656
661
  return this._inner.stream(task, (err, token) => {
657
662
  if (err) {
658
663
  onToken({ type: 'Error', error: err.message || String(err) });
659
- } else {
664
+ } else if (token) {
660
665
  onToken(token);
661
666
  }
662
667
  });
@@ -664,15 +669,20 @@ class AgentBuilder {
664
669
 
665
670
  async streamCollect(task) {
666
671
  const tokens = [];
667
- await new Promise((resolve, reject) => {
668
- this.stream(task, token => {
669
- tokens.push(token);
670
- if (token.type === 'Done' || token.type === 'Error' || token.type === 'Stopped') {
671
- if (token.type === 'Error') reject(new Error(token.error));
672
- else resolve();
673
- }
672
+ try {
673
+ await new Promise((resolve, reject) => {
674
+ this.stream(task, token => {
675
+ if (!token) return;
676
+ tokens.push(token);
677
+ if (token.type === 'Done' || token.type === 'Error' || token.type === 'Stopped') {
678
+ if (token.type === 'Error') reject(new Error(token.error));
679
+ else resolve();
680
+ }
681
+ });
674
682
  });
675
- });
683
+ } catch {
684
+ // Return whatever was collected before the error
685
+ }
676
686
  return tokens;
677
687
  }
678
688
 
@@ -686,6 +696,11 @@ class AgentBuilder {
686
696
  if (!this._inner) return false;
687
697
  return this._inner.isRunning();
688
698
  }
699
+
700
+ get session() {
701
+ if (!this._inner) throw new Error('Agent not started');
702
+ return new SessionManager(this._inner);
703
+ }
689
704
  }
690
705
 
691
706
  class AgentWrapperClass {
@@ -723,15 +738,20 @@ class AgentWrapperClass {
723
738
 
724
739
  async streamCollect(task) {
725
740
  const tokens = [];
726
- await new Promise((resolve, reject) => {
727
- this.stream(task, token => {
728
- tokens.push(token);
729
- if (token.type === 'Done' || token.type === 'Error' || token.type === 'Stopped') {
730
- if (token.type === 'Error') reject(new Error(token.error));
731
- else resolve();
732
- }
741
+ try {
742
+ await new Promise((resolve, reject) => {
743
+ this.stream(task, token => {
744
+ if (!token) return;
745
+ tokens.push(token);
746
+ if (token.type === 'Done' || token.type === 'Error' || token.type === 'Stopped') {
747
+ if (token.type === 'Error') reject(new Error(token.error));
748
+ else resolve();
749
+ }
750
+ });
733
751
  });
734
- });
752
+ } catch {
753
+ // Return whatever was collected before the error
754
+ }
735
755
  return tokens;
736
756
  }
737
757
 
package/jsbos.d.ts CHANGED
@@ -172,11 +172,6 @@ export interface AgentConfig {
172
172
  rateLimitMaxRetries?: number
173
173
  rateLimitRetryBackoffSecs?: number
174
174
  rateLimitAutoWait?: boolean
175
- contextCompactionThresholdTokens?: number
176
- contextCompactionTriggerRatio?: number
177
- contextCompactionKeepRecentMessages?: number
178
- contextCompactionMaxSummaryChars?: number
179
- contextCompactionSummaryMaxTokens?: number
180
175
  }
181
176
 
182
177
  export declare const enum BudgetStatus {
Binary file
package/jsbos.js CHANGED
@@ -81,8 +81,8 @@ function requireNative() {
81
81
  try {
82
82
  const binding = require('@open1s/jsbos-android-arm64')
83
83
  const bindingPackageVersion = require('@open1s/jsbos-android-arm64/package.json').version
84
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
85
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
85
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
86
86
  }
87
87
  return binding
88
88
  } catch (e) {
@@ -97,8 +97,8 @@ function requireNative() {
97
97
  try {
98
98
  const binding = require('@open1s/jsbos-android-arm-eabi')
99
99
  const bindingPackageVersion = require('@open1s/jsbos-android-arm-eabi/package.json').version
100
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
101
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
101
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
102
102
  }
103
103
  return binding
104
104
  } catch (e) {
@@ -118,8 +118,8 @@ function requireNative() {
118
118
  try {
119
119
  const binding = require('@open1s/jsbos-win32-x64-gnu')
120
120
  const bindingPackageVersion = require('@open1s/jsbos-win32-x64-gnu/package.json').version
121
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
122
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
122
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
123
123
  }
124
124
  return binding
125
125
  } catch (e) {
@@ -134,8 +134,8 @@ function requireNative() {
134
134
  try {
135
135
  const binding = require('@open1s/jsbos-win32-x64-msvc')
136
136
  const bindingPackageVersion = require('@open1s/jsbos-win32-x64-msvc/package.json').version
137
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
138
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
138
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
139
139
  }
140
140
  return binding
141
141
  } catch (e) {
@@ -151,8 +151,8 @@ function requireNative() {
151
151
  try {
152
152
  const binding = require('@open1s/jsbos-win32-ia32-msvc')
153
153
  const bindingPackageVersion = require('@open1s/jsbos-win32-ia32-msvc/package.json').version
154
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
155
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
155
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
156
156
  }
157
157
  return binding
158
158
  } catch (e) {
@@ -167,8 +167,8 @@ function requireNative() {
167
167
  try {
168
168
  const binding = require('@open1s/jsbos-win32-arm64-msvc')
169
169
  const bindingPackageVersion = require('@open1s/jsbos-win32-arm64-msvc/package.json').version
170
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
172
172
  }
173
173
  return binding
174
174
  } catch (e) {
@@ -186,8 +186,8 @@ function requireNative() {
186
186
  try {
187
187
  const binding = require('@open1s/jsbos-darwin-universal')
188
188
  const bindingPackageVersion = require('@open1s/jsbos-darwin-universal/package.json').version
189
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
190
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
190
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
191
191
  }
192
192
  return binding
193
193
  } catch (e) {
@@ -202,8 +202,8 @@ function requireNative() {
202
202
  try {
203
203
  const binding = require('@open1s/jsbos-darwin-x64')
204
204
  const bindingPackageVersion = require('@open1s/jsbos-darwin-x64/package.json').version
205
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
206
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
206
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
207
207
  }
208
208
  return binding
209
209
  } catch (e) {
@@ -218,8 +218,8 @@ function requireNative() {
218
218
  try {
219
219
  const binding = require('@open1s/jsbos-darwin-arm64')
220
220
  const bindingPackageVersion = require('@open1s/jsbos-darwin-arm64/package.json').version
221
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
222
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
222
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
223
223
  }
224
224
  return binding
225
225
  } catch (e) {
@@ -238,8 +238,8 @@ function requireNative() {
238
238
  try {
239
239
  const binding = require('@open1s/jsbos-freebsd-x64')
240
240
  const bindingPackageVersion = require('@open1s/jsbos-freebsd-x64/package.json').version
241
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
242
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
242
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
243
243
  }
244
244
  return binding
245
245
  } catch (e) {
@@ -254,8 +254,8 @@ function requireNative() {
254
254
  try {
255
255
  const binding = require('@open1s/jsbos-freebsd-arm64')
256
256
  const bindingPackageVersion = require('@open1s/jsbos-freebsd-arm64/package.json').version
257
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
258
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
258
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
259
259
  }
260
260
  return binding
261
261
  } catch (e) {
@@ -275,8 +275,8 @@ function requireNative() {
275
275
  try {
276
276
  const binding = require('@open1s/jsbos-linux-x64-musl')
277
277
  const bindingPackageVersion = require('@open1s/jsbos-linux-x64-musl/package.json').version
278
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
279
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
279
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
280
280
  }
281
281
  return binding
282
282
  } catch (e) {
@@ -291,8 +291,8 @@ function requireNative() {
291
291
  try {
292
292
  const binding = require('@open1s/jsbos-linux-x64-gnu')
293
293
  const bindingPackageVersion = require('@open1s/jsbos-linux-x64-gnu/package.json').version
294
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
295
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
295
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
296
296
  }
297
297
  return binding
298
298
  } catch (e) {
@@ -309,8 +309,8 @@ function requireNative() {
309
309
  try {
310
310
  const binding = require('@open1s/jsbos-linux-arm64-musl')
311
311
  const bindingPackageVersion = require('@open1s/jsbos-linux-arm64-musl/package.json').version
312
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
313
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
313
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
314
314
  }
315
315
  return binding
316
316
  } catch (e) {
@@ -325,8 +325,8 @@ function requireNative() {
325
325
  try {
326
326
  const binding = require('@open1s/jsbos-linux-arm64-gnu')
327
327
  const bindingPackageVersion = require('@open1s/jsbos-linux-arm64-gnu/package.json').version
328
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
329
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
329
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
330
330
  }
331
331
  return binding
332
332
  } catch (e) {
@@ -343,8 +343,8 @@ function requireNative() {
343
343
  try {
344
344
  const binding = require('@open1s/jsbos-linux-arm-musleabihf')
345
345
  const bindingPackageVersion = require('@open1s/jsbos-linux-arm-musleabihf/package.json').version
346
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
347
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
347
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
348
348
  }
349
349
  return binding
350
350
  } catch (e) {
@@ -359,8 +359,8 @@ function requireNative() {
359
359
  try {
360
360
  const binding = require('@open1s/jsbos-linux-arm-gnueabihf')
361
361
  const bindingPackageVersion = require('@open1s/jsbos-linux-arm-gnueabihf/package.json').version
362
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
363
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
363
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
364
364
  }
365
365
  return binding
366
366
  } catch (e) {
@@ -377,8 +377,8 @@ function requireNative() {
377
377
  try {
378
378
  const binding = require('@open1s/jsbos-linux-loong64-musl')
379
379
  const bindingPackageVersion = require('@open1s/jsbos-linux-loong64-musl/package.json').version
380
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
381
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
381
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
382
382
  }
383
383
  return binding
384
384
  } catch (e) {
@@ -393,8 +393,8 @@ function requireNative() {
393
393
  try {
394
394
  const binding = require('@open1s/jsbos-linux-loong64-gnu')
395
395
  const bindingPackageVersion = require('@open1s/jsbos-linux-loong64-gnu/package.json').version
396
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
397
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
397
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
398
398
  }
399
399
  return binding
400
400
  } catch (e) {
@@ -411,8 +411,8 @@ function requireNative() {
411
411
  try {
412
412
  const binding = require('@open1s/jsbos-linux-riscv64-musl')
413
413
  const bindingPackageVersion = require('@open1s/jsbos-linux-riscv64-musl/package.json').version
414
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
415
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
415
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
416
416
  }
417
417
  return binding
418
418
  } catch (e) {
@@ -427,8 +427,8 @@ function requireNative() {
427
427
  try {
428
428
  const binding = require('@open1s/jsbos-linux-riscv64-gnu')
429
429
  const bindingPackageVersion = require('@open1s/jsbos-linux-riscv64-gnu/package.json').version
430
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
431
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
431
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
432
432
  }
433
433
  return binding
434
434
  } catch (e) {
@@ -444,8 +444,8 @@ function requireNative() {
444
444
  try {
445
445
  const binding = require('@open1s/jsbos-linux-ppc64-gnu')
446
446
  const bindingPackageVersion = require('@open1s/jsbos-linux-ppc64-gnu/package.json').version
447
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
448
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
448
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
449
449
  }
450
450
  return binding
451
451
  } catch (e) {
@@ -460,8 +460,8 @@ function requireNative() {
460
460
  try {
461
461
  const binding = require('@open1s/jsbos-linux-s390x-gnu')
462
462
  const bindingPackageVersion = require('@open1s/jsbos-linux-s390x-gnu/package.json').version
463
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
464
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
464
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
465
465
  }
466
466
  return binding
467
467
  } catch (e) {
@@ -480,8 +480,8 @@ function requireNative() {
480
480
  try {
481
481
  const binding = require('@open1s/jsbos-openharmony-arm64')
482
482
  const bindingPackageVersion = require('@open1s/jsbos-openharmony-arm64/package.json').version
483
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
484
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
484
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
485
485
  }
486
486
  return binding
487
487
  } catch (e) {
@@ -496,8 +496,8 @@ function requireNative() {
496
496
  try {
497
497
  const binding = require('@open1s/jsbos-openharmony-x64')
498
498
  const bindingPackageVersion = require('@open1s/jsbos-openharmony-x64/package.json').version
499
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
500
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
500
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
501
501
  }
502
502
  return binding
503
503
  } catch (e) {
@@ -512,8 +512,8 @@ function requireNative() {
512
512
  try {
513
513
  const binding = require('@open1s/jsbos-openharmony-arm')
514
514
  const bindingPackageVersion = require('@open1s/jsbos-openharmony-arm/package.json').version
515
- if (bindingPackageVersion !== '2.2.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
516
- throw new Error(`Native binding package version mismatch, expected 2.2.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '2.2.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
516
+ throw new Error(`Native binding package version mismatch, expected 2.2.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open1s/jsbos",
3
- "version": "2.2.1",
3
+ "version": "2.2.4",
4
4
  "type": "module",
5
5
  "description": "BrainOS — multi-language AI agent framework. Agents, tools, event bus, MCP, skills, memory — for Node.js.",
6
6
  "main": "./index.js",
@@ -127,10 +127,10 @@
127
127
  },
128
128
  "packageManager": "yarn@4.13.0",
129
129
  "optionalDependencies": {
130
- "@open1s/jsbos-darwin-arm64": "2.2.1",
131
- "@open1s/jsbos-linux-arm64-gnu": "2.2.1",
132
- "@open1s/jsbos-linux-x64-gnu": "2.2.1",
133
- "@open1s/jsbos-win32-arm64-msvc": "2.2.1",
134
- "@open1s/jsbos-win32-x64-msvc": "2.2.1"
130
+ "@open1s/jsbos-linux-x64-gnu": "2.2.4",
131
+ "@open1s/jsbos-win32-x64-msvc": "2.2.4",
132
+ "@open1s/jsbos-darwin-arm64": "2.2.4",
133
+ "@open1s/jsbos-linux-arm64-gnu": "2.2.4",
134
+ "@open1s/jsbos-win32-arm64-msvc": "2.2.4"
135
135
  }
136
136
  }