context-engineering: Skill for Claude Code

.claude/skills/azure-iac-bicep/SKILL.md

azure-iac-bicep is a skill for Claude Code from timothywarner-org/context-engineering. It costs 150 tokens per session (1,603 once invoked), scanned A, original, MIT.

A skill for writing and maintaining Azure infrastructure as code in Bicep, Microsoft’s language for describing cloud resources in text, with ARM JSON as a fallback format.

In plain words
What is it for?
Use it to create or refactor Bicep modules, migrate older ARM templates, validate changes, compare planned deployments, and deploy infrastructure.
Why use it?
It helps keep Azure deployments repeatable while accounting for changing resource schemas, validation, security, and deployment checks.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is timothywarner-org/context-engineering's own configuration. It tells Claude Code how to work on context-engineering itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything context-engineering configures →

Reuse

Borrowing it

Nothing to install: this file belongs to timothywarner-org/context-engineering. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/timothywarner-org/context-engineering/main/.claude/skills/azure-iac-bicep/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/timothywarner-org/context-engineering

Made for: Claude Code.

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-iac-bicep

README.md
[![agentmods](https://agentmods.dev/badge/skills/timothywarner-org/context-engineering/azure-iac-bicep/github.svg)](https://agentmods.dev/skills/timothywarner-org/context-engineering/azure-iac-bicep)
Your own site
<a href="https://agentmods.dev/skills/timothywarner-org/context-engineering/azure-iac-bicep"><img src="https://agentmods.dev/badge/skills/timothywarner-org/context-engineering/azure-iac-bicep/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-iac-bicep

Your own site · 80×15
<a href="https://agentmods.dev/skills/timothywarner-org/context-engineering/azure-iac-bicep"><img src="https://agentmods.dev/badge/skills/timothywarner-org/context-engineering/azure-iac-bicep.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 150 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,603 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.
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.00150 $0.01603
Opus 5 $0.00075 $0.00801
Sonnet 5 $0.00030 $0.00321
Haiku 4.5 $0.00015 $0.00160

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

Security

Grade A, and why

azure-iac-bicep 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 9d 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.

.claude/skills/azure-iac-bicep/SKILL.md · 123 lines

How it starts

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

Azure IaC: Bicep + ARM

Production-grade Azure infrastructure as code. Bicep is the default authoring language; ARM JSON is the compile target and the fallback for tooling that has not adopted Bicep. Decompile legacy ARM to Bicep, never hand-author new ARM JSON.

When to load reference files

This file is the index. Load the deeper material only when the task needs it:

You are... Read
Authoring a module, picking a scope, choosing decorators, wiring outputs references/module-patterns.md
Migrating ARM JSON to Bicep, or deciding Bicep vs ARM vs Terraform references/arm-vs-bicep.md
Running lint / what-if / deploy / deployment stacks, or building a CI pipeline references/deploy-runbook.md

Documentation-first mandate

Resource API shapes drift. Before emitting any resource declaration, confirm the type, apiVersion, and required properties against the live schema rather than memory:

  • Call the mcp__azure__bicepschema tool for the exact resource type (for example Microsoft.Storage/storageAccounts) to get current apiVersion and property names.
  • For Terraform-adjacent questions, call mcp__azure__azureterraformbestpractices.
  • For broader service guidance, call mcp__azure__get_azure_bestpractices and mcp__ms-learn__microsoft_docs_search.

If those tools are unavailable, state plainly that you are reasoning from training knowledge and flag that the user must validate the apiVersion against the current provider schema. Never invent an apiVersion or a property name. A template that fails at deploy time on a bad property is a sprint blocker.

Non-negotiable authoring rules

  1. No secrets in templates or parameter files. Reference Key Vault with the getSecret() function from a .bicepparam file or a Microsoft.KeyVault/vaults existing reference. Never a literal password, key, or connection string. Mark sensitive parameters @secure().
  2. Identity over keys. Default to system-assigned managed identity and RBAC role assignments. Reach for shared keys or SAS only when a service genuinely lacks managed-identity support, and say so.
  3. Parameterize environment, not structure. Parameters carry what changes per environment (name prefixes, SKUs, region, scale). The resource graph stays declarative and identical across environments.
  4. Idempotent by construction. Bicep deployments are incremental and re-runnable. Use deterministic names (uniqueString(resourceGroup().id) patterns) so re-runs converge rather than duplicate.
  5. Every parameter is decorated. @description() on every parameter and output. @allowed(), @minLength(), @maxLength(), @minValue(), @maxValue() wherever a constraint exists.
  6. Comments justify design, not syntax. Explain why a SKU, a scope, or a dependency exists. The Bicep already shows what.
  7. Modules for reuse, not for everything. Extract a module when a unit is reused or independently testable. Do not shred a single-purpose template into ceremony.

Read the full file on GitHub · 123 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. 9d ago First seen · 123 lines · 150 tokens per session scan A ede6000eea5b

Subscribe to this mod's changes

azure-iac-bicep is a skill published in the GitHub repository timothywarner-org/context-engineering (27 stars, last pushed 2mo ago), licensed MIT. It adds 150 tokens to every session and 1,603 once invoked, about $0.0007 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.