azure-functions-inventory

azure-functions-inventory is a skill for Claude Code from Azure/azure-functions-skills. It costs 58 tokens per session (713 once invoked), scanned A, original, MIT.

A procedure for collecting the fixed configuration and inventory of an Azure Functions app, Microsoft's serverless application service.

In plain words
What is it for?
Use it to document an Azure Functions app's resources, triggers, configuration, identity, and deployment-related specifications.
Why use it?
It provides a structured view of the app's identity, hosting plan, runtime, networking, settings, and functions without investigating live health or performance.

Skill for Claude Code ✓ vendor

Written for Claude Code: shipped in a Claude Code plugin.

Part of the azure-functions-skills plugin — 12 skills, 1 hook, 1 MCP server shipped together

Good fit Use it to document an Azure Functions app's resources, triggers, configuration, identity, and deployment-related specifications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/azure/azure-functions-skills/azure-functions-inventory
About the project

Azure Functions Skills is a repository of agent skills, prompts, reusable definitions, MCP configuration, and telemetry hooks that give coding agents context about Azure Functions development and operations. Developers use it for guidance on triggers, bindings, runtimes, deployment, and code checks, while the catalogue contains its agent-facing add-ons.

Azure/azure-functions-skills · 17 stars · on GitHub

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.

Any agent
npx skills add Azure/azure-functions-skills --skill azure-functions-inventory
Clone the repo
git clone --depth 1 https://github.com/Azure/azure-functions-skills

Made for: Claude Code.

Or install azure-functions-skills, the plugin that ships this one along with the rest of its 12 skills, 1 hook, 1 MCP server.

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-functions-inventory

README.md
[![agentmods](https://agentmods.dev/badge/skills/azure/azure-functions-skills/azure-functions-inventory/github.svg)](https://agentmods.dev/skills/azure/azure-functions-skills/azure-functions-inventory)
Your own site
<a href="https://agentmods.dev/skills/azure/azure-functions-skills/azure-functions-inventory"><img src="https://agentmods.dev/badge/skills/azure/azure-functions-skills/azure-functions-inventory/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for azure-functions-inventory

Your own site · 80×15
<a href="https://agentmods.dev/skills/azure/azure-functions-skills/azure-functions-inventory"><img src="https://agentmods.dev/badge/skills/azure/azure-functions-skills/azure-functions-inventory.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 713 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00058 $0.00713
Opus 5 $0.00029 $0.00357
Sonnet 5 $0.00012 $0.00143
Haiku 4.5 $0.00006 $0.00071

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

Security

Grade A, and why

azure-functions-inventory 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 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/get-functionapp-inventory.ps1, scripts/get-functionapp-inventory.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.github/plugins/azure-functions-skills/skills/azure-functions-inventory/SKILL.md · 66 lines

How it starts

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

Azure Functions Inventory

Use this skill to collect the static specifications of an existing Azure Function App.

Write final answers in the user's language.

Required interaction

Ask only for missing inputs that are needed to identify the app:

  • Function App name (required unless already provided)
  • Subscription ID or name (optional)
  • Resource group (optional)

If subscription or resource group is unknown, discover them with Resource Graph. If multiple matching apps are found, ask the user to choose one.

Fast path

  1. Call Azure best practices for azurefunctions first when available.
  2. Run the bundled inventory script for the current shell/OS:
    • scripts/get-functionapp-inventory.ps1 -AppName <app-name>
    • scripts/get-functionapp-inventory.sh -a <app-name> on macOS/Linux or Bash
    • Add -SubscriptionId <sub> and/or -ResourceGroup <rg> when known.
    • For Bash, use -s <sub> and/or -g <resource-group> when known.
    • Bash script requires Azure CLI plus a working python3 or python executable for JSON shaping.
  3. If bundled script execution is unavailable, use references/inventory-commands.md.
  4. Report only inventory/specification data unless the user explicitly asks for health or telemetry.

If a caller needs runtime or trigger interpretation after inventory collection, use ../azure-functions-common/references/routing.md on demand. Do not load shared language/extension references for plain inventory output.

Next steps

  • On success, suggest azure-functions-health-status to check current health and telemetry next.
  • On failure, suggest azure-functions-diagnostics to triage missing or blocked inventory data.

Scope boundary

This skill should collect:

  • Resource identity: subscription, resource group, region, resource ID, host name
  • Plan/SKU/runtime: plan name/SKU/status, OS, runtime stack/version, Functions runtime
  • Flex config: deployment storage type/auth, memory, max instances, always-ready value, update strategy
  • Network/security: VNet integration, public network access, HTTPS only, TLS, FTPS, private endpoint count if available
  • Identity/settings: managed identity type and selected setting presence with secrets redacted
  • Functions inventory: functions and trigger types, enabled/disabled counts
  • Related resources in the resource group, summarized by resource type/name/SKU

Read the full file on GitHub · 66 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 66 lines · 58 tokens per session scan A 002e76b54eb3

Subscribe to this mod's changes

azure-functions-inventory is a skill published in the GitHub repository Azure/azure-functions-skills (17 stars, last pushed today), licensed MIT. It adds 58 tokens to every session and 713 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens

gke-workload-security

Audits, configures, and hardens workload-level security controls for Google Kubernetes Engine (GKE) applications and namespaces. Covers running cluster security audits (auditcluster.sh), configuring Workload Identity Federation (impersonation, KSA/GSA binding, and pod setup), enforcing Network Policies (default-deny…

google/skills · 181 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

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens

cloud-architect

Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…

Jeffallan/claude-skills · 71 tokens