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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ local defaults = {
env = { OPENCODE_THEME = "system" },
},
qwen = { cmd = { "qwen" } },
rovodev = { cmd = { "acli", "rovodev" } },
},
--- Add custom context. See `lua/sidekick/context/init.lua`
---@type table<string, sidekick.context.Fn>
Expand Down Expand Up @@ -734,7 +735,7 @@ Sidekick preconfigures popular AI CLIs. Run `:checkhealth sidekick` to see which
| [`grok`](https://github.com/superagent-ai/grok-cli) | xAI Grok CLI | See [repo](https://github.com/superagent-ai/grok-cli) |
| [`opencode`](https://github.com/sst/opencode) | OpenCode CLI | `npm install -g opencode` |
| [`qwen`](https://github.com/QwenLM/qwen-code) | Alibaba Qwen Code | See [repo](https://github.com/QwenLM/qwen-code) |

| [`rovodev`](https://www.atlassian.com/software/rovo-dev) | Atlassian RovoDev CLI | See [docs](https://support.atlassian.com/rovo/docs/use-rovo-dev-cli/) |
> [!TIP]
> After installing tools, restart Neovim or run `:Sidekick cli select` to see them available.

Expand Down
1 change: 1 addition & 0 deletions lua/sidekick/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ local defaults = {
env = { OPENCODE_THEME = "system" },
},
qwen = { cmd = { "qwen" } },
rovodev = { cmd = { "acli", "rovodev" } },
},
--- Add custom context. See `lua/sidekick/context/init.lua`
---@type table<string, sidekick.context.Fn>
Expand Down
6 changes: 6 additions & 0 deletions sk/cli/rovodev.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---@type sidekick.cli.Config
return {
cmd = { "acli", "rovodev" },
is_proc = "\\<acli rovodev\\>",
url = "https://www.atlassian.com/software/rovo-dev"
}
Loading