Azure SDK for Rust is a collection of Rust libraries, organized as separate crates, for interacting with Azure services. Rust developers use the crates and examples to build applications that work with Azure. The catalogue entries provide coding-agent skills, instructions, agents, and MCP integrations for working with the SDK.
Borrowing it
Nothing to install: this file belongs to Azure/azure-sdk-for-rust. 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/Azure/azure-sdk-for-rust/main/.github/skills/create-recorded-test/SKILL.mdgit clone --depth 1 https://github.com/Azure/azure-sdk-for-rustWrote 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/azure/azure-sdk-for-rust/create-recorded-test)<a href="https://agentmods.dev/skills/azure/azure-sdk-for-rust/create-recorded-test"><img src="https://agentmods.dev/badge/skills/azure/azure-sdk-for-rust/create-recorded-test.svg" alt="Measured on agentmods" 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.00011 | $0.00846 |
| Opus 5 | $0.00005 | $0.00423 |
| Sonnet 5 | $0.00002 | $0.00169 |
| Haiku 4.5 | $0.00001 | $0.00085 |
Grade A, and why
create-recorded-test 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 7d 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 — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Generate a new recorded integration test
You will generate one or more recorded integration tests under the sdk/{service-directory}/{crate-name}/tests directory in ${input:testFile:test_file}.rs where:
{repo-root}is the root directory containingCargo.toml.{service-directory}is the directory name under sdk for the current ${file} e.g.,keyvault.{crate-name}is the crate directory name undersdk/{service-directory}for the current ${file} e.g.,azure_security_keyvault_secrets.
Set up
These instructions only need to be done once. If changes described are already present, do not make the changes again.
-
Recorded tests must always be integration tests under the
sdk/{service-directory}/{crate-name}/testsdirectory. Do not add recorded tests tosrc/,examples/, orREADME.md. -
If PowerShell is not installed, stop and ask the user to install it first using PowerShell installation instructions.
-
Provision test resources using the full script path:
{repo-root}/eng/common/TestResources/New-TestResources.ps1 -ServiceDirectory {service-directory} -
To run recorded tests, rely on the existing test infrastructure. Test Proxy is acquired automatically for test runs when needed, but not for
test-proxy push -a sdk/{service-directory}/assets.json. -
For manual Test Proxy usage or asset publishing, see CONTRIBUTING.md and the Test Proxy documentation.
Adding a new recorded test
For each new recorded test:
- In
sdk/{service-directory}/{crate-name}/tests/${input:testFile}.rs, add or update async integration tests attributed with#[recorded::test]. - Use the signature
async fn ${input:testName}(ctx: TestContext) -> Result<()>. - Start each test with:
let recording = ctx.recording();let mut options = {Client}Options::default();recording.instrument(&mut options.client_options);
- Construct clients with
recording.var("{ENV_VAR}", None).as_str(),recording.credential(), andSome(options). - Use sdk/keyvault/azure_security_keyvault_secrets/tests/secret_client.rs as the example for function signatures,
TestContext, and requiredClientOptionsinstrumentation. - Generate one test per client method or scenario the user wants to cover. If multiple methods share setup and belong together, keep them in the same integration test file as separate
#[recorded::test]functions. - Prefer asserting on returned models or observable state instead of only checking success.
- Reuse existing crate patterns for imports, helper types, resource naming, and environment variables.
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.
- 7d ago First seen · 73 lines · 11 tokens per session scan A 29c24b8f4c3f
create-recorded-test is a skill published in the GitHub repository Azure/azure-sdk-for-rust (885 stars, last pushed yesterday), licensed MIT. It adds 11 tokens to every session and 846 once invoked, about $0.0001 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
author-test
Generate a test given sample. Parameters: C# SDK repository root; Package name: one of Azure.AI.Projects, Azure.AI.Projects.Agents or Azure.AI.Extensions.OpenAI; the sample to use as a starting point for the test.
generate-code-cs
Generate the code from typespec for C#. Parameter: C# SDK repository root location .
build-sample-matrix
Build the matrix of all the samples throughout different frameworks.
translate-a-sample
Translate the Azure SDK sample from python to C# and generate markdownn file for the sample. Parameters: C# SDK repository root; python SDK repository root; Package name: one of Azure.AI.Projects, Azure.AI.Projects.Agents or Azure.AI.Extensions.OpenAI; The name of sample file in Python SDK repository.
update-changelog
Update the CHANGELOG.md files of C# projects. Parameters: csroot C# SDK repository root.
cosmos-run-integration-tests
Run azure-cosmos integration/customer-workflow tests locally, closely following the CI pipeline (build+install, then failsafe verify with a test profile) using one consistent JDK for both steps. USE WHEN: asked to run cosmos integration tests, customer-workflow tests (fi-customer-workflows / fi-sm-customer-workflows)…