Skip to main content
Back to the directory
affaan-m/everything-claude-codeSoftware EngineeringFrontend and Design

swift-actor-persistence

Thread-safe data persistence in Swift using actors with in-memory cache and file-backed storage.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
2

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/affaan-m/everything-claude-code --skill swift-actor-persistence
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of May 1, 2026, swift-actor-persistence has 2 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: affaan-m/everything-claude-code. Canonical URL: https://skills.sh/affaan-m/everything-claude-code/swift-actor-persistence.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Thread-safe data persistence in Swift using actors with in-memory cache and file-backed storage. Patterns for building thread-safe data persistence layers using Swift actors. Combines in-memory caching with file-backed storage, leveraging the actor model to eliminate data races at compile time. The actor model guarantees serialized access — no data races, enforced by the compiler. All calls are automatically async due to actor isolation: - Implements an actor-based repository pattern that eliminates data races at compile time, replacing manual synchronization with Swift's actor model - Combines fast O(1) in-memory lookups with atomic file persistence, supporting any Codable & Identifiable model type - Provides synchronous initialization to avoid async complexity, with automatic await enforcement on all public API calls - Designed for offline-first apps, local user data storage, and concurrent access patterns in iOS/macOS applications - Building a data persistence layer in Swift 5.5+ - Need thread-safe access to shared mutable state - Want to eliminate manual synchronization (locks, DispatchQueues) - Building offline-first apps with local storage - Use Sendable types for all data crossing actor boundaries - Keep the actor's public API minimal — only expose domain operations, not persistence details - Use .atomic writes to prevent data corruption if the app crashes mid-write -...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does swift-actor-persistence do?

Thread-safe data persistence in Swift using actors with in-memory cache and file-backed storage.

Is swift-actor-persistence good?

swift-actor-persistence does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support swift-actor-persistence?

swift-actor-persistence currently lists compatibility with Claude Code, Skills CLI.

Is swift-actor-persistence safe to install?

swift-actor-persistence has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to swift-actor-persistence?

Skills in the same category include review-management, conversation-memory, coverage, grimoire-aave.

How do I install swift-actor-persistence?

Run the following command to install swift-actor-persistence: npx skills add https://github.com/affaan-m/everything-claude-code --skill swift-actor-persistence

Related skills

More from affaan-m/everything-claude-code

Related skills

Alternatives in Software Engineering