technical-debt-detector
Pass
Audited by Gen Agent Trust Hub on Mar 1, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADS
Full Analysis
- [DYNAMIC_EXECUTION]: The master script
scripts/analyze_all.pydynamically loads and executes modular analyzer scripts (e.g.,find_deferred_work.py,find_security_issues.py) from its local directory using theimportlibmodule. - [COMMAND_EXECUTION]: Several scripts execute external command-line tools using
subprocess.runto perform their analysis.scripts/analyze_test_coverage.pyexecutespytest,scripts/check_dependencies.pyexecutespipandpip-audit, andscripts/find_security_issues.pyexecutesbandit. - [EXTERNAL_DOWNLOADS]: The documentation in
SKILL.mdrecommends installing third-party tools from well-known sources, includingbandit,pip-audit, andpytest-covfrom the Python Package Index (PyPI). - [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted external codebases, which provides a surface for indirect prompt injection attacks.
- Ingestion points: All Python files in the user-provided directory are scanned by the analyzer scripts.
- Boundary markers: The skill does not use specific boundary markers or instructions to isolate the content of the analyzed files from the agent's core instructions.
- Capability inventory: The skill has the ability to read local files and execute system commands through established tools like
pipandpytest. - Sanitization: The scripts extract and display raw content from analyzed files, such as
TODOorFIXMEcomments, which could contain malicious instructions for the agent.
Audit Metadata