Guide

Installation

Adding KelyphosKit to your Swift package or Xcode project
Properties3
Is BaseNo
Iconi-lucide-download
Order10

Requirements

  • macOS 26 (Tahoe) / iPadOS 26 or later
  • Xcode 26 or later
  • Swift 6.2

Swift Package Manager

Add KelyphosKit to your Package.swift:

dependencies: [
    .package(url: "https://github.com/jwintz/kelyphos", from: "0.1.0")
],
targets: [
    .target(
        name: "MyApp",
        dependencies: [
            .product(name: "KelyphosKit", package: "kelyphos")
        ]
    )
]

Xcode Project

If you use XcodeGen, add to your project.yml:

packages:
  Kelyphos:
    url: https://github.com/jwintz/kelyphos
    from: 0.1.0

targets:
  MyApp:
    dependencies:
      - package: Kelyphos
        product: KelyphosKit

Building the Demo App

Clone and build the included HIG showcase:

git clone https://github.com/jwintz/kelyphos
cd kelyphos
swift run KelyphosDemo

Next Steps