@@ -317,6 +317,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
317317 manager .add ("organizations:seer-explorer-context-engine-fe-override-ui-flag" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
318318 # Enable code editing tools in Seer Explorer chat
319319 manager .add ("organizations:seer-explorer-chat-coding" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
320+ # Enable code mode tools (sentry_api_search/execute) in Seer Explorer
321+ manager .add ("organizations:seer-explorer-code-mode-tools" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
320322 # Enable structured LLM context (JSON snapshot) instead of ASCII DOM snapshot
321323 manager .add ("organizations:context-engine-structured-page-context" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
322324 # Enable the Seer Overview sections for Seat-Based users
@@ -382,6 +384,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
382384 manager .add ("organizations:data-browsing-widget-unfurl" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
383385 # Enable dual-write of Seer project preferences to Sentry DB and Seer API
384386 manager .add ("organizations:seer-project-settings-dual-write" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
387+ # Enable reading of Seer project preferences from Sentry DB instead of Seer API
388+ manager .add ("organizations:seer-project-settings-read-from-sentry" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
385389 # Enable public RPC endpoint for local seer development
386390 manager .add ("organizations:seer-public-rpc" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
387391 # Organizations on the old usage-based (v0) Seer plan
0 commit comments