From f307de855b9e1238fa6cd637322d527c134033cd Mon Sep 17 00:00:00 2001 From: tensorswitch Date: Wed, 17 Jun 2026 16:29:28 +0200 Subject: [PATCH 1/2] Add Waibee Code agent --- waibee/agent.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ waibee/icon.svg | 7 +++++++ 2 files changed, 51 insertions(+) create mode 100644 waibee/agent.json create mode 100644 waibee/icon.svg diff --git a/waibee/agent.json b/waibee/agent.json new file mode 100644 index 00000000..001763ac --- /dev/null +++ b/waibee/agent.json @@ -0,0 +1,44 @@ +{ + "id": "waibee", + "name": "Waibee Code", + "version": "0.1.8", + "description": "Fast, terminal-first AI coding agent. Multi-session, shell-aware permissions, MCP, skills, hooks, and plugins.", + "repository": "https://github.com/waibee-main/waibee-code", + "website": "https://github.com/waibee-main/waibee-code", + "license": "proprietary", + "authors": ["Waibee"], + "distribution": { + "binary": { + "darwin-aarch64": { + "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-aarch64-apple-darwin.tar.gz", + "cmd": "./waibee", + "args": ["acp"] + }, + "darwin-x86_64": { + "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-x86_64-apple-darwin.tar.gz", + "cmd": "./waibee", + "args": ["acp"] + }, + "linux-aarch64": { + "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-aarch64-unknown-linux-gnu.tar.gz", + "cmd": "./waibee", + "args": ["acp"] + }, + "linux-x86_64": { + "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-x86_64-unknown-linux-gnu.tar.gz", + "cmd": "./waibee", + "args": ["acp"] + }, + "windows-aarch64": { + "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-aarch64-pc-windows-msvc.zip", + "cmd": "./waibee.exe", + "args": ["acp"] + }, + "windows-x86_64": { + "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-x86_64-pc-windows-msvc.zip", + "cmd": "./waibee.exe", + "args": ["acp"] + } + } + } +} diff --git a/waibee/icon.svg b/waibee/icon.svg new file mode 100644 index 00000000..7a2ef73f --- /dev/null +++ b/waibee/icon.svg @@ -0,0 +1,7 @@ + + + + + + + From 7d7c78af6509d85f833970961c315fb447b41352 Mon Sep 17 00:00:00 2001 From: tensorswitch Date: Wed, 17 Jun 2026 16:45:37 +0200 Subject: [PATCH 2/2] Reword Waibee Code description --- waibee/agent.json | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/waibee/agent.json b/waibee/agent.json index 001763ac..ece4642e 100644 --- a/waibee/agent.json +++ b/waibee/agent.json @@ -2,42 +2,56 @@ "id": "waibee", "name": "Waibee Code", "version": "0.1.8", - "description": "Fast, terminal-first AI coding agent. Multi-session, shell-aware permissions, MCP, skills, hooks, and plugins.", + "description": "The agent that works where you do - terminal or IDE. Write code, run commands, automate chores, dig through a repo. Parallel sessions, asks before touching your shell, and plugs into MCP, skills, hooks, and plugins.", "repository": "https://github.com/waibee-main/waibee-code", "website": "https://github.com/waibee-main/waibee-code", "license": "proprietary", - "authors": ["Waibee"], + "authors": [ + "Waibee" + ], "distribution": { "binary": { "darwin-aarch64": { "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-aarch64-apple-darwin.tar.gz", "cmd": "./waibee", - "args": ["acp"] + "args": [ + "acp" + ] }, "darwin-x86_64": { "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-x86_64-apple-darwin.tar.gz", "cmd": "./waibee", - "args": ["acp"] + "args": [ + "acp" + ] }, "linux-aarch64": { "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-aarch64-unknown-linux-gnu.tar.gz", "cmd": "./waibee", - "args": ["acp"] + "args": [ + "acp" + ] }, "linux-x86_64": { "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-x86_64-unknown-linux-gnu.tar.gz", "cmd": "./waibee", - "args": ["acp"] + "args": [ + "acp" + ] }, "windows-aarch64": { "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-aarch64-pc-windows-msvc.zip", "cmd": "./waibee.exe", - "args": ["acp"] + "args": [ + "acp" + ] }, "windows-x86_64": { "archive": "https://github.com/waibee-main/waibee-code/releases/download/v0.1.8/waibee-0.1.8-x86_64-pc-windows-msvc.zip", "cmd": "./waibee.exe", - "args": ["acp"] + "args": [ + "acp" + ] } } }