ascii-table-renderer
Pass
Audited by Gen Agent Trust Hub on Jun 23, 2026
Risk Level: SAFE
Full Analysis
- [SAFE]: The skill is a pure data transformation utility. The core logic in
scripts/render_table.pyuses only Python standard libraries (json,sys,argparse) to process data from standard input. - [SAFE]: No network operations, file system access, or credential harvesting patterns were detected. The skill's boundary explicitly states it does not fetch data from databases or APIs.
- [SAFE]: The code is clear and lacks any form of obfuscation, dynamic execution (
eval/exec), or persistence mechanisms. - [SAFE]: While the skill processes untrusted data (Indirect Prompt Injection surface), it does so safely by stringifying and truncating inputs without interpreting them as code or instructions. It has no dangerous capabilities (like network or shell access) that could be exploited via malicious data input.
- Ingestion points:
scripts/render_table.pyreads JSON data fromsys.stdin. - Boundary markers: The output is structured using ASCII borders (
+,-,|) which provide structural delimitation. - Capability inventory: No subprocess calls, network access, or file-write operations are present in the script.
- Sanitization: All input values are converted to strings and truncated according to the
maxColWidthparameter.
Audit Metadata