Skip to content
Development
Skill

/share-card

Generates shareable card images from app content (achievements, stats, quotes) for social media sharing. Use when user wants to create share images, social cards, shareable content cards, or export app content as images with ShareLink integration.

From plugin
rshankras-apple-skills
603183 skills
Install
$ npx -y skills add rshankras/claude-code-apple-skills --skill share-card --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/share-card

Context preview

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

Generates shareable card images from app content (achievements, stats, quotes) for social media sharing. Use when user wants to create share images, social cards, shareable content cards, or export app content as images with ShareLink integration.

SKILL.md

share-card.SKILL.md
name: share-card
description: Generates shareable card images from app content (achievements, stats, quotes) for social media sharing. Use when user wants to create share images, social cards, shareable content cards, or export app content as images with ShareLink integration.
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

Share Card Generator

Generate a production share card system that renders app content (achievements, statistics, quotes, milestones) as shareable images with SwiftUI `ImageRenderer`, customizable styles, optional QR code overlays, and native `ShareLink` integration.

When This Skill Activates

Use this skill when the user:

  • Asks to "generate share cards" or "create shareable images"
  • Wants to "share achievements as images" or "share stats to social media"
  • Mentions "social media cards" or "shareable content cards"
  • Asks about "exporting content as images" or "screenshot sharing"
  • Wants "branded share images" or "share card templates"
  • Asks to "add ShareLink with image" or "share rendered SwiftUI view"
  • Wants "QR code on share image" or "deep link in share card"

Pre-Generation Checks

1. Project Context Detection

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

2. Conflict Detection

Search for existing share/export code:

Glob: **/*ShareCard*.swift, **/*ShareImage*.swift, **/*SocialCard*.swift
Grep: "ImageRenderer" or "ShareLink" or "UIGraphicsImageRenderer" or "share.*image"

If existing share infrastructure found:

  • Ask if user wants to replace or extend it
  • If extending, integrate with existing models and styles

3. Platform Detection

Determine if generating for iOS (`UIImage`) or macOS (`NSImage`) or both (cross-platform `PlatformImage` typealias).

Configuration Questions

Ask user via AskUserQuestion:

1. **Card style?**

  • Minimal (clean, text-focused, light/dark adaptive)
  • Branded (app logo, brand colors, custom typography)
  • Statistics (data-heavy with charts/numbers emphasis)

2. **Share destinations?**

  • Social media (Instagram, Twitter/X — optimized aspect ratios)
  • Messages / General sharing (flexible sizing)
  • Both — recommended

3. **Card size preset?**

  • Square (1080x1080 — Instagram, general purpose)
  • Story (1080x1920 — Instagram Stories, TikTok)
  • Wide (1200x630 — Twitter/X, Open Graph)
  • Custom (user-specified dimensions)

4. **Include QR code?**

  • Yes (deep link or App Store URL embedded in card corner)
  • No (cleaner card, no link)

5. **Content types?** (multi-select)

  • Achievements / Milestones
  • Statistics / Progress
  • Quotes / Text content
  • Custom (user defines their own content model)

Generation Process

Step 1: Read Templates

Read `templates.md` for production Swift code.

Step 2: Create Core Files

Generate these files: 1. `ShareCardContent.swift` — Protocol and concrete content types (achievement, statistics, quote) 2. `ShareCardStyle.swift` — Enum with predefined styles, colors, fonts, layout configuration 3. `ShareCardRenderer.swift` — `@MainActor` renderer using `ImageRenderer` to convert SwiftUI views to images 4. `ShareCardView.swift` — The SwiftUI view that composes the card layout (background, content, branding)

Step 3: Create UI Files

5. `ShareCardSheet.swift` — Complete sharing sheet with style picker, live preview, and `ShareLink`

Step 4: Create Optional Files

Based on configuration:

  • `QRCodeOverlay.swift` — If QR code selected (CoreImage-based QR generator)
  • `ShareCardPreview.swift` — SwiftUI Preview helpers for design iteration

Step 5: Determine File Location

Check project structure:

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

Output Format

After generation, provide:

Files Created

ShareCard/
├── ShareCardContent.swift    # Protocol + concrete content types
├── ShareCardStyle.swift      # Style enum with colors, fonts, layout
├── ShareCardRenderer.swift   # ImageRenderer-based rendering
├── ShareCardView.swift       # Card layout SwiftUI view
├── ShareCardSheet.swift      # Share sheet with preview + ShareLink
├── QRCodeOverlay.swift       # CoreImage QR code (optional)
└── ShareCardPreview.swift    # Preview helpers (optional)

Integration Steps

**Share an achievement:**

struct AchievementDetailView: View {
    let achievement: Achievement
    @State private var showShareCard = false

    var body: some View {
        VStack {
            // ... achievement detail content ...

            Button("Share Achievement") {
                showShareCard = true
            }
        }
        .sheet(isPresented: $showShareCard) {
            ShareCardSheet(
                content: AchievementCardContent(
                    title: achievement.title,
                    subtitle: achievement.description,
                    metric: "\(achievement.points) pts",
                    iconName: achievement.iconName,
                    brandName: "MyApp"
                )
            )
        }
    }
}

**Share statistics:**

ShareCardSheet(
    content: StatisticsCardContent(
        title: "Weekly Progress",
        stats: [
            StatItem(label: "Steps", value: "52,340"),
            StatItem(label: "Calories", value: "3,200"),
            StatItem(label: "Distance", value: "28.5 km"),
        ],
        brandName: "FitTracker"
    )
)

**Share a quote:**

ShareCardSheet(
    content: QuoteCardContent(
        quote: "The only way to do great work is to love what you do.",
        attribution: "Steve Jobs",
        brandName: "DailyQuotes"
    )
)

**Inline ShareLink (without sheet):**

struct QuickSha
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.