Remote OpenClaw
Menu
SkillsMCPPluginsGuideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsGuideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Advertise to 36,000+ monthly visitors

Your product here - reach AI builders running Claude Code, Codex, and OpenClaw on every page.

Advertise →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Launch your always-on OpenClaw agent on Hostinger, up to 70% off logoLaunch your always-on OpenClaw agent on Hostinger, up to 70% off

One-click OpenClaw install on a VPS you control. Summer sale live now: use this link for up to 70% off, KVM 2 at $8.79/mo.

Launch OpenClaw →
Get a Hermes agent running 24/7 on Hostinger, up to 70% off logoGet a Hermes agent running 24/7 on Hostinger, up to 70% off

One-click install of the self-improving Hermes agent on a VPS you control. Connect Telegram, Discord, Slack and more. Summer sale live now: use this link for up to 70% off.

Launch Hermes →
Advertise to 36,000+ monthly visitors

Your product here - reach AI builders running Claude Code, Codex, and OpenClaw on every page.

Advertise →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Launch your always-on OpenClaw agent on Hostinger, up to 70% off logoLaunch your always-on OpenClaw agent on Hostinger, up to 70% off

One-click OpenClaw install on a VPS you control. Summer sale live now: use this link for up to 70% off, KVM 2 at $8.79/mo.

Launch OpenClaw →
Get a Hermes agent running 24/7 on Hostinger, up to 70% off logoGet a Hermes agent running 24/7 on Hostinger, up to 70% off

One-click install of the self-improving Hermes agent on a VPS you control. Connect Telegram, Discord, Slack and more. Summer sale live now: use this link for up to 70% off.

Launch Hermes →
Advertise to 36,000+ monthly visitors

Your product here - reach AI builders running Claude Code, Codex, and OpenClaw on every page.

Advertise →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Launch your always-on OpenClaw agent on Hostinger, up to 70% off logoLaunch your always-on OpenClaw agent on Hostinger, up to 70% off

One-click OpenClaw install on a VPS you control. Summer sale live now: use this link for up to 70% off, KVM 2 at $8.79/mo.

Launch OpenClaw →
Get a Hermes agent running 24/7 on Hostinger, up to 70% off logoGet a Hermes agent running 24/7 on Hostinger, up to 70% off

One-click install of the self-improving Hermes agent on a VPS you control. Connect Telegram, Discord, Slack and more. Summer sale live now: use this link for up to 70% off.

Launch Hermes →
Skills/google/skills/gke-cost
gke-cost logo

gke-cost

google/skills
693 installs15K stars
Run it on Hostinger →up to 70% off with the summer saleFree API →

Installation

npx skills add https://github.com/google/skills --skill gke-cost

Summary

>-

SKILL.md

GKE Cost Optimization

This reference covers strategies for reducing GKE costs while maintaining the golden path security and reliability posture.

MCP Tools: get_k8s_resource, describe_k8s_resource, apply_k8s_manifest, patch_k8s_resource, get_cluster

Golden Path Cost Features

The golden path already includes cost-optimizing settings:

SettingValueImpact
autoscalingProfileOPTIMIZE_UTILIZATIONAggressive node

: : : scale-down reduces idle : : : : compute : | verticalPodAutoscaling | enabled | VPA recommendations | : : : prevent : : : : over-provisioning : | Autopilot pricing | Pay per pod request | No charge for unused | : : : node capacity : | Node Auto Provisioning | enabled | Right-sized node pools | : : : created automatically :

Cost Optimization Strategies

1. Spot VMs via ComputeClasses

Use Spot VMs for fault-tolerant workloads (60-90% cost reduction).

apiVersion: cloud.google.com/v1
kind: ComputeClass
metadata:
  name: spot-with-fallback
spec:
  activeMigration:
    optimizeRulePriority: true
  priorities:
  - machineFamily: n4
    spot: true
  - machineFamily: n4
    spot: false

Spot-suitable workloads:

Workload | Spot-Suitable? --------------------------------- | --------------- Batch / data processing | Yes Dev / test environments | Yes Stateless web/API (replicas >= 2) | Yes (with PDBs) Jobs with checkpointing | Yes Stateful workloads (databases) | No Single-replica critical services | No

Handling eviction:

