← ClaudeAtlas

tipkitlisted

Route TipKit implementation tasks to the correct Knowledge Contracts -- tip declaration and content, display rules and event triggers, tip options and app configuration, and presenting tips/tip groups. Use when conforming a struct to Tip, setting title/message/image/actions, writing
caglarbaranbora/Apple-Agent-Kit · ★ 1 · AI & Automation · score 70
Install: claude install-skill caglarbaranbora/Apple-Agent-Kit
# TipKit — Foundations Skill ## Purpose Route TipKit implementation tasks to the minimum required TipKit Knowledge Contracts. v1 scope is in-app feature tips and onboarding hints on iOS 17+ -- declaring tip content, gating display with rules and donated events, one-time app configuration plus per-tip options, and presenting/grouping/dismissing tips -- not custom `TipViewStyle` authoring, not watchOS-specific presentation differences, and not CloudKit sync of the tip datastore. ## Routing Load only the contracts relevant to the task. All paths relative to knowledge/tipkit/. - Conforming a `struct` to `Tip`; implementing `title`/`message`/`image`; adding buttons via `actions`/`Tip.Action` -> tip-declaration-and-content.md - Writing the `rules` property with the `#Rule(_:)` macro over a `Tips.Parameter`-wrapped variable or a `Tips.Event`; donating with `sendDonation(_:)`/`donate()`; combining multiple rules -> display-rules-and-event-triggers.md - Calling `Tips.configure(_:)` at app launch; `datastoreLocation(_:)`/`displayFrequency(_:)`; per-tip `options` (`MaxDisplayCount`, `MaxDisplayDuration`, `IgnoresDisplayFrequency`) -> tip-options-and-app-configuration.md - Presenting with `TipView`/`popoverTip(_:arrowEdge:action:)`/`TipUIView`/`TipUIPopoverViewController`; grouping with `TipGroup`; dismissing with `invalidate(reason:)`/`Tip.InvalidationReason` -> presenting-tips-and-tip-groups.md Never load more than the contracts relevant to the specific question. ## Stop