@@ -144,6 +144,14 @@ def register_temporary_features(manager: FeatureManager) -> None:
144144 manager .add ("organizations:github-repo-auto-sync-apply" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
145145 manager .add ("organizations:github_enterprise-repo-auto-sync" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
146146 manager .add ("organizations:github_enterprise-repo-auto-sync-apply" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
147+ manager .add ("organizations:gitlab-repo-auto-sync" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
148+ manager .add ("organizations:gitlab-repo-auto-sync-apply" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
149+ manager .add ("organizations:bitbucket-repo-auto-sync" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
150+ manager .add ("organizations:bitbucket-repo-auto-sync-apply" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
151+ manager .add ("organizations:bitbucket_server-repo-auto-sync" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
152+ manager .add ("organizations:bitbucket_server-repo-auto-sync-apply" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
153+ manager .add ("organizations:vsts-repo-auto-sync" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
154+ manager .add ("organizations:vsts-repo-auto-sync-apply" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
147155 manager .add ("organizations:integrations-perforce" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
148156 manager .add ("organizations:integrations-slack-staging" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
149157 manager .add ("organizations:scm-source-context" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
@@ -317,6 +325,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
317325 manager .add ("organizations:seer-explorer-context-engine-fe-override-ui-flag" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
318326 # Enable code editing tools in Seer Explorer chat
319327 manager .add ("organizations:seer-explorer-chat-coding" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
328+ # Enable code mode tools (sentry_api_search/execute) in Seer Explorer
329+ manager .add ("organizations:seer-explorer-code-mode-tools" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
320330 # Enable structured LLM context (JSON snapshot) instead of ASCII DOM snapshot
321331 manager .add ("organizations:context-engine-structured-page-context" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
322332 # Enable the Seer Overview sections for Seat-Based users
@@ -577,7 +587,7 @@ def register_temporary_features(manager: FeatureManager) -> None:
577587 # Enable lightweight RCA clustering write path (generate embeddings on new issues)
578588 manager .add ("organizations:supergroups-lightweight-rca-clustering-write" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
579589 # Enable lightweight RCA clustering read path (query lightweight embeddings in supergroup APIs)
580- manager .add ("organizations:supergroups-lightweight-rca-clustering-read" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
590+ manager .add ("organizations:supergroups-lightweight-rca-clustering-read" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
581591
582592 manager .add ("projects:workflow-engine-performance-detectors" , ProjectFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
583593
0 commit comments