azure-keyvault-appconfig

azure-keyvault-appconfig is a skill for Claude Code from AgenticPawan/FullStack-Pilot. It costs 94 tokens per session (1,762 once invoked), scanned A, original, MIT.

A review checklist for Azure Key Vault and App Configuration resources provisioned with Bicep. Key Vault stores secrets, while App Configuration stores application settings and feature flags.

In plain words
What is it for?
Use it to check managed-identity access, Key Vault references, soft delete and purge protection, feature-flag storage, and private-network settings.
Why use it?
It catches unsafe secret storage, weak access methods, missing recovery protections, and overly open network access before deployment.

Skill for Claude Code

Written for Claude Code: when-to-use in frontmatter.

Part of the pilot-azure plugin — 15 skills, 3 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/agenticpawan/fullstack-pilot/azure-keyvault-appconfig
Any agent
npx skills add AgenticPawan/FullStack-Pilot --skill azure-keyvault-appconfig
Clone the repo
git clone --depth 1 https://github.com/AgenticPawan/FullStack-Pilot

Made for: Claude Code.

Or install pilot-azure, the plugin that ships this one along with the rest of its 15 skills, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for azure-keyvault-appconfig

README.md
[![agentmods](https://agentmods.dev/badge/skills/agenticpawan/fullstack-pilot/azure-keyvault-appconfig.svg)](https://agentmods.dev/skills/agenticpawan/fullstack-pilot/azure-keyvault-appconfig)
Your own site
<a href="https://agentmods.dev/skills/agenticpawan/fullstack-pilot/azure-keyvault-appconfig"><img src="https://agentmods.dev/badge/skills/agenticpawan/fullstack-pilot/azure-keyvault-appconfig.svg" alt="Measured on agentmods" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,762 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00094 $0.01762
Opus 5 $0.00047 $0.00881
Sonnet 5 $0.00019 $0.00352
Haiku 4.5 $0.00009 $0.00176

Measured 5d ago against content hash d2dbe3c6b811, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

azure-keyvault-appconfig scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/pilot-azure/skills/azure-keyvault-appconfig/SKILL.md · 175 lines

How it starts

The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Standard IDs

ID Severity What it checks
KVA-001 P0 Secret value defined inline (Bicep param/App Setting) instead of a Key Vault reference
KVA-002 P0 App Configuration / Key Vault accessed by connection string or access key, not managed identity
KVA-003 P1 Key Vault missing enableSoftDelete + enablePurgeProtection
KVA-004 P1 Feature flags stored in App Settings/env instead of the App Configuration flag store
KVA-005 P1 Key Vault / App Configuration publicNetworkAccess enabled with no private endpoint

dotnet-secrets-rotation, dotnet-dynamic-configuration, and dotnet-feature-flags govern how the application reads secrets, refreshes config, and evaluates flags — all of which assume a backing store exists and is reachable by identity. This skill governs the Azure resources that provide it: Key Vault and App Configuration, provisioned in Bicep, accessed by managed identity (never a key), so the consumer-side skills have something safe to consume. Complements azure-security-baseline ASB-IM-2 (Key Vault for secrets) with the concrete Bicep wiring.


Check A — No inline secrets; use Key Vault references (KVA-001)

Detection

Scan Bicep and app-settings for secret-looking values assigned literally — a connection string with a password, an API key, a client secret — where the value should be a Key Vault reference resolved at runtime by identity. A secret in a Bicep param or an App Service appSettings entry lands in deployment history and the portal in cleartext.

BAD — client secret handed to the app as a literal setting

resource site 'Microsoft.Web/sites@2023-12-01' = {
  properties: {
    siteConfig: {
      appSettings: [
        { name: 'Db__Password', value: dbPassword }   // KVA-001: literal secret in config
      ]
    }
  }
}

GOOD — App Setting is a Key Vault reference, resolved by the site's managed identity

appSettings: [
  {
    name: 'Db__Password'
    value: '@Microsoft.KeyVault(SecretUri=${kv.properties.vaultUri}secrets/db-password/)'
  }
]
// The app's system-assigned identity has 'Key Vault Secrets User' on the vault (Check B).

Read the full file on GitHub · 175 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 175 lines · 94 tokens per session scan A d2dbe3c6b811

Subscribe to this mod's changes

azure-keyvault-appconfig is a skill published in the GitHub repository AgenticPawan/FullStack-Pilot (2 stars, last pushed 1mo ago), licensed MIT. It adds 94 tokens to every session and 1,762 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-mgmt-applicationinsights-dotnet

Azure Application Insights SDK for .NET. Application performance monitoring and observability resource management. Use for creating Application Insights components, web tests, workbooks, analytics items, and API keys. Triggers: "Application Insights", "ApplicationInsights", "App Insights", "APM", "application…

microsoft/skills · 82 tokens

azure-resource-manager-durabletask-dotnet

Azure Resource Manager SDK for Durable Task Scheduler in .NET. Use for MANAGEMENT PLANE operations: creating/managing Durable Task Schedulers, Task Hubs, and retention policies via Azure Resource Manager. Triggers: "Durable Task Scheduler", "create scheduler", "task hub", "DurableTaskSchedulerResource", "provision…

microsoft/skills · 84 tokens

azure-resource-manager-mysql-dotnet

Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: "MySQL", "MySqlFlexibleServer", "MySQL Flexible Server", "Azure Database for MySQL", "MySQL database…

microsoft/skills · 87 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

azure-mgmt-fabric-dotnet

Azure Resource Manager SDK for Fabric in .NET. Use for MANAGEMENT PLANE operations: provisioning, scaling, suspending/resuming Microsoft Fabric capacities, checking name availability, and listing SKUs via Azure Resource Manager. Triggers: "Fabric capacity", "create capacity", "suspend capacity", "resume capacity"…

microsoft/skills · 88 tokens