B
SCORE 75 / 100
$skillox install rust-patternsSoon
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 4 medium findings (3+ MEDs → B).
0 CRIT0 HIGH4 MED0 LOW
To reach a higher grade
- AReach Atarget score 95
Resolve 2 of 4 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-v5nd04nk5b5hucxqureqt96n · Thu, 28 May 2026 17:00:38 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.
298let handles: Vec<_> = (0..10).map(|_| {
299 let counter = Arc::clone(&counter);
300 std::thread::spawn(move || {← spawns a subprocess outside declared capabilities
301 let mut num = counter.lock().expect("mutex poisoned");
302 *num += 1;
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.
318for i in 0..5 {
319 let tx = tx.clone();
320 std::thread::spawn(move || {← spawns a subprocess outside declared capabilities
321 tx.send(format!("message {i}")).expect("receiver disconnected");
322 });
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.
349async fn fetch_all(urls: Vec<String>) -> Vec<Result<String>> {
350 let handles: Vec<_> = urls.into_iter()
351 .map(|url| tokio::spawn(async move {← spawns a subprocess outside declared capabilities
352 fetch_with_timeout(&url).await
353 }))
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/rust-patterns