explicit-identity
github.com/parcadei/continuous-claude-v3Verdict: Generally safe
0 critical0 high3 medium
B
SCORE 75 / 100
$skillox install explicit-identitySoon
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 3 medium findings (3+ MEDs → B).
0 CRIT0 HIGH3 MED0 LOW
To reach a higher grade
- AReach Atarget score 95
Resolve 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-sc1clii8k2qmsxhwruh381sx · Thu, 28 May 2026 17:40:10 GMT · 1ms
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.
33```typescript
34// BAD: race condition at session boundaries
35spawn('analyzer', ['--learn']) // defaults to "most recent"← spawns a subprocess outside declared capabilities
36
37// GOOD: explicit identity
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.
36
37// GOOD: explicit identity
38spawn('analyzer', ['--learn', '--session-id', input.session_id])← spawns a subprocess outside declared capabilities
39```
40
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/explicit-identity