azure-keyvault-keys-ts
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: azure-keyvault-keys-ts description: Manage cryptographic keys using Azure Key Vault Keys SDK for JavaScript (@azure/keyvault-keys).
Malicious tool definition detected
Tool: references/acceptance-criteria.md Description: # Acceptance Criteria: azure-keyvault-keys-ts ## Overview This document defines the acceptance criteria for code generated using the `@azure/keyvault-keys` SDK for TypeScript/JavaScript.
Malicious tool definition detected
Tool: references/keys.md [1/2] Description: # Keys Reference Cryptographic key management and operations using @azure/keyvault-keys SDK.
Tool: references/keys.md [2/2] Description: to sign const data = Buffer.from("Data to sign"); const hash = createHash("sha256").update(data).digest(); // Sign with RSA key const signResult = await cryptoClient.sign("RS256", hash); console.log(`Signature (${signResult.result.length} bytes)`); // Verify signature const verifyResult = await cryptoClient.verify("RS256", hash, signResult.result); console.log(`Valid: ${verifyResult.result}`); // Sign data directly (SDK computes hash) const signDataRes
Malicious tool definition detected
Tool: references/secrets.md [1/2] Description: # Secrets Reference Secret management operations using @azure/keyvault-secrets SDK.
Tool: references/secrets.md [2/2] Description: ### Common Error Codes | Code | Meaning | |------|---------| | 404 | Secret not found (or deleted) | | 403 | Access denied (RBAC permission missing) | | 409 | Conflict (secret exists in deleted state) | | 429 | Rate limited (too many requests) | ## Common Patterns ### Secret Rotation ```typescript async function rotateSecret(name: string, newValue: string): Promise<KeyVaultSecret> { // Get current secret to preserve metadata const current = await se