From 3f29acbeaca044dd87612959e55576dafed15307 Mon Sep 17 00:00:00 2001 From: Alexander Ertli Date: Sat, 6 Jun 2026 15:05:22 +0200 Subject: [PATCH 1/2] Add Contenox agent --- contenox/agent.json | 30 ++++++++++++++++++++++++++++++ contenox/icon.svg | 5 +++++ 2 files changed, 35 insertions(+) create mode 100644 contenox/agent.json create mode 100644 contenox/icon.svg diff --git a/contenox/agent.json b/contenox/agent.json new file mode 100644 index 00000000..58dd97ff --- /dev/null +++ b/contenox/agent.json @@ -0,0 +1,30 @@ +{ + "id": "contenox", + "name": "Contenox", + "version": "0.28.1", + "description": "Local runtime for packaged, auditable AI workflows.", + "repository": "https://github.com/contenox/runtime", + "website": "https://contenox.com", + "authors": ["Contenox"], + "license": "Apache-2.0", + "distribution": { + "binary": { + "darwin-aarch64": { + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.1/contenox-darwin-arm64.tar.gz", + "cmd": "./contenox", + "args": ["acp"] + }, + "linux-aarch64": { + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.1/contenox-linux-arm64.tar.gz", + "cmd": "./contenox", + "args": ["acp"] + }, + "linux-x86_64": { + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.1/contenox-linux-amd64.tar.gz", + "cmd": "./contenox", + "args": ["acp"] + } + } + } +} + diff --git a/contenox/icon.svg b/contenox/icon.svg new file mode 100644 index 00000000..94a6d02f --- /dev/null +++ b/contenox/icon.svg @@ -0,0 +1,5 @@ + + + + + From 7f7dc1de37f9a87d7d7d5aaaab9f9946094a8f02 Mon Sep 17 00:00:00 2001 From: Alexander Ertli Date: Mon, 8 Jun 2026 12:55:04 +0200 Subject: [PATCH 2/2] Update Contenox agent to v0.28.5 --- contenox/agent.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/contenox/agent.json b/contenox/agent.json index 58dd97ff..58e8ef81 100644 --- a/contenox/agent.json +++ b/contenox/agent.json @@ -1,7 +1,7 @@ { "id": "contenox", "name": "Contenox", - "version": "0.28.1", + "version": "0.28.5", "description": "Local runtime for packaged, auditable AI workflows.", "repository": "https://github.com/contenox/runtime", "website": "https://contenox.com", @@ -10,21 +10,25 @@ "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/contenox/runtime/releases/download/v0.28.1/contenox-darwin-arm64.tar.gz", + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.5/contenox-darwin-arm64.tar.gz", "cmd": "./contenox", "args": ["acp"] }, "linux-aarch64": { - "archive": "https://github.com/contenox/runtime/releases/download/v0.28.1/contenox-linux-arm64.tar.gz", + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.5/contenox-linux-arm64.tar.gz", "cmd": "./contenox", "args": ["acp"] }, "linux-x86_64": { - "archive": "https://github.com/contenox/runtime/releases/download/v0.28.1/contenox-linux-amd64.tar.gz", + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.5/contenox-linux-amd64.tar.gz", "cmd": "./contenox", "args": ["acp"] + }, + "windows-x86_64": { + "archive": "https://github.com/contenox/runtime/releases/download/v0.28.5/contenox-windows-amd64.zip", + "cmd": "./contenox.exe", + "args": ["acp"] } } } } -