Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

ClawBio Orchestrator

v0.1.0

Meta-agent that routes bioinformatics requests to specialised sub-skills. Handles file type detection, analysis planning, report generation, and reproducibil...

0· 429·2 current·2 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
high confidence
Purpose & Capability
Name/description match the delivered behavior: the Python CLI routes inputs to named sub-skills, generates a report header, and writes an audit log. Declared required binary (python3) is appropriate and requested packages (biopython, pandas) are reasonable for bio workflows.
!
Instruction Scope
SKILL.md promises strict safety behavior (e.g., "Refuse to operate on paths outside the working directory" and "Never upload genomic data without explicit user confirmation"). The provided orchestrator.py does not implement path restriction checks or any network/upload safeguards — it accepts arbitrary --input paths, computes file checksums (reads files), and will write an audit log in the specified output directory. This is a mismatch between claimed safety rules and actual enforcement.
Install Mechanism
Install spec lists 'uv' installs for biopython and pandas. 'uv' is not a standard, widely-known installer identifier here (e.g., pip, conda); this is ambiguous. The orchestrator.py does not import or use biopython/pandas, so those installs may be unnecessary for this orchestrator-only component.
Credentials
No credentials or environment variables are requested. The skill does not ask for unrelated secrets.
Persistence & Privilege
always:false and no special system-wide modification. The skill writes an audit log and reports to the working/output directory (normal for this type of tool).
What to consider before installing
This orchestrator mostly does what it says, but review a few things before installing: - Source and provenance: the registry metadata points to a homepage but 'Source' is unknown; verify the GitHub repo and integrity of the package before trusting it. - Safety promises vs implementation: SKILL.md promises to refuse paths outside the working directory and to never upload genomic data without explicit consent, but the shipped orchestrator.py does not enforce those restrictions. Assume the code will read any file path you pass and will write logs/reports to the specified output directory unless you sandbox it. - Install mechanism: the install uses 'uv' to add biopython and pandas. Clarify what 'uv' means in your environment (pip/conda/wrapper?) and whether these packages are actually needed — unnecessary installs increase attack surface. - File handling: the tool computes SHA-256 checksums by reading files end-to-end, which can read large/genomic files into the runtime; be cautious about giving it sensitive patient/genomic data without explicit consent and isolation. - Sub-skill trust: the orchestrator lists and routes to many sub-skills (vcf-annotator, seq-wrangler, etc.). Those sub-skill directories and their SKILL.md/code determine the real behavior for operations like annotation or uploading — review each sub-skill before allowing automated runs. - Recommended mitigations: run inside an isolated environment or container, avoid passing sensitive files until you've audited sub-skills, and ask the maintainer to (a) implement enforced path checks and explicit upload confirmation in code, and (b) clarify the install mechanism and necessity of listed packages.

Like a lobster shell, security has layers — review code before you run it.

latestvk977pdcah5q5cjmpwzn616vxs981vkt6

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🧬 Clawdis
OSmacOS · Linux
Binspython3

Install

uvuv tool install biopython
uvuv tool install pandas

Comments