azure-cli
Azure Command Line Interface for managing Microsoft Azure resources. Use when the user needs to create VMs, manage storage accounts, deploy functions, configure resource groups, and automate Azure operations from the terminal.
What this skill does
# Azure CLI
The Azure CLI (`az`) manages Azure resources and services from the terminal.
## Setup
```bash
# Install Azure CLI
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
# Login and set subscription
az login
az account set --subscription "My Subscription"
az account show
# Configure defaults
az configure --defaults location=eastus group=my-resource-group
```
## Resource Groups
```bash
# Resource group management
az group create --name my-rg --location eastus --tags Environment=production
az group list --output table
az group delete --name my-rg --yes --no-wait
```
## Virtual Machines
```bash
# Create a VM
az vm create \
--resource-group my-rg \
--name web-vm \
--image Ubuntu2204 \
--size Standard_B2s \
--admin-username azureuser \
--generate-ssh-keys \
--public-ip-sku Standard \
--vnet-name my-vnet --subnet default \
--nsg my-nsg \
--tags Environment=production Role=web
# List VMs
az vm list -g my-rg \
--query "[].{Name:name,Size:hardwareProfile.vmSize,State:powerState}" -o table
# Manage VM state
az vm stop -g my-rg -n web-vm
az vm start -g my-rg -n web-vm
az vm deallocate -g my-rg -n web-vm
az vm delete -g my-rg -n web-vm --yes
# Open port
az vm open-port -g my-rg -n web-vm --port 443 --priority 100
# SSH into VM
az ssh vm -g my-rg -n web-vm
```
## Storage
```bash
# Create storage account and container
az storage account create \
--name mystorageacct \
--resource-group my-rg \
--location eastus \
--sku Standard_LRS \
--encryption-services blob \
--min-tls-version TLS1_2
az storage container create \
--name mycontainer \
--account-name mystorageacct \
--auth-mode login
# Upload and download
az storage blob upload \
--account-name mystorageacct \
--container-name mycontainer \
--file ./data.json --name data.json
az storage blob download \
--account-name mystorageacct \
--container-name mycontainer \
--name data.json --file ./downloaded.json
# List blobs
az storage blob list \
--account-name mystorageacct \
--container-name mycontainer -o table
# Generate SAS token
az storage blob generate-sas \
--account-name mystorageacct \
--container-name mycontainer \
--name data.json \
--permissions r --expiry 2024-12-31
```
## Azure Functions
```bash
# Create Function App
az functionapp create \
--resource-group my-rg \
--name my-func-app \
--consumption-plan-location eastus \
--runtime python --runtime-version 3.11 \
--functions-version 4 \
--storage-account mystorageacct \
--os-type Linux
# Deploy function code
func azure functionapp publish my-func-app
# App settings
az functionapp config appsettings set \
--name my-func-app -g my-rg \
--settings "DB_HOST=mydb.postgres.database.azure.com" "ENV=production"
# View logs
az functionapp log tail --name my-func-app -g my-rg
```
## AKS (Kubernetes)
```bash
# Create AKS cluster
az aks create \
--resource-group my-rg \
--name my-aks \
--node-count 3 \
--node-vm-size Standard_DS2_v2 \
--enable-managed-identity \
--generate-ssh-keys
# Get credentials
az aks get-credentials -g my-rg -n my-aks
# Scale node pool
az aks scale -g my-rg -n my-aks --node-count 5
# Enable autoscaler
az aks update -g my-rg -n my-aks \
--enable-cluster-autoscaler --min-count 1 --max-count 10
```
## Networking
```bash
# Create VNet and subnet
az network vnet create \
--resource-group my-rg \
--name my-vnet \
--address-prefix 10.0.0.0/16 \
--subnet-name default --subnet-prefix 10.0.1.0/24
# Network Security Group
az network nsg create -g my-rg -n my-nsg
az network nsg rule create -g my-rg --nsg-name my-nsg \
-n allow-https --priority 100 \
--destination-port-ranges 443 --access Allow --protocol Tcp
```
## Useful Patterns
```bash
# Query with JMESPath
az vm list -g my-rg --query "[?powerState=='VM running'].name" -o tsv
# Export ARM template from existing resources
az group export -g my-rg > template.json
# Cost analysis
az consumption usage list --start-date 2024-01-01 --end-date 2024-01-31
# Monitor and alerts
az monitor metrics list --resource /subscriptions/.../my-vm \
--metric "Percentage CPU" --interval PT1H
```
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.