axiom-mapkit-ref

axiom-mapkit-ref is a skill for Claude Code, Codex from ComeOnOliver/skillshub. It costs 51 tokens per session (6,125 once invoked), scanned A, original, MIT.

A reference for Apple MapKit APIs used to show maps, pins, routes, places, overlays, user locations, and map snapshots in iOS apps.

In plain words
What is it for?
Use it when adding or looking up code for annotations, search, directions, clustering, geocoding, Look Around, and map rendering.
Why use it?
It puts the SwiftUI Map and older UIKit MKMapView approaches, along with their related APIs, in one place.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it when adding or looking up code for annotations, search, directions, clustering, geocoding, Look Around, and map rendering.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/comeonoliver/skillshub/axiom-mapkit-ref
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ComeOnOliver/skillshub --skill axiom-mapkit-ref
Clone the repo
git clone --depth 1 https://github.com/ComeOnOliver/skillshub

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for axiom-mapkit-ref

README.md
[![agentmods](https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-mapkit-ref/github.svg)](https://agentmods.dev/skills/comeonoliver/skillshub/axiom-mapkit-ref)
Your own site
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-mapkit-ref"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-mapkit-ref/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for axiom-mapkit-ref

Your own site · 80×15
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-mapkit-ref"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-mapkit-ref.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,125 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.06125
Opus 5 $0.00026 $0.03062
Sonnet 5 $0.00010 $0.01225
Haiku 4.5 $0.00005 $0.00613

Measured 6d ago against content hash 955a856f2912, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

axiom-mapkit-ref scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/CharlesWiltgen/Axiom/axiom-mapkit-ref/SKILL.md · 917 lines

How it starts

The opening of the file, as written. The whole thing — 917 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MapKit API Reference

Complete MapKit API reference for iOS development. Covers both SwiftUI Map (iOS 17+) and MKMapView (UIKit).

  • axiom-mapkit — Decision trees, anti-patterns, pressure scenarios
  • axiom-mapkit-diag — Symptom-based troubleshooting

Part 1: Modern API Overview

Feature SwiftUI Map (iOS 17+) MKMapView
Declaration Map(position:) { content } MKMapView()
Camera control MapCameraPosition binding setRegion(_:animated:)
Annotations Marker, Annotation in content addAnnotation(_:) + delegate
Overlays MapCircle, MapPolyline, MapPolygon addOverlay(_:) + renderer delegate
User location UserAnnotation() showsUserLocation = true
Selection .mapSelection($selection) delegate didSelect
Controls .mapControls { } showsCompass, showsScale
Interaction modes .mapInteractionModes([]) delegate methods
Clustering Built-in via .mapItemClusteringIdentifier MKClusterAnnotation

Part 2: SwiftUI Map API

Basic Map

@State private var cameraPosition: MapCameraPosition = .automatic

Map(position: $cameraPosition) {
    Marker("Home", coordinate: homeCoord)
    Annotation("Custom", coordinate: coord) {
        Image(systemName: "star.fill")
            .foregroundStyle(.yellow)
            .padding(4)
            .background(.blue, in: Circle())
    }
    UserAnnotation()
    MapCircle(center: coord, radius: 500)
        .foregroundStyle(.blue.opacity(0.3))
    MapPolyline(coordinates: routeCoords)
        .stroke(.blue, lineWidth: 3)
}
.mapStyle(.standard(elevation: .realistic))
.mapControls {
    MapUserLocationButton()
    MapCompass()
    MapScaleView()
}

MapCameraPosition

Controls where the camera is positioned:

// System manages camera to show all content
.automatic

// Specific region
.region(MKCoordinateRegion(
    center: CLLocationCoordinate2D(latitude: 37.7749, longitude: -122.4194),
    span: MKCoordinateSpan(latitudeDelta: 0.05, longitudeDelta: 0.05)
))

// Specific camera with pitch and heading
.camera(MapCamera(
    centerCoordinate: coordinate,
    distance: 1000,    // meters from center
    heading: 90,       // degrees from north
    pitch: 60          // degrees from vertical (0 = top-down)
))

// Follow user location
.userLocation(followsHeading: true, fallback: .automatic)

// Show specific item
.item(mapItem)

// Show specific rect
.rect(MKMapRect(...))

Read the full file on GitHub · 917 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 917 lines · 51 tokens per session scan A 955a856f2912

Subscribe to this mod's changes

axiom-mapkit-ref is a skill published in the GitHub repository ComeOnOliver/skillshub (63 stars, last pushed 2mo ago), licensed MIT. It adds 51 tokens to every session and 6,125 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories