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
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ local defaults = {
---@type table<string, sidekick.cli.Config|{}>
tools = {
aider = { cmd = { "aider" } },
amazon_q = { cmd = { "q" } },
claude = { cmd = { "claude" } },
codex = { cmd = { "codex", "--enable", "web_search_request" } },
copilot = { cmd = { "copilot", "--banner" } },
Expand All @@ -347,6 +346,7 @@ local defaults = {
cursor = { cmd = { "cursor-agent" } },
gemini = { cmd = { "gemini" } },
grok = { cmd = { "grok" } },
kiro = { cmd = { "kiro-cli" } },
opencode = {
cmd = { "opencode" },
-- HACK: https://github.com/sst/opencode/issues/445
Expand Down Expand Up @@ -721,19 +721,19 @@ The default keymaps are:

Sidekick preconfigures popular AI CLIs. Run `:checkhealth sidekick` to see which ones are installed.

| Tool | Description | Installation |
| ----------------------------------------------------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| [`aider`](https://github.com/Aider-AI/aider) | AI pair programmer | `pip install aider-chat` or `pipx install aider-chat` |
| [`amazon_q`](https://github.com/aws/amazon-q-developer-cli) | Amazon Q Developer | [Install guide](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-getting-started-installing.html) |
| [`claude`](https://github.com/anthropics/claude-code) | Claude Code CLI | `npm install -g @anthropic-ai/claude-code` |
| [`codex`](https://github.com/openai/codex) | OpenAI Codex CLI | See [OpenAI docs](https://github.com/openai/codex) |
| [`copilot`](https://github.com/github/copilot-cli) | GitHub Copilot CLI | `npm install -g @githubnext/github-copilot-cli` |
| [`crush`](https://github.com/charmbracelet/crush) | Charm's AI assistant | See [installation](https://github.com/charmbracelet/crush) |
| [`cursor`](https://cursor.com/cli) | Cursor CLI agent | See [Cursor docs](https://cursor.com/cli) |
| [`gemini`](https://github.com/google-gemini/gemini-cli) | Google Gemini CLI | See [repo](https://github.com/google-gemini/gemini-cli) |
| [`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) |
| Tool | Description | Installation |
| ------------------------------------------------------- | -------------------- | ---------------------------------------------------------- |
| [`aider`](https://github.com/Aider-AI/aider) | AI pair programmer | `pip install aider-chat` or `pipx install aider-chat` |
| [`claude`](https://github.com/anthropics/claude-code) | Claude Code CLI | `npm install -g @anthropic-ai/claude-code` |
| [`codex`](https://github.com/openai/codex) | OpenAI Codex CLI | See [OpenAI docs](https://github.com/openai/codex) |
| [`copilot`](https://github.com/github/copilot-cli) | GitHub Copilot CLI | `npm install -g @githubnext/github-copilot-cli` |
| [`crush`](https://github.com/charmbracelet/crush) | Charm's AI assistant | See [installation](https://github.com/charmbracelet/crush) |
| [`cursor`](https://cursor.com/cli) | Cursor CLI agent | See [Cursor docs](https://cursor.com/cli) |
| [`gemini`](https://github.com/google-gemini/gemini-cli) | Google Gemini CLI | See [repo](https://github.com/google-gemini/gemini-cli) |
| [`grok`](https://github.com/superagent-ai/grok-cli) | xAI Grok CLI | See [repo](https://github.com/superagent-ai/grok-cli) |
| [`kiro`](https://kiro.dev/cli/) | Kiro CLI | See [Get started](https://kiro.dev/docs/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) |

> [!TIP]
> After installing tools, restart Neovim or run `:Sidekick cli select` to see them available.
Expand Down
2 changes: 1 addition & 1 deletion lua/sidekick/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ local defaults = {
---@type table<string, sidekick.cli.Config|{}>
tools = {
aider = { cmd = { "aider" } },
amazon_q = { cmd = { "q" } },
claude = { cmd = { "claude" } },
codex = { cmd = { "codex", "--enable", "web_search_request" } },
copilot = { cmd = { "copilot", "--banner" } },
Expand All @@ -113,6 +112,7 @@ local defaults = {
cursor = { cmd = { "cursor-agent" } },
gemini = { cmd = { "gemini" } },
grok = { cmd = { "grok" } },
kiro = { cmd = { "kiro-cli" } },
opencode = {
cmd = { "opencode" },
-- HACK: https://github.com/sst/opencode/issues/445
Expand Down
6 changes: 0 additions & 6 deletions sk/cli/amazon_q.lua

This file was deleted.

6 changes: 6 additions & 0 deletions sk/cli/kiro.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---@type sidekick.cli.Config
return {
cmd = { "kiro-cli" },
is_proc = "\\<kiro-cli\\>",
url = "https://kiro.dev/cli/",
}
Loading