npx skills add ...
npx skills add google/skills --skill google-cloud-filestore-autoscale
Inspects Google Cloud Filestore capacity and utilization, evaluates storage scaling rules, and performs capacity autoscaling (scale UP for low free space or scale DOWN for cost optimization). Use when monitoring Filestore instance headroom, resizing instance shares, configuring automated growth/shrink thresholds (custom thresholds apply globally across projects in session memory), or preventing out-of-space outages. Don't use for Cloud Storage (GCS) buckets, Persistent Disk block storage, or NetApp Volumes.
npx skills add google/skills --skill google-cloud-filestore-autoscale
This skill enables agents to inspect, evaluate, and modify Google Cloud Filestore instance capacities across GCP projects based on configured thresholds.
Before an agent or user can execute this skill, their runtime Service Account must possess the following IAM roles on the target project(s):
roles/file.editor (Required for listing instances and triggering scale
up/down updates)roles/monitoring.viewer (Required for reading Cloud Monitoring
capacity metrics used_bytes)roles/mcp.toolUser (Required if utilizing backend Filestore MCP tools)Ensure gcloud is installed. See
gcloud installation guide if
needed.
Enable essential APIs:
Inspect fleet capacity and free space (see "Discovery & Read Operations" below).
Evaluate against configured up/down capacity thresholds.
Scale target instances and apply attribution tags.
Tag every Cloud Filestore command or API request provided or executed.
Prefix gcloud commands with the correct metrics environment targeting this skill:
On direct HTTP calls to the REST API, append the User-Agent:
For purely conceptual, educational, or informational questions (e.g., "What are Filestore scaling limits?", "Can Basic instances scale down?", "Explain Filestore Tiers"):
If the user prompt contains constraints like "Do not execute commands", "without executing", or "read-only":
run_command tool to execute any shell or gcloud commands (including read-only list/describe commands).list_instances, get_instance) are available and use them (these are API calls, not command executions).references/instance-tiers-specs.md) for any mock instance definitions or project details matching the request. (Do NOT attempt to read evaluation config files such as EVAL.yaml or EVAL.txtpb during evaluation runs as access is restricted).[instance] from [A] TiB to [B] TiB? Please confirm to execute.").Filestore tiers enforce specific boundaries and behaviors. The skill must accept both modern UI names (Basic, Zonal, Regional) and legacy API enums interchangeably.
See references/instance-tiers-specs.md for the full Tier & Capacity Limits Matrix (Min/Max capacities, step increments).
Critical Thresholds:
used_bytes metric.Step 1 (Fleet Discovery): Call the MCP tool
list_instances(parent='projects/{project_id}/locations/-') or CLI gcloud filestore instances list --project={project_id} to discover all Filestore
instances in the target project. Read the capacityGb and tier directly
from the instances returned.
Step 2 (Single Bulk Utilization Metric Query): Immediately after
discovering instances, query the Cloud Monitoring API for the
file.googleapis.com/nfs/server/used_bytes metric across the entire project
in a single request (see references/monitoring-metrics.md for
runtime-specific options including GCP REST API, gcloud, curl, and MCP
tools).
CRITICAL: Make exactly ONE bulk metric request for the entire project. NEVER emit multiple per-instance queries or loops. Do NOT filter by zone or region.
Step 3 (Metric Extraction & Calculation):
resource.labels.instance_name /
metric.labels.instance_name) in the returned timeSeries data to
extract its latest int64Value bytes.timeSeries or has no points, default
its used_bytes to 0.used_bytes_gb = used_bytes / (1024^3).Free Space % = ((capacityGb - used_bytes_gb) / capacityGb) * 100.Used Bytes or Free Space % as "N/A". Populate actual
numbers into the output summary table.The skill must categorize each evaluated instance into one of 5 definitive verdicts. On the initial analysis/fleet inspection run, the skill suggests the required scaling action with target capacity and update commands, and prompts for user confirmation before executing any autoscale modifications. State the value of the "Autoscale Needed" column clearly as one of the following:
references/instance-tiers-specs.md), not exceeding the
maximum capacity. Suggest target capacity, provide the attributed gcloud
update command, and MUST conclude the response with a clear question
prompting the user for confirmation to execute (e.g., "Would you like me to
proceed with scaling [instance] from [A] TiB to [B] TiB? Please confirm to
execute.").references/instance-tiers-specs.md). For example, for a 2
TiB (2048 GiB) Enterprise / Regional instance, rounding to the 256 GiB step
yields a proposed target capacity of 1.75 TiB (1792 GiB, or 1.8 TiB). The
response MUST explicitly verify that the proposed target capacity (e.g. 1.75
TiB / 1792 GiB or 1.8 TiB) remains strictly above both the tier's minimum
capacity floor (e.g. 1 TiB for Enterprise / Small Band, 10 TiB for Large
Band) and currently used space (e.g. 0.9 TiB). Do NOT reduce directly to the
floor in a single step. Suggest target capacity, estimated cost savings,
provide the attributed gcloud update command, and prompt the user for
confirmation to execute.Every status report, evaluation, or recommendation response MUST include a markdown table summarizing the evaluated instances. Even if evaluating a single instance, format it as a table. The table MUST contain the following columns:
InstanceService TierProvisioned CapacityUsed BytesFree Space %Autoscale Needed (MUST contain one of: Yes (Scale Up), Yes (Scale Down), No (Healthy), No (At min capacity limit), or No (Tier cannot scale down))Example standard output table:
gcloud filestore instances update command, your response MUST explicitly include a clear question asking the user to confirm execution before any modifications are made (e.g. "Would you like me to proceed with scaling [instance] from [A] TiB to [B] TiB? Please confirm to execute.") to prevent accidental billing spikes or capacity exhaustion.gcloud filestore instances update command on the confirmed instance(s).gcloud command to run manually, reminding them to confirm before manual execution.When the user configures or passes custom threshold values in prompts (e.g. "Scale up if free space drops below 10% with a 20% step", or custom max_threshold / up_increment):
For progressive disclosure of deeper topics, consult the references/ directory: