skills/smithery.ai/gpui-global

gpui-global

Installation
SKILL.md

Overview

Global state in GPUI provides app-wide shared data accessible from any context.

Key Trait: Global - Implement on types to make them globally accessible

Quick Start

Define Global State

use gpui::Global;

#[derive(Clone)]
struct AppSettings {
    theme: Theme,
    language: String,
}
Installs
2
First Seen
Apr 8, 2026
gpui-global from smithery.ai