Recap Integration is a integrations claude skill built by Joe Fabisevich. Best for: iOS/macOS developers automate integration of in-app release notes and version-gated feature announcements using the Recap library..
- What it does
- Integrate Recap Swift package into SwiftUI apps and automate release notes configuration.
- Category
- integrations
- Created by
- Joe Fabisevich
- Last updated
Recap Integration
Integrate Recap Swift package into SwiftUI apps and automate release notes configuration.
Skill instructions
name: recap-integration description: Integrates the Recap Swift package into SwiftUI apps, authors Recap-compatible releases markdown, and configures RecapDisplayPolicy and RecapScreen customization. Use when adding Recap into an app, updating Releases.md, or customizing the behavior of a Recap screen.
Recap Integration
Use this skill when integrating, configuring, or using the Recap library.
What to read first
Start with these files:
README.mdSources/Recap/Public/RecapScreen.swiftSources/Recap/Public/View+Recap.swiftSources/Recap/Public/RecapDisplayPolicy.swiftSources/Recap/Public/RecapDisplayPolicy.Trigger.swiftDemo/Demo/Assets/Releases.mdDemo/Demo/DemoRecapScreen.swift
Read additional public API files in Sources/Recap/Public/ only if the task touches a specific type.
Core workflow
- Identify whether the task is about integration, release authoring, display policy, or screen customization.
- Prefer Recap's public APIs over custom implementations.
- Match existing Recap naming and examples from the README and demo app.
- Keep examples and release content user-facing and concise.
Integration rules
- Prefer
ReleasesParser(fileName:)for bundled release markdown. - Prefer
RecapScreen(releases:)as the entry point for presentation. - Prefer
RecapDisplayPolicyandRecapDisplayPolicy.Triggerover hand-rolled version gating. - Prefer
.recapScreenPaginationStyle(.automatic)unless the user explicitly wants forced.labeledor.compact. - When customizing behavior, use
View+Recapmodifiers instead of editing internal implementation unless the task is explicitly a library change.
Release markdown rules
When creating or editing a Recap releases markdown file:
- Keep the newest release first.
- Follow the schema documented in
README.md. - Use one release section per app version.
- Use user-facing feature titles and descriptions, not commit-style summaries.
- Choose the semantic change type (
Major,Minor,Patch) based on product impact, not commit count. - Reuse the style and structure of
Demo/Demo/Assets/Releases.md.
Mac Catalyst guidance
If the task touches Mac Catalyst:
- Preserve the distinction between automatic pagination, labeled buttons, and compact buttons.
- Be careful not to regress iPhone or iPad behavior while changing Catalyst presentation.
Avoid
- Do not invent a different release markdown format.
- Do not parse releases manually if
ReleasesParseris sufficient. - Do not replace
RecapDisplayPolicywith custom version-comparison logic unless the user explicitly needs behavior outside the public API.
Use this skill
Most skills are portable instruction packages. Claude Code supports SKILL.md directly. Other agents can use adapted files like AGENTS.md, .cursorrules, and GEMINI.md.
Claude Code
Save SKILL.md into your Claude Skills folder, then restart Claude Code.
mkdir -p ~/.claude/skills/recap-integration && curl -L "https://raw.githubusercontent.com/mergesort/Recap/7669e5f85723651ac9fc6c58d7dc49346ab49396/.agents/skills/recap-integration/SKILL.md" -o ~/.claude/skills/recap-integration/SKILL.mdInstalls to ~/.claude/skills/recap-integration/SKILL.md.
Use cases
iOS/macOS developers automate integration of in-app release notes and version-gated feature announcements using the Recap library.
Reviews
No reviews yet. Be the first to review this skill.
No signup required
Stats
Creator
JJoe Fabisevich
@mergesort