system-text-json-net11
Pass
Audited by Gen Agent Trust Hub on Sep 15, 2026
Risk Level: SAFEEXTERNAL_DOWNLOADSCOMMAND_EXECUTIONREMOTE_CODE_EXECUTION
Full Analysis
- Official SDK Installation Pattern: The skill includes instructions to download and execute the official .NET installation script (
dotnet-install.sh/dotnet-install.ps1) fromdot.net. This is a standard mechanism provided by Microsoft for automated environment setup. - Environment Validation and Execution: The skill performs system checks using
dotnet --list-sdksand executes generated code usingdotnet run. These commands are contained within the scope of validating the .NET 11 features described in the documentation. - Local Path Containment: Installations are directed to a local directory (
./.dotnet) rather than modifying system-wide paths or requiring administrative privileges, following the principle of least privilege for development environments. - Temporary File Handling: The skill uses
mktempand GUID-based filenames for installation scripts and ensures they are cleaned up after use viatraporfinallyblocks.
Audit Metadata