https://clawhub.ai/api/v1/skills/session-coordinator/file?path=SKILL.md&version=3.0.1
github.com/clawhub.ai/session-coordinator
Scanned Thu, 28 May 2026 16:43:26 GMT
Scan ID crawl-x75l92p6uv0tp6tjhtjw82oi · 3ms
C
SCORE 55 / 100
Verdict: Proceed with caution
17 medium findings.
This skill spawns subprocesses outside its declared capabilities plus 16 other issues listed below.
0 critical0 high17 medium-5 rules passed
Why grade C?
score · 55 / 100The current grade reflects 17 medium findings (6+ MEDs → C).
0 CRIT0 HIGH17 MED0 LOW
To reach a higher grade
- BReach Btarget score 75
Resolve 12 of 17 MED (cap is 5).
- AReach Atarget score 95
Resolve 15 of 17 MED (cap is 2).
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Findings · ordered by severity
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.
53```python
54# ✅ Default: session thread (most tasks)
55spawn(task="task-description", mode="session", thread=true, label="task-label")← spawns a subprocess outside declared capabilities
56
57# ✅ Explicit one-shot: only when scope is trivially bounded
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.
56
57# ✅ Explicit one-shot: only when scope is trivially bounded
58spawn(task="task-description", mode="one-shot", label="task-label")← spawns a subprocess outside declared capabilities
59
60# ❌ Don't use run unless you explicitly need detached/no-result
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.
59
60# ❌ Don't use run unless you explicitly need detached/no-result
61spawn(task="task-description", mode="run")← spawns a subprocess outside declared capabilities
62```
63
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.
76```python
77# Fast task — 5 min timeout
78spawn(task="check service status", runtime="fast", label="service-status-check")← spawns a subprocess outside declared capabilities
79
80# Medium task — 15 min timeout
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.
79
80# Medium task — 15 min timeout
81spawn(task="clone repository and run tests", runtime="medium", label="repo-test")← spawns a subprocess outside declared capabilities
82
83# Long task — 60 min timeout
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.
82
83# Long task — 60 min timeout
84spawn(task="full deployment pipeline", runtime="long", label="deploy-pipeline")← spawns a subprocess outside declared capabilities
85```
86
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.
102```python
103# ✅ Good: generic, dashes, descriptive
104spawn(task="sync config to remote node", label="config-sync")← spawns a subprocess outside declared capabilities
105spawn(task="run test suite for module", label="test-suite")
106spawn(task="deploy service to environment", label="service-deploy")
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# ✅ Good: generic, dashes, descriptive
104spawn(task="sync config to remote node", label="config-sync")
105spawn(task="run test suite for module", label="test-suite")← spawns a subprocess outside declared capabilities
106spawn(task="deploy service to environment", label="service-deploy")
107
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.
104spawn(task="sync config to remote node", label="config-sync")
105spawn(task="run test suite for module", label="test-suite")
106spawn(task="deploy service to environment", label="service-deploy")← spawns a subprocess outside declared capabilities
107
108# ❌ Bad: spaces, specific names, cryptic
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.
107
108# ❌ Bad: spaces, specific names, cryptic
109spawn(task="...", label="proj1") # too short, no dashes← spawns a subprocess outside declared capabilities
110spawn(task="...", label="192-168-1-1") # specific IP — not allowed
111spawn(task="...", label="johns-task") # specific user name — not allowed
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.
108# ❌ Bad: spaces, specific names, cryptic
109spawn(task="...", label="proj1") # too short, no dashes
110spawn(task="...", label="192-168-1-1") # specific IP — not allowed← spawns a subprocess outside declared capabilities
111spawn(task="...", label="johns-task") # specific user name — not allowed
112spawn(task="...", label="foo-bar-v2") # specific project codename — not allowed
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.
109spawn(task="...", label="proj1") # too short, no dashes
110spawn(task="...", label="192-168-1-1") # specific IP — not allowed
111spawn(task="...", label="johns-task") # specific user name — not allowed← spawns a subprocess outside declared capabilities
112spawn(task="...", label="foo-bar-v2") # specific project codename — not allowed
113```
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.
110spawn(task="...", label="192-168-1-1") # specific IP — not allowed
111spawn(task="...", label="johns-task") # specific user name — not allowed
112spawn(task="...", label="foo-bar-v2") # specific project codename — not allowed← spawns a subprocess outside declared capabilities
113```
114
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.
203```python
204# ❌ Wrong — blocks main process, typing disappears
205exec("ssh remote-host ...")← spawns a subprocess outside declared capabilities
206subprocess.run(...)
207
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.
204# ❌ Wrong — blocks main process, typing disappears
205exec("ssh remote-host ...")
206subprocess.run(...)← spawns a subprocess outside declared capabilities
207
208# ✅ Correct — non-blocking, typing stays active
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.
207
208# ✅ Correct — non-blocking, typing stays active
209spawn(task="remote operation description", runtime="medium", mode="session", thread=true, label="remote-task")← spawns a subprocess outside declared capabilities
210```
211
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/r/crawl-x75l92p6uv0tp6tjhtjw82oi