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.
npx skills add alexpizarro/azure-lean-stack-skills --skill scaffolding-azure-bicep-infrastructuregit clone --depth 1 https://github.com/alexpizarro/azure-lean-stack-skillsWrote 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.
[](https://agentmods.dev/skills/alexpizarro/azure-lean-stack-skills/scaffolding-azure-bicep-infrastructure)<a href="https://agentmods.dev/skills/alexpizarro/azure-lean-stack-skills/scaffolding-azure-bicep-infrastructure"><img src="https://agentmods.dev/badge/skills/alexpizarro/azure-lean-stack-skills/scaffolding-azure-bicep-infrastructure/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.
<a href="https://agentmods.dev/skills/alexpizarro/azure-lean-stack-skills/scaffolding-azure-bicep-infrastructure"><img src="https://agentmods.dev/badge/skills/alexpizarro/azure-lean-stack-skills/scaffolding-azure-bicep-infrastructure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00088 | $0.01790 |
| Opus 5 | $0.00044 | $0.00895 |
| Sonnet 5 | $0.00018 | $0.00358 |
| Haiku 4.5 | $0.00009 | $0.00179 |
Grade A, and why
scaffolding-azure-bicep-infrastructure 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scaffolding Azure Bicep Infrastructure
Generates the Bicep + workflow files for a new Azure web app. Modular by default: every component (SQL, Storage, Observability) is an opt-in boolean toggle on main.bicep, so projects only provision what they actually use.
When to invoke
- New project: generate
infra/,infra/environments/,.github/workflows/ - Existing project: add a new module or refactor into the modular-toggle pattern
Workflow checklist
Copy this checklist into your response and check items off as you complete them:
Azure Bicep scaffolding:
- [ ] Step 1: Collect inputs (org, project, GitHub repo, components)
- [ ] Step 2: Generate infra/main.bicep with modular toggles
- [ ] Step 3: Generate infra/modules/ (resourceGroup, staticWebApp, sqlServer; add storage/observability/aca if toggled)
- [ ] Step 4: Generate infra/environments/test.parameters.json + prod.parameters.json
- [ ] Step 5: Generate .github/workflows/ (deploy-test.yml, deploy-prod.yml, pr-checks.yml)
- [ ] Step 6: Generate infra/sql/migrations/000_migration_history.sql + 001_create_items_table.sql
- [ ] Step 7: Verify naming consistency — every resource uses {org}-{project}-{component}-{env}
- [ ] Step 8: Run cost-guardrails audit before first deploy (skill: applying-azure-cost-guardrails)
Before starting, collect
- org — short org/company prefix (e.g.
acme) - project — short app name (e.g.
taskapp) - GitHub repo —
owner/repo-name - Components needed — SQL? Storage? Observability? FC1? Container Apps?
Files to generate
For a basic SWA + SQL project:
infra/
├── main.bicep
├── environments/
│ ├── test.parameters.json
│ └── prod.parameters.json
├── modules/
│ ├── resourceGroup.bicep
│ ├── staticWebApp.bicep
│ └── sqlServer.bicep
└── sql/migrations/
├── 000_migration_history.sql
└── 001_create_items_table.sql
.github/workflows/
├── deploy-test.yml
└── deploy-prod.yml
Add modules only when their toggle is true.
What ships with it
14 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.
- references/modular-toggles.md 3.9 KB
- references/naming-formula.md 2.3 KB
- references/per-env-sku.md 2.5 KB
- templates/.github/workflows/deploy-prod.yml 8.1 KB
- templates/.github/workflows/deploy-test.yml 8.1 KB
- templates/.github/workflows/pr-checks.yml 1.9 KB
- templates/infra/environments/prod.parameters.json 389 B
- templates/infra/environments/test.parameters.json 389 B
- templates/infra/main.bicep 5.6 KB
- templates/infra/modules/resourceGroup.bicep 262 B
- templates/infra/modules/sqlServer.bicep 1.5 KB
- templates/infra/modules/staticWebApp.bicep 1.4 KB
- templates/infra/sql/migrations/000_migration_history.sql 799 B
- templates/infra/sql/migrations/001_create_items_table.sql 545 B
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.
- 12d ago First seen · 149 lines · 88 tokens per session scan A 93750237fdd4
scaffolding-azure-bicep-infrastructure is a skill published in the GitHub repository alexpizarro/azure-lean-stack-skills (1 stars, last pushed 1mo ago), licensed MIT. It adds 88 tokens to every session and 1,790 once invoked, about $0.0004 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.
Other skills, from other repositories
azure-expert
Expert-level Microsoft Azure cloud platform, services, and architecture. Use when the user mentions cloud, Microsoft platforms, Azure Functions, or Cosmos DB.
iac-common
UTILITY SKILL — Shared IaC deploy patterns for Bicep + Terraform agents: deployment strategies, circuit breaker, known deploy issues. WHEN: "phased deployment", "circuit breaker", "deploy strategy", "deploy issue", "shared IaC pattern". DO NOT USE FOR: preflight (azure-validate), code generation (azure-bicep-patterns…
aws-iac-change-safety-review
Review AWS infrastructure-as-code changes across CDK, CloudFormation, SAM, Terraform, Serverless Framework, generated templates, plans, stack updates, change sets, and drift. Use when the user asks whether an AWS IaC deployment is safe, what a change set will do, why a resource replacement will happen, or how to…
Tag Hygiene Enforcer
Establishes and enforces a tag / label taxonomy across all clouds. Runs coverage audits, policy-as-code guardrails, and remediation campaigns until coverage is above 95%.
infra-plan
Plan infrastructure changes — Terraform modules, Helm charts, CI/CD pipelines. Use when the user wants to add or modify cloud infrastructure, Kubernetes resources, or deployment pipelines.
terraform-iac
Terraform and OpenTofu infrastructure as code best practices - generate HCL configurations, module patterns, state management, CI/CD workflows, and cloud provider templates for AWS, GCP, Azure.