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
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<platform>` values: `gemini`, `codex`, `opencode`, `pi`, `openclaw`, `antigravity`, `vibe`, `vscode`, `hermes`, `cline`, `kimi`, `trae`, `nanobot`, `kiro`
- Supported `<platform>` values: `gemini`, `codex`, `opencode`, `pi`, `openclaw`, `antigravity`, `vibe`, `vscode`, `hermes`, `cline`, `kimi`, `trae`, `nanobot`, `kiro`, `freebuff`
- Update later: `./install.sh --update`
- Uninstall: `./install.sh --uninstall <platform>`

Expand Down Expand Up @@ -251,6 +251,16 @@ After installation:

For personal skills (available across all projects), run the `install.sh` above with the `kiro` platform.

### Freebuff

```bash
curl -fsSL https://raw.githubusercontent.com/Egonex-AI/Understand-Anything/main/install.sh | bash -s freebuff
```

Freebuff reads its skills from `~/.agents/skills/`, so the installer symlinks each understand-* skill there (same layout as `codex`/`gemini`). Restart Freebuff or start a new session to pick up the skills.

On Windows, run the PowerShell installer and choose `freebuff` (or pass it directly: `./install.ps1 freebuff`).

### Platform Compatibility

| Platform | Status | Install Method |
Expand All @@ -272,6 +282,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` |
| Freebuff | ✅ Supported | `install.sh freebuff` |


---
Expand Down
1 change: 1 addition & 0 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ $Platforms = [ordered]@{
trae = @{ Target = (Join-Path $HOME '.trae\skills'); Style = 'per-skill' }
nanobot = @{ Target = (Join-Path $HOME '.nanobot\workspace\skills'); Style = 'per-skill' }
kiro = @{ Target = (Join-Path $HOME '.kiro\skills'); Style = 'per-skill' }
freebuff = @{ Target = (Join-Path $HOME '.agents\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 @@ -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
freebuff|$HOME/.agents/skills|per-skill
EOF
}

Expand Down