Scan Report
0 /100
Sumo Assign Tasks Switch
Task assignment method switcher for Sumo subagent system - switches between sessions_spawn, clawteam, and SumoSubAgent methods
This is a simple, benign task assignment switcher utility with no security concerns. The Python script only reads/writes a local JSON config file using standard library modules.
Safe to install
This skill is safe to use. No security concerns identified.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | WRITE | ✓ Aligned | assign_tasks.py:59 writes to C:\Users\rayray\.openclaw\workspace\memory\assign_m… |
| Network | NONE | NONE | — | No network imports or requests in assign_tasks.py |
| Shell | NONE | NONE | — | No subprocess, os.system, or shell execution in assign_tasks.py |
| Environment | NONE | NONE | — | No environment variable access for sensitive data |
| 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 operations |
File Tree
3 files · 4.9 KB · 229 lines Markdown 2f · 144L
Python 1f · 85L
├─
assign_tasks.py
Python
├─
SKILL_zh.md
Markdown
└─
SKILL.md
Markdown
Security Positives
✓ Uses only Python standard library (json, os, sys) - no external dependencies
✓ No network requests or data exfiltration
✓ No credential harvesting or sensitive data access
✓ No shell execution or subprocess calls
✓ Config file location is explicitly documented in SKILL.md
✓ Simple, readable code with clear intent
✓ No obfuscation, base64, or anti-analysis techniques
✓ No supply chain risks - dependencies are built-in stdlib only