Add Support For Qoder#758
Open
autoberry wants to merge 2 commits into
Open
Conversation
added 2 commits
June 6, 2026 00:38
Spec for native QoderCLI support in `codegraph install` — adds a new `AgentTarget` (qoder) to the existing pluggable installer registry, mapping global→~/.qoder/settings.json and local→<repo>/.qoder/settings.json with surgical `mcpServers.codegraph` writes only.
- Add qoder installer target that writes mcpServers.codegraph to ~/.qoder/settings.json (global) or <project>/.qoder/settings.json (local) - Fully idempotent and reversible with --uninstall, use --target=qoder explicitly - Register qoder target in the target registry - Add comprehensive tests covering install, detect, uninstall, and idempotency - Update CHANGELOG, README, and .gitignore accordingly - Bump version to 1.0.0-beta.1 - Remove accidentally added "2" dependency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Qoder CLI as a native installer target for codegraph install.
When ~/.qoder/ (global) or /.qoder/ (local) is detected, the installer auto-selects Qoder
CLI in the multiselect prompt and writes mcpServers.codegraph into the corresponding
settings.json. The operation is fully idempotent and reversible via --uninstall. Users can also
target it explicitly with --target=qoder.
Motivation
Qoder CLI (https://github.com/qoder-ai/qodercli) is a growing AI coding agent that supports MCP
servers via settings.json. Adding first-class support in Codegraph's installer allows Qoder users
to onboard with a single codegraph install command, matching the existing experience for Claude
Code, Cursor, Codex, etc.
Changes
Design Decisions
Test Plan