Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

tracking-pettracer-location跟踪宠物追踪器位置

Agent Skill

tracking-pettracer-location 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,344

周安装

56

GitHub Stars

公开资料未说明

下载量

448
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tracking-pettracer-location(跟踪宠物追踪器位置)
来源仓库:https://github.com/tristanmanchester/agent-skills
仓库路径:skills/tracking-pettracer-location
安装命令:
npx skills add https://github.com/tristanmanchester/agent-skills --skill tracking-pettracer-location
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tristanmanchester/agent-skills --skill tracking-pettracer-location

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装命令:npx skills add https://github.com/tristanmanchester/agent-skills --skill tracking-pettracer-location
  • 建议确认权限范围和是否执行命令后再使用

SKILL.md

Tracking PetTracer pet location

Why this exists

PetTracer exposes an (unofficial) web portal API used by their apps/website. This skill gives a reliable, low-drama workflow for:

  • Current location (latest known point)
  • Recent route/history (time-windowed points)
  • Near-real-time updates (WebSocket push, optional)

It is designed to minimise API load (be respectful) and to produce consistent, copy/paste-friendly outputs.

Quick start

Snapshot location (recommended default)

  1. Set credentials (prefer env vars, not CLI args):
export PETTRACER_USERNAME="you@example.com"
export PETTRACER_PASSWORD="••••••••"
  1. List devices:
python scripts/pettracer_cli.py list --format json --pretty
  1. Locate a pet:
  • By name:
python scripts/pettracer_cli.py locate --pet "Fluffy" --format json --pretty
  • By id:
python scripts/pettracer_cli.py locate --device-id 12345 --format json --pretty
  • If the account has exactly one collar, you can omit --pet/--device-id:
python scripts/pettracer_cli.py locate --format json --pretty

Get location history (last 6 hours)

python scripts/pettracer_cli.py history --pet "Fluffy" --hours 6 --format json --pretty

Core workflow the agent should follow

1) Decide: snapshot vs history vs live updates

  • Snapshot: user asks “where is X right now?” → use locate.
  • History: user asks “where has X been today/last hour?” → use history.
  • Live: user wants continuous updates → use WebSocket (see references/websocket.md).

Default to snapshot unless the user explicitly wants a route or live tracking.

2) Authenticate safely

Preferred order:

  1. Use PETTRACER_TOKEN if already available.
  2. Else login with PETTRACER_USERNAME + PETTRACER_PASSWORD (or PETTRACER_EMAIL).

Never ask the user to paste tokens into chat. Ask them to set env vars or store secrets in their vault.

Optional overrides (useful for debugging / future-proofing):

  • PETTRACER_API_BASE (REST base; default https://portal.pettracer.com/api)
  • PETTRACER_WS_BASE (WebSocket base; default wss://pt.pettracer.com/sc)

3) Identify the right device

  • Fetch devices via GET /api/map/getccs (wrapped by pettracer_cli.py list).
  • Match by details.name case-insensitively.
  • If multiple matches: show a disambiguation list (id + name) and ask the user which one.
  • If no match: show available device names.
  • If the account has exactly one collar, you can default to it.

4) Fetch location data

  • Current location comes from device.lastPos (collars) or top-level posLat/posLong (HomeStations):

- posLat, posLong - timeMeasure (timestamp) - acc (accuracy, metres) or horiPrec (fallback)

  • History uses POST /api/map/getccpositions with:

- devId, filterTime (ms), toTime (ms)

See references/endpoints.md and references/data-model.md.

5) Present results consistently

When reporting location, include:

  • Pet name + device id
  • Coordinates (lat, lon)
  • Last update time
  • Accuracy (if present)
  • How old the fix is (seconds/minutes since last fix), if possible
  • Optional: a map link (Google Maps + OpenStreetMap)

Preferred JSON shape (for tool-to-tool handoff):

{
  "pet": { "id": 12345, "name": "Fluffy" },
  "last_fix": {
    "lat": 48.137154,
    "lon": 11.576124,
    "time": "2026-02-25T12:34:56+00:00",
    "accuracy_m": 12
  },
  "last_fix_age_s": 90,
  "battery_mv": 4012,
  "battery_percent_est": 78,
  "home": false,
  "links": {
    "google_maps": "https://www.google.com/maps?q=48.137154,11.576124",
    "openstreetmap": "https://www.openstreetmap.org/?mlat=48.137154&mlon=11.576124#map=18/48.137154/11.576124"
  }
}

Notes:

  • battery_percent_est is an estimate derived from voltage (PetTracer reports millivolts, not %).
  • If there’s no GPS fix, report error=no_recent_fix and include last_contact.

Live tracking (optional, avoid aggressive polling)

If you need frequent updates:

  • Prefer WebSocket push (avoid aggressive polling).
  • Only fall back to polling if WebSocket is not possible; keep polling ≥ 60s by default.

Install dependency:

pip install aiohttp

Then run:

python scripts/pettracer_watch.py --pet "Fluffy"

See:

Troubleshooting playbook

No location / lastPos is missing

Common reasons:

  • Collar hasn’t reported a GPS fix recently (indoors, low signal).
  • Battery low / collar off.
  • Subscription expired.

Action:

  • Report “no recent fix” and show lastContact if available.
  • Suggest switching to a higher-frequency mode (Fast/Live) in the PetTracer app/portal only if the user asks (see references/modes.md).

Auth failures (401 / invalid_auth)

  • Re-login to obtain a fresh access_token.
  • Confirm the login payload uses keys login + password (not username).

Rate limiting / service respect

  • Avoid tight loops against /map/getccs.
  • Prefer WebSocket for near-real-time tracking.

THE EXACT PROMPT — Location response format

Use this when the user wants a human-readable answer:

Give the pet’s latest known PetTracer location.

Include:
- Pet name + device id
- Time of last fix (and last contact if different)
- Coordinates + map link(s)
- Accuracy (metres) if present
- One-line assessment: “recent fix” vs “stale fix” (use last_fix_age_s if available; interpret in the context of the current tracking mode)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.56%
按下载量换算164

Claude

30%
按下载量换算134

Cursor

21.17%
按下载量换算95

Gemini CLI

9.96%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills