.agents/skills/recap-integration/SKILL.md
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.
npx skillsauth add mergesort/Recap recap-integrationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when integrating, configuring, or using the Recap library.
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.swiftRead additional public API files in Sources/Recap/Public/ only if the task touches a specific type.
ReleasesParser(fileName:) for bundled release markdown.RecapScreen(releases:) as the entry point for presentation.RecapDisplayPolicy and RecapDisplayPolicy.Trigger over hand-rolled version gating..recapScreenPaginationStyle(.automatic) unless the user explicitly wants forced .labeled or .compact.View+Recap modifiers instead of editing internal implementation unless the task is explicitly a library change.When creating or editing a Recap releases markdown file:
README.md.Major, Minor, Patch) based on product impact, not commit count.Demo/Demo/Assets/Releases.md.If the task touches Mac Catalyst:
ReleasesParser is sufficient.RecapDisplayPolicy with custom version-comparison logic unless the user explicitly needs behavior outside the public API.tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.