From f15782de487b994164f5322bd13777c2e1c855e3 Mon Sep 17 00:00:00 2001 From: menfre Date: Tue, 4 Aug 2026 19:24:58 +0800 Subject: [PATCH 1/2] Add waveloom agent (terminal auth, binary distribution) --- waveloom/agent.json | 49 +++++++++++++++++++++++++++++++++++++++++++++ waveloom/icon.svg | 7 +++++++ 2 files changed, 56 insertions(+) create mode 100644 waveloom/agent.json create mode 100644 waveloom/icon.svg diff --git a/waveloom/agent.json b/waveloom/agent.json new file mode 100644 index 00000000..68c6e6cd --- /dev/null +++ b/waveloom/agent.json @@ -0,0 +1,49 @@ +{ + "id": "waveloom", + "name": "Waveloom", + "version": "0.6.0", + "description": "Terminal coding agent (Go, ACP v1) that writes, refactors, debugs and explores code in your terminal", + "repository": "https://github.com/Menfre01/waveloom", + "authors": ["menfre "], + "license": "Apache-2.0", + "distribution": { + "binary": { + "darwin-aarch64": { + "archive": "https://github.com/Menfre01/waveloom/releases/download/v0.6.0/waveloom_darwin_arm64.tar.gz", + "sha256": "c748d2bd93ac7a0df70a195ff133785d521545c08e0d86e73f55b226b29edf11", + "cmd": "./waveloom", + "args": ["acp"] + }, + "darwin-x86_64": { + "archive": "https://github.com/Menfre01/waveloom/releases/download/v0.6.0/waveloom_darwin_amd64.tar.gz", + "sha256": "55a51a30aa7f4971598ce62d263efc5fd620dfc89c70805c3099c337b3dc5a20", + "cmd": "./waveloom", + "args": ["acp"] + }, + "linux-aarch64": { + "archive": "https://github.com/Menfre01/waveloom/releases/download/v0.6.0/waveloom_linux_arm64.tar.gz", + "sha256": "7e6a4b7a88cdcee5afb87a9e0a374209023952ba11bc9fc01896b64ee26aad05", + "cmd": "./waveloom", + "args": ["acp"] + }, + "linux-x86_64": { + "archive": "https://github.com/Menfre01/waveloom/releases/download/v0.6.0/waveloom_linux_amd64.tar.gz", + "sha256": "40d9ef224e16d659ae1d15f3a8c5095158b15159f32067f703fda3a5341a1d9d", + "cmd": "./waveloom", + "args": ["acp"] + }, + "windows-x86_64": { + "archive": "https://github.com/Menfre01/waveloom/releases/download/v0.6.0/waveloom_windows_amd64.zip", + "sha256": "73ecf4e23d8c0a55677cb6310d19721dca8ab297f5c2b388fedddff76ccc859a", + "cmd": "waveloom.exe", + "args": ["acp"] + }, + "windows-aarch64": { + "archive": "https://github.com/Menfre01/waveloom/releases/download/v0.6.0/waveloom_windows_arm64.zip", + "sha256": "de4351ad19f80f62cf3e67bcf160fe1be1ab8f1e6cabc58f2ec143d45884d50b", + "cmd": "waveloom.exe", + "args": ["acp"] + } + } + } +} diff --git a/waveloom/icon.svg b/waveloom/icon.svg new file mode 100644 index 00000000..a2b0e2e1 --- /dev/null +++ b/waveloom/icon.svg @@ -0,0 +1,7 @@ + + + + + + + From d8a1a9994a54a2a39ced64f6c6aa45dcb5e89ed3 Mon Sep 17 00:00:00 2001 From: menfre Date: Tue, 4 Aug 2026 19:28:21 +0800 Subject: [PATCH 2/2] Update waveloom description: highlight DeepSeek-native cache economics --- waveloom/agent.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waveloom/agent.json b/waveloom/agent.json index 68c6e6cd..7f34dece 100644 --- a/waveloom/agent.json +++ b/waveloom/agent.json @@ -2,7 +2,7 @@ "id": "waveloom", "name": "Waveloom", "version": "0.6.0", - "description": "Terminal coding agent (Go, ACP v1) that writes, refactors, debugs and explores code in your terminal", + "description": "DeepSeek-native terminal code agent engineered for cache economics — prefix-cache keeps context cache-hot across turns, maximizing cache hits and minimizing token cost", "repository": "https://github.com/Menfre01/waveloom", "authors": ["menfre "], "license": "Apache-2.0",