用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Azure/vscode-aks-tools --skill kickstart-bicep-authoring命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | kickstart-bicep-authoring |
| description | Writing idiomatic, safe, and reviewable Bicep templates for Azure resources. |
| disable-model-invocation | true |
Bicep is the preferred IaC language for Azure deployments in Kickstart.
// Parameters first
param location string = resourceGroup().location
param name string
// Variables derived from params
var uniqueSuffix = uniqueString(resourceGroup().id)
// Resources
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = {
name: '${name}${uniqueSuffix}'
location: location
sku: { name: 'Standard_LRS' }
kind: 'StorageV2'
}
// Outputs last
output accountName string = storageAccount.name
output primaryEndpoint string = storageAccount.properties.primaryEndpoints.blob
@2023-01-01 not @latest.uniqueString() for globally unique names — storage accounts, key vaults, ACR.existing resources — reference resources not managed by this template with existing.Always call azure.validate_bicep before presenting a template to the user. Fix all errors; warnings are acceptable if explained.
minimalTlsVersion: '1.2'.0.0.0.0/0 inbound rules without explicit user approval.Prepare a release PR for the Azure/vscode-aks-tools VS Code extension. Bumps version in package.json and package-lock.json, creates a new What's New doc, updates SUMMARY.md / release.md / README.md / releasing.md, and removes stale prior-release files. WHEN: 'make a release PR', 'release vscode-aks-tools', 'bump extension version', 'create publish-x.y.z branch', 'prepare release notes for aks tools', 'what's new file for next release'. DO NOT USE FOR: actually publishing to the marketplace (that runs via the internal 1ES pipeline), changelog backfill (CHANGELOG.md is deprecated since 1.6.14), or unrelated repos.
ACR integration for AKS Automatic. Teaches attaching an ACR, image reference conventions (digest pinning, no :latest), and pull-secret-free authentication via the managed identity.
Non-blocking cluster status peek — run at the end of Phases 3, 4, 5 to check AKS provisioning progress without hanging.
基于 SOC 职业分类