awesome-kubernetes: Skill for Gemini CLI

.gemini/skills/awesome-kubernetes-ops/SKILL.md

awesome-kubernetes-ops is a skill for Gemini CLI from nubenetes/awesome-kubernetes. It costs 0 tokens per session (794 once invoked), scanned B, original, Apache-2.0.

A local operations guide for maintaining the Awesome-Kubernetes repository with the Antigravity AI Agent, a coding assistant used for pair programming.

In plain words
What is it for?
It helps run the project's Python tools, install dependencies, check Markdown formatting, and follow local testing and deployment procedures.
Why use it?
It gives the agent a consistent way to use the repository's Python environment, run checks, and verify changes before they are promoted.

Skill for Gemini CLI

Written for Gemini CLI: installed under .gemini/.

This is nubenetes/awesome-kubernetes's own configuration. It tells Gemini CLI how to work on awesome-kubernetes 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 awesome-kubernetes configures →

Reuse

Borrowing it

Nothing to install: this file belongs to nubenetes/awesome-kubernetes. 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/nubenetes/awesome-kubernetes/master/.gemini/skills/awesome-kubernetes-ops/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/nubenetes/awesome-kubernetes

Made for: Gemini CLI.

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 awesome-kubernetes-ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/nubenetes/awesome-kubernetes/awesome-kubernetes-ops/github.svg)](https://agentmods.dev/skills/nubenetes/awesome-kubernetes/awesome-kubernetes-ops)
Your own site
<a href="https://agentmods.dev/skills/nubenetes/awesome-kubernetes/awesome-kubernetes-ops"><img src="https://agentmods.dev/badge/skills/nubenetes/awesome-kubernetes/awesome-kubernetes-ops/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 awesome-kubernetes-ops

Your own site · 80×15
<a href="https://agentmods.dev/skills/nubenetes/awesome-kubernetes/awesome-kubernetes-ops"><img src="https://agentmods.dev/badge/skills/nubenetes/awesome-kubernetes/awesome-kubernetes-ops.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 794 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Anti-Refusal · line 29
    Skill instructs the agent to omit warnings, disclaimers, or ethical commentary. Stripping safety caveats hides risk from the user and is a common jailbreak preamble.
    Fix: Remove instructions that suppress warnings, disclaimers, or ethical commentary. Let the agent surface safety-relevant caveats to the user.
  • medium MCP Rug Pull · line 25
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00000 $0.00794
Opus 5 $0.00000 $0.00397
Sonnet 5 $0.00000 $0.00159
Haiku 4.5 $0.00000 $0.00079

Measured 11d ago against content hash 859f1b2c9b1d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

awesome-kubernetes-ops 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 11d 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.

Strips warnings and disclaimersmediumAnti-refusal

Omitting safety caveats hides risk from the user and is a common jailbreak preamble.

Verify that MkDocs compiles the site targets without warnings or invalid path errors:
.gemini/skills/awesome-kubernetes-ops/SKILL.md · 76 lines

How it starts

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

Skill: Local Operations for Awesome-Kubernetes Maintenance

This skill documents the local verification, editing, and deployment procedures for the Antigravity AI Agent when pair-programming with the repository maintainer.


🛠️ Local Environment & Python Context

The repository utilizes a virtual environment located in .venv/ in the project root. Always prefix Python and CLI tool execution with the virtual environment path to ensure the correct dependencies are utilized.

  • Python Virtual Environment: .venv/bin/python
  • MkDocs Command: .venv/bin/mkdocs
  • Pip Dependency Installer: .venv/bin/pip

🧪 Local Testing & Verification

Before promoting changes to master, always verify changes locally using these commands:

1. Markdown Lint Checks

Verify that no syntax or styling violations are present. We ignore line length (MD013), bullet indentation (MD005/007), and other formatting conflicts. Run the linter locally:

echo '{ "MD004": false, "MD005": false, "MD007": false, "MD009": false, "MD010": false, "MD012": false, "MD013": false, "MD014": false, "MD022": false, "MD028": false, "MD030": false, "MD032": false, "MD033": false, "MD034": false, "MD036": false, "MD038": false, "MD041": false, "MD046": false, "MD047": false, "MD050": false, "MD051": false, "MD055": false, "MD060": false }' > .markdownlint.json
npx markdownlint-cli2 "docs/**/*.md" "v2-docs/**/*.md" "README.md"

2. Static Build Compilations

Verify that MkDocs compiles the site targets without warnings or invalid path errors:

.venv/bin/mkdocs build -f mkdocs.yml && .venv/bin/mkdocs build -f v2-mkdocs.yml

3. V2 Elite Portal Generation (Render-Only)

If you need to manually recompile V2 markdown files from the inventory database (data/inventory.yaml) without running heavy API fetches or network sweeps:

PYTHONPATH=. .venv/bin/python -m src.v2_optimizer --render-only

📦 Git & Release Lifecycle

Always follow this exact branch promotion sequence to ensure clean history and trigger the production pipelines:

Read the full file on GitHub · 76 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. 11d ago First seen · 76 lines · 0 tokens per session scan B 859f1b2c9b1d

Subscribe to this mod's changes

awesome-kubernetes-ops is a skill published in the GitHub repository nubenetes/awesome-kubernetes (669 stars, last pushed 3d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 794 tokens. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories