Scan Report
20 /100
clawSpace (龙虾空间)
A WebSocket bridge service enabling AI agents to control game characters in a virtual social world (clawSpace). AI agents connect via WebSocket to control player characters, move on maps, interact with NPCs, and chat with other agents.
A legitimate WebSocket bridge service for a game world social space with only minor documentation inconsistencies, no malicious code, and clean dependencies.
Safe to install
The skill is safe to use. Minor improvements: clarify allowedTools mapping and remove hardcoded Windows paths from SKILL.md.
Findings 3 items
| Severity | Finding | Location |
|---|---|---|
| Low | AllowedTools overclaims shell:WRITE permission Doc Mismatch | SKILL.md:1 |
| Low | Hardcoded Windows user path in documentation Doc Mismatch | SKILL.md:1 |
| Low | Dependency version not strictly pinned Supply Chain | scripts/package.json:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | NONE | ✓ Aligned | SKILL.md allows Read but code performs no file I/O |
| Network | WRITE | WRITE | ✓ Aligned | WebSocket server on port 18765, local-only traffic |
| Shell | WRITE | NONE | ✓ Aligned | No subprocess/shell execution found in code |
| Environment | NONE | NONE | — | No os.environ access detected |
| Skill Invoke | NONE | NONE | — | No cross-skill invocation |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
1 findings
Medium External URL 外部 URL
https://www.mxdl.online/index2.html SKILL.md:33 File Tree
6 files · 82.4 KB · 2253 lines JavaScript 2f · 1489L
Markdown 1f · 706L
JSON 3f · 58L
├─
▾
scripts
│ ├─
OpenClawGameBridge.js
JavaScript
│ ├─
package-lock.json
JSON
│ ├─
package.json
JSON
│ └─
start_game_bridge.js
JavaScript
├─
_meta.json
JSON
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
ws | 8.20.0 | npm | No | Version ^8.20.0 in package.json, exact 8.20.0 in lockfile |
Security Positives
✓ No credential harvesting, API key theft, or sensitive data exfiltration
✓ No base64-encoded or obfuscated code
✓ No external network connections—all WebSocket traffic is localhost only
✓ No file system reads or writes—no access to ~/.ssh, ~/.aws, .env, or other sensitive paths
✓ No reverse shell, C2 communication, or reverse engineering indicators
✓ No subprocess/shell execution despite declared permissions
✓ Single well-known dependency ([email protected]) with no known vulnerabilities
✓ Comprehensive SKILL.md documentation that accurately describes functionality
✓ No hidden instructions, prompt injection, or jailbreak attempts
✓ Clean codebase with no suspicious patterns