Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Understand-Anything works across multiple AI coding platforms.
/plugin install understand-anything
```

### One-line install (Codex / OpenCode / OpenClaw / Antigravity / Gemini CLI / Pi Agent / Vibe CLI / VS Code Copilot / Hermes / Cline / KIMI CLI / Trae)
### One-line install (Codex / OpenCode / OpenClaw / Antigravity / Gemini CLI / Pi Agent / Vibe CLI / VS Code Copilot / Hermes / Cline / KIMI CLI / Trae / CodeBuddy)

**macOS / Linux:**
```bash
Expand All @@ -202,7 +202,7 @@ iwr -useb https://raw.githubusercontent.com/Lum1104/Understand-Anything/main/ins

The installer clones the repo to `~/.understand-anything/repo` and creates the right symlinks for the chosen platform. Restart your CLI/IDE afterwards.

- Supported `<platform>` values: `gemini`, `codex`, `opencode`, `pi`, `openclaw`, `antigravity`, `vibe`, `vscode`, `hermes`, `cline`, `kimi`, `trae`
- Supported `<platform>` values: `gemini`, `codex`, `opencode`, `pi`, `openclaw`, `antigravity`, `vibe`, `vscode`, `hermes`, `cline`, `kimi`, `trae`, `codebuddy`
- Update later: `./install.sh --update`
- Uninstall: `./install.sh --uninstall <platform>`

Expand Down Expand Up @@ -243,6 +243,7 @@ copilot plugin install Lum1104/Understand-Anything:understand-anything-plugin
| Cline | ✅ Supported | `install.sh cline` |
| KIMI CLI | ✅ Supported | `install.sh kimi` |
| Trae | ✅ Supported | `install.sh trae` |
| CodeBuddy | ✅ Supported | `install.sh codebuddy` |

---

Expand Down
1 change: 1 addition & 0 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ $Platforms = [ordered]@{
cline = @{ Target = (Join-Path $HOME '.cline\skills'); Style = 'folder' }
kimi = @{ Target = (Join-Path $HOME '.kimi\skills'); Style = 'folder' }
trae = @{ Target = (Join-Path $HOME '.trae\skills'); Style = 'per-skill' }
codebuddy = @{ Target = (Join-Path $HOME '.codebuddy\skills'); Style = 'per-skill' }
}

function Show-Usage {
Expand Down
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ hermes|$HOME/.hermes/skills|folder
cline|$HOME/.cline/skills|folder
kimi|$HOME/.kimi/skills|folder
trae|$HOME/.trae/skills|per-skill
codebuddy|$HOME/.codebuddy/skills|per-skill
EOF
}

Expand Down
109 changes: 101 additions & 8 deletions understand-anything-plugin/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions understand-anything-plugin/pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
packages:
- "packages/*"
allowBuilds:
esbuild: true
tree-sitter-c: true
tree-sitter-c-sharp: true
tree-sitter-cpp: true
tree-sitter-go: true
tree-sitter-java: true
tree-sitter-javascript: true
tree-sitter-php: true
tree-sitter-python: true
tree-sitter-ruby: true
tree-sitter-rust: true
tree-sitter-typescript: true