tags

tags is a command for Claude Code from wangke19/gemini-ai-helpers. It costs 10 tokens per session (2,600 once invoked), scanned B, original, Apache-2.0.

A command that lists and analyzes tags in a container image repository. Tags are names such as version labels used to identify image builds.

In plain words
What is it for?
Use it to find stable releases, plan upgrades, track image updates, compare architectures, and review registry tagging practices.
Why use it?
It helps you see which image versions exist, which platforms they support, and which may be old or no longer maintained.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: positional $N argument.

Good fit Use it to find stable releases, plan upgrades, track image updates, compare architectures, and review registry tagging practices.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/wangke19/gemini-ai-helpers/tags
Install

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.

Clone the repo
git clone --depth 1 https://github.com/wangke19/gemini-ai-helpers

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 tags

README.md
[![agentmods](https://agentmods.dev/badge/commands/wangke19/gemini-ai-helpers/tags/github.svg)](https://agentmods.dev/commands/wangke19/gemini-ai-helpers/tags)
Your own site
<a href="https://agentmods.dev/commands/wangke19/gemini-ai-helpers/tags"><img src="https://agentmods.dev/badge/commands/wangke19/gemini-ai-helpers/tags/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.

agentmods 80×15 button for tags

Your own site · 80×15
<a href="https://agentmods.dev/commands/wangke19/gemini-ai-helpers/tags"><img src="https://agentmods.dev/badge/commands/wangke19/gemini-ai-helpers/tags.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,600 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00010 $0.02600
Opus 5 $0.00005 $0.01300
Sonnet 5 $0.00002 $0.00520
Haiku 4.5 $0.00001 $0.00260

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

Security

Grade B, and why

tags scanned grade B with 1 finding 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.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- RHEL/Fedora: `sudo dnf install skopeo`
extensions/container-image/commands/tags.md · 311 lines

How it starts

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

Name

container-image:tags

Synopsis

/container-image:tags <repository>

Description

The container-image:tags command lists and analyzes all available tags for a container image repository. It provides detailed information about each tag including creation date, size, architecture support, and digest.

This command helps you:

  • Discover available image versions
  • Identify the latest stable releases
  • Find images for specific architectures
  • Track image update frequency
  • Identify deprecated or outdated tags
  • Plan image upgrades
  • Understand tagging conventions

The command works with any OCI-compliant registry and can filter, sort, and analyze tags based on various criteria.

Prerequisites

Required Tools:

  1. skopeo - For listing and inspecting tags
    • Check if installed: which skopeo
    • Installation:
      • RHEL/Fedora: sudo dnf install skopeo
      • Ubuntu/Debian: sudo apt-get install skopeo
      • macOS: brew install skopeo
    • Documentation: https://github.com/containers/skopeo

Registry Authentication:

For private registries:

skopeo login registry.example.com

Implementation

The command performs the following analysis:

  1. Check Tool Availability:

    • Verify skopeo is installed
    • If missing, provide installation instructions
  2. List All Tags:

    skopeo list-tags docker://<repository>
    

    This returns all available tags for the repository.

  3. Inspect Each Tag (for detailed analysis): For each tag (or a sample of tags for large repositories):

    skopeo inspect docker://<repository>:<tag>
    

    Extract:

    • Image digest
    • Creation date
    • Size
    • Architecture(s)
    • Labels
    • Manifest type
  4. Categorize Tags:

    • Version tags: Semantic versions (v1.0.0, 2.1.3)
    • Latest tags: Tags like latest, stable, production
    • Date-based tags: Tags with dates (20240115, 2024-01-15)
    • Branch tags: Development branches (main, develop)
    • SHA tags: Git commit SHAs
    • Custom tags: Other tagging schemes

Read the full file on GitHub · 311 lines

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 · 311 lines · 10 tokens per session scan B 0ca5a76d2ae4

Subscribe to this mod's changes

tags is a command published in the GitHub repository wangke19/gemini-ai-helpers (2 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 10 tokens to every session and 2,600 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.