Using Jarvis Code CLI in IDEs
Jarvis Code CLI supports integration into IDEs via the Agent Client Protocol (ACP), letting you use AI-assisted coding directly inside your editor.
Prerequisites
Before configuring your IDE, make sure Jarvis Code CLI is installed and you have completed the login setup.
The ACP adapter is exposed as the jarvis acp subcommand. The IDE launches it as a child process and communicates over stdin/stdout using JSON-RPC. Each time the IDE creates a session, the CLI reuses its existing authentication state — no need to log in again.
Path note
Child processes launched from an IDE GUI on macOS typically do not inherit the terminal shell's PATH. If jarvis is not in a system directory like /usr/local/bin, use the absolute path in your IDE configuration. Run which jarvis in a terminal to find the active path.
Use Jarvis Code CLI in Zed
Zed is a modern editor with native ACP support.
Add the following to Zed's config file at ~/.config/zed/settings.json:
{
"agent_servers": {
"Jarvis Code CLI": {
"type": "custom",
"command": "jarvis",
"args": ["acp"],
"env": {}
}
}
}Configuration fields:
type: fixed value"custom"command: path to the Jarvis Code CLI executable. Ifjarvisis not onPATH, use the full path (e.g./Users/you/.local/bin/jarvis).args: startup arguments. Theacpsubcommand switches the CLI into ACP mode.env: additional environment variables; usually leave this empty. Zed injects a default environment automatically.
After saving, open a new conversation in Zed's Agent panel and it will launch a Jarvis Code CLI ACP subprocess using the configuration above. MCP servers declared in Zed's agent_servers section are also forwarded to Jarvis Code through the ACP protocol.
Use Jarvis Code CLI in JetBrains IDEs
JetBrains IDEs (IntelliJ IDEA, PyCharm, WebStorm, etc.) support ACP through the AI chat plugin.
If you do not have a JetBrains AI subscription, you can enable llm.enable.mock.response in the Registry to access the AI chat panel in ACP-only scenarios. Press Shift twice and search for "Registry" to open it.
In the AI chat panel menu, click Configure ACP agents and add the following configuration:
{
"agent_servers": {
"Jarvis Code CLI": {
"command": "~/.local/bin/jarvis",
"args": ["acp"],
"env": {}
}
}
}JetBrains is strict about the command field — always use an absolute path, which you can get by running which jarvis in a terminal. After saving, Jarvis Code CLI will appear in the AI chat's agent selector.
Use Jarvis Code CLI in Paseo
Paseo is a self-hosted orchestrator that runs and supervises agent CLIs from your desktop, web, and mobile. It connects to Jarvis Code CLI over ACP, the same way an IDE does.
Pick Jarvis Code CLI from Paseo's built-in ACP provider catalog, or add a custom provider in ~/.paseo/config.json:
{
"agents": {
"providers": {
"jarvis": {
"extends": "acp",
"label": "Jarvis Code CLI",
"command": ["jarvis", "acp"]
}
}
}
}Paseo's generic ACP adapter does not drive the login flow, so complete the terminal login first (see Prerequisites) — otherwise session creation fails with Authentication required.
Troubleshooting
- Session disconnects immediately / IDE shows "agent exited": usually a wrong
commandpath or a missing login. Runjarvis acpin a terminal first to verify — if it blocks waiting for stdin, the CLI itself is fine and the problem is in the IDE configuration; if it exits immediately with an error, follow the error message (most commonly you need to run/login). - IDE shows "auth required": the CLI has no usable authentication token. Exit the IDE, run
jarvisin a terminal to complete login, then restart the IDE. - MCP tools not visible: check the
jarvis acpreference capability table to confirm that the MCP transport type configured in your IDE is supported. The Jarvis Code CLI ACP adapter supportshttp,stdio, andssetransports;acptransport MCP servers are dropped and a warning is written to the log.
Next steps
- jarvis acp reference — ACP capability matrix and method coverage details
- jarvis command reference — full subcommand list