site-architecture
Pass
Audited by Gen Agent Trust Hub on Apr 1, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADS
Full Analysis
- [SAFE]: The skill provides Python scripts for local site analysis. No malicious code, hardcoded credentials, or suspicious patterns were detected across the SKILL.md or associated scripts.
- [COMMAND_EXECUTION]: The skill includes multiple Python scripts (
link_mapper.py,redirect_checker.py,sitemap_analyzer.py) designed to be executed locally by the agent to analyze sitemap files and URL lists. These scripts use standard library modules for file I/O and data processing. - [EXTERNAL_DOWNLOADS]: The
redirect_checker.pyscript performs outbound network operations using thehttp.clientmodule to send HTTP HEAD requests. This functionality is intended for verifying URL status codes and redirect chains as part of a site architecture audit. - [SAFE]: The skill processes untrusted external data (sitemaps and URL lists), which constitutes a potential surface for indirect prompt injection.
- Ingestion points: The scripts
sitemap_analyzer.py,link_mapper.py, andredirect_checker.pyread user-provided XML sitemaps and TXT URL lists. - Boundary markers: Absent; data is ingested directly from file contents into the script logic.
- Capability inventory: The
redirect_checker.pyscript can perform network requests; all scripts possess local file-read capabilities for specified paths. - Sanitization: Basic URL parsing and XML parsing are performed using the Python standard library's
urllib.parseandxml.etree.ElementTreemodules.
Audit Metadata