Skip to content
Development
Skill

/announcement-banner

Generates an in-app announcement banner system with remote configuration, scheduling, deep link actions, and dismiss tracking. Use when user wants in-app banners, promotional notices, maintenance alerts, or contextual announcements.

From plugin
rshankras-apple-skills
603183 skills
Install
$ npx -y skills add rshankras/claude-code-apple-skills --skill announcement-banner --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/announcement-banner

Context preview

The summary Claude sees to decide when to auto-load this skill.

Generates an in-app announcement banner system with remote configuration, scheduling, deep link actions, and dismiss tracking. Use when user wants in-app banners, promotional notices, maintenance alerts, or contextual announcements.

SKILL.md

announcement-banner.SKILL.md
name: announcement-banner
description: Generates an in-app announcement banner system with remote configuration, scheduling, deep link actions, and dismiss tracking. Use when user wants in-app banners, promotional notices, maintenance alerts, or contextual announcements.
allowed-tools: [Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion]
last_verified: 2026-07-16
review_by: 2027-06-22
os_version: iOS 27 / macOS 27

Announcement Banner Generator

Generate a configurable in-app announcement/banner system that displays contextual messages (maintenance alerts, new feature highlights, promotions) from remote config or local definitions. Supports dismissal, deep link actions, and scheduling.

When This Skill Activates

Use this skill when the user:

  • Asks to "add announcement banner" or "in-app banner"
  • Wants "app announcement" or "notification banner"
  • Mentions "promotional banner" or "promo banner"
  • Asks about "maintenance notice" or "maintenance alert"
  • Wants "in-app messaging" or "contextual banners"
  • Asks to "show announcements" or "display alerts to users"
  • Mentions "feature highlight banner" or "what's new banner"

Pre-Generation Checks

1. Project Context Detection

  • [ ] Check Swift version (requires Swift 5.9+)
  • [ ] Check deployment target (iOS 16+ / macOS 13+)
  • [ ] Check for @Observable support (iOS 17+ / macOS 14+)
  • [ ] Identify source file locations

2. Conflict Detection

Search for existing banner/toast code:

Glob: **/*Banner*.swift, **/*Announcement*.swift, **/*Toast*.swift, **/*InAppMessage*.swift
Grep: "AnnouncementBanner" or "InAppBanner" or "ToastView" or "BannerView"

If third-party library found (Firebase In-App Messaging, Braze, Intercom):

  • Ask if user wants to replace or keep it
  • If keeping, don't generate — advise on integration patterns instead

3. Deep Linking Detection

Check for existing deep linking setup:

Grep: "deepLink" or "DeepLink" or "universalLink" or "openURL" or "onOpenURL"

If deep linking exists, integrate with it. If not, generate standalone action handling.

Configuration Questions

Ask user via AskUserQuestion:

1. **Banner position?**

  • Top (slides in from top) — recommended for alerts
  • Bottom (slides in from bottom)
  • Floating (centered overlay with dimmed background)

2. **Content source?**

  • Local only (hardcoded announcements in code)
  • Remote JSON (fetch from server endpoint)
  • Both (remote with local fallbacks) — recommended

3. **Action type?**

  • Deep link (navigate to in-app screen)
  • URL (open in Safari/SFSafariViewController)
  • Dismiss only (informational, no action button)
  • All of the above — recommended

4. **Include scheduling (start/end dates)?**

  • Yes (time-limited announcements with date ranges) — recommended
  • No (always-active until dismissed)

Generation Process

Step 1: Read Templates

Read `templates.md` for production Swift code.

Step 2: Create Core Files

Generate these files: 1. `Announcement.swift` — Model with style, action, priority, scheduling 2. `AnnouncementManager.swift` — @Observable manager: loads, filters, tracks dismissals 3. `AnnouncementProvider.swift` — Protocol + local/remote implementations with caching

Step 3: Create UI Files

4. `AnnouncementBannerView.swift` — SwiftUI banner with style-aware colors and animations 5. `AnnouncementBannerModifier.swift` — ViewModifier for overlay placement and action routing

Step 4: Create Optional Files

Based on configuration:

  • `AnnouncementScheduler.swift` — If scheduling selected (date range filtering, timezone handling)

Step 5: Determine File Location

Check project structure:

  • If `Sources/` exists -> `Sources/AnnouncementBanner/`
  • If `App/` exists -> `App/AnnouncementBanner/`
  • Otherwise -> `AnnouncementBanner/`

Output Format

After generation, provide:

Files Created

AnnouncementBanner/
├── Announcement.swift              # Model with style, action, priority
├── AnnouncementManager.swift       # Observable manager with dismiss tracking
├── AnnouncementProvider.swift      # Protocol + local/remote providers
├── AnnouncementBannerView.swift    # SwiftUI banner view
├── AnnouncementBannerModifier.swift# ViewModifier for overlay + actions
└── AnnouncementScheduler.swift     # Date range filtering (optional)

Integration Steps

**Add banner overlay to root view:**

// In your root ContentView or NavigationStack
ContentView()
    .announcementBanner()

**With custom position:**

ContentView()
    .announcementBanner(position: .bottom)

**With deep link action handler:**

ContentView()
    .announcementBanner { action in
        switch action {
        case .deepLink(let destination):
            router.navigate(to: destination)
        case .url(let url):
            openURL(url)
        case .dismiss:
            break
        }
    }

**Define local announcements:**

let provider = LocalAnnouncementProvider(announcements: [
    Announcement(
        id: "maintenance-2024",
        title: "Scheduled Maintenance",
        message: "We'll be performing maintenance on Saturday 9-11 AM EST.",
        style: .warning,
        action: .dismiss,
        priority: 10,
        startDate: maintenanceStart,
        endDate: maintenanceEnd
    ),
    Announcement(
        id: "new-feature-photos",
        title: "New: Photo Library",
        message: "Check out our new photo library with AI-powered search!",
        style: .promotion,
        action: .deepLink("app://features/photos"),
        priority: 5,
        isDismissible: true
    )
])

**Fetch from remote config:**

let provider = RemoteAnnouncementProvider(
    url: URL(string: "https://api.example.com/announcements")!,
    cacheDuration: 3600  // 1 hour
)

Testing

@Test
func dismissedAnnouncementsAreHidden() async throws {
    let manager = AnnouncementManager(
        provider: MockAnnouncementProvider(announcements
Read more
Ships withrshankras-apple-skills

A collection of Claude Code skills for iOS, macOS, watchOS, visionOS, and Apple platform development. These skills help you plan and build apps, maintain code quality, ensure HIG compliance, and guide you from idea to App Store.

Get the whole plugin
Stats
603
Stars
51
Forks
Active
Maintenance
Swift
Language
MIT
License
16d ago
Last commit
9mo ago
Created

Repo: rshankras/claude-code-apple-skills

Other skills on rshankras-apple-skills.