> ## Documentation Index
> Fetch the complete documentation index at: https://alexcode.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# WWDC 2025 Modes

> Use the latest WWDC 2025 features and commands in Alex Sidebar

<img src="https://mintcdn.com/alex/zS4a0pdjtofRLVUw/images/wwdc-2025-features-hero.png?fit=max&auto=format&n=zS4a0pdjtofRLVUw&q=85&s=b7e5a9a69d02c021330a2e8c30176c72" alt="WWDC 2025 features in Alex Sidebar - Foundation Models, Liquid Glass design, and new APIs" width="1124" height="756" data-path="images/wwdc-2025-features-hero.png" />

Alex Sidebar now supports the contexts for the features announced at WWDC 2025, including the Liquid Glass design system, and the latest APIs. This guide shows you how to use these new features in your apps.

### Key Announcements

<CardGroup cols={2}>
  <Card title="Liquid Glass Design" icon="sparkles">
    A new design system with translucent, adaptive interfaces
  </Card>

  <Card title="Foundation Models" icon="brain">
    Access Apple Intelligence's language model on-device with just a few lines of code
  </Card>

  <Card title="SpeechAnalyzer API" icon="microphone">
    Faster and better speech recognition with improved accuracy
  </Card>

  <Card title="SwiftUI Performance" icon="gauge">
    Faster list loading and updates on macOS
  </Card>
</CardGroup>

## Commands in Alex Sidebar

There are new commands to help you implement the new design and work with the latest APIs. Use these command tags to access specific capabilities:

### @WWDC25 Mode

Access the latest Apple documentation related to WWDC 2025 by prefixing your requests with `@WWDC25`. For example, to get the context for the latest documentation for the SpeechAnalyzer API, you can use the following command:

```
@WWDC25 Implement the new SpeechAnalyzer API for real-time transcription
```

This mode gives Alex the context of:

* All iOS 26, macOS 26, and visionOS 26 APIs
* Liquid Glass design implementation
* New SwiftUI features like Rich Text Editor and 3D Charts
* Performance optimizations and best practices

**Example Uses:**

```
@WWDC25 Create a 3D chart in the given view with the new Charts API
@WWDC25 Implement the new WebKit APIs for in-app browsers
```

### @Foundation Models Command

Use Apple's language model directly in your apps. Here is an example of how to use the `@Foundation Models` command:

```
@FoundationModel Create a suggestion system using the new Foundation Models API for generating name recommendations
```

**Example Implementation:**

```swift theme={null}
import FoundationModels

// Access Apple's on-device foundation model with just a few lines
let session = try await LanguageModelSession()

// Generate structured data from natural language
let prompt = "Create a daily journal entry from these notes: \(userNotes)"

let response = try await session.respond(
    to: prompt,
    generating: JournalEntry.self
)

// The model runs entirely on-device, protecting user privacy
let journalEntry = response.content
```

### @Liquid Glass Command

Update your UI with the new Liquid Glass design system. Here is an example of how to use the `@Liquid Glass` command:

```
@Liquid Glass Update the custom button to use the new Liquid Glass design
```

## Combining Commands

Use multiple commands together for better results. Here is an example of how to use the `@WWDC25`, `@Liquid Glass`, and `@Foundation Models` commands together:

```
@WWDC25 @Liquid Glass @Foundation Models 
Create an AI-powered notes app with speech transcription and the new design system
```

This combination:

1. Uses SpeechAnalyzer for transcription (@WWDC25)
2. Applies Liquid Glass design throughout the app (@Liquid Glass)
3. Uses Foundation Models for summarization (@Foundation Models)

## Quick Reference

| Feature         | Command            | Example Usage                                                        |
| --------------- | ------------------ | -------------------------------------------------------------------- |
| SpeechAnalyzer  | @WWDC25            | `@WWDC25 Add real-time transcription`                                |
| Liquid Glass UI | @Liquid Glass      | `@Liquid Glass Apply glass effects to my cards`                      |
| On-device AI    | @Foundation Models | `@Foundation Models Generate text summaries locally`                 |
| 3D Charts       | @WWDC25            | `@WWDC25 Create 3D charts in the given view with the new Charts API` |
| Rich Text       | @WWDC25            | `@WWDC25 Add rich text editing to my app`                            |

Alex Sidebar makes it simpler to adopt Apple's latest features and APIs announced at WWDC 2025.
