Editor integration · ACP
Connector included

IDE Zed · JetBrains · VS Code

Drive your agent from the editor's chat. File edits show as native diffs, permissions are asked inline, commands run on your machine — over the open Agent Client Protocol. No plugin, just the CLI.

Install & login once
npm install -g @todoforai/cli
tfa-cli login
The command your editor runs
todoforai-cli acp
Register in your editor
Zed
Built-in. Add to ~/.config/zed/settings.json, then Agent panel → + → TODOforAI.
{ "agent_servers": { "TODOforAI": { "type": "custom", "command": "todoforai-cli", "args": ["acp"] } } }
PyCharm · IntelliJ · WebStorm (2025.2+)
Built-in. AI Chat → Add Custom Agent opens ~/.jetbrains/acp.json.
{ "agent_servers": { "TODOforAI": { "command": "todoforai-cli", "args": ["acp"] } } }
VS Code
Via a community ACP client such as strato-space.acp-plugin; same agent_servers entry in settings.json.
{ "agent_servers": { "TODOforAI": { "type": "custom", "command": "todoforai-cli", "args": ["acp"] } } }

If the editor can't find todoforai-cli, use its absolute path (which todoforai-cli). Add "--agent", "<name>" to args to pin an agent.