Axiom provides battle-tested Claude Code skills for xOS development. It supports Swift 6, SwiftUI, Liquid Glass, and Apple Intelligence. Ideal for operations teams building or maintaining iOS, iPadOS, watchOS, and tvOS applications.
git clone https://github.com/CharlesWiltgen/Axiom.gitAxiom provides battle-tested Claude Code skills for xOS development. It supports Swift 6, SwiftUI, Liquid Glass, and Apple Intelligence. Ideal for operations teams building or maintaining iOS, iPadOS, watchOS, and tvOS applications.
1. Identify the specific feature or functionality you need to implement in your iOS app. 2. Use the prompt template to generate a Swift 6 code snippet with the desired functionality. 3. Review the generated code and make any necessary adjustments to fit your app's specific requirements. 4. Integrate the code into your existing project, ensuring it follows your app's architecture and design patterns. 5. Test the feature thoroughly to ensure it works as expected and follows best practices for performance and security.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/CharlesWiltgen/AxiomCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Generate a Swift 6 code snippet for a [FEATURE] in an iOS app using SwiftUI. The feature should include [SPECIFIC_FUNCTIONALITY] and be compatible with Apple Intelligence. Ensure the code follows best practices for performance and security. Provide a brief explanation of the implementation.
Here's a Swift 6 code snippet for a location-based reminder feature in an iOS app using SwiftUI and Apple Intelligence:
```swift
import SwiftUI
import CoreLocation
struct LocationReminderView: View {
@State private var locationManager = CLLocationManager()
@State private var reminders: [Reminder] = []
var body: some View {
List(reminders) { reminder in
VStack(alignment: .leading) {
Text(reminder.title)
.font(.headline)
Text(reminder.location)
.font(.subheadline)
Text(reminder.time)
.font(.caption)
}
}
.navigationTitle("Location Reminders")
.toolbar {
Button(action: {
// Add new reminder logic here
}) {
Image(systemName: "plus")
}
}
.onAppear {
locationManager.requestWhenInUseAuthorization()
locationManager.startUpdatingLocation()
}
}
}
struct Reminder: Identifiable {
let id = UUID()
var title: String
var location: String
var time: String
}
```
This code sets up a basic SwiftUI view for managing location-based reminders. The `CLLocationManager` is used to handle location services, and the view displays a list of reminders with their titles, locations, and times. The `onAppear` modifier requests location authorization and starts updating the location when the view appears. To add new reminders, you would implement the logic in the button action.Unlock data insights with interactive dashboards and collaborative analytics capabilities.
AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan