Prefer a `struct` for a value type with independent copies and no need for identity or inheritance: ```swift struct Point { var x: Double; var y: Double } ``` Use a `class` when instances must be shared by reference, have identity or lifecycle semantics, or require inheritance: ```swift final class Session { var token: String; init(token: String) { self.token = token } } ``` Structs are copied on assignment; class instances are shared. Keep properties immutable with `let` when possible and ma...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill swift-language --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Swift Language?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-swift-language-935ecc79)More formats (shields.io, HTML) on the badges page.
Prefer a `struct` for a value type with independent copies and no need for identity or inheritance:
```swift
struct Point { var x: Double; var y: Double }
```
Use a `class` when instances must be shared by reference, have identity or lifecycle semantics, or require inheritance:
```swift
final class Session { var token: String; init(token: String) { self.token = token } }
```
Structs are copied on assignment; class instances are shared. Keep properties immutable with `let` when possible and mark non-subclassable classes `final`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.