Back to list
BreakerOfStems

azure-resources

by BreakerOfStems

0🍴 0📅 Jan 23, 2026

SKILL.md


name: azure-resources description: Query Azure resources and configurations (read-only)

Azure Resources Skill (Read-Only)

Query and inspect Azure resources without making changes.

See also: Shared Conventions | Safety Guidelines

Purpose

Search, list, and inspect Azure resources to understand infrastructure.

Commands

az account show -o json
az account list -o json
az group list -o json
az group show --name <name> -o json
az resource list -o json
az resource list --resource-group <rg> -o json
az resource list --resource-type <type> -o json
az resource show --ids <resource-id> -o json

Output Format

Always use -o json for consistent, parseable output.

Workflow Examples

Get Current Subscription

az account show -o json

List All Resource Groups

az group list -o json

Find Resources by Type

# All VMs
az resource list --resource-type "Microsoft.Compute/virtualMachines" -o json

# All storage accounts
az resource list --resource-type "Microsoft.Storage/storageAccounts" -o json

# All App Services
az resource list --resource-type "Microsoft.Web/sites" -o json

Inspect Specific Resource

az resource show --ids "/subscriptions/xxx/resourceGroups/yyy/providers/..." -o json

Find Resources in a Resource Group

az resource list --resource-group my-rg -o json

Common Resource Types

ResourceType String
VMMicrosoft.Compute/virtualMachines
StorageMicrosoft.Storage/storageAccounts
App ServiceMicrosoft.Web/sites
SQL DatabaseMicrosoft.Sql/servers/databases
Key VaultMicrosoft.KeyVault/vaults
AKSMicrosoft.ContainerService/managedClusters

Policies

  • Read-only only - no create, update, delete, or set commands
  • Always use JSON output for consistent parsing
  • If asked to modify resources: stop, explain read-only scope, show what command would be needed, require explicit confirmation

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon