task-tree
Warn
Audited by Gen Agent Trust Hub on Jul 8, 2026
Risk Level: MEDIUMEXTERNAL_DOWNLOADSREMOTE_CODE_EXECUTIONCOMMAND_EXECUTIONDATA_EXFILTRATION
Full Analysis
- [EXTERNAL_DOWNLOADS]: The
scripts/wrapper_resolver.pyscript contains a Bash resolver logic (RESOLVER_SNIPPET) that is embedded into the generatedsuperrawrapper andtask-hookshim. This snippet includes a fallback mechanism that attempts to shallow-clone a repository from GitHub (https://github.com/FuZhiyu/superRA.git) if the tool's scripts cannot be found locally on the system. This involves usinggit cloneandgit fetchat runtime. - [REMOTE_CODE_EXECUTION]: The CLI wrapper generated by
scripts/wrapper_resolver.pyincludes logic to execute the scripts downloaded via the GitHub fallback mechanism. It usesexec uv run --scriptorpython3on paths within the cloned repository, which constitutes execution of remote code. - [COMMAND_EXECUTION]: The skill makes extensive use of the
subprocessmodule to interact with the system environment. scripts/plan_dashboard.pyusessubprocess.Popento spawn the dashboard server as a background process andsubprocess.runto execute git commands for repository information and process management.scripts/task_hook.py,scripts/_comments.py, andscripts/_worktree_discovery.pyusesubprocess.runto executegitcommands for configuration, logging, and worktree management.- [DATA_EXFILTRATION]: The
scripts/plan_dashboard.pyscript implements a web server using FastAPI that provides a/files/{path:path}endpoint. This endpoint allows reading files from the project root. While it includes a check to prevent path traversal outside the project root usingis_relative_to, it provides a mechanism for accessing and potentially exfiltrating project files if the server is exposed to the network (e.g., via the--host 0.0.0.0option). - [SAFE]: The skill vendors several well-known third-party JavaScript libraries (DOMPurify, KaTeX, highlight.js, markdown-it) for its dashboard. These are stored locally in the
scripts/vendor/directory and are used for rendering content in the standalone export mode.
Audit Metadata