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 athitupakan/garmin-dev-skills --skill garmin-devgit clone --depth 1 https://github.com/athitupakan/garmin-dev-skillsWrote 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/athitupakan/garmin-dev-skills/garmin-dev)<a href="https://agentmods.dev/skills/athitupakan/garmin-dev-skills/garmin-dev"><img src="https://agentmods.dev/badge/skills/athitupakan/garmin-dev-skills/garmin-dev/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/athitupakan/garmin-dev-skills/garmin-dev"><img src="https://agentmods.dev/badge/skills/athitupakan/garmin-dev-skills/garmin-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00269 | $0.04334 |
| Opus 5 | $0.00134 | $0.02167 |
| Sonnet 5 | $0.00054 | $0.00867 |
| Haiku 4.5 | $0.00027 | $0.00433 |
Grade A, and why
garmin-dev 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 9d 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 — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.
garmin-dev
Cross-platform workflow for compiling, running, and packaging Connect IQ apps — plus a cached mirror of Garmin's official docs to ground every API / how-to answer in what the platform actually allows.
OS support: Windows (PowerShell 5.1+) · macOS (Bash, Apple Silicon + Intel) · Linux (Bash, Ubuntu LTS officially supported by Garmin)
How dispatch picks the right script
The skill ships parallel script sets — one per OS family. Detect OS first, then invoke the matching command:
| OS | Detect via | Script set |
|---|---|---|
| Windows | $env:OS = "Windows_NT" (or $PSVersionTable.Platform = "Win32NT") |
scripts/windows/*.ps1 |
| macOS | uname -s returns Darwin |
scripts/posix/*.sh |
| Linux | uname -s returns Linux |
scripts/posix/*.sh |
Every script auto-detects SDK + JDK at runtime — no per-machine path config needed. Every script reads manifest.xml from cwd for project name + device id, so always invoke from the project root (not from the skill folder).
Layout
scripts/
windows/ PowerShell — Windows
_env.ps1 shared: auto-detect SDK + JDK, parse manifest.xml
build.ps1 compile only (debug)
push.ps1 push existing .prg
run.ps1 sim + compile + push
watch.ps1 auto-rebuild on save
release.ps1 release-stripped build for one device
package.ps1 .iq package for all manifest products
posix/ Bash — macOS + Linux
_env.sh shared: OS-aware paths, JDK chain, manifest parse
build.sh, push.sh, run.sh, watch.sh, release.sh, package.sh
references/ all docs the skill consults
index.md map: what's where, when to open it
connect-iq-docs/ MIRROR of developer.garmin.com/connect-iq
reference/ sdk/api — version-pinned: api/ (Toybox) + monkey-c/ + reference-guides/
portal/ program/policy/concept docs: basics, core-topics, ux, faq, store rules
commands/ per-command behavior contract
guides/ task workflows (custom fonts, simulator data)
catalogs/ curated lookups (sensor catalog)
troubleshooting.md known errors + fixes
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/catalogs/index.md 429 B
- references/catalogs/sensors.md 6.4 KB
- references/commands/build.md 954 B
- references/commands/package.md 1.9 KB
- references/commands/push.md 960 B
- references/commands/release.md 2.0 KB
- references/commands/run.md 1.3 KB
- references/commands/watch.md 1.6 KB
- references/connect-iq-docs/_refresh/convert.js 6.6 KB runs code
- references/connect-iq-docs/_refresh/htmlmd.js 7.4 KB runs code
- references/connect-iq-docs/_refresh/README.md 2.8 KB
- references/connect-iq-docs/index.md 9.6 KB
- references/connect-iq-docs/portal/app-review-guidelines.md 20 KB
- references/connect-iq-docs/portal/connect-iq-basics/app-types.md 15 KB
- references/connect-iq-docs/portal/connect-iq-basics/getting-started.md 3.7 KB
- references/connect-iq-docs/portal/connect-iq-basics/index.md 1.0 KB
- references/connect-iq-docs/portal/connect-iq-basics/welcome-to-the-jungle.md 5.8 KB
- references/connect-iq-docs/portal/connect-iq-basics/your-first-app.md 4.3 KB
- references/connect-iq-docs/portal/core-topics/activity-control.md 957 B
- references/connect-iq-docs/portal/core-topics/activity-prompts.md 2.3 KB
- references/connect-iq-docs/portal/core-topics/activity-recording.md 9.4 KB
- references/connect-iq-docs/portal/core-topics/ant-and-ant-plus.md 8.1 KB
- references/connect-iq-docs/portal/core-topics/application-and-system-modules.md 9.3 KB
- references/connect-iq-docs/portal/core-topics/authenticated-web-services.md 3.7 KB
- references/connect-iq-docs/portal/core-topics/backgrounding.md 5.2 KB
- references/connect-iq-docs/portal/core-topics/beta-apps.md 1.1 KB
- references/connect-iq-docs/portal/core-topics/bluetooth-low-energy.md 5.0 KB
- references/connect-iq-docs/portal/core-topics/build-configuration.md 7.8 KB
- references/connect-iq-docs/portal/core-topics/communicating-with-mobile-apps.md 3.0 KB
- references/connect-iq-docs/portal/core-topics/complications.md 11 KB
- references/connect-iq-docs/portal/core-topics/debugging.md 7.2 KB
- references/connect-iq-docs/portal/core-topics/downloading-content.md 5.8 KB
- references/connect-iq-docs/portal/core-topics/editing-watch-faces-on-device.md 5.2 KB
- references/connect-iq-docs/portal/core-topics/exception-reporting-tool.md 3.7 KB
- references/connect-iq-docs/portal/core-topics/getting-the-users-attention.md 6.5 KB
- references/connect-iq-docs/portal/core-topics/glances.md 4.3 KB
- references/connect-iq-docs/portal/core-topics/graphics.md 11 KB
- references/connect-iq-docs/portal/core-topics/https.md 5.3 KB
- references/connect-iq-docs/portal/core-topics/index.md 4.0 KB
- references/connect-iq-docs/portal/core-topics/input-handling.md 10 KB
- references/connect-iq-docs/portal/core-topics/intents.md 2.8 KB
- references/connect-iq-docs/portal/core-topics/layouts.md 15 KB
- references/connect-iq-docs/portal/core-topics/manifest-and-permissions.md 8.8 KB
- references/connect-iq-docs/portal/core-topics/mobile-sdk-for-android.md 13 KB
- references/connect-iq-docs/portal/core-topics/mobile-sdk-for-ios.md 17 KB
- references/connect-iq-docs/portal/core-topics/monkey-style.md 2.5 KB
- references/connect-iq-docs/portal/core-topics/native-controls.md 25 KB
- references/connect-iq-docs/portal/core-topics/notifications.md 3.1 KB
- references/connect-iq-docs/portal/core-topics/pairing-wireless-devices.md 4.3 KB
- references/connect-iq-docs/portal/core-topics/persisting-data.md 6.7 KB
- references/connect-iq-docs/portal/core-topics/positioning.md 2.7 KB
- references/connect-iq-docs/portal/core-topics/profiling.md 2.7 KB
- references/connect-iq-docs/portal/core-topics/properties-and-app-settings.md 12 KB
- references/connect-iq-docs/portal/core-topics/publishing-to-the-store.md 4.7 KB
- references/connect-iq-docs/portal/core-topics/quantifying-the-user.md 7.7 KB
- references/connect-iq-docs/portal/core-topics/requesting-reviews.md 2.2 KB
- references/connect-iq-docs/portal/core-topics/resources.md 22 KB
- references/connect-iq-docs/portal/core-topics/security.md 3.1 KB
- references/connect-iq-docs/portal/core-topics/sensors.md 12 KB
- references/connect-iq-docs/portal/core-topics/shareable-libraries.md 9.0 KB
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.
- 9d ago First seen · 151 lines · 269 tokens per session scan A 91960cb2538b
garmin-dev is a skill published in the GitHub repository athitupakan/garmin-dev-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 269 tokens to every session and 4,334 once invoked, about $0.0013 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
lab-hardware-cad
Design custom laboratory hardware as parametric build123d models and export fabrication-ready STEP, STL, and DXF files - microfluidic chips and molds, optomechanical mounts and breadboard adapters, cuvette and microplate holders, tube racks, animal-behavior rigs, and 3D-printed instrument fixtures. Use when a research…
opentrons-integration
Author, review, migrate, simulate, and troubleshoot official Opentrons Python Protocol API v2 protocols for Flex and OT-2 robots. Use for robot-specific liquid handling, deck and labware setup, pipettes, modules, runtime parameters, liquid classes, and Opentrons App analysis. Use pylabrobot instead when one workflow…
pylabrobot
Develop and review PyLabRobot lab-automation resources, liquid-handling plans, offline simulations, and supported-device integrations. Use for PyLabRobot protocols or API questions; keep physical execution behind an explicit operator safety gate.
embedded-systems
Use when developing firmware for microcontrollers, implementing RTOS applications, or optimizing power consumption. Invoke for STM32, ESP32, FreeRTOS, bare-metal, power optimization, real-time systems, configure peripherals, write interrupt handlers, implement DMA transfers, debug timing issues.
offensive-wifi
Wireless / 802.11 attack methodology for red team engagements and wireless security assessments. Covers monitor-mode setup, WPA/WPA2-PSK handshake capture and PMKID attacks, WPA3 SAE downgrade and Dragonblood, WPA-Enterprise (EAP) attacks (MSCHAPv2 cracking, EAP-TLS cert theft, evil-twin RADIUS), Karma / Known Beacons…
offensive-lorawan-sub-ghz
LoRaWAN and sub-GHz (433 / 868 / 915 MHz) attack methodology — LoRaWAN ABP/OTAA join attack, network/session key reuse, frame counter replay, downlink injection on TTN/Helium-style networks, sub-GHz protocol replay (KeeLoq garage doors, fixed-code remotes, TPMS spoofing, smart plug telemetry), HackRF / RTL-SDR /…