AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Azure Resource Abbreviations

skill-tsubakimoto-skills-azure-resource-abbreviations · by tsubakimoto

>

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-tsubakimoto-skills-azure-resource-abbreviations

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tsubakimoto-skills-azure-resource-abbreviations)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Azure Resource Abbreviations? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Azure Resource Abbreviations Skill

This skill helps with Azure resource abbreviations and naming conventions. It uses the bundled references\abbreviations.json catalog for fast local lookup and the Microsoft Cloud Adoption Framework page as the authoritative fallback for ambiguous or newly added resources.

Skill directory

~/.copilot/skills/azure-resource-abbreviations/

Quick Reference

| Task | Command | | --- | --- | | Look up one resource | dotnet run --file scripts\lookup_abbreviation.cs -- "" | | List supported categories | dotnet run --file scripts\list_categories.cs | | Show resources in a category | dotnet run --file scripts\get_category.cs -- "" | | Generate naming templates | dotnet run --file scripts\generate_template.cs -- "" |


Workflow

  1. First determine whether the user needs a single abbreviation, **a shortlist of likely Azure

resource matches, a category view, or a naming convention/template**.

  1. Use the bundled C# file-based app scripts for deterministic local lookup:
  • lookup_abbreviation.cs for one resource type or fuzzy matching
  • list_categories.cs to browse available groups
  • get_category.cs to inspect all resources in a category
  • generate_template.cs when the user wants a reusable naming pattern
  1. Treat references\abbreviations.json as the fast local catalog. If a query is ambiguous,

missing, or the result will be used in governance/policy documentation, verify it against the Microsoft Learn page: https://learn.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations

  1. When composing a full resource name, distinguish between:
  • Official prefix: the raw value from the bundled catalog, which can include a trailing -
  • Naming token: the prefix with a trailing - removed so it can be embedded in a larger

naming template

  1. Call out special cases instead of forcing a normal prefix pattern:
  • Some resources use descriptive names rather than a standard abbreviation
  • Some resources have stricter naming rules than others
  • Storage accounts and DNS-related resources often need extra rule checks beyond the prefix

Script Requirements

The scripts in scripts\ are implemented as C# file-based apps and use #:include.

  • Require .NET SDK 10.0.300 or later
  • Run them from this skill directory or pass the full path to the .cs file

Output Expectations

When responding, prefer this structure when it fits:

| Field | Meaning | | --- | --- | | Resource | Human-readable Azure resource type | | Provider | Azure resource provider / local resource key when relevant | | Official prefix | Raw catalog value | | Naming token | Prefix normalized for use inside a full name | | Notes | Any ambiguity, special naming rules, or CAF verification note |

If there are multiple matches, do not guess. Return the shortlist and explain which one seems closest.


Resource Categories

The bundled catalog exposes these top-level categories:

  1. AI + Machine Learning
  2. Analytics and IoT
  3. Compute and Web
  4. Containers
  5. Databases
  6. Developer Tools
  7. Integration
  8. Management and Governance
  9. Migration
  10. Networking
  11. Security
  12. Storage

Examples

Look up a resource abbreviation

dotnet run --file scripts\lookup_abbreviation.cs -- "Virtual Machine"
dotnet run --file scripts\lookup_abbreviation.cs -- "Storage Account"
dotnet run --file scripts\lookup_abbreviation.cs -- "Application Gateway"

Explore a category

dotnet run --file scripts\list_categories.cs
dotnet run --file scripts\get_category.cs -- "Networking"

Generate a naming template

dotnet run --file scripts\generate_template.cs -- "Web App"

Use the generated naming token in Bicep, Terraform, or documentation:

param environment string
param region string

var namingToken = 'vm'
var resourceName = '${namingToken}-${environment}-web01-${region}'

Guidance

  • Prefer the smallest exact answer when the user only needs one abbreviation.
  • Prefer the category scripts when the user is designing standards for many related resources.
  • Prefer the template script when the user asks for a full naming convention rather than only a

prefix.

  • Use the Microsoft Learn page to verify final wording when the request is compliance-sensitive,

governance-oriented, or the local catalog result looks outdated.

  • Explain that Microsoft Learn is authoritative if it disagrees with the local catalog.

References

  • Local catalog: [references/abbreviations.json](./references/abbreviations.json)
  • Reference guide: [references/NAMINGGUIDE.md](./references/NAMINGGUIDE.md)
  • Microsoft Learn:

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.