Skip to content
Development
Skill

/cloud-capacity-planning

Right-sizing and capacity forecasting for cloud resources on whatever platforms (Azure, DigitalOcean) are connected: the per-platform over-provisioned and under-provisioned signals, growth-trend-based forecasting toward a projected exhaustion window, and the discipline that

From plugin
msp-claude-plugins
46200 skills146 agents200 commands4 MCP
Install
$ npx -y skills add wyre-technology/msp-claude-plugins --skill cloud-capacity-planning --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/cloud-capacity-planning

Context preview

The summary Claude sees to decide when to auto-load this skill.

Right-sizing and capacity forecasting for cloud resources on whatever platforms (Azure, DigitalOcean) are connected: the per-platform over-provisioned and under-provisioned signals, growth-trend-based forecasting toward a projected exhaustion window, and the discipline that

SKILL.md

cloud-capacity-planning.SKILL.md
name: "Cloud Capacity Planning"
description: >
  Right-sizing and capacity forecasting for cloud resources on whatever
  platforms (Azure, DigitalOcean) are connected: the per-platform
  over-provisioned and under-provisioned signals, growth-trend-based
  forecasting toward a projected exhaustion window, and the discipline that
  separates a genuine capacity risk from normal variance — require a trend
  not a spike, distinguish burst-tolerant from sustained-critical resources,
  and always state the observation window behind a forecast.
when_to_use: >-
  When right-sizing cloud resources or forecasting whether current capacity
  will hold up under growth. Use when: capacity planning, are we running out
  of capacity, resource forecast, growth planning, right-size this resource,
  over-provisioned, under-provisioned, quota check.

Cloud Capacity Planning

Overview

Capacity planning answers two distinct questions that are easy to conflate: "is this resource sized correctly right now" (right-sizing) and "will it still be sized correctly in N weeks given its growth trend" (forecasting). This skill covers both, across whatever cloud platform(s) an org has connected, and is deliberately conservative about calling something a risk — a capacity plan that cries wolf on every metric blip gets ignored.

This is infrastructure-substrate capacity — compute, storage, database, and cluster headroom on the platforms themselves. It is not application-level performance or SLO tracking (see `devops-pack`, if connected) and it is not spend (see the `cloud-cost-management` skill, a related but separate concern: a resource can be correctly sized and still be a cost problem, or be under-provisioned and cheap).

Anti-triggers

  • **A one-off quota or usage-limit lookup** — "what's my quota, how much is

used" is a direct read against the connector; use `azure-mcp-cost-and-capacity`. This skill turns repeated readings into a trend and a forecast.

  • **The metric and log queries behind the utilization numbers** — use

`azure-mcp-observability`.

Discovering available tools first

Never assume which cloud platform is connected:

1. Call `conduit__search_tools` with a query like `"list resources"`, `"resource group"`, `"droplet"`, or `"quota"` to discover which cloud platform connector(s) are live and their actual tool names (e.g. `azure-mcp__group_resource_list`, `azure-mcp__quota`, `digitalocean__list_droplets`, `digitalocean__list_kubernetes_clusters`, `digitalocean__list_databases`). 2. More than one cloud platform can be connected (an org running both Azure and DigitalOcean). Cover all connected platforms; don't stop at the first. 3. Only call concrete tools that discovery actually returned.

Key Concepts

Right-sizing signals, per platform

| Platform | Over-provisioned signal | Under-provisioned signal | |---|---|---| | Azure | Resource group / subscription quota usage well below allocated quota (via `azure-mcp__quota`); Advisor recommendations flagging low-utilization VMs or oversized SKUs (via `azure-mcp__advisor`); sustained low CPU/memory/IOPS in `azure-mcp__monitor` metrics against an oversized SKU | Quota usage approaching the allocated limit; Advisor or `azure-mcp__resourcehealth` flagging throttling, sustained high utilization, or scale-limited resources | | DigitalOcean | A Droplet or Database sized well above its sustained CPU/memory/disk usage; a DOKS node pool with persistently low node utilization; unattached or lightly used block storage | A Droplet or Database consistently near its CPU/memory/disk ceiling; a DOKS cluster with pods pending due to insufficient node capacity; a Database approaching connection-limit or storage-limit thresholds |

Genuine capacity risk vs. normal variance

Do not flag a resource as at-risk from a single data point or a short window. Apply this discipline:

1. **Require a trend, not a spike.** A single hour or day of elevated utilization (batch job, deploy, traffic burst) is normal variance. A metric that has climbed over multiple consecutive observation windows (e.g., week-over-week) is a trend worth forecasting against. 2. **Distinguish burst-tolerant from sustained-critical resources.** A Droplet that spikes to 95% CPU for ten minutes during a nightly job is fine. A database consistently running at 85%+ storage utilization with no cleanup planned is a real risk — it degrades gracefully into an outage, not a burst. 3. **State the observation window used.** Always name how much history the forecast is based on (e.g., "based on the last 30 days of `azure-mcp__monitor` data") — a forecast built on three days of data is weaker evidence than one built on ninety, and the reader needs to know which they're getting. 4. **When historical/trend data isn't exposed**, say so explicitly and report current utilization as a point-in-time snapshot rather than fabricating a trend line.

Growth-trend-based forecasting

1. Pull utilization history for the resource over the longest available window the connected platform exposes. 2. Compute the trend direction and rate (e.g., "storage utilization has grown ~3%/week over the last 8 weeks"). 3. Project forward to the point the resource would hit a critical threshold (e.g., 90% of allocated capacity) at the observed rate, and state that projected date as a range, not a false-precision single day — growth rates fluctuate. 4. Flag only resources whose projected exhaustion falls within a near-to-medium planning horizon (e.g., inside ~90 days) as needing near-term action; note longer horizons as "monitor, no action needed yet."

Common Workflows

Portfolio right-sizing sweep

1. Discover connected cloud platforms via `conduit__search_tools`. 2. Pull resource inventory (resource groups, Droplets, DOKS clusters, managed databases) per connected platform. 3. Pull utilization/quota data for each and classify: over-pr

Read more
Ships withmsp-claude-plugins

One command to supercharge Claude Code for MSP workflows. Then restart Claude Code. That's it. Documentation: mcp.wyre.ai

Get the whole plugin

Other skills on msp-claude-plugins.