pokemon-go-mcp: Skill for Claude Code

.claude/skills/get-time/SKILL.md

get-time is a skill for Claude Code from GhostTypes/pokemon-go-mcp. It costs 50 tokens per session (676 once invoked), scanned A, original, MIT.

A skill that provides the current local time or date in selected formats and time zones.

In plain words
What is it for?
Use it when you need a formatted time, date, date-time, ISO timestamp, or Unix timestamp for a local or specified time zone.
Why use it?
It removes the need to manually convert times or construct timestamps, especially when the computer’s automatic time-zone detection is unreliable.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Claude Code.

This is GhostTypes/pokemon-go-mcp's own configuration. It tells Claude Code how to work on pokemon-go-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything pokemon-go-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to GhostTypes/pokemon-go-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/GhostTypes/pokemon-go-mcp/main/.claude/skills/get-time/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/GhostTypes/pokemon-go-mcp

Made for: Claude Code.

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 get-time

README.md
[![agentmods](https://agentmods.dev/badge/skills/ghosttypes/pokemon-go-mcp/get-time.svg)](https://agentmods.dev/skills/ghosttypes/pokemon-go-mcp/get-time)
Your own site
<a href="https://agentmods.dev/skills/ghosttypes/pokemon-go-mcp/get-time"><img src="https://agentmods.dev/badge/skills/ghosttypes/pokemon-go-mcp/get-time.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 676 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00050 $0.00676
Opus 5 $0.00025 $0.00338
Sonnet 5 $0.00010 $0.00135
Haiku 4.5 $0.00005 $0.00068

Measured 8d ago against content hash 421c2ef71124, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

get-time 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/get_time.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/get-time/SKILL.md · 80 lines

How it starts

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

Get Time

This skill provides the current local time with automatic timezone detection or manual timezone specification.

Usage

Automatic Timezone Detection

The script attempts to auto-detect the user's timezone using IP geolocation:

python3 scripts/get_time.py [format]

Manual Timezone Specification

For more accurate results, especially in containerized environments, specify the timezone explicitly:

python3 scripts/get_time.py [format] [timezone]

Important: When you know the user's timezone from context or memory, always pass it explicitly for accuracy.

Available Formats

  • full (default): Full datetime with day name and timezone (e.g., "Sunday, December 14, 2025 at 05:09:44 PM EST")
  • time: Just the time in 12-hour format (e.g., "05:09:44 PM")
  • date: Just the date (e.g., "2025-12-14")
  • datetime: Date and time with timezone (e.g., "2025-12-14 05:09:44 PM EST")
  • iso: ISO 8601 format (e.g., "2025-12-14T17:09:44-05:00")
  • unix: Unix timestamp (e.g., "1734220184")

Common Timezones

  • US Eastern: America/New_York
  • US Pacific: America/Los_Angeles
  • US Central: America/Chicago
  • US Mountain: America/Denver
  • UK: Europe/London
  • Central Europe: Europe/Paris
  • Japan: Asia/Tokyo
  • Australia Eastern: Australia/Sydney

See IANA timezone database for full list.

Examples

# Auto-detect timezone (may be less accurate in containers)
python3 scripts/get_time.py

# Get time in US Eastern timezone
python3 scripts/get_time.py full America/New_York

# Get just the time in Pacific timezone
python3 scripts/get_time.py time America/Los_Angeles

# Get ISO format for logging in specific timezone
python3 scripts/get_time.py iso Europe/London

# Get Unix timestamp (timezone-independent)
python3 scripts/get_time.py unix

Best Practices

  1. Use user's known location: If you have information about the user's location from conversation history or memory, convert it to a timezone and pass it explicitly
  2. Common US locations:
    • New York, Boston, Washington DC → America/New_York
    • Los Angeles, San Francisco, Seattle → America/Los_Angeles
    • Chicago, Dallas → America/Chicago
    • Denver, Phoenix → America/Denver
  3. Fallback: If timezone detection fails or no timezone is specified, the script falls back to UTC

Read the full file on GitHub · 80 lines

Files

What ships with it

1 file 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.

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. 8d ago First seen · 80 lines · 50 tokens per session scan A 421c2ef71124

Subscribe to this mod's changes

get-time is a skill published in the GitHub repository GhostTypes/pokemon-go-mcp (7 stars, last pushed today), licensed MIT. It adds 50 tokens to every session and 676 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-08-31.