← 返回 Skills 市场
nftechie

Garmin Skill

作者 nftechie · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
894
总下载
2
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install garmin-skill
功能描述
Talk to your Garmin data — ask questions about your activities, training load, VO2 Max, heart rate zones, and more using AI.
使用说明 (SKILL.md)

Garmin Skill

Chat with your Garmin Connect data using AI. Ask about your runs, rides, swims, training load, VO2 Max, heart rate zones, and performance trends. Powered by Transition, which syncs with Garmin Connect to give AI agents access to your training data.

Setup

  1. Download Transition and connect your Garmin account
  2. Go to Settings > API Keys and tap Generate New Key
  3. Set the environment variable:
export TRANSITION_API_KEY="tr_live_xxxxxxxxxxxxxxxxxxxxx"

No Auth Required

Workout of the Day

Generate a random structured workout — no account needed.

curl "https://api.transition.fun/api/v1/wod?sport=run&duration=45"

Parameters:

  • sportrun, bike, swim, or strength (default: run)
  • duration — minutes, 10-300 (default: 45)

Authenticated Endpoints

Base URL: https://api.transition.fun Auth: Pass X-API-Key header on every request.

AI Coach Chat

Ask questions about your Garmin data. The AI coach has full context on your activities, training load, and performance.

curl -X POST -H "X-API-Key: $TRANSITION_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"message": "How has my running volume changed this month compared to last?"}' \
  "https://api.transition.fun/api/v1/coach/chat"

Example questions:

  • "What was my longest run this week?"
  • "How is my VO2 Max trending?"
  • "Am I overtraining based on my recent Garmin data?"
  • "Compare my cycling power this month vs last month"
  • "What does my heart rate data say about my fitness?"

Get Workouts

Retrieve scheduled workouts for a date range.

curl -H "X-API-Key: $TRANSITION_API_KEY" \
  "https://api.transition.fun/api/v1/workouts?start=2026-02-09&end=2026-02-15"

Parameters:

  • start — Start date (YYYY-MM-DD, required)
  • end — End date (YYYY-MM-DD, required)
  • Maximum range between start and end is 90 days.

Performance Management Chart (PMC)

Get CTL (fitness), ATL (fatigue), and TSB (form) calculated from your Garmin activities.

curl -H "X-API-Key: $TRANSITION_API_KEY" \
  "https://api.transition.fun/api/v1/performance/pmc"

Performance Stats

Get FTP, threshold paces, heart rate zones, and other metrics derived from your Garmin data.

curl -H "X-API-Key: $TRANSITION_API_KEY" \
  "https://api.transition.fun/api/v1/performance/stats"

Athlete Profile

curl -H "X-API-Key: $TRANSITION_API_KEY" \
  "https://api.transition.fun/api/v1/profile"

Chat History

curl -H "X-API-Key: $TRANSITION_API_KEY" \
  "https://api.transition.fun/api/v1/coach/history"

Push Workout to Garmin

Send a scheduled workout directly to your Garmin device.

curl -X POST -H "X-API-Key: $TRANSITION_API_KEY" \
  "https://api.transition.fun/api/v1/workouts/123/push-garmin"

Rate Limits

Tier Read Endpoints AI Endpoints
Free 100/day 3/day
Paid 10,000/day 100/day

Tips for Agents

  1. Use coach chat as the primary interface. It has full context on the user's Garmin activities, training load, and performance — just ask natural questions.

  2. Check fatigue before recommending hard workouts. Call GET /api/v1/performance/pmc and look at TSB. If TSB is below -20, the athlete is fatigued.

  3. Use the free WOD endpoint for quick workouts. No auth needed — great for users who just want a workout suggestion.

  4. Date format is always YYYY-MM-DD for all date parameters.

安全使用建议
This skill asks you to generate a TRANSITION_API_KEY and will send your Garmin Connect data to https://api.transition.fun. Before installing: (1) Verify you trust Transition (read its privacy policy and confirm how long it stores/export access); (2) ask the skill publisher to update the registry metadata to declare TRANSITION_API_KEY as a required credential (metadata currently lists none); (3) treat the API key like a password — generate it in your Transition account, restrict or revoke it if you stop using the skill, and do not paste it into public places; (4) if you only want one-off workouts, use the unauthenticated WOD endpoint instead of granting full access; (5) if provenance matters, verify the skill's source repository and publisher identity (the registry owner ID and homepage are not authoritative on their own). If you cannot verify the provider or get corrected metadata, consider this suspicious and avoid installing.
功能分析
Type: OpenClaw Skill Name: garmin-skill Version: 1.0.0 The skill bundle is benign. All network calls are directed to the legitimate `api.transition.fun` domain, consistent with the stated purpose of interacting with Garmin data via the Transition API. The `TRANSITION_API_KEY` is used appropriately for authentication and there are no instructions for data exfiltration, malicious execution (e.g., `curl|bash`), persistence, or obfuscation. The instructions in `SKILL.md` for the AI agent are functional and guide the agent on how to use the API effectively, without any evidence of prompt injection attempting to subvert the agent's behavior or access unrelated sensitive data.
能力评估
Purpose & Capability
The skill claims to let an agent query your Garmin data via Transition, which reasonably requires a TRANSITION_API_KEY. However, the registry metadata lists no required environment variables or primary credential. That mismatch (metadata says 'none' but SKILL.md instructs users to set TRANSITION_API_KEY) is an incoherence and makes it harder to audit or enforce least privilege.
Instruction Scope
SKILL.md only documents HTTP calls to https://api.transition.fun and a free WOD endpoint; it does not instruct reading local files or other system state. However, it does direct agents to use an API key that grants 'full context' on the user's Garmin activities — this means personal fitness data will be sent to an external service. The instructions are otherwise concrete and not open-ended, but the privacy/exfiltration risk (sending all Garmin data to transition.fun) should be considered.
Install Mechanism
There is no install spec and no code files beyond README and SKILL.md (instruction-only). That lowers installation risk: nothing is downloaded or written to disk by the skill itself. README suggests an optional git clone of a public repo, which is normal but not enforced by the registry.
Credentials
The runtime requires a TRANSITION_API_KEY (documented in SKILL.md and README) but the skill metadata does not declare any required environment variables or a primary credential. Requiring a single API key for the external service is proportionate to the feature set, but the metadata omission is a governance/privacy gap. Also note that the API key appears to grant access to all synced Garmin data, which is sensitive personal information.
Persistence & Privilege
The skill does not request always:true, does not include install scripts, and will not be force-enabled by the platform. It relies on an external API and an API key provided by the user; it does not request elevated platform privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install garmin-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /garmin-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the garmin-skill — connect and chat with your Garmin data using AI. - Chat with your Garmin training data to analyze workouts, trends, VO2 Max, heart rate zones, and more. - Includes open, no-auth "Workout of the Day" endpoint for generating random structured workouts. - Supports authenticated AI coach chat, performance metrics, and chart endpoints. - Retrieve athlete profile, workout schedule, and push workouts to Garmin. - Clear setup instructions and usage examples provided. - Tiered API rate limits: Free and Paid.
元数据
Slug garmin-skill
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Garmin Skill 是什么?

Talk to your Garmin data — ask questions about your activities, training load, VO2 Max, heart rate zones, and more using AI. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 894 次。

如何安装 Garmin Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install garmin-skill」即可一键安装,无需额外配置。

Garmin Skill 是免费的吗?

是的,Garmin Skill 完全免费(开源免费),可自由下载、安装和使用。

Garmin Skill 支持哪些平台?

Garmin Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Garmin Skill?

由 nftechie(@nftechie)开发并维护,当前版本 v1.0.0。

💬 留言讨论