$22
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionswiftui-animationExecute the skills CLI command in your project's root directory to begin installation:
Fetches swiftui-animation from dpearson2699/swift-ios-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate swiftui-animation. Access via /swiftui-animation in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
372
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
372
stars
Review, write, and fix SwiftUI animations. Apply modern animation APIs with correct timing, transitions, and accessibility handling using Swift 6.3 patterns.
| Category | API | When to use |
|---|---|---|
| State-driven | withAnimation, .animation(_:body:), .animation(_:value:) |
Explicit state changes, selective modifier animation, or simple value-bound changes |
| Multi-phase | PhaseAnimator |
Sequenced multi-step animations |
| Keyframe | KeyframeAnimator |
Complex multi-property choreography |
| Shared element | matchedGeometryEffect |
Layout-driven hero transitions |
| Navigation | matchedTransitionSource + .navigationTransition(.zoom) |
NavigationStack push/pop zoom |
| View lifecycle | .transition() |
Insertion and removal |
| Text content | .contentTransition() |
In-place text/number changes |
| Symbol | .symbolEffect() |
SF Symbol animations |
| Custom | CustomAnimation protocol |
Novel timing curves |
// Timing curves
.linear // constant speed
.easeIn(duration: 0.3) // slow start
.easeOut(duration: 0.3) // slow end
.easeInOut(duration: 0.3) // slow start and end
// Spring presets (preferred for natural motion)
.smooth // no bounce, fluid
.smooth(duration: 0.5, extraBounce: 0.0)
.snappy // small bounce, responsive
.snappy(duration: 0.4, extraBounce: 0.1)
.bouncy // visible bounce, playful
.bouncy(duration: 0.5, extraBounce: 0.2)
// Custom spring
.spring(duration: 0.5, bounce: 0.3, blendDuration: 0.0)
.spring(Spring(duration: 0.6, bounce: 0.2), blendDuration: 0.0)
.interactiveSpring(response: 0.15, dampingFraction: 0.86)
withAnimation(.spring) { isExpanded.toggle() }
// With completion (iOS 17+)
withAnimation(.smooth(duration: 0.35), completionCriteria: .logicallyComplete) {
isExpanded = true
} completion: { loadContent() }
Prefer .animation(_:body:) when only specific modifiers should animate.
Use .animation(_:value:) for simple value-bound changes that can animate the
view's animatable modifiers together.
Badge()
.foregroundStyle(isActive ? .green : .secondary)
.animation(.snappy) { content in
content
.scaleEffect(isActive ? 1.15 : 1.0)
.opacity(isActive ? 1.0 : 0.7)
}
Circle()
.scaleEffect(isActive ? 1.2 : 1.0)
.opacity(isActive ? 1.0 : 0.6)
.animation(.bouncy, value: isActive)
Four initializer forms for different mental models.
// Perceptual (preferred)
Spring(duration: 0.5, bounce: 0.3)
// Physical
Spring(mass: 1.0, stiffness: 100.0, damping: 10.0)
// Response-based
Spring(response: 0.5, dampingRatio: 0.7)
// Settling-based
Spring(settlingDuration: 1.0, dampingRatio: 0.8)
Three presets mirror Animation presets: .smooth, .snappy, .bouncy.
Cycle through discrete phases with per-phase animation curves.
enum PulsePhase: CaseIterable {
case idle, grow, shrink
}
struct PulsingDot: View {
var body: some View {
PhaseAnimator(PulsePhase.allCases) { phase in
Circle()
.frame(width: 40, height: 40)
.scaleEffect(phase == .grow ? 1.4 : 1.0)
.opacity(phase == .shrink ? 0.5 : 1.0)
} animation: { phase in
switch phase {
case .idle: .easeIn(duration: 0.2)
case .grow: .spring(duration: 0.4, bounce: 0.3)
case .shrink: .easeOut(duration: 0.3)
}
}
}
}
Trigger-based variant runs one cycle per trigger change:
PhaseAnimator(PulsePhase.allCases, trigger: tapCount) { phase in
// ...
} animation: { _ in .spring(duration: 0.4) }
Animate multiple properties along independent timelines.
struct AnimValues {
var scale: Double = 1.0
var yOffset: Double = 0.0
var opacity: Double = 1.0
}
struct BounceView: View {
@State private Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
ui-animation
235mblode/agent-skills
Frontendtag: animationtext-to-lottie
96diffusionstudio/lottie
designtag: animationfrontend-design
647anthropics/claude-code
Frontendsame categorypremium-frontend-ui
232github/awesome-copilot
Frontendsame categoryantigravity-design-expert
199sickn33/antigravity-awesome-skills
Frontendsame categoryhigh-end-visual-design
188leonxlnx/taste-skill
Frontendsame categoryReviews
4.8★★★★★75 reviews- KKiara Lopez★★★★★Dec 20, 2024
Solid pick for teams standardizing on skills: swiftui-animation is focused, and the summary matches what you get after install.
- BBenjamin Malhotra★★★★★Dec 16, 2024
swiftui-animation is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- HHiroshi Haddad★★★★★Dec 8, 2024
Solid pick for teams standardizing on skills: swiftui-animation is focused, and the summary matches what you get after install.
- MMaya Robinson★★★★★Nov 27, 2024
I recommend swiftui-animation for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- BBenjamin Bansal★★★★★Nov 11, 2024
I recommend swiftui-animation for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- IIsabella Huang★★★★★Nov 7, 2024
Keeps context tight: swiftui-animation is the kind of skill you can hand to a new teammate without a long onboarding doc.
- MMia Khan★★★★★Oct 26, 2024
I recommend swiftui-animation for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- KKiara Abebe★★★★★Oct 18, 2024
Keeps context tight: swiftui-animation is the kind of skill you can hand to a new teammate without a long onboarding doc.
- OOmar Harris★★★★★Oct 2, 2024
Keeps context tight: swiftui-animation is the kind of skill you can hand to a new teammate without a long onboarding doc.
- MMaya Choi★★★★★Sep 25, 2024
Registry listing for swiftui-animation matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 75
1 / 8Discussion
Comments — not star reviews- No comments yet — start the thread.