rust-patterns

github.com/affaan-m/ECC
Verdict: Generally safe
0 critical0 high4 medium
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 / 100

The current grade reflects 4 medium findings (3+ MEDs → B).

0 CRIT0 HIGH4 MED0 LOW
To reach a higher grade
  • A
    Reach 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

med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 300CWE-78
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;
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 320CWE-78
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 });
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 351CWE-78
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 }))
med
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-manifest
View latest scan →
skillox.io/c/rust-patterns