Merged
Conversation
- Add support for multi-ssh deployments for teams - Add interactive team selection for config
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Conflicting flags cause misleading sharing behavior and display
- When interactive member selection chooses specific users, the code now explicitly sets
shared_with_teamtoFalseso onlyteamMemberIdsare sent and the display matches actual sharing behavior.
- When interactive member selection chooses specific users, the code now explicitly sets
Or push these changes by commenting:
@cursor push 73453a550e
Preview (73453a550e)
diff --git a/packages/prime/src/prime_cli/commands/pods.py b/packages/prime/src/prime_cli/commands/pods.py
--- a/packages/prime/src/prime_cli/commands/pods.py
+++ b/packages/prime/src/prime_cli/commands/pods.py
@@ -742,6 +742,7 @@
shared_with_team = True
sharing_display = "All team members"
else:
+ shared_with_team = False
selected_indices = []
for part in selection.split(","):
part = part.strip()This Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.
d42me
approved these changes
Mar 12, 2026
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.


Note
Medium Risk
Changes affect pod creation payloads and team lookup logic, which could impact how resources are shared or which team is used if misconfigured; added tests reduce but don’t eliminate integration risk with API expectations.
Overview
Adds team-aware resource sharing to the Prime CLI:
pods createcan now auto-share pods with a whole team (--share-with-teamor config default) or interactively share with selected members (--add-members), and sendssharedWithTeam/teamMemberIdsin the create payload.Expands team tooling by adding
teams members, paginatingfetch_teams, and tighteningconfig set-team-idto require an explicit argument while enriching stored team metadata. Configuration now includes a persistedshare_resources_with_teamflag with a newconfig set-share-resources-with-teamcommand and display inconfig view, plus new tests covering pagination and sharing flag behavior.Written by Cursor Bugbot for commit bcb5226. This will update automatically on new commits. Configure here.