/workload-manager-basics
Use this skill to manage Google Cloud Workload Manager evaluations, rules, scanned resources, and validation results by using public client libraries and the REST API. Use when you need to inspect workload best-practice rules, create and run evaluations for Google Cloud general
$ npx -y skills add google/skills --skill workload-manager-basics --agent claude-codeHow 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
/workload-manager-basics
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use this skill to manage Google Cloud Workload Manager evaluations, rules, scanned resources, and validation results by using public client libraries and the REST API. Use when you need to inspect workload best-practice rules, create and run evaluations for Google Cloud general
SKILL.md
workload-manager-basics.SKILL.mdname: workload-manager-basics
metadata:
category: CloudObservabilityAndMonitoring
description: >-
Use this skill to manage Google Cloud Workload Manager evaluations, rules,
scanned resources, and validation results by using public client libraries
and the REST API. Use when you need to inspect workload best-practice rules,
create and run evaluations for Google Cloud general best practices, SAP, SQL
Server, or custom organizational rules, review violations, export results to
BigQuery, or automate Workload Manager through client libraries because no
service-specific public CLI or MCP server is available. Don't use for general
Google Compute Engine instance management, VPC configuration, or standard IAM
auditing.
Workload Manager Basics
Workload Manager validates enterprise workloads against Google Cloud best practices and recommendations. The public client libraries are centered on evaluations: define a resource scope, choose built-in or custom rules, run an evaluation, then inspect results and scanned resources.
Use This Flow
flowchart LR
Rules["List rules"] --> Eval["Create or update evaluation"]
Resources["Project, folder, or org scope"] --> Eval
Eval --> Run["Run evaluation"]
Run --> Results["Inspect evaluation results"]
Results --> Remediate["Remediate findings"]
Results --> Export["Optional BigQuery export"]Core API Constraints
To ensure compatibility, security, and successful integration:
- **Public Surface Only:** You MUST strictly interact with Workload Manager
using the official public `google-cloud-workloadmanager` client library or the public REST API (`workloadmanager.googleapis.com/v1`).
- **No Internal or Undocumented APIs:** Do NOT attempt to use internal RPC
protocols, private service backends, or undocumented discovery mechanisms. They are not supported for public integrations and will fail.
- **No Service-Specific CLI:** There is no public `gcloud workload-manager`
CLI command group. Use `gcloud` only for authentication, IAM role assignment, and fetching raw REST tokens.
- **Sandbox Execution Robustness (Auth/Mock Fallbacks):** When gcloud
authentication or Workload Manager API calls fail in sandboxed or restricted environments (e.g., due to Context Aware Access token blocks, missing API enablement, or mock resources returning 404/403), immediately fall back to presenting example code and static findings from your references instead of entering retry loops. Present the correct client library code structure or REST API payload example, clearly explain the auth or resource limitation, and list typical rules or mock findings statically to satisfy the request.
Prerequisites
1. Enable the Workload Manager API:
gcloud services enable workloadmanager.googleapis.com --quiet
2. Authenticate locally using Application Default Credentials (ADC) before using client libraries:
gcloud auth application-default login
3. Ensure the Workload Manager service agent has the required roles granted in your project (mandatory for API/client library usage, see [IAM & Security](references/iam-security.md)).
4. Grant the least-privileged role needed for the task. Start with `roles/workloadmanager.viewer` for read-only access to evaluation resources and use `roles/workloadmanager.evaluationAdmin` or `roles/workloadmanager.admin` only when creating, updating, running, or deleting evaluations.
Quick Client Library Example
Use the Python client library for the first working automation path:
python3 -m pip install --upgrade google-cloud-workloadmanager
from google.cloud import workloadmanager_v1
project_id = "PROJECT_ID"
location = "LOCATION"
parent = f"projects/{project_id}/locations/{location}"
client = workloadmanager_v1.WorkloadManagerClient()
rules = client.list_rules(
request=workloadmanager_v1.ListRulesRequest(
parent=parent,
evaluation_type=workloadmanager_v1.Evaluation.EvaluationType.OTHER,
)
)
for rule in rules.rules:
print(rule.name, rule.display_name, rule.severity)Reference Directory
- [Core Concepts](references/core-concepts.md): Evaluations, rules, results,
scanned resources, supported workload types, and API shape.
- [General Best Practices](references/general-best-practices.md): Google Cloud
general best-practice posture checks, `OTHER` evaluation guidance, custom Rego rules, and scale/automation patterns.
- [Client Libraries](references/client-library-usage.md): Python and Go client
library examples for listing rules, creating evaluations, running evaluations, and reading findings.
- [REST Usage](references/rest-usage.md): Direct REST examples for the public
Workload Manager API and operations polling.
- [Public CLI Status](references/public-cli-status.md): No documented
service-specific `gcloud workload-manager` command group; use `gcloud` only for auth, IAM, API enablement, and REST tokens.
- [Public MCP Status](references/public-mcp-status.md): No documented public
Workload Manager MCP server; use client libraries or REST API instead.
- [Setup Prerequisites](references/setup-prerequisites.md): Terraform examples
only for adjacent prerequisites such as API enablement, IAM, BigQuery export datasets, and KMS keys. This is not Workload Manager resource management.
- [IAM & Security](references/iam-security.md): Workload Manager roles,
least-privilege guidance, service agents, data handling, and CMEK notes.
If product behavior or API fields are not covered here, check the current Workload Manager product documentation and client library reference before implementing.
Authoritative References
- [Workload Manager overview](https://docs.cloud.google.com/workload-manager/docs/overview)
- [Google Cloud best pra
Read more
name: workload-manager-basics metadata: category: CloudObservabilityAndMonitoring description: >- Use this skill to manage Google Cloud Workload Manager evaluations, rules, scanned resources, and validation results by using public client libraries and the REST API. Use when you need to inspect workload best-practice rules, create and run evaluations for Google Cloud general best practices, SAP, SQL Server, or custom organizational rules, review violations, export results to BigQuery, or automate Workload Manager through client libraries because no service-specific public CLI or MCP server is available. Don't use for general Google Compute Engine instance management, VPC configuration, or standard IAM auditing.
Workload Manager Basics
Workload Manager validates enterprise workloads against Google Cloud best practices and recommendations. The public client libraries are centered on evaluations: define a resource scope, choose built-in or custom rules, run an evaluation, then inspect results and scanned resources.
Use This Flow
flowchart LR
Rules["List rules"] --> Eval["Create or update evaluation"]
Resources["Project, folder, or org scope"] --> Eval
Eval --> Run["Run evaluation"]
Run --> Results["Inspect evaluation results"]
Results --> Remediate["Remediate findings"]
Results --> Export["Optional BigQuery export"]Core API Constraints
To ensure compatibility, security, and successful integration:
- **Public Surface Only:** You MUST strictly interact with Workload Manager
using the official public `google-cloud-workloadmanager` client library or the public REST API (`workloadmanager.googleapis.com/v1`).
- **No Internal or Undocumented APIs:** Do NOT attempt to use internal RPC
protocols, private service backends, or undocumented discovery mechanisms. They are not supported for public integrations and will fail.
- **No Service-Specific CLI:** There is no public `gcloud workload-manager`
CLI command group. Use `gcloud` only for authentication, IAM role assignment, and fetching raw REST tokens.
- **Sandbox Execution Robustness (Auth/Mock Fallbacks):** When gcloud
authentication or Workload Manager API calls fail in sandboxed or restricted environments (e.g., due to Context Aware Access token blocks, missing API enablement, or mock resources returning 404/403), immediately fall back to presenting example code and static findings from your references instead of entering retry loops. Present the correct client library code structure or REST API payload example, clearly explain the auth or resource limitation, and list typical rules or mock findings statically to satisfy the request.
Prerequisites
1. Enable the Workload Manager API:
gcloud services enable workloadmanager.googleapis.com --quiet
2. Authenticate locally using Application Default Credentials (ADC) before using client libraries:
gcloud auth application-default login
3. Ensure the Workload Manager service agent has the required roles granted in your project (mandatory for API/client library usage, see [IAM & Security](references/iam-security.md)).
4. Grant the least-privileged role needed for the task. Start with `roles/workloadmanager.viewer` for read-only access to evaluation resources and use `roles/workloadmanager.evaluationAdmin` or `roles/workloadmanager.admin` only when creating, updating, running, or deleting evaluations.
Quick Client Library Example
Use the Python client library for the first working automation path:
python3 -m pip install --upgrade google-cloud-workloadmanager
from google.cloud import workloadmanager_v1
project_id = "PROJECT_ID"
location = "LOCATION"
parent = f"projects/{project_id}/locations/{location}"
client = workloadmanager_v1.WorkloadManagerClient()
rules = client.list_rules(
request=workloadmanager_v1.ListRulesRequest(
parent=parent,
evaluation_type=workloadmanager_v1.Evaluation.EvaluationType.OTHER,
)
)
for rule in rules.rules:
print(rule.name, rule.display_name, rule.severity)Reference Directory
- [Core Concepts](references/core-concepts.md): Evaluations, rules, results,
scanned resources, supported workload types, and API shape.
- [General Best Practices](references/general-best-practices.md): Google Cloud
general best-practice posture checks, `OTHER` evaluation guidance, custom Rego rules, and scale/automation patterns.
- [Client Libraries](references/client-library-usage.md): Python and Go client
library examples for listing rules, creating evaluations, running evaluations, and reading findings.
- [REST Usage](references/rest-usage.md): Direct REST examples for the public
Workload Manager API and operations polling.
- [Public CLI Status](references/public-cli-status.md): No documented
service-specific `gcloud workload-manager` command group; use `gcloud` only for auth, IAM, API enablement, and REST tokens.
- [Public MCP Status](references/public-mcp-status.md): No documented public
Workload Manager MCP server; use client libraries or REST API instead.
- [Setup Prerequisites](references/setup-prerequisites.md): Terraform examples
only for adjacent prerequisites such as API enablement, IAM, BigQuery export datasets, and KMS keys. This is not Workload Manager resource management.
- [IAM & Security](references/iam-security.md): Workload Manager roles,
least-privilege guidance, service agents, data handling, and CMEK notes.
If product behavior or API fields are not covered here, check the current Workload Manager product documentation and client library reference before implementing.
Authoritative References
- [Workload Manager overview](https://docs.cloud.google.com/workload-manager/docs/overview)
- [Google Cloud best pra
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

