github-helper@ 2.0.0
github.com/clawhub.ai/laosi-githubVerdict: Generally safe
0 critical0 high5 medium
B
SCORE 75 / 100
$skillox install github-helperSoon
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-sur94x5g33jsacc7qnof5n3j · Thu, 28 May 2026 15:25:56 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.
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
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.
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
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.
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
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.
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)
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/github-helper