Human-in-the-Loop Task Manager for AI Agents
Docs / Agents / Integrations
Integrations

Connect Kilo to AgentRQ

Connect Kilo to AgentRQ over the Agent Client Protocol (ACP) for human-in-the-loop task management.

Kilo is the open-source coding agent from Kilo Code. It speaks the Agent Client Protocol (ACP), so it runs behind AgentRQ's gateway with no custom integration code.

Does Kilo Support ACP?

Yes. Kilo publishes an ACP server to the ACP registry as kilo, so AgentRQ's gateway can fetch and run it by name — there is nothing to install by hand.

What Connecting via ACP Gets You

Once Kilo is bridged through AgentRQ's ACP Gateway, every task it works on shows up on your AgentRQ task board in real time. You can approve risky commands, reply with extra context, or reassign work — from the dashboard or Slack — without touching the terminal Kilo is running in.

Connect Kilo

Copy the .mcp.json for your workspace from Settings → Setup in the AgentRQ app, save it in your project root, then run both commands from that directory.

Log in (the first run also downloads the agent):

bash
npx @agentrq/acp-gateway@latest --login --agent kilo

Start the bridge, and leave it running — it picks up tasks as you assign them:

bash
npx @agentrq/acp-gateway@latest --agent kilo

Kilo runs straight from npm (@kilocode/[email protected]), so the gateway fetches and verifies it through npm itself — nothing is downloaded by hand.

Choosing a Model

Ask Kilo which models it supports, then start it on one of them:

bash
npx @agentrq/acp-gateway@latest --list-models --agent kilo
npx @agentrq/acp-gateway@latest --model <model-id> --agent kilo

Omit --model to take whatever the agent defaults to. The gateway applies the model as each session opens and reports it back to AgentRQ, so the workspace shows which model actually ran.

FAQ

Does Kilo work with AgentRQ?

Yes — Kilo speaks the Agent Client Protocol (ACP), so it connects to AgentRQ through the open-source ACP Gateway with no custom integration code.

How do I connect Kilo to AgentRQ?

Save your workspace's .mcp.json in your project root, log in with npx @agentrq/acp-gateway@latest --login --agent kilo, then start the bridge with the same command minus --login.

What is the Agent Client Protocol (ACP)?

ACP is an open, editor-agnostic protocol that lets any coding agent talk to any client over a standard JSON-RPC interface. AgentRQ's gateway implements the client side of ACP, so any ACP-compatible agent — including Kilo — can use AgentRQ as its human-in-the-loop task manager.

References