29 KiB
AGENTS.md
This file provides guidance when working with code in this repository.
Development Commands
Build and Run
cargo run- Build and run Warp locallycargo bundle --bin warp- Bundle the main appmake run- Build and rungalaxy-ossmake clean- Remove Cargo build artifactsmake deploy- Validate, update, clean, bundle, and upload Galaxy to Hermesmake install- Validate, update, clean, bundle, and install Galaxy to/Applications
Running with local warp-server
To connect Warp client to a local warp-server instance:
# Connect to server on default port 8080
cargo run --features with_local_server
# Connect to server on custom port (e.g., 8082)
SERVER_ROOT_URL=http://localhost:8082 WS_SERVER_URL=ws://localhost:8082/graphql/v2 cargo run --features with_local_server
Environment variables:
SERVER_ROOT_URL- HTTP endpoint (default:http://localhost:8080)WS_SERVER_URL- WebSocket endpoint (default:ws://localhost:8080/graphql/v2)
Testing
- During interactive feature and bug-fix verification, make the requested code changes first and run only
cargo run --bin galaxy-ossfor the user to verify. Leave the app running for the user; do not stop it or treat the command timeout as a failure. Do not runcargo fmt,cargo check,cargo test,cargo clippy, presubmit, or other validation commands until the user confirms the behavior. Run formatting, tests, and linting only as the final cleanup step after interactive approval. cargo nextest run --no-fail-fast --workspace --exclude command-signatures-v2- Run tests with nextestcargo nextest run -p galaxy_completer --features v2- Run completer tests with v2 featurescargo test --doc- Run doc testscargo test- Run standard tests for individual packages
Linting and Formatting
./script/presubmit- Run all presubmit checks (fmt, clippy, tests)./script/format- Format codecargo clippy --workspace --all-targets --all-features --tests -- -D warnings- Run clippy./script/run-clang-format.py -r --extensions 'c,h,cpp,m' ./crates/galaxyui/src/ ./app/src/- Format C/C++/Obj-C codefind . -name "*.wgsl" -exec wgslfmt --check {} +- Check WGSL shader formatting
Bedrock Diagnostics
- Set
GALAXY_BEDROCK_DIAGNOSTICS=1to enable Bedrock diagnostic output, including:Error_<timestamp>.txtsnapshot files written to the repository root on request/stream failures (includes the serialized Bedrock context window, tool definitions, protobuf request debug payload, captured Bedrock diagnostic lines, and log tails)- Per-event Bedrock diagnostic logs written to
bedrock-diagnostics.login the active Warp log directory
- Set
GALAXY_TOOL_DIAGNOSTICS=1to enable verbose local tool queue/execution debug logs and cancellation backtraces. These diagnostics are disabled during routine operation.
AI Provider Architecture
Galaxy supports session-owned ACP backends and direct model providers. Direct-provider selection is
controlled by settings (ai.openai.enabled takes priority over ai.bedrock.enabled), but provider
configuration never selects lifecycle ownership.
Direct provider: controller.rs → prepare_provider_run() → ProviderRunCoordinator
↓ one model call per turn
AgentRuntime implementation
↓ tool batch
correlated action execution
↓ committed results
next ProviderRun turn
ACP: controller.rs → ResponseStream → acp_output_stream (session-owned lifecycle)
Durable direct-provider run:
crates/galaxy_agent_core/src/provider_run.rs— SerializableProviderRunstate machine, run/epoch identity, bounded model retries, ordered tool batches, cancellation, and terminal outcomesapp/src/ai/runtime/provider_run_coordinator.rs— Drives one-turnAgentRuntimecalls, validates model events, projects output, and commits exact tool lifecycle eventsapp/src/ai/runtime/rig.rs— Builds base/CLI request profiles and resolves the configured one-turn runtime; it does not own follow-throughapp/src/ai/runtime/rig_request.rs— Converts controller request state into provider-neutralTurnRequesthistory, tools, prompts, and MCP aliasesapp/src/ai/runtime/event_translator.rs— Projects provider-neutral runtime events into Warp response events for UI/history compatibilityapp/src/ai/blocklist/controller.rs— Retains active runs, correlates actions by(conversation_id, run_id, epoch, call_id), monitors commands, persists checkpoints, and restores interrupted runsapp/src/ai/blocklist/controller/response_stream.rs— Owns ACP transport and shared UI/history projection only; it must not drive direct-provider retries or follow-up turns
Shared provider types in app/src/ai/provider/:
types.rs—ConversationMessage,MessageRole,MessageContent,ContentPart,ToolDefinitionmod.rs—ProviderConfigenum (Bedrock | OpenAI | None)
Bedrock provider in app/src/ai/bedrock/:
runtime.rs— Native one-callAgentRuntimeoverConverseStream, including cancellation, reasoning signatures, token usage, and stop/error classificationrequest_translator.rs— Shared Bedrock message sanitization and tool definitionsresponse_translator.rs— Compatibility conversion helpers used by tests and background flowsconvert.rs— Bedrock request construction and prompt-caching behaviorclient.rs— AWS SDK client construction, runtime creation, and independent background streaming callsmodels.rs— Model registry and cross-region inference prefix logicdiscovery.rs— AWS profile listing and model discovery (STS identity check + ListFoundationModels)diagnostic.rs— Debug logging (enabled viaGALAXY_BEDROCK_DIAGNOSTICS=1)external_config.rs— Fallback config from Claude Code/OpenCode settings
OpenAI-compatible providers:
- Direct turns use one-call runtimes from
galaxy_agent_rigselected inapp/src/ai/runtime/rig.rsfor OpenAI/LiteLLM, ChatGPT subscription, Anthropic, Gemini, and Vertex AI app/src/ai/openai/request_translator.rssanitizes provider-neutral history for OpenAI-compatible APIsapp/src/ai/openai/client.rs,convert.rs, andresponse_translator.rsremain compatibility/background transport helpers, not lifecycle owners
Provider settings (in settings TOML):
ai.bedrock.enabled— Use AWS Bedrock directly (default: true)ai.openai.enabled— Use OpenAI-compatible endpoint(s) (default: false, takes priority over Bedrock)ai.openai.base_url— Legacy single-provider endpoint URL (default:http://localhost:4000/v1)ai.openai.api_key— Legacy single-provider API key (stored in keychain)ai.openai.model— Model name override sent to the endpointai.openai.models— Legacy single-provider model list (Vec<OpenAIModelConfig>)ai.providers— Multi-provider config (Vec<OpenAIProviderConfig>): each entry hasname,base_url,api_key,models[]
Multi-provider example (settings.toml):
[ai.openai]
enabled = true
[[ai.providers]]
name = "LiteLLM"
base_url = "http://localhost:4000/v1"
api_key = "sk-..."
[[ai.providers.models]]
model_id = "claude-sonnet-4-20250514[1m]"
display_name = "Claude Sonnet 4 (1M)"
context_size = 1000000
[[ai.providers]]
name = "Ollama (Local)"
base_url = "http://localhost:11434/v1"
[[ai.providers.models]]
model_id = "llama3.2"
display_name = "Llama 3.2"
context_size = 128000
OpenAI/LiteLLM model discovery:
- Models can be auto-fetched from the
/modelsendpoint via the Settings > OpenAI / LiteLLM page - For each model, the system probes
{model_id}[1m]with a minimal chat completion request - If the
[1m]variant is accepted (HTTP 200 or 429), it's used with 1M context window - Otherwise, the base model ID is used with its reported context size
- Models injected via
ai.providers[]are routed to their specific endpoint (per-model routing map) - Provider name shown as the description label in the model picker; icon shows OpenAI logo for all OpenAI-compatible providers
Key invariants:
- Every direct-provider
AgentRuntime::start_turnperforms exactly one model call; onlyProviderRunmay schedule another turn or retry - Direct-provider model calls allow 120 seconds for stream startup and 90 seconds between stream events; either timeout is a recoverable transport failure that enters the existing bounded retry lifecycle with the same work identity
- Direct-provider remote telemetry records requested, started, retry-scheduled, and finished model-turn phases with explicit
llm_finishedstate; rootprovider_run_finishedrecords distinguish clean completion from failure or cancellation and mark the response stream terminal use_rigand provider selection may choose request/transport details but must never choose lifecycle ownership- Direct-provider output may be projected through
ResponseStream, but provider progress must not depend on response-stream result draining orAfterStreamFinished - Direct-provider
RequestFileEditsviews must register from streaming output before provider-run completion; preprocessing results must survive delayed view registration, andNotReadyretries must remain automatic rather than emitting a synthetic user permission decision - A clean direct-provider
ProviderRunOutcome::Completedexplicitly finalizes the conversation asSuccessafter terminal output projection, even if earlier turns added tool actions; child-completion waits rely on that status - Provider actions and results must correlate by
(conversation_id, run_id, epoch, call_id); stale or duplicate callbacks must not advance a run - Action status/result lookups and archived results are keyed by
(conversation_id, action_id); callers must supply the owning conversation and must not fall back to a global action-ID search - Action blocked/executing/finished events carry
conversation_id; UI subscribers must match it, and CLI shell-control mutations must also match the active block's requested-command action ID - Active provider runs must checkpoint before external work, persist without credentials, validate deserialized run invariants before normalization or runtime construction, normalize unsafe restored states, and reconcile command state before continuing; cancellation intent stays checkpointed until the terminal outcome is projected and
finish_active_provider_runperforms cleanup - A restored
AwaitingModelcheckpoint has an uncertain remote outcome and must terminate as an explicit restore failure rather than replaying the call; known recoverable failures observed in-process retain the bounded model-retry lifecycle - Same-conversation direct-provider follow-ups queue behind the cancelling generation; the old run keeps the active slot until terminal projection and cleanup, queued intent is checkpointed without credentials for restart recovery, and queued-only restore validates provider ownership and terminalizes the abandoned unprepared exchange from its persisted projection/stream identity before starting the successor; the next generation rebuilds provider history after cleanup so it includes the old generation's final committed output, and stale callbacks are ignored by stream identity
- Known tools are in
KNOWN_TOOLSinresponse_translator.rs; definitions are built bytool_definition_for_name()inconvert_request.rs - Direct-provider normal and plan turns must advertise
read_plan,create_plan, andedit_planwhen the matching document capabilities are enabled; plan-creation requests should callcreate_planafter research rather than only returning prose - Unknown or invalid tool calls receive one correlated synthetic error result and a visible
AgentOutputmessage; the durable run owns any continuation recall_tool_historyis an inline completed tool batch.ProviderRuncommits its synthetic result and starts a bounded next turn without routing it through client action executionrecall_tool_historyexcludes earlier calls to itself; archived tool results remain searchable by query or exacttool_use_id- Before progressive summarization drains messages,
ConversationMessage::archive_tool_results()moves tool-use/result pairs intotool_result_archive - Bedrock prompt caching uses three cache points: system prompt, second-to-last history message, and tool configuration
ensure_tool_results_paired()enforces Bedrock's invariant that everytool_usehas a matchingtool_result- Progressive summaries are prepended to provider requests as a user/assistant pair; direct-provider runs compact their live transcript at a checkpointed
ReadyToCallModelboundary before another model call, while background summarization remains independent for session-owned runtimes - Loop prevention in
controller.rsdetects repeated tool failures (3+ identical) and injects a corrective instruction - Direct-provider long-running shell follow-ups retain CLI tasks as UI projections while command monitoring and completion stay owned by the same provider run
- A direct-provider command completion is only queued when the terminal reports it; the CLI task remains active until the provider run applies that completion at a safe boundary and deactivates it
- Provider command ownership is resolved from the active slot or its durable snapshot by block/action identity; completion arriving during restore is persisted into that snapshot and must never fall back to the legacy assessment path
- Direct-provider completed-command assessments are hidden, tool-free root-task turns whose output and hidden input survive CLI-task deactivation and restoration
- ACP remains a separate session-owned runtime; direct-provider cleanup must not move ACP lifecycle into
ProviderRun - Orchestrated child conversations are leaf workers: nested
RunAgentsand legacyStartAgentcalls are rejected before autonomy or permission bypasses, and child requests do not advertise delegation tools - Direct-provider
RunAgentsremains pending until every local child reachesSuccess,Error, orCancelled, or is removed/deleted; recoverableBlocked,TransientError, andWaitingForEventsstates remain pending, and the hosted 30-second startup timeout must not apply to these completion waits StartAgentWaitPolicyis selected from child execution mode, not parentrun_id: local children wait for completion and only remote/hosted children use startup acknowledgement- Hosted
RunAgentsstartup timeouts detach the exactStartAgentRequestId; late launch callbacks must not register the child after the timeout result, while children linked before cancellation remain independently running
Platform Setup
./script/bootstrap- Platform-specific setup plus common agent skill installation fromskills-lock.json; prompts for project/global when an install or update is needed unless a target flag or environment override is provided../script/bootstrap --skip-common-skills- Platform setup without installing or updating common agent skills../script/bootstrap --install-common-skills- Explicitly install common agent skills fromskills-lock.json; this is the default behavior../script/bootstrap --install-common-skills-in-repo- Platform setup plus common agent skill installation in this checkout's.agents/skills../script/bootstrap --install-common-skills-globally- Platform setup plus common agent skill installation in~/.agents/skills.../common-skills/scripts/install_common_skills --repo-root "$PWD" --project --if-needed- Install or refresh shared agent skills in this checkout's.agents/skills.../common-skills/scripts/install_common_skills --repo-root "$PWD" --global --if-needed- Install or refresh shared agent skills in~/.agents/skills.../common-skills/scripts/remove_common_skills --repo-root "$PWD"- Remove shared agent skills listed inskills-lock.jsonfrom this checkout's.agents/skills.../common-skills/scripts/remove_common_skills --repo-root "$PWD" --global- Remove shared agent skills listed inskills-lock.jsonfrom~/.agents/skills.../common-skills/scripts/remove_common_skills --repo-root "$PWD" --clear-lock- Remove shared agent skills from this checkout and deleteskills-lock.json../script/install_cargo_build_deps- Install Cargo build dependencies./script/install_cargo_test_deps- Install Cargo test dependencies
skills-lock.json is the standard project lock file managed by npx skills. warpdotdev/common-skills/scripts/install_common_skills requires an explicit install target before restoring: pass --project, pass --global, set WARP_COMMON_SKILLS_INSTALL_TARGET, or answer the interactive prompt from bootstrap. Non-interactive flows fail if no target is explicit. The installer creates skills-lock.json from warpdotdev/common-skills if it is missing, uses global as the recommended interactive default, errors if common skills are present in both project and global locations, prevents a global install pinned to one lock from being silently overwritten by another checkout pinned to a different lock, and verifies installed skills against the lock after successful install or skip paths. script/run and script/bootstrap execute this installer with script/resolve_common_skills, which uses WARP_COMMON_SKILLS_SCRIPTS_DIR only when explicitly set and otherwise runs the raw script from warpdotdev/common-skills. To test a remote common-skills branch, set WARP_COMMON_SKILLS_REF=<branch>. Cloud setup should use common-skills/scripts/install_common_skills --repo-root <warp-checkout> --project --if-needed --non-interactive or set WARP_COMMON_SKILLS_INSTALL_TARGET=project to avoid the prompt. To update the locked common skills, run npx --yes skills@1.5.6 update -p -y and commit the resulting skills-lock.json changes.
Architecture Overview
This is a Rust-based terminal emulator with a custom UI framework called GalaxyUI.
Key Components
GalaxyUI Framework (ui/):
- Custom UI framework with Entity-Component-Handle pattern
- Global
Appobject owns all views/models (entities) - Views hold
ViewHandle<T>references to other views AppContextprovides temporary access to handles during render/events- Elements describe visual layout (Flutter-inspired)
- Actions system for event handling
- MouseStateHandle must be created once during construction, and then referenced/cloned anywhere we're using mouse input to track mouse changes. Inline
MouseStateHandle::default()while rendering will cause no mouse interactions to work.
Main App (app/):
- Terminal emulation and shell management (
terminal/) - AI integration including Agent Mode (
ai/) - Cloud synchronization and Drive features (
drive/) - Authentication and user management (
auth/) - Settings and preferences (
settings/) - Workspace and session management (
workspace/)
Core Libraries:
crates/galaxy_core/- Core utilities and platform abstractionscrates/editor/- Text editing functionalitycrates/galaxyui/andcrates/galaxyui_core/- Custom UI frameworkcrates/ipc/- Inter-process communicationcrates/graphql/- GraphQL client and schema
Key Architectural Patterns
- Entity-Handle System: Views reference other views via handles, not direct ownership
- Modular Structure: Workspace contains multiple workspace configurations, each with terminals, notebooks, etc.
- Cross-Platform: Native implementations for macOS, Windows, Linux, plus WASM target
- AI Integration: Built-in AI assistant with context awareness and codebase indexing
- Cloud Sync: Objects can be synchronized across devices via Galaxy Drive
Development Guidelines
Workspace Structure:
- This is a Cargo workspace with 60+ member crates
- Main binary is in
app/, UI framework incrates/galaxyui/ - Platform-specific code is conditionally compiled
- Integration tests are in
crates/integration/
Coding Style Preferences:
- Avoid unnecessary type annotations, especially in closure params.
- Avoid using too many Rust path qualifiers and use imports for concision. Place import statements at the top of the file as per convention. An exception to this is inside cfg-guarded code branches. In those cases, you can either embed the import into the relevant scope or just use an absolute path for one-offs.
- If a function takes a context parameter (
AppContext,ViewContext, orModelContext), it should be namedctxand go last. The one exception is for functions that take a closure parameter, in which case the closure should be last. - Always remove unused parameters completely rather than prefixing them with
_. Update the function signature and all call sites accordingly. - Prefer inline format arguments in macros like
println!,eprintln!, andformat!(for example,eprintln!("{message}")instead ofeprintln!("{}", message)) to satisfy Clippy'suninlined_format_argslint. - Do not pass
Itertools::formatresults directly to logging macros (log::*,safe_*, etc.).Itertools::formatproduces a single-use formatter, while logging implementations may format a message more than once. Use a reusableStringsuch asiter.join(", ")for logging arguments instead. Direct use informat!orwrite!is fine. - Do not remove existing comments when making unrelated changes. Only remove or modify a comment if the logic it describes has changed.
- When adding a toggleable setting, also add the matching Command Palette enable/disable entry and any required context flags so the setting is discoverable outside Settings.
Terminal Model Locking:
- Be extremely careful when calling
model.lock()on the terminal model (TerminalModel). Acquiring multiple locks on the same model from different call sites can cause a deadlock, resulting in a UI freeze (beach ball on macOS). - Before adding a new
model.lock()call, verify that no caller in the current call stack already holds the lock. - Prefer passing already-locked model references down the call stack rather than acquiring new locks.
- If you must lock the model, keep the lock scope as short as possible and avoid calling other functions that might also attempt to lock.
Testing:
- Use
cargo nextestfor parallel test execution - Integration tests use custom framework in
integration/ - Tests should be run via presubmit script before submitting
- Unit tests should be placed in separate files using the naming convention
${filename}_tests.rsormod_test.rs - Test files should be included at the end of their corresponding module with:
#[cfg(test)] #[path = "filename_tests.rs"] // or "mod_test.rs" mod tests;
Pull Request Workflow:
- ALWAYS run
./script/formatandcargo clippy(the versions specified in ./script/presubmit) before opening a PR or pushing updates to an existing PR branch - Those commands must pass completely before creating or updating a pull request
- Specifically, ensure
./script/formatandcargo clippychecks pass - If they fail, fix all issues before proceeding with the PR
- Do not create public pull requests or public issues that disclose a non-public security vulnerability. Refer users to
SECURITY.mdfor the proper disclosure methods instead. - This applies to:
- Opening new pull requests
- Pushing new commits to existing PR branches
- Any branch updates that will be reviewed
- When opening PRs, use the PR template at
.github/pull_request_template.md - Add changelog entries when appropriate using the format at the bottom of the PR template. Use the following prefixes (without the
{{}}brackets):CHANGELOG-NEW-FEATURE:for new, relatively sizable features (use sparingly - these may get marketing/docs)CHANGELOG-IMPROVEMENT:for new functionality of existing featuresCHANGELOG-BUG-FIX:for fixes related to known bugs or regressionsCHANGELOG-IMAGE:for GCP-hosted image URLs- Leave changelog lines blank or remove them if no changelog entry is needed
Database:
- Uses Diesel ORM with SQLite
- Migrations in
migrations/directory - Schema defined in
app/src/persistence/schema.rs - Database file is
galaxy.sqlite(renamed from Warp'swarp.sqlite); legacy filename migration is handled ininit_db()
Session Restoration:
- Controlled by
general.restore_sessionsetting - App state (windows, tabs, pane tree, CWD, agent conversations) is snapshotted to SQLite on window events (close, move, resize, focus change)
TerminalView::active_session_path_if_local()provides the CWD for each pane; falls back tosession_startup_pathfor agent-mode or fresh tabs- Agent conversations are persisted via
BlocklistAIHistoryEvent→ModelEvent::UpsertAIQueryand restored viaRestoredAgentConversationssingleton - The
active_conversation_idfield inTerminalPaneSnapshotcontrols whether agent view restores in fullscreen mode
GraphQL:
- Schema and client code generation from
crates/galaxy_graphql_schema/api/schema.graphql - TypeScript types generated for frontend integration
Feature Flags
Warp uses compile-time feature flags with a small runtime plumbing layer.
How to add a feature flag:
- Add a new variant to
galaxy_core/src/features.rsin theFeatureFlagenum - (Optional) Enable it by default for dogfood builds by listing it in
DOGFOOD_FLAGS - Gate code paths with
FeatureFlag::YourFlag.is_enabled() - For preview or release rollout, add to
PREVIEW_FLAGSorRELEASE_FLAGSrespectively (as appropriate)
Best practices:
- Prefer runtime checks over cfg directives: Prefer
FeatureFlag::YourFlag.is_enabled()over#[cfg(...)]compile-time directives so flags can be toggled without recompilation and are easier to clean up later. Use#[cfg(...)]only when the code cannot compile without them (for example, platform-specific code or dependencies that do not exist when the feature is disabled). - Keep flags high-level and product-focused rather than per-call-site
- Remove the flag and dead branches after launch has stabilized
- For UI sections that expose a new feature, hide the UI behind the same flag
Example:
#[derive(Sequence)]
pub enum FeatureFlag {
YourNewFeature,
}
// Default-on for dogfood builds
pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
FeatureFlag::YourNewFeature,
];
// Use in code
if FeatureFlag::YourNewFeature.is_enabled() {
// gated behavior
}
Code Editor IntelliSense (LSP Completion)
The code editor has full LSP-powered autocompletion with documentation resolution:
Key files:
app/src/code/completion.rs— Completion state, rendering (menu + docs panel), resolve logicapp/src/code/local_code_editor.rs— Keybindings and action handling
Behavior:
- Auto-completes as you type (triggered by alphanumeric/underscore with 50ms debounce)
- Trigger characters:
.and::fire immediately - Manual trigger:
Ctrl+Spacewhile the code editor is focused - Keyboard navigation: Up/Down to select, Tab/Enter to confirm
- Mouse: hover an item to select it and show docs, click to confirm
- Documentation panel appears beside the menu when the LSP returns docs for the selected item (via
completionItem/resolve)
Architecture:
CompletionState::Showingholds items, filtered indices, per-itemMouseStateHandles, and resolved docsresolve_selected_completion_docs()sendscompletionItem/resolveto the LSP server- The docs panel renders markdown via
FormattedTextElementin a scrollable container beside the menu
Exhaustive Matching
When adding/editing match statements, avoid using the wildcard _ when at all possible. Exhaustive matching is helpful for ensuring that all variants are handled, especially when adding new variants to enums in the future.
Rules System
Global rules (behavioral instructions for the AI agent) are stored as AIFact::Memory cloud objects and managed via the Rules settings pane.
Key files:
app/src/ai/facts/mod.rs—AIFact/AIMemorydata modelapp/src/ai/facts/predefined_rules.rs— Default system-defined rules (seeded on first launch)app/src/ai/facts/view/rule.rs—RuleViewUI with Global/Project tabs and "Add Predefined Rules" buttonapp/src/ai/facts/view/mod.rs—AIFactViewparent container (Rules + RuleEditor pages)app/src/ai/facts/manager.rs—AIFactManagersingleton for pane trackingapp/src/settings/ai.rs—has_seeded_predefined_rulessetting (one-time flag)
Behavior:
- On first launch (no existing global rules and
has_seeded_predefined_rulesis false), predefined rules are automatically created - The "Add Predefined Rules" button in the Global rules tab will add/update system-defined rules (identified by the "System Defined Rule" name prefix)
- Rules are persisted via the cloud object sync system (
UpdateManager::create_ai_fact/update_ai_fact) - The
memory_enabledsetting (agents.knowledge.rules_enabled) controls whether rules are sent to the AI
Appearance Settings Notes
- Galaxy's built-in brand themes are available as
GalaxyDarkandGalaxyDay. - UI font selection is persisted in
appearance.text.ui_font_nameand uses an empty string as the system-default sentinel. - The one-click Galaxy brand preset is implemented in
app/src/settings_view/appearance_page.rsand applies:- Galaxy Dark/Day system theme mapping
- terminal + AI font defaults
- the bundled, SIL Open Font License-licensed Roboto UI font