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.
npx skills add seandkendall/kiro-config --skill amazon-location-servicegit clone --depth 1 https://github.com/seandkendall/kiro-configWrote 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.
[](https://agentmods.dev/skills/seandkendall/kiro-config/amazon-location-service)<a href="https://agentmods.dev/skills/seandkendall/kiro-config/amazon-location-service"><img src="https://agentmods.dev/badge/skills/seandkendall/kiro-config/amazon-location-service/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.
<a href="https://agentmods.dev/skills/seandkendall/kiro-config/amazon-location-service"><img src="https://agentmods.dev/badge/skills/seandkendall/kiro-config/amazon-location-service.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00020 | $0.02184 |
| Opus 5 | $0.00010 | $0.01092 |
| Sonnet 5 | $0.00004 | $0.00437 |
| Haiku 4.5 | $0.00002 | $0.00218 |
Grade A, and why
amazon-location-service 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 304 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Amazon Location Service
Overview
Amazon Location Service provides maps, routing, geofencing, geocoding, and tracking — all AWS-native, cost-effective, and privacy-preserving. It uses HERE and Esri as data providers under the hood.
Core Capabilities for Navigation Apps
| Feature | API | Use Case |
|---|---|---|
| Route Calculation | CalculateRoute | Turn-by-turn directions with traffic |
| Geofencing | CreateGeofenceCollection + PutGeofence | Trigger podcast content at locations |
| Geocoding | SearchPlaceIndex | Convert addresses to coordinates |
| Reverse Geocoding | SearchPlaceIndex | Convert coordinates to addresses |
| Place Search | SearchPlaceIndex | Find POIs (restaurants, gas, etc.) |
| Tracking | CreateTracker + BatchUpdateDevicePosition | Track driver position |
| Maps | GetMapTile | Map display (if not using MapKit) |
Route Calculation
Basic Route
import boto3
location = boto3.client('location', region_name='us-east-1')
response = location.calculate_route(
CalculatorName='RoadCastRouteCalculator',
DeparturePosition=[-114.0719, 51.0447], # Calgary [lng, lat]
DestinationPosition=[-115.5708, 51.1784], # Banff [lng, lat]
WaypointPositions=[
[-114.4632, 51.0486], # Cochrane
],
IncludeLegGeometry=True,
TravelMode='Car',
DepartNow=True,
CarModeOptions={
'AvoidFerries': False,
'AvoidTolls': False
}
)
# Response includes:
# - Legs[].Steps[] (turn-by-turn instructions)
# - Legs[].Geometry.LineString (polyline for map)
# - Summary.Distance, Summary.DurationSeconds
# - Summary.DataSource (HERE or Esri)
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.
- 11d ago First seen · 304 lines · 20 tokens per session scan A 884369fbf7be
amazon-location-service is a skill published in the GitHub repository seandkendall/kiro-config (8 stars, last pushed today), licensed Apache-2.0. It adds 20 tokens to every session and 2,184 once invoked, about $0.0001 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-08-31.
Other skills, from other repositories
aws-lambda-typescript
AWS Lambda development with TypeScript. Use when writing Lambda handlers, bundling with esbuild, using AWS SDK v3/Powertools, strict typing or optimizing Node.js Lambda performance.
aws-architecture
AWS architecture decisions, serverless patterns, event-driven design, service boundaries and Well-Architected Framework. Use when designing system architecture or making infrastructure tradeoffs.
aws-api
AWS API design, implementation and integration patterns. Use when creating or modifying API Gateway endpoints, OpenAPI contracts, authentication, error handling or event integrations.
offline-first
Implement offline-first architecture with local storage, sync strategies, and conflict resolution. Use when building apps that must work without network connectivity.
eks-ingress-migration
Assess a live EKS cluster's NGINX/Ingress estate and plan migration to Gateway API, the AWS Load Balancer Controller (ALB Ingress), or AWS Transform (ATX). Discovers ingress controllers and routes, scores migration difficulty 0–100 with a separate re-architecture gate, and generates per-cluster reports plus…
sandy-cli
Run TypeScript scripts in sandboxed microVMs or Docker containers with AWS SDK access via IMDS, through the sandy CLI. Use when investigating AWS resources, running read-only queries, or executing TypeScript automation that needs AWS credentials via shell commands.