ascii-mini-charts
Pass
Audited by Gen Agent Trust Hub on Feb 17, 2026
Risk Level: SAFE
Full Analysis
- [EXTERNAL_DOWNLOADS] (SAFE): No external dependencies are downloaded. The script relies entirely on the Python standard library.
- [DATA_EXFILTRATION] (SAFE): No network operations or sensitive file access patterns were detected. The skill only processes data provided via stdin.
- [REMOTE_CODE_EXECUTION] (SAFE): No use of
eval(),exec(), orsubprocessmodules. The script logic is confined to numeric processing and string formatting. - [COMMAND_EXECUTION] (SAFE): The skill does not execute system commands. The Python script is used for logic-based rendering of text characters.
- [PROMPT_INJECTION] (SAFE): The instructions in
SKILL.mdare standard and do not contain attempts to override agent safety guidelines or system prompts. - [INDIRECT_PROMPT_INJECTION] (LOW):
- Ingestion points: Reads from
sys.stdininscripts/mini_charts.py. - Boundary markers: None explicitly used in the code, but data is strictly cast to floats.
- Capability inventory: Logic is limited to math and ASCII string generation.
- Sanitization: Input is validated by
float(x)conversion, which effectively strips any malicious text-based instructions before they could reach the output.
Audit Metadata