Quant Full Stack
Analysis
This skill is a coherent quant-trading workflow wrapper, but it runs local scripts from a separate ~/quant_trading project that users should verify before use.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
PROJECT_DIR = os.path.join(HOME_DIR, "quant_trading") ... script_mapping = { "01_data_system": "data_system.py", ... }The skill’s main runner depends on task scripts and a project directory outside the packaged artifacts, so the reviewed package does not contain the code that performs the actual quant workflow.
result = subprocess.run(cmd, capture_output=True, text=True, timeout=120, cwd=PROJECT_DIR)
The skill executes local Python scripts through subprocess. This is purpose-aligned for a workflow runner and uses a fixed command list with a timeout, but it is still code execution under the user account.
