@stdiobus/workers-registry 1.5.4 → 1.5.5
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 +6 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -305,12 +305,16 @@ Create `api-keys.json` in your working directory:
|
|
|
305
305
|
### OAuth 2.1 with PKCE
|
|
306
306
|
|
|
307
307
|
```bash
|
|
308
|
-
npx @stdiobus/workers-registry acp-registry --login
|
|
308
|
+
npx @stdiobus/workers-registry acp-registry --login github
|
|
309
309
|
npx @stdiobus/workers-registry acp-registry --auth-status
|
|
310
310
|
npx @stdiobus/workers-registry acp-registry --logout
|
|
311
311
|
```
|
|
312
312
|
|
|
313
|
-
Supported providers:
|
|
313
|
+
Supported OAuth providers: GitHub, Google, Azure AD, AWS Cognito, OIDC.
|
|
314
|
+
|
|
315
|
+
> OpenAI and Anthropic use API keys, not OAuth. Configure them via `api-keys.json` or `--setup`.
|
|
316
|
+
|
|
317
|
+
Supported providers: GitHub, Google, Azure AD, AWS Cognito, OIDC.
|
|
314
318
|
|
|
315
319
|
OAuth takes precedence when available, with automatic fallback to API keys. For headless/CI environments, use API keys or environment variables.
|
|
316
320
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdiobus/workers-registry",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.5",
|
|
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",
|
|
@@ -55,7 +55,8 @@
|
|
|
55
55
|
"./package.json": "./package.json"
|
|
56
56
|
},
|
|
57
57
|
"bin": {
|
|
58
|
-
"stdiobus": "./launch/index.js"
|
|
58
|
+
"stdiobus": "./launch/index.js",
|
|
59
|
+
"workers-registry": "./launch/index.js"
|
|
59
60
|
},
|
|
60
61
|
"files": [
|
|
61
62
|
"out/",
|