combine-framework

Installation
SKILL.md

Combine Framework

Reactive programming with Apple's Combine framework.

Core Concepts

Publisher & Subscriber

// ✅ Basic subscription
let publisher = Just("Hello")
let subscriber = publisher.sink { value in
    print(value)  // "Hello"
}

Creating Publishers

Installs
15
GitHub Stars
53
First Seen
Feb 20, 2026
combine-framework — ahmed3elshaer/everything-claude-code-mobile