Borrowing it
Nothing to install: this file belongs to timothywarner-org/prompt-pro. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/timothywarner-org/prompt-pro/main/.claude/skills/bicep-deployment/SKILL.mdgit clone --depth 1 https://github.com/timothywarner-org/prompt-proWrote 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/timothywarner-org/prompt-pro/bicep-deployment)<a href="https://agentmods.dev/skills/timothywarner-org/prompt-pro/bicep-deployment"><img src="https://agentmods.dev/badge/skills/timothywarner-org/prompt-pro/bicep-deployment/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/timothywarner-org/prompt-pro/bicep-deployment"><img src="https://agentmods.dev/badge/skills/timothywarner-org/prompt-pro/bicep-deployment.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.00099 | $0.01744 |
| Opus 5 | $0.00049 | $0.00872 |
| Sonnet 5 | $0.00020 | $0.00349 |
| Haiku 4.5 | $0.00010 | $0.00174 |
Grade A, and why
bicep-deployment 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.
How it starts
The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bicep deployment
Bicep is Azure's domain-specific language for declarative infrastructure. You describe the desired state of resources, and the Azure Resource Manager (ARM) engine figures out the create, update, or no-op needed to reach it. This skill teaches the safe deployment loop that keeps demos green and production intact.
Teaching note: every example uses the Contoso Robotics scenario (mid-size robotics manufacturer, 500 employees, Austin TX). Swap the names, keep the pattern.
The golden rule: what-if before apply
Never run a bare az deployment ... create against an environment you care about. The loop is always:
- Lint the template so syntax and best-practice warnings surface early.
- Validate so ARM checks the template against the target scope.
- What-if so you see the exact create / modify / delete set before anything changes.
- Deploy only after a human (or a gate) reads the what-if output.
- Verify the resources match intent, then record outputs.
The two scripts in scripts/ encode steps 1-5 so learners run the loop, not just the last line.
When to reach for this skill
- You are about to write or review a
.bicepor.bicepparamfile. - You need to pick the right deployment scope (tenant, management group, subscription, resource group).
- You are wiring Bicep into GitHub Actions with OIDC and want the what-if-as-gate pattern.
- You are teaching IaC and need a clean, idempotent, real-world demo.
Quick start (Contoso Robotics)
The templates/ folder ships a deployable starter: a storage account plus a Log Analytics workspace at resource group scope. Preview then deploy with the bundled scripts.
# 0. Lint first - free, offline, catches mistakes before any login
./scripts/Invoke-BicepLint.ps1 -Path ./templates/main.bicep
# 1. Preview every change ARM would make - mutates nothing
./scripts/Test-BicepWhatIf.ps1 `
-TemplateFile ./templates/main.bicep `
-ParameterFile ./templates/main.bicepparam `
-ResourceGroup rg-contoso-robotics-dev `
-Location eastus2
# 2. Deploy after reading the what-if output. Idempotent: safe to re-run.
./scripts/Deploy-Bicep.ps1 `
-TemplateFile ./templates/main.bicep `
-ParameterFile ./templates/main.bicepparam `
-ResourceGroup rg-contoso-robotics-dev `
-Location eastus2 `
-WhatIfFirst
What ships with it
8 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/bicep-language-cheatsheet.md 5.8 KB
- references/deployment-scopes.md 5.1 KB
- references/waf-deployment-checklist.md 5.4 KB
- scripts/Deploy-Bicep.ps1 4.8 KB runs code
- scripts/Invoke-BicepLint.ps1 3.6 KB runs code
- scripts/Test-BicepWhatIf.ps1 4.3 KB runs code
- templates/main.bicep 3.8 KB
- templates/main.bicepparam 787 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.
- 9d ago First seen · 108 lines · 99 tokens per session scan A e8446618c3bb
bicep-deployment is a skill published in the GitHub repository timothywarner-org/prompt-pro (47 stars, last pushed 2mo ago), licensed MIT. It adds 99 tokens to every session and 1,744 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-30.
Other skills, from other repositories
prisma-compute
Prisma Compute deployment and hosting guide. Use whenever the user mentions Prisma Compute, prisma.compute.ts, defineComputeConfig, deploying or hosting a Prisma app, @prisma/cli app deploy, compute:deploy, create-prisma --deploy, PRISMASERVICETOKEN, auth workspace, Compute apps/deployments/build logs/domains…
aws-security-audit
AWS cloud security testing covering IAM misconfigurations, S3 exposure, metadata abuse, and privilege escalation paths.
tensorrt-llm
High-throughput LLM inference on NVIDIA GPUs.
stripe-projects
Provision SaaS services + sync creds via Stripe Projects.
cloud-sync
Set up or check claude-mem cloud sync with cmem.ai Pro. Use when the user says "set up cloud sync", "sync my memories", "cmem pro", "cloud backup", "sync status", or wants their memory database backed up or synced to their cmem.ai account.
cost-optimization
Optimize cloud costs across AWS, Azure, GCP, and OCI through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies.