Scan Report
0 /100
xiaolongxia-workflow
分层任务分解与执行工作流 - Hierarchical task decomposition and execution workflow
This is a legitimate Python-based hierarchical task workflow system with no malicious behavior, obfuscation, or credential harvesting. All functionality aligns with documented behavior.
Safe to install
This skill is safe to use. It provides task decomposition, project management, and workflow execution capabilities with standard Python libraries only.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | WRITE | ✓ Aligned | Creates project directories at configured paths |
| Network | NONE | READ | ✓ Aligned | SMTP email sending, disabled by default |
| Shell | NONE | NONE | — | Git subprocess only for backup_manager.py backup functionality |
| Environment | NONE | NONE | — | No environment variable access |
| Skill Invoke | NONE | NONE | — | No skill invocation |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser access |
| Database | NONE | NONE | — | No database access |
3 findings
Medium External URL 外部 URL
https://docs.openclaw.ai clawhub.json:10 Info Email 邮箱地址
[email protected] scripts/email_reporter.py:47 Info Email 邮箱地址
[email protected] scripts/email_reporter.py:543 File Tree
20 files · 281.1 KB · 7965 lines Python 14f · 7373L
Markdown 2f · 475L
JSON 4f · 117L
├─
▾
config
│ └─
workflow_config.json
JSON
├─
▾
references
│ └─
workflow_overview.md
Markdown
├─
▾
scripts
│ ├─
backup_manager.py
Python
│ ├─
demo_integrated.py
Python
│ ├─
email_reporter.py
Python
│ ├─
email_sender.py
Python
│ ├─
error_classifier.py
Python
│ ├─
progress_tracker.py
Python
│ ├─
project_manager.py
Python
│ ├─
robust_executor.py
Python
│ ├─
run_workflow.py
Python
│ ├─
step_decomposer.py
Python
│ ├─
step_executor.py
Python
│ ├─
task_analyzer.py
Python
│ └─
template_engine.py
Python
├─
▾
tests
│ └─
test_basic.py
Python
├─
clawhub.json
JSON
├─
package.json
JSON
├─
skill.json
JSON
└─
SKILL.md
Markdown
Security Positives
✓ Pure Python implementation using only standard library - no external dependencies
✓ All functionality clearly documented in SKILL.md with no hidden features
✓ Email sending disabled by default with no exfiltration
✓ Git operations limited to backup_manager.py for legitimate backup purposes
✓ No access to sensitive paths (~/.ssh, ~/.aws, .env)
✓ No obfuscation techniques (base64, eval, atob) detected
✓ No reverse shell, C2 communication, or data theft patterns
✓ No supply chain risks - all code is self-contained
✓ Configuration-based design with no hardcoded credentials
✓ Well-structured code with proper error handling and logging