Agent skill

spritekit

Build 2D games and animations using SpriteKit. Use when creating game scenes with SKScene and SKView, adding sprites with SKSpriteNode, animating with SKAction sequences, simulating physics with SKPhysicsBody and contact detection, creating particle effects with SKEmitterNode, building tile maps, using SKCameraNode, or integrating SpriteKit scenes in SwiftUI with SpriteView.

Derek Pearson935★ · +23/wk · 1 repos on radarProfile →
claude-codecodexcursorNOASSERTION
Install
npx skills add dpearson2699/swift-ios-skills --skill spritekit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 15 KB
Bundled scripts: none
Path: skills/spritekit/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 963 · +28 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# SpriteKit Build 2D games and interactive animations for iOS 26+ using SpriteKit and Swift 6.3. Covers scene lifecycle, node hierarchy, actions, physics, particles, camera, touch handling, and SwiftUI integration. ## Contents - [Scene Setup](#scene-setup) - [Nodes and Sprites](#nodes-and-sprites) - [Actions and Animation](#actions-and-animation) - [Physics](#physics) - [Touch Handling](#touch-handling) - [Camera](#camera) - [Particle Effects](#particle-effects) - [SwiftUI Integration](#swiftui-integration) - [Common Mistakes](#common-mistakes) - [Review Checklist](#review-checklist) - [References](#references) ## Scene Setup SpriteKit renders content through `SKView`, which presents an `SKScene` -- the root node of a tree that the framework animates and renders each frame. ### Creating a Scene Subclass `SKScene` and override lifecycle methods. The coordinate system origin is at the bottom-left by default. ```swift import SpriteKit final class GameScene: SKScene { override func didMove(to view: SKView) { backgroundColor = .darkGray physicsWorld.contactDelegate = self physicsBody = SKPhysicsBody(edgeLoopFrom: frame) setupNodes() } override func update(_ currentTime: TimeInterval) {

What's inside
Steps it walks through
  1. Contents
  2. Scene Setup
  3. Creating a Scene
  4. Presenting a Scene (UIKit)
  5. Scale Modes
  6. Frame Cycle
  7. Nodes and Sprites
  8. Common Node Types
  9. Creating Sprites
  10. Drawing Order
  11. Naming and Searching
  12. Actions and Animation
  13. Basic Actions
  14. Combining Actions
Ships with 2 files
  • evals/evals.json
  • references/spritekit-patterns.md
More from swift-ios-skills
All skills →
About this skill
What does the spritekit skill do?

Build 2D games and animations using SpriteKit. Use when creating game scenes with SKScene and SKView, adding sprites with SKSpriteNode, animating with SKAction sequences, simulating physics with SKPhysicsBody and contact detection, creating particle effects with SKEmitterNode, building tile maps, using SKCameraNode, or integrating SpriteKit scenes in SwiftUI with SpriteView.

How do I install it?

Run `npx skills add dpearson2699/swift-ios-skills --skill spritekit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From dpearson2699/swift-ios-skills, a repository with 963 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going