Agent skill · DevOps & Cloud

azure-appconfiguration-py

Azure App Configuration SDK for Python. Use for centralized configuration management, feature flags, and dynamic settings.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill azure-appconfiguration-py --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/api/azure-appconfiguration-py/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Azure App Configuration SDK for Python Centralized configuration management with feature flags and dynamic settings. ## Installation ```bash pip install azure-appconfiguration ``` ## Environment Variables ```bash AZURE_APPCONFIGURATION_CONNECTION_STRING=Endpoint=https://<name>.azconfig.io;Id=...;Secret=... # Or for Entra ID: AZURE_APPCONFIGURATION_ENDPOINT=https://<name>.azconfig.io ``` ## Authentication ### Connection String ```python from azure.appconfiguration import AzureAppConfigurationClient client = AzureAppConfigurationClient.from_connection_string( os.environ["AZURE_APPCONFIGURATION_CONNECTION_STRING"] ) ``` ### Entra ID ```python from azure.appconfiguration import AzureAppConfigurationClient from azure.identity import DefaultAzureCredential client = AzureAppConfigurationClient( base_url=os.environ["AZURE_APPCONFIGURATION_ENDPOINT"], credential=DefaultAzureCredential() ) ``` ## Configuration Settings ### Get Setting ```python setting = client.get_configuration_setting(key="app:settings:message") print(f"{setting.key} = {setting.value}") ``` ### Get with Label ```python # Labels allow environment-specific values setting = client.get_configuration_setting( key="app:setting

What's inside
Steps it walks through
  1. Installation
  2. Environment Variables
  3. Authentication
  4. Connection String
  5. Entra ID
  6. Configuration Settings
  7. Get Setting
  8. Get with Label
  9. Set Setting
  10. Delete Setting
  11. List Settings
  12. All Settings
  13. Filter by Key Prefix
  14. Filter by Label
Ships with 1 file
  • metadata.json
Commands it runs
pip install azure-appconfiguration
Or for Entra ID:
More from claude-skill-registry
All skills →
About this skill
What does the azure-appconfiguration-py skill do?

Azure App Configuration SDK for Python. Use for centralized configuration management, feature flags, and dynamic settings.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill azure-appconfiguration-py --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going