bevy-rendering
Pass
Audited by Gen Agent Trust Hub on Aug 25, 2026
Risk Level: SAFECOMMAND_EXECUTION
Full Analysis
- [COMMAND_EXECUTION]: The skill provides a script
scripts/audit_renderer_features.pyand instructions inSKILL.mdto run it usingpython3to audit localCargo.tomlfiles. This is a legitimate utility for the skill's purpose of auditing Bevy project configurations and does not involve network access or external command execution. - [DYNAMIC_EXECUTION]: The test file
tests/test_audit_renderer_features.pyusesimportlib.utilandexec_moduleto load and run the audit script during testing. This is a standard and safe practice for local testing of standalone scripts within the development environment. - [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted user data (local
Cargo.tomlfiles) which represents a surface for indirect prompt injection. - Ingestion points: The
auditfunction inscripts/audit_renderer_features.pyreads a user-supplied manifest file usingtomllib. - Boundary markers: Absent. The script's output is directly interpreted by the agent without specific delimiters.
- Capability inventory: The script is limited to file reading and TOML parsing via
pathlib.Path.read_textandtomllib.loads. It does not perform network operations, subprocess calls, or file writes. - Sanitization: The script uses
tomllibfor structured parsing and only validates specific Bevy/Rapier feature keys, which significantly limits the potential for instruction injection via the configuration file.
Audit Metadata