skill-creator
Pass
Audited by Gen Agent Trust Hub on May 5, 2026
Risk Level: SAFE
Full Analysis
- [Command Execution]: The skill includes local Python scripts (
init_skill.py,package_skill.py,quick_validate.py) that perform file system operations such as creating directories, writing templates, and zipping skill folders. These operations are transparent and consistent with a development utility's purpose. - [Credential Management]: The documentation and code templates explicitly advocate for using
DefaultAzureCredentialand environment variables instead of hardcoding secrets. This aligns with standard Azure security practices for managing identities and access. - [Data Integrity]: The validation utility uses
yaml.safe_load()to process skill configuration files, which is a key security measure to prevent unsafe deserialization of untrusted input. - [External References]: All URLs and documentation links within the skill point to official Microsoft and Azure domains or GitHub organizations, which are recognized as trusted sources for SDK-related information.
- [Privilege Management]: The initialization script applies executable permissions to generated helper scripts using
chmod 755. This is a standard procedure for creating local command-line tools and is restricted to the scope of the skill's own generated content.
Audit Metadata