From 860cdd12fdcfa602df2cfc45783c821497e4a73a Mon Sep 17 00:00:00 2001 From: fengleli Date: Sun, 9 Aug 2026 16:20:52 +0800 Subject: [PATCH 1/2] feat(install): add CodeBuddy platform support CodeBuddy discovers per-skill plugins under ~/.codebuddy/skills//SKILL.md, the same layout as gemini/codex. Add a 'codebuddy' row to the platform table and a usage tip (type /understand or @command://understand; restart window). --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index eb7336f46..424c9c3e0 100755 --- a/install.sh +++ b/install.sh @@ -42,6 +42,7 @@ kimi|$HOME/.kimi/skills|folder trae|$HOME/.trae/skills|per-skill nanobot|$HOME/.nanobot/workspace/skills|per-skill kiro|$HOME/.kiro/skills|per-skill +codebuddy|$HOME/.codebuddy/skills|per-skill EOF } @@ -232,6 +233,10 @@ KIROEOF if [[ "$id" == "kiro" ]]; then printf '\n Usage: kiro-cli chat --agent understand "Analyze this project"\n' fi + if [[ "$id" == "codebuddy" ]]; then + printf '\n Usage: type /understand (or @command://understand) in CodeBuddy to analyze a project.\n' + printf ' Restart the CodeBuddy window if the skills are not picked up immediately.\n' + fi } cmd_uninstall() { From 32d7d1d5ebf241b8e9f2710bc1aec3c24a1d7a53 Mon Sep 17 00:00:00 2001 From: fengleli Date: Sun, 9 Aug 2026 16:29:30 +0800 Subject: [PATCH 2/2] docs: add CodeBuddy to supported platforms list List CodeBuddy in the one-line install heading, the supported values, and the Platform Compatibility table. Installs via 'install.sh codebuddy' (per-skill symlinks into ~/.codebuddy/skills). --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 04efe8311..f0ea9c532 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ Understand-Anything works across multiple AI coding platforms. ``` -### One-line install (Codex / OpenCode / OpenClaw / Antigravity / Gemini CLI / Pi Agent / Vibe CLI / VS Code Copilot / Hermes / Cline / KIMI CLI / Trae / Nanobot / Kiro) +### One-line install (Codex / OpenCode / OpenClaw / Antigravity / Gemini CLI / Pi Agent / Vibe CLI / VS Code Copilot / Hermes / Cline / KIMI CLI / Trae / Nanobot / Kiro / CodeBuddy) **macOS / Linux:** @@ -217,7 +217,7 @@ The installer clones the repo to `~/.understand-anything/repo` and creates the r > **Note on invoking skills:** the invocation prefix differs per platform. Most platforms use slash commands (`/understand`), but **Codex uses `$` instead** — type `$understand`, not `/understand`. If neither prefix is recognized on your platform, just ask in plain language: *"Use the understand skill to analyze this project."* -- Supported `` values: `gemini`, `codex`, `opencode`, `pi`, `openclaw`, `antigravity`, `vibe`, `vscode`, `hermes`, `cline`, `kimi`, `trae`, `nanobot`, `kiro` +- Supported `` values: `gemini`, `codex`, `opencode`, `pi`, `openclaw`, `antigravity`, `vibe`, `vscode`, `hermes`, `cline`, `kimi`, `trae`, `nanobot`, `kiro`, `codebuddy` - Update later: `./install.sh --update` - Uninstall: `./install.sh --uninstall ` @@ -272,6 +272,7 @@ For personal skills (available across all projects), run the `install.sh` above | Trae | ✅ Supported | `install.sh trae` | | Nanobot | ✅ Supported | `install.sh nanobot` | | Kiro CLI / IDE | ✅ Supported | `install.sh kiro` | +| CodeBuddy | ✅ Supported | `install.sh codebuddy` | ---