spec:
  template:
    spec:
      terminationGracePeriodSeconds: 25  # Must be < 30s for Spot
      containers:
      - name: app
        lifecycle:
          preStop:
            exec:
              command: ["/bin/sh", "-c", "sleep 5"]

1.1 Direct Workload Spot Selection (NodeSelector)

For stateless or batch workloads in GKE Autopilot, you do not need to create a custom ComputeClass to use Spot VMs. You can target the built-in Spot capacity directly by adding a nodeSelector to your Pod or Deployment spec.

[!WARNING] Preemption Warning: Spot VMs are interruptible and can be preempted at any time with a 30-second notice. Workloads must be fault-tolerant and run with at least 2 replicas for high availability. Always explicitly warn users about this preemption risk when recommending Spot VMs.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: stateless-spot-app
spec:
  replicas: 2
  template:
    spec:
      nodeSelector:
        cloud.google.com/gke-provisioning: Spot
      terminationGracePeriodSeconds: 25  # Must be < 30s to allow graceful shutdown before preemption
      containers:
      - name: app
        image: <IMAGE>

2. Pod Rightsizing

Use VPA recommendations to reduce over-provisioned requests.

# 1. Deploy VPA in recommendation mode
kubectl apply -f - <<EOF
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
  name: <DEPLOYMENT>-vpa
spec:
  targetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: <DEPLOYMENT>
  updatePolicy:
    updateMode: "Off"
EOF

# 2. Wait 24+ hours for data collection

# 3. Read recommendations
kubectl get vpa <DEPLOYMENT>-vpa -o jsonpath='{.status.recommendation}'

Optimization rules:

Condition | Action | Savings ----------------------------- | ---------------------------------- | ------- CPU request >5x P95 actual | Reduce to P95 1.2 | High Memory request >3x P95 actual | Reduce to P95 1.2 | High CPU request >2x P95 actual | Reduce to P95 * 1.2 | Medium No resource requests set | Add requests (enables bin-packing) | Medium

3. Machine Type Selection

FamilyUse CaseRelative Cost
e2General purpose, burstableLowest
t2a / t2dScale-out (Arm/AMD), price-performanceLow

: : optimized : : | n4a | Axion Arm-based, general-purpose | Low | : : price-performance : : | n4 / n4d | General purpose (Intel/AMD), flexible shapes | Low-Medium | | c4a | Compute-optimized (Arm), high efficiency | Medium-High | | c3 / c4 | Compute-optimized (Intel) | Medium-High | | c3d / c4d | Compute-optimized (AMD), high-performance | Medium-High | : : throughput : : | ek-standard | Autopilot enhanced (golden path) | Medium | | m3 / x4 | Memory-optimized, SAP HANA, large databases | High | | g2 (L4 GPU) | AI inference | High | | a3 (H100 GPU) | AI training | Highest | | a4 / a4x | Ultra-scale AI (Blackwell GPUs) | Highest |

In Autopilot, machine type is managed. Use ComputeClasses to influence selection.

4. Committed Use Discounts (CUDs)

For steady-state workloads, purchase 1-year or 3-year CUDs:

  • 1-year: ~20-30% discount
  • 3-year: ~50-55% discount
  • Applied automatically to matching usage in the region
  • Purchase via Google Cloud Console > Billing > Committed use discounts

5. Cluster Management

  • Stop/start dev clusters: Idle dev clusters cost money even with no

workloads (control plane fee).

  • Right-size node pools (Standard): Use Cluster Autoscaler with

appropriate min/max.

  • Multi-tenant clusters: Share a single cluster across teams instead of

per-team clusters (see the gke-multitenancy skill).

Cost Monitoring

# View cluster cost breakdown (requires Cost Management API)
gcloud billing budgets list --billing-account=<BILLING_ACCOUNT> --quiet

# View node utilization
kubectl top nodes

# View pod resource usage vs requests
kubectl top pods --all-namespaces --containers

Dev/Test Cost Savings

For non-production environments, these golden path deviations are acceptable:

| Setting | Production (Golden | Dev/Test | : : Path) : : | ----------------------- | ------------------ | ----------------------------- | | Cluster mode | Autopilot | Autopilot (cheaper with fewer | : : : pods) : | Release channel | Regular | Rapid (get fixes faster) | | Private nodes | Required | Optional (simpler access) | | Monitoring components | Full suite | SYSTEM_COMPONENTS only | | Secret Manager rotation | 120s | Disabled | | Maintenance windows | Configured | Not needed |

Score

0–100
67/ 100

Grade

C

Popularity17/30

693 installs — growing adoption. Source repo has 14,521 GitHub stars.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust25/25

Published by google — an official/recognized organization.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Gke Cost skill score badge previewScore badge

Markdown

[![Gke Cost skill](https://www.remoteopenclaw.com/skills/google/skills/gke-cost/badges/score.svg)](https://www.remoteopenclaw.com/skills/google/skills/gke-cost)

HTML

<a href="https://www.remoteopenclaw.com/skills/google/skills/gke-cost"><img src="https://www.remoteopenclaw.com/skills/google/skills/gke-cost/badges/score.svg" alt="Gke Cost skill"/></a>

Gke Cost FAQ

How do I install the Gke Cost skill?

Run “npx skills add https://github.com/google/skills --skill gke-cost” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Gke Cost skill do?

>- The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Gke Cost skill free?

Yes. Gke Cost is a free, open-source skill published from google/skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Gke Cost work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Gke Cost works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Advertise to 36,000+ monthly visitors

Your product here - reach AI builders running Claude Code, Codex, and OpenClaw on every page.

Advertise →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Launch your always-on OpenClaw agent on Hostinger, up to 70% off logoLaunch your always-on OpenClaw agent on Hostinger, up to 70% off

One-click OpenClaw install on a VPS you control. Summer sale live now: use this link for up to 70% off, KVM 2 at $8.79/mo.

Launch OpenClaw →
Get a Hermes agent running 24/7 on Hostinger, up to 70% off logoGet a Hermes agent running 24/7 on Hostinger, up to 70% off

One-click install of the self-improving Hermes agent on a VPS you control. Connect Telegram, Discord, Slack and more. Summer sale live now: use this link for up to 70% off.

Launch Hermes →
Advertise to 36,000+ monthly visitors

Your product here - reach AI builders running Claude Code, Codex, and OpenClaw on every page.

Advertise →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Launch your always-on OpenClaw agent on Hostinger, up to 70% off logoLaunch your always-on OpenClaw agent on Hostinger, up to 70% off

One-click OpenClaw install on a VPS you control. Summer sale live now: use this link for up to 70% off, KVM 2 at $8.79/mo.

Launch OpenClaw →
Get a Hermes agent running 24/7 on Hostinger, up to 70% off logoGet a Hermes agent running 24/7 on Hostinger, up to 70% off

One-click install of the self-improving Hermes agent on a VPS you control. Connect Telegram, Discord, Slack and more. Summer sale live now: use this link for up to 70% off.

Launch Hermes →
Advertise to 36,000+ monthly visitors

Your product here - reach AI builders running Claude Code, Codex, and OpenClaw on every page.

Advertise →
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
CLN.Work — Stop prompting, start hiring AI employees logoCLN.Work — Stop prompting, start hiring AI employees

Turn your Claude agents into a real team — onboard them, assign tasks, and manage them like staff.

Hire AI employees →
Launch your always-on OpenClaw agent on Hostinger, up to 70% off logoLaunch your always-on OpenClaw agent on Hostinger, up to 70% off

One-click OpenClaw install on a VPS you control. Summer sale live now: use this link for up to 70% off, KVM 2 at $8.79/mo.

Launch OpenClaw →
Get a Hermes agent running 24/7 on Hostinger, up to 70% off logoGet a Hermes agent running 24/7 on Hostinger, up to 70% off

One-click install of the self-improving Hermes agent on a VPS you control. Connect Telegram, Discord, Slack and more. Summer sale live now: use this link for up to 70% off.

Launch Hermes →

Categories

Command Execution
View on GitHub

Recommended skills

Browse all →
azure-cost logo

azure-cost

microsoft/azure-skills

248K installsInstall
azure-cost-optimization logo

azure-cost-optimization

microsoft/azure-skills

208K installsInstall
find-skills logo

find-skills

vercel-labs/skills

2.4M installsInstall
frontend-design logo

frontend-design

anthropics/skills

652K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

544K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

535K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Guide
  • Learn
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0