From 52c026150bf49ccbfa7e935a5b23e5e9d343af1f Mon Sep 17 00:00:00 2001 From: Raman Marozau Date: Tue, 10 Mar 2026 19:13:53 +0100 Subject: [PATCH 1/4] feat(stdio-bus): add agent configuration and icon - Add agent.json with stdio Bus worker registry configuration - Include icon.svg for visual representation - Configure NPX distribution with OpenAI integration - Set up agent metadata including version 1.4.12 and Apache-2.0 license --- stdio-bus/agent.json | 24 ++++++++++++++++++++++++ stdio-bus/icon.svg | 31 +++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 stdio-bus/agent.json create mode 100644 stdio-bus/icon.svg diff --git a/stdio-bus/agent.json b/stdio-bus/agent.json new file mode 100644 index 00000000..a781c2a4 --- /dev/null +++ b/stdio-bus/agent.json @@ -0,0 +1,24 @@ +{ + "id": "stdio-bus", + "name": "stdio Bus", + "version": "1.4.12", + "description": "Worker implementations for stdio Bus kernel - ACP, MCP, and protocol bridges", + "repository": "https://github.com/stdiobus/workers-registry", + "authors": [ + "Raman Marozau " + ], + "icon": "./icon.svg", + "license": "Apache-2.0", + "distribution": { + "npx": { + "package": "@stdiobus/workers-registry", + "args": [ + "openai-agent" + ], + "env": { + "OPENAI_BASE_URL": "", + "OPENAI_MODEL": "gpt-5.1" + } + } + } +} \ No newline at end of file diff --git a/stdio-bus/icon.svg b/stdio-bus/icon.svg new file mode 100644 index 00000000..6cad51d3 --- /dev/null +++ b/stdio-bus/icon.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file From 1b96ed8a6ff8033c00591834e9daed777cc5fbc2 Mon Sep 17 00:00:00 2001 From: Raman Marozau Date: Sun, 15 Mar 2026 12:24:41 +0100 Subject: [PATCH 2/4] style(stdio-bus): simplify and optimize icon SVG - Replace complex multi-layer SVG with streamlined single-layer design - Remove unused style definitions and class selectors - Reduce file size by eliminating redundant stroke and fill properties - Update viewBox to 16x16 for better scalability - Use currentColor for dynamic color theming support - Consolidate path elements with optimized coordinates --- stdio-bus/icon.svg | 48 +++++++++++++++++----------------------------- 1 file changed, 18 insertions(+), 30 deletions(-) diff --git a/stdio-bus/icon.svg b/stdio-bus/icon.svg index 6cad51d3..608154a1 100644 --- a/stdio-bus/icon.svg +++ b/stdio-bus/icon.svg @@ -1,31 +1,19 @@ - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + From 995bb3cffe3cb2d4ef2b81846b6e52324021ed0f Mon Sep 17 00:00:00 2001 From: Raman Marozau Date: Sun, 29 Mar 2026 23:52:35 +0200 Subject: [PATCH 3/4] feat(stdio-bus): upgrade to v1.5.1 with improved protocol support - Bump version from 1.4.12 to 1.5.1 - Update description to reflect high-performance message routing capabilities with OAuth 2.1 support - Remove icon reference from agent configuration - Simplify distribution configuration by removing environment variables - Update npx entry point from "openai-agent" to "acp-registry" - Streamline agent metadata for better protocol compatibility --- stdio-bus/agent.json | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/stdio-bus/agent.json b/stdio-bus/agent.json index a781c2a4..b32245ab 100644 --- a/stdio-bus/agent.json +++ b/stdio-bus/agent.json @@ -1,24 +1,19 @@ { "id": "stdio-bus", "name": "stdio Bus", - "version": "1.4.12", - "description": "Worker implementations for stdio Bus kernel - ACP, MCP, and protocol bridges", + "version": "1.5.1", + "description": "High-performance message routing daemon for agent protocols (ACP, MCP) via NDJSON over stdin/stdout with OAuth 2.1 authentication support", "repository": "https://github.com/stdiobus/workers-registry", "authors": [ "Raman Marozau " ], - "icon": "./icon.svg", "license": "Apache-2.0", "distribution": { "npx": { "package": "@stdiobus/workers-registry", "args": [ - "openai-agent" - ], - "env": { - "OPENAI_BASE_URL": "", - "OPENAI_MODEL": "gpt-5.1" - } + "acp-registry" + ] } } } \ No newline at end of file From 4051d540552a6cba254be2306c1fef6ea5b4f761 Mon Sep 17 00:00:00 2001 From: Raman Marozau Date: Mon, 30 Mar 2026 00:18:09 +0200 Subject: [PATCH 4/4] feat(stdio-bus): upgrade to v1.5.2 with enhanced protocol routing - Bump stdio-bus version from 1.5.1 to 1.5.2 - Improve message routing efficiency for ACP and MCP protocols - Fix newline formatting in agent.json for consistency --- stdio-bus/agent.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdio-bus/agent.json b/stdio-bus/agent.json index b32245ab..e99f1d45 100644 --- a/stdio-bus/agent.json +++ b/stdio-bus/agent.json @@ -1,7 +1,7 @@ { "id": "stdio-bus", "name": "stdio Bus", - "version": "1.5.1", + "version": "1.5.2", "description": "High-performance message routing daemon for agent protocols (ACP, MCP) via NDJSON over stdin/stdout with OAuth 2.1 authentication support", "repository": "https://github.com/stdiobus/workers-registry", "authors": [ @@ -16,4 +16,4 @@ ] } } -} \ No newline at end of file +}