get-available-resources
Pass
Audited by Gen Agent Trust Hub on Jun 14, 2026
Risk Level: SAFE
Full Analysis
- [COMMAND_EXECUTION]: The script
scripts/detect_resources.pyexecutes several system diagnostic utilities to gather hardware specifications. - Evidence: The script uses
subprocess.run()to invokenvidia-smi(for NVIDIA GPU details),rocm-smi(for AMD GPU details),sysctl(for macOS processor strings), andsystem_profiler(for Apple Silicon GPU info). - Context: These commands are used to identify available hardware backends. The script implements these calls using static argument lists without shell interpolation or user-input concatenation, which is a safe practice for this type of system discovery.
- [EXTERNAL_DOWNLOADS]: The skill documentation specifies a dependency on an external Python library.
- Evidence: The
SKILL.mdfile instructs users to installpsutilviauv pip install psutil. - Context:
psutilis a well-established and trusted industry-standard library for cross-platform system monitoring and resource management.
Audit Metadata