@stdiobus/workers-registry 1.4.5 → 1.4.6

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/README.md +14 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -137,7 +137,7 @@ See [stdio Bus kernel repository](https://github.com/stdiobus/stdiobus) for buil
137
137
  "pools": [
138
138
  {
139
139
  "id": "acp-registry",
140
- "command": "node",
140
+ "command": "npx",
141
141
  "args": [
142
142
  "@stdiobus/workers-registry",
143
143
  "acp-registry"
@@ -166,7 +166,7 @@ route to the ACP Registry. Use `acp-registry` when you need real registry agents
166
166
  "pools": [
167
167
  {
168
168
  "id": "acp-worker",
169
- "command": "node",
169
+ "command": "npx",
170
170
  "args": [
171
171
  "@stdiobus/workers-registry",
172
172
  "acp-worker"
@@ -234,7 +234,7 @@ node ./node_modules/@stdiobus/workers-registry/launch echo-worker
234
234
  {
235
235
  "pools": [{
236
236
  "id": "acp-worker",
237
- "command": "node",
237
+ "command": "npx",
238
238
  "args": [
239
239
  "@stdiobus/workers-registry",
240
240
  "acp-worker"
@@ -250,7 +250,7 @@ node ./node_modules/@stdiobus/workers-registry/launch echo-worker
250
250
  "pools": [
251
251
  {
252
252
  "id": "acp-registry",
253
- "command": "node",
253
+ "command": "npx",
254
254
  "args": [
255
255
  "@stdiobus/workers-registry",
256
256
  "acp-registry"
@@ -270,7 +270,7 @@ arg to `launch acp-registry`.
270
270
  "pools": [
271
271
  {
272
272
  "id": "acp-worker",
273
- "command": "node",
273
+ "command": "npx",
274
274
  "args": [
275
275
  "@stdiobus/workers-registry",
276
276
  "acp-worker"
@@ -279,7 +279,7 @@ arg to `launch acp-registry`.
279
279
  },
280
280
  {
281
281
  "id": "echo-worker",
282
- "command": "node",
282
+ "command": "npx",
283
283
  "args": [
284
284
  "@stdiobus/workers-registry",
285
285
  "echo-worker"
@@ -298,9 +298,9 @@ Configure MCP-to-ACP Proxy in Kiro's MCP settings:
298
298
  {
299
299
  "mcpServers": {
300
300
  "stdio-bus-acp": {
301
- "command": "node",
301
+ "command": "npx",
302
302
  "args": [
303
- "./node_modules/@stdiobus/workers-registry/launch",
303
+ "@stdiobus/workers-registry",
304
304
  "mcp-to-acp-proxy"
305
305
  ],
306
306
  "env": {
@@ -388,7 +388,7 @@ Routes messages to any agent in the [ACP Registry](https://cdn.agentclientprotoc
388
388
  "pools": [
389
389
  {
390
390
  "id": "acp-registry",
391
- "command": "node",
391
+ "command": "npx",
392
392
  "args": [
393
393
  "@stdiobus/workers-registry",
394
394
  "acp-registry"
@@ -440,7 +440,7 @@ IDE (MCP Client) → MCP-to-ACP Proxy → stdio Bus → ACP Registry Worker (acp
440
440
  {
441
441
  "mcpServers": {
442
442
  "stdio-bus-acp": {
443
- "command": "node",
443
+ "command": "npx",
444
444
  "args": [
445
445
  "@stdiobus/workers-registry",
446
446
  "mcp-to-acp-proxy"
@@ -576,7 +576,7 @@ stdio Bus kernel is configured via JSON files. This repository includes example
576
576
  {
577
577
  "pools": [{
578
578
  "id": "echo-worker",
579
- "command": "node",
579
+ "command": "npx",
580
580
  "args": [
581
581
  "@stdiobus/workers-registry",
582
582
  "echo-worker"
@@ -592,7 +592,7 @@ stdio Bus kernel is configured via JSON files. This repository includes example
592
592
  "pools": [
593
593
  {
594
594
  "id": "acp-worker",
595
- "command": "node",
595
+ "command": "npx",
596
596
  "args": [
597
597
  "@stdiobus/workers-registry",
598
598
  "acp-worker"
@@ -614,7 +614,7 @@ stdio Bus kernel is configured via JSON files. This repository includes example
614
614
  "pools": [
615
615
  {
616
616
  "id": "acp-worker",
617
- "command": "node",
617
+ "command": "npx",
618
618
  "args": [
619
619
  "@stdiobus/workers-registry",
620
620
  "acp-worker"
@@ -623,7 +623,7 @@ stdio Bus kernel is configured via JSON files. This repository includes example
623
623
  },
624
624
  {
625
625
  "id": "echo-worker",
626
- "command": "node",
626
+ "command": "npx",
627
627
  "args": [
628
628
  "@stdiobus/workers-registry",
629
629
  "echo-worker"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdiobus/workers-registry",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "Worker implementations for stdio Bus kernel - ACP, MCP, and protocol bridges",
5
5
  "type": "module",
6
6
  "main": "./out/dist/workers-registry/acp-registry/index.js",