github-helper@ 2.0.0
github.com/clawhub.ai/laosi-github
Scanned Thu, 28 May 2026 15:25:56 GMT
Scan ID crawl-sur94x5g33jsacc7qnof5n3j · 3ms
B
SCORE 75 / 100
Verdict: Safe to install

5 medium findings.

This skill spawns subprocesses outside its declared capabilities plus 4 other issues listed below.

0 critical0 high5 medium7 rules passed

Why grade B?

score · 75 / 100

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

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

Findings · ordered by severity

med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 90CWE-78
88
89 def create_pr(self, title: str, body: str = "") -> str:
90 result = subprocess.run(spawns a subprocess outside declared capabilities
91 ["gh", "pr", "create", "--title", title, "--body", body],
92 capture_output=True, text=True
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 97CWE-78
95
96 def list_prs(self, state: str = "open") -> list:
97 result = subprocess.run(spawns a subprocess outside declared capabilities
98 ["gh", "pr", "list", "--state", state, "--json", "number,title,state"],
99 capture_output=True, text=True
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 105CWE-78
103
104 def create_issue(self, title: str, body: str = "") -> str:
105 result = subprocess.run(spawns a subprocess outside declared capabilities
106 ["gh", "issue", "create", "--title", title, "--body", body],
107 capture_output=True, text=True
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 115CWE-78
113 if repo:
114 cmd.extend(["--repo", repo])
115 result = subprocess.run(cmd, capture_output=True, text=True)spawns a subprocess outside declared capabilities
116 import json
117 return json.loads(result.stdout)
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
Scan another →Share
skillox.io/r/crawl-sur94x5g33jsacc7qnof5n3j