ACP Support
Use Vikasit Code in any ACP-compatible editor.
Vikasit Code supports the Agent Client Protocol or (ACP), allowing you to use it directly in compatible editors and IDEs.
ACP is an open protocol that standardizes communication between code editors and AI coding agents.
Configure
To use Vikasit Code via ACP, configure your editor to run the vikasit acp command.
The command starts Vikasit Code as an ACP-compatible subprocess that communicates with your editor over JSON-RPC via stdio.
Below are examples for popular editors that support ACP.
Zed
Add to your Zed configuration (~/.config/zed/settings.json):
{ "agent_servers": { "Vikasit Code": { "command": "vikasit", "args": ["acp"] } }}To open it, use the agent: new thread action in the Command Palette.
You can also bind a keyboard shortcut by editing your keymap.json:
[ { "bindings": { "cmd-alt-o": [ "agent::NewExternalAgentThread", { "agent": { "custom": { "name": "Vikasit Code", "command": { "command": "vikasit", "args": ["acp"] } } } } ] } }]JetBrains IDEs
Add to your JetBrains IDE acp.json according to the documentation:
{ "agent_servers": { "Vikasit Code": { "command": "/absolute/path/bin/vikasit", "args": ["acp"] } }}To open it, use the new ‘Vikasit Code’ agent in the AI Chat agent selector.
Avante.nvim
Add to your Avante.nvim configuration:
{ acp_providers = { ["vikasit"] = { command = "vikasit", args = { "acp" } } }}If you need to pass environment variables:
{ acp_providers = { ["vikasit"] = { command = "vikasit", args = { "acp" }, env = { VIKASIT_API_KEY = os.getenv("VIKASIT_API_KEY") } } }}CodeCompanion.nvim
To use Vikasit Code as an ACP agent in CodeCompanion.nvim, add the following to your Neovim config:
require("codecompanion").setup({ interactions = { chat = { adapter = { name = "vikasit", model = "claude-sonnet-4", }, }, },})This config sets up CodeCompanion to use Vikasit Code as the ACP agent for chat.
If you need to pass environment variables (like VIKASIT_API_KEY), refer to Configuring Adapters: Environment Variables in the CodeCompanion.nvim documentation for full details.
Support
Vikasit Code works the same via ACP as it does in the terminal. All features are supported:
- Built-in tools (file operations, terminal commands, etc.)
- Custom tools and slash commands
- MCP servers configured in your Vikasit Code config
- Project-specific rules from
AGENTS.md - Custom formatters and linters
- Agents and permissions system