legalize-es-spanish-legislation
github.com/aradotso/trending-skillsVerdict: Generally safe
0 critical0 high5 medium
B
SCORE 75 / 100
$skillox install legalize-es-spanish-legislationSoon
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-wc4xgjp6hhvjyqve31f2wjkc · Thu, 28 May 2026 17:23:25 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.
268 """Get all commits that modified a law file."""
269 filepath = f"spain/{boe_id}.md"
270 result = subprocess.run(← spawns a subprocess outside declared capabilities
271 ['git', 'log', '--format=%H|%ad|%s', '--date=short', '--', filepath],
272 capture_output=True, text=True
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.
293 """Get unified diff between two versions of a law."""
294 filepath = f"spain/{boe_id}.md"
295 result = subprocess.run(← spawns a subprocess outside declared capabilities
296 ['git', 'diff', f'{commit_before}..{commit_after}', '--', filepath],
297 capture_output=True, text=True
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.
303 filepath = f"spain/{boe_id}.md"
304 # Find the last commit before date
305 rev = subprocess.run(← spawns a subprocess outside declared capabilities
306 ['git', 'rev-list', '-1', f'--before={date_str}', 'HEAD'],
307 capture_output=True, text=True
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.
311 return None
312
313 content = subprocess.run(← spawns a subprocess outside declared capabilities
314 ['git', 'show', f'{rev}:{filepath}'],
315 capture_output=True, text=True
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/legalize-es-spanish-legislation