phylogenetics
github.com/k-dense-ai/scientific-agent-skillsVerdict: Generally safe
0 critical0 high5 medium
B
SCORE 75 / 100
$skillox install phylogeneticsSoon
Sign in to followFollowing emails you when a re-scan drops the grade. Opt-out is per-creator on /account/billing.
Why grade B?
score · 75 / 100The current grade reflects 5 medium findings (3+ MEDs → B).
0 CRIT0 HIGH5 MED0 LOW
To reach a higher grade
- AReach Atarget score 95
Resolve 3 of 5 MED (cap is 2).
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Latest scan findings
Scan crawl-l8jj79hqsbkuvigkmpv8wtlt · Thu, 28 May 2026 17:47:14 GMT · 3ms
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
75
76 with open(output_fasta, 'w') as out:
77 result = subprocess.run(cmd, stdout=out, stderr=subprocess.PIPE, text=True)← spawns a subprocess outside declared capabilities
78
79 if result.returncode != 0:
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
108 """
109 cmd = ["trimal", f"-{method}", "-in", aligned_fasta, "-out", output_fasta, "-fasta"]
110 result = subprocess.run(cmd, capture_output=True, text=True)← spawns a subprocess outside declared capabilities
111 if result.returncode != 0:
112 print(f"TrimAl warning: {result.stderr}")
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
151 cmd.extend(extra_args)
152
153 result = subprocess.run(cmd, capture_output=True, text=True)← spawns a subprocess outside declared capabilities
154
155 if result.returncode != 0:
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
206
207 with open(output_tree, 'w') as out:
208 result = subprocess.run(cmd, stdout=out, stderr=subprocess.PIPE, text=True)← spawns a subprocess outside declared capabilities
209
210 if result.returncode != 0:
medNo capability manifest declaredThe skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.rule: no-manifest▾
No capability manifest declared
The skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.
rule:
no-manifestskillox.io/c/phylogenetics