github-ops
github.com/clawhub.ai/github-ops-v2
Scanned Thu, 28 May 2026 17:06:25 GMT
Scan ID crawl-smjl84d81rm30ahs2c8jhxz4 · 2ms
F
SCORE 0 / 100
Verdict: Do not install
5 critical findings.
This skill exfiltrates environment secrets ($GITHUB_TOKEN) plus 5 other issues listed below.
5 critical0 high1 medium6 rules passed
Why grade F?
score · 0 / 100The current grade reflects 5 critical findings (any 2+ CRITs → F).
5 CRIT0 HIGH1 MED0 LOW
To reach a higher grade
- DReach Dtarget score 30
Resolve 4 of your 5 CRIT findings — any single CRIT still keeps you at D.
- CReach Ctarget score 55
Resolve all 5 CRIT findings.
- BReach Btarget score 75
Resolve all 5 CRIT.
- AReach Atarget score 95
Resolve all 5 CRIT.
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Findings · ordered by severity
critSkill references secret env var $GITHUB_TOKENThe skill instructions reference `$GITHUB_TOKEN`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $GITHUB_TOKEN
The skill instructions reference `$GITHUB_TOKEN`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
51# 函数:create_repo
52curl -X POST \
53 -H "Authorization: token $GITHUB_TOKEN" \← references $GITHUB_TOKEN — potential credential leak
54 -H "Accept: application/vnd.github.v3+json" \
55 https://api.github.com/user/repos \
critSkill references secret env var ${GITHUB_TOKEN}The skill instructions reference `${GITHUB_TOKEN}`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var ${GITHUB_TOKEN}
The skill instructions reference `${GITHUB_TOKEN}`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
60```bash
61# 函数:push_code
62git remote add origin https://${GITHUB_TOKEN}@github.com/username/repo.git← references ${GITHUB_TOKEN} — potential credential leak
63git push -u origin main
64```
critSkill references secret env var $GITHUB_TOKENThe skill instructions reference `$GITHUB_TOKEN`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $GITHUB_TOKEN
The skill instructions reference `$GITHUB_TOKEN`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
68# 函数:create_release
69curl -X POST \
70 -H "Authorization: token $GITHUB_TOKEN" \← references $GITHUB_TOKEN — potential credential leak
71 -H "Accept: application/vnd.github.v3+json" \
72 https://api.github.com/repos/username/repo/releases \
critSkill references secret env var ${GITHUB_TOKEN}The skill instructions reference `${GITHUB_TOKEN}`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var ${GITHUB_TOKEN}
The skill instructions reference `${GITHUB_TOKEN}`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
101GITHUB_TOKEN=$(cat /home/node/.openclaw/secrets/github_token.txt)
102curl -s -X POST \
103 -H "Authorization: token ${GITHUB_TOKEN}" \← references ${GITHUB_TOKEN} — potential credential leak
104 https://api.github.com/user/repos \
105 -d '{"name":"test-repo","private":false}' | jq '.name'
critSkill references secret env var ${GITHUB_TOKEN}The skill instructions reference `${GITHUB_TOKEN}`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var ${GITHUB_TOKEN}
The skill instructions reference `${GITHUB_TOKEN}`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
121GITHUB_TOKEN=$(cat /home/node/.openclaw/secrets/github_token.txt)
122curl -s -X POST \
123 -H "Authorization: token ${GITHUB_TOKEN}" \← references ${GITHUB_TOKEN} — potential credential leak
124 https://api.github.com/repos/sandmark78/v61-docs/releases \
125 -d '{"tag_name":"v1.0.0","name":"v1.0.0"}' | jq '.tag_name'
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-smjl84d81rm30ahs2c8jhxz4