Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/semble/installer/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ class IntegrationType(str, Enum):
"args": ["--from", "semble[mcp]", "semble"],
}

_ZED_SERVER_CONFIG: dict[str, object] = { # Zed requires "source": "custom" for manual servers
"source": "custom",
_ZED_SERVER_CONFIG: dict[str, object] = { # Zed: command/args only, no "source"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Older Zed Config Is Overwritten

When an existing installation still depends on source: "custom", reinstalling replaces the complete context_servers.semble value and removes that field. Without Zed version detection or a stated minimum version, this can make Semble disappear for users running an older compatible Zed release.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Difficult to account for IMO. This is a two-three month old change AFAIK. So not very recent.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair point — if this format change landed 2–3 months ago, the vast majority of active Zed users will be on a version that supports it already. The compatibility concern is minimal in practice. No issue here.

Tip: You can customize Greptile's behavior for this repo with .greptile/rules.md and .greptile/config.json.

"command": "uvx",
"args": ["--from", "semble[mcp]", "semble"],
}
Expand Down
Loading