/watermark-engine
Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants to add branding, attribution, or free-tier watermarks to visual content.
$ npx -y skills add rshankras/claude-code-apple-skills --skill watermark-engine --agent claude-codeHow 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
/watermark-engine
Context preview
The summary Claude sees to decide when to auto-load this skill.
Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants to add branding, attribution, or free-tier watermarks to visual content.
SKILL.md
watermark-engine.SKILL.mdname: watermark-engine
description: Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants to add branding, attribution, or free-tier watermarks to visual content.
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
Watermark Engine Generator
Generate a production watermarking system with text/image/logo overlays, configurable positioning and opacity, tiled patterns, live SwiftUI preview, and automatic watermark removal on subscription purchase.
When This Skill Activates
Use this skill when the user:
- Asks to "add watermark" or "watermark images"
- Wants a "branded overlay" or "logo overlay on photos"
- Mentions "remove watermark on purchase" or "free tier watermark"
- Asks about "content watermarking" or "image branding"
- Wants "tiled watermark" or "diagonal watermark pattern"
- Mentions "attribution overlay" or "copyright overlay"
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 watermark or overlay code:
Glob: **/*Watermark*.swift, **/*Overlay*.swift, **/*Branding*.swift
Grep: "watermark" or "overlay" or "CGContext" or "draw(in:"
If existing watermark code found:
- Ask if user wants to replace or extend it
- If extending, integrate with existing architecture
3. Dependency Detection
Check for existing image processing infrastructure:
Grep: "CoreImage" or "CoreGraphics" or "CGImage" or "UIGraphicsImageRenderer"
Grep: "StoreKit" or "SubscriptionStatus" or "Product.SubscriptionInfo"
If paywall/subscription code exists, integrate watermark removal with existing subscription logic rather than generating standalone subscription checks.
4. Platform Detection
Determine if generating for iOS (UIImage) or macOS (NSImage) or both (cross-platform typealias).
Configuration Questions
Ask user via AskUserQuestion:
1. **Watermark content type?**
- Text (e.g., username, app name, copyright)
- Image/Logo (e.g., brand logo PNG with transparency)
- Attributed text (styled text with font, color, shadow)
2. **Watermark positioning?**
- Corner (top-left, top-right, bottom-left, bottom-right) — recommended for branding
- Center — recommended for free-tier watermark
- Tiled (repeated diagonal pattern) — strongest protection for freemium
3. **Watermark removal trigger?**
- Subscription (auto-remove while subscription is active)
- One-time purchase (remove permanently after purchase)
- Never (always present, e.g., branding/attribution)
4. **Opacity level?**
- Subtle (0.15–0.25) — light branding
- Medium (0.3–0.5) — visible but non-intrusive — recommended
- Strong (0.6–0.8) — clear protection for free-tier
5. **Platform?**
- iOS only
- macOS only
- Cross-platform (iOS + macOS)
Generation Process
Step 1: Read Templates
Read `templates.md` for production Swift code.
Step 2: Create Core Files
Generate these files: 1. `WatermarkStyle.swift` — Configuration struct for content, position, opacity, scale, padding 2. `WatermarkPosition.swift` — Enum with computed CGRect placement relative to image bounds 3. `WatermarkRenderer.swift` — CoreGraphics-based renderer that composites watermark onto source image
Step 3: Create UI Files
4. `WatermarkOverlayView.swift` — SwiftUI overlay view for live preview of watermark on content
Step 4: Create Manager
5. `WatermarkManager.swift` — @Observable manager that applies/removes watermarks, integrates with subscription status
Step 5: Create Modifier
6. `WatermarkImageModifier.swift` — SwiftUI ViewModifier for declarative watermark application
Step 6: Determine File Location
Check project structure:
- If `Sources/` exists → `Sources/Watermark/`
- If `App/` exists → `App/Watermark/`
- Otherwise → `Watermark/`
Output Format
After generation, provide:
Files Created
Watermark/
├── WatermarkStyle.swift # Configuration for content, position, opacity
├── WatermarkPosition.swift # Position enum with CGRect computation
├── WatermarkRenderer.swift # CoreGraphics compositor
├── WatermarkOverlayView.swift # SwiftUI live preview overlay
├── WatermarkManager.swift # Observable manager with paywall integration
└── WatermarkImageModifier.swift # SwiftUI ViewModifier
Integration Steps
**Apply a text watermark to an exported image:**
let style = WatermarkStyle(
content: .text("@ MyApp"),
position: .bottomRight,
opacity: 0.4,
scale: 0.08
)
let renderer = WatermarkRenderer()
let watermarked = try renderer.render(source: originalImage, style: style)**Live preview overlay in SwiftUI:**
Image(uiImage: photo)
.resizable()
.aspectRatio(contentMode: .fit)
.watermark(.text("Preview"), position: .center, opacity: 0.3)**With subscription-based removal:**
struct PhotoEditorView: View {
let photo: UIImage
@State private var manager = WatermarkManager()
var body: some View {
Image(uiImage: photo)
.resizable()
.aspectRatio(contentMode: .fit)
.watermark(manager.activeStyle)
}
}
// WatermarkManager automatically checks subscription status
// and returns .none when user has active subscription**Tiled diagonal pattern for free-tier:**
let style = WatermarkStyle(
content: .text("SAMPLE"),
position: .tiled(angle: -30, spacing: 120),
opacity: 0.15,
scale: 0.05
)Testing
@Test
func textWatermarkRendersAtCorrectPosition() async throws {
let source = PlatformImage.testImage(sRead more
name: watermark-engine description: Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants to add branding, attribution, or free-tier watermarks to visual content. 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
Watermark Engine Generator
Generate a production watermarking system with text/image/logo overlays, configurable positioning and opacity, tiled patterns, live SwiftUI preview, and automatic watermark removal on subscription purchase.
When This Skill Activates
Use this skill when the user:
- Asks to "add watermark" or "watermark images"
- Wants a "branded overlay" or "logo overlay on photos"
- Mentions "remove watermark on purchase" or "free tier watermark"
- Asks about "content watermarking" or "image branding"
- Wants "tiled watermark" or "diagonal watermark pattern"
- Mentions "attribution overlay" or "copyright overlay"
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 watermark or overlay code:
Glob: **/*Watermark*.swift, **/*Overlay*.swift, **/*Branding*.swift Grep: "watermark" or "overlay" or "CGContext" or "draw(in:"
If existing watermark code found:
- Ask if user wants to replace or extend it
- If extending, integrate with existing architecture
3. Dependency Detection
Check for existing image processing infrastructure:
Grep: "CoreImage" or "CoreGraphics" or "CGImage" or "UIGraphicsImageRenderer" Grep: "StoreKit" or "SubscriptionStatus" or "Product.SubscriptionInfo"
If paywall/subscription code exists, integrate watermark removal with existing subscription logic rather than generating standalone subscription checks.
4. Platform Detection
Determine if generating for iOS (UIImage) or macOS (NSImage) or both (cross-platform typealias).
Configuration Questions
Ask user via AskUserQuestion:
1. **Watermark content type?**
- Text (e.g., username, app name, copyright)
- Image/Logo (e.g., brand logo PNG with transparency)
- Attributed text (styled text with font, color, shadow)
2. **Watermark positioning?**
- Corner (top-left, top-right, bottom-left, bottom-right) — recommended for branding
- Center — recommended for free-tier watermark
- Tiled (repeated diagonal pattern) — strongest protection for freemium
3. **Watermark removal trigger?**
- Subscription (auto-remove while subscription is active)
- One-time purchase (remove permanently after purchase)
- Never (always present, e.g., branding/attribution)
4. **Opacity level?**
- Subtle (0.15–0.25) — light branding
- Medium (0.3–0.5) — visible but non-intrusive — recommended
- Strong (0.6–0.8) — clear protection for free-tier
5. **Platform?**
- iOS only
- macOS only
- Cross-platform (iOS + macOS)
Generation Process
Step 1: Read Templates
Read `templates.md` for production Swift code.
Step 2: Create Core Files
Generate these files: 1. `WatermarkStyle.swift` — Configuration struct for content, position, opacity, scale, padding 2. `WatermarkPosition.swift` — Enum with computed CGRect placement relative to image bounds 3. `WatermarkRenderer.swift` — CoreGraphics-based renderer that composites watermark onto source image
Step 3: Create UI Files
4. `WatermarkOverlayView.swift` — SwiftUI overlay view for live preview of watermark on content
Step 4: Create Manager
5. `WatermarkManager.swift` — @Observable manager that applies/removes watermarks, integrates with subscription status
Step 5: Create Modifier
6. `WatermarkImageModifier.swift` — SwiftUI ViewModifier for declarative watermark application
Step 6: Determine File Location
Check project structure:
- If `Sources/` exists → `Sources/Watermark/`
- If `App/` exists → `App/Watermark/`
- Otherwise → `Watermark/`
Output Format
After generation, provide:
Files Created
Watermark/ ├── WatermarkStyle.swift # Configuration for content, position, opacity ├── WatermarkPosition.swift # Position enum with CGRect computation ├── WatermarkRenderer.swift # CoreGraphics compositor ├── WatermarkOverlayView.swift # SwiftUI live preview overlay ├── WatermarkManager.swift # Observable manager with paywall integration └── WatermarkImageModifier.swift # SwiftUI ViewModifier
Integration Steps
**Apply a text watermark to an exported image:**
let style = WatermarkStyle(
content: .text("@ MyApp"),
position: .bottomRight,
opacity: 0.4,
scale: 0.08
)
let renderer = WatermarkRenderer()
let watermarked = try renderer.render(source: originalImage, style: style)**Live preview overlay in SwiftUI:**
Image(uiImage: photo)
.resizable()
.aspectRatio(contentMode: .fit)
.watermark(.text("Preview"), position: .center, opacity: 0.3)**With subscription-based removal:**
struct PhotoEditorView: View {
let photo: UIImage
@State private var manager = WatermarkManager()
var body: some View {
Image(uiImage: photo)
.resizable()
.aspectRatio(contentMode: .fit)
.watermark(manager.activeStyle)
}
}
// WatermarkManager automatically checks subscription status
// and returns .none when user has active subscription**Tiled diagonal pattern for free-tier:**
let style = WatermarkStyle(
content: .text("SAMPLE"),
position: .tiled(angle: -30, spacing: 120),
opacity: 0.15,
scale: 0.05
)Testing
@Test
func textWatermarkRendersAtCorrectPosition() async throws {
let source = PlatformImage.testImage(sA 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.
Repo: rshankras/claude-code-apple-skills
Other skills on rshankras-apple-skills.
- /app-store
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user needs help with App Store presence, ASO, marketing, or customer communication.
Open skill - /ad-attribution
Privacy-preserving ad measurement with AdAttributionKit (SKAdNetwork's successor) — install and re-engagement attribution, conversion-value strategy under crowd anonymity, and end-to-end postback testing. Use when running paid acquisition beyond Apple Ads, measuring
Open skill - /app-description-writer
Generate compelling App Store descriptions that convert browsers into users. Use when writing initial descriptions, improving existing copy, or drafting promotional text and What's New for a major update.
Open skill - /apple-search-ads
Apple Search Ads campaign strategy for indie developers — paid acquisition, keyword bidding, budget planning, and ROAS optimization. Use when user asks about running ads, paid user acquisition, or Apple Search Ads campaigns.
Open skill - /iap-finalizer
Take a one-time in-app purchase from MISSING_METADATA to READY_TO_SUBMIT in App Store Connect — set its price schedule and localized display name/description (and optional review screenshot) via the ASC REST API. Use at Phase 6 (Pre-Release), after the IAP is built in-app (Phase
Open skill - /keyword-optimizer
Optimize app title, subtitle, and keywords for maximum App Store discoverability. Use when launching a new app, improving search rankings, entering new markets/languages, or safely optimizing ASO for an app with existing traffic.
Open skill

