B
SCORE 75 / 100
$skillox install github-code-reviewSoon
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 2 high-severity findings (any HIGH → B).
0 CRIT2 HIGH3 MED0 LOW
To reach a higher grade
- AReach Atarget score 95
Resolve all 2 HIGH + 1 of 3 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-fj07vbtogq14q3rj6nlimzdg · Thu, 28 May 2026 17:34:15 GMT · 6ms
highShell-injection vector: child_process exec/spawn with template literalThe skill constructs a shell command by interpolating into a string passed to an exec-family function (`child_process exec/spawn with template literal`). If the interpolated value comes from agent context or user input, this is direct command injection. Use parameterized APIs (`spawn` with an arg-array, `subprocess.run([...])` without `shell=True`).▾
Shell-injection vector: child_process exec/spawn with template literal
The skill constructs a shell command by interpolating into a string passed to an exec-family function (`child_process exec/spawn with template literal`). If the interpolated value comes from agent context or user input, this is direct command injection. Use parameterized APIs (`spawn` with an arg-array, `subprocess.run([...])` without `shell=True`).
400
401 if (event.action === 'opened' && event.pull_request) {
402 execSync(`npx ruv-swarm github pr-init ${event.pull_request.number}`);← child_process exec/spawn with template literal — use a parameterized API instead
403 }
404
highShell-injection vector: child_process exec/spawn with template literalThe skill constructs a shell command by interpolating into a string passed to an exec-family function (`child_process exec/spawn with template literal`). If the interpolated value comes from agent context or user input, this is direct command injection. Use parameterized APIs (`spawn` with an arg-array, `subprocess.run([...])` without `shell=True`).▾
Shell-injection vector: child_process exec/spawn with template literal
The skill constructs a shell command by interpolating into a string passed to an exec-family function (`child_process exec/spawn with template literal`). If the interpolated value comes from agent context or user input, this is direct command injection. Use parameterized APIs (`spawn` with an arg-array, `subprocess.run([...])` without `shell=True`).
405 if (event.comment && event.comment.body.startsWith('$swarm')) {
406 const command = event.comment.body;
407 execSync(`npx ruv-swarm github handle-comment --pr ${event.issue.number} --command "${command}"`);← child_process exec/spawn with template literal — use a parameterized API instead
408 }
409
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.
393// webhook-handler.js
394const { createServer } = require('http');
395const { execSync } = require('child_process');← spawns a subprocess outside declared capabilities
396
397createServer((req, res) => {
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.
400
401 if (event.action === 'opened' && event.pull_request) {
402 execSync(`npx ruv-swarm github pr-init ${event.pull_request.number}`);← spawns a subprocess outside declared capabilities
403 }
404
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.
405 if (event.comment && event.comment.body.startsWith('$swarm')) {
406 const command = event.comment.body;
407 execSync(`npx ruv-swarm github handle-comment --pr ${event.issue.number} --command "${command}"`);← spawns a subprocess outside declared capabilities
408 }
409
skillox.io/c/github-code-review