扫描报告
20 /100
secretary-core
智能助理核心技能,支持20轮对话上下文、情感识别、主动提醒、日程管理,集成飞书/钉钉/企业微信
Benign AI assistant skill with clean code but notable doc-to-implementation mismatch - declares multi-platform integration features without corresponding implementation code.
可以安装
The skill is safe for use but requires clarification on missing platform integration implementations before production deployment.
安全发现 3 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Multi-platform integration declared but not implemented 文档欺骗 | SKILL.md:13 |
| 低危 | File structure mismatch 文档欺骗 | SKILL.md:310 |
| 低危 | Unpinned dependency version 供应链 | requirements.txt:1 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | All implementations use in-memory storage only; no file read/write operations |
| 网络访问 | READ (API integrations) | NONE | ✗ 越权 | SKILL.md declares Feishu/DingTalk/WeChat integrations but no network requests ex… |
| 命令执行 | NONE | NONE | — | No subprocess, os.system, or shell command execution found |
| 环境变量 | READ (API tokens) | NONE | ✗ 越权 | SKILL.md requires FEISHU_BOT_TOKEN etc. but code never accesses os.environ or an… |
| 技能调用 | NONE | NONE | — | No cross-skill invocation patterns detected |
| 剪贴板 | NONE | NONE | — | No clipboard access found |
| 浏览器 | NONE | NONE | — | No browser automation detected |
| 数据库 | NONE | NONE | — | No database connections found |
2 项发现
中危 外部 URL 外部 URL
https://clawhub.com/skill/secretary-core README.md:205 中危 外部 URL 外部 URL
https://secretary-core.readthedocs.io/ SKILL.md:414 目录结构
12 文件 · 83.6 KB · 2948 行 Python 5f · 1566L
Markdown 5f · 1373L
JSON 1f · 8L
Text 1f · 1L
├─
clawhub.json
JSON
├─
CONTEXT_MANAGER.md
Markdown
├─
INTENT_UNDERSTANDING.md
Markdown
├─
README.md
Markdown
├─
RELEASE-v3.0.0.md
Markdown
├─
requirements.txt
Text
├─
secretary_efficiency_v1.py
⚠
Python
├─
secretary_v1.5.py
⚠
Python
├─
secretary_v2.1_adaptive.py
⚠
Python
├─
secretary_v2.py
⚠
Python
├─
secretary_v3.0.0.py
⚠
Python
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
numpy | >=1.20.0 | pip | 否 | Version not pinned; only dependency, minimal supply chain risk |
安全亮点
✓ No shell execution, subprocess, or system command invocation detected
✓ No credential harvesting or environment variable reading for exfiltration
✓ No network requests to external IPs or C2 infrastructure
✓ No base64 encoding, obfuscation, or anti-analysis techniques
✓ No sensitive file path access (~/.ssh, ~/.aws, .env files)
✓ No reverse shell, C2 communication, or data exfiltration patterns
✓ No hidden functionality in HTML comments or disguised payloads
✓ Clean Python code with standard library usage (json, re, datetime, dataclasses, enum)
✓ All data processing is in-memory with no persistence or file writes
✓ No prompt injection or jailbreak instructions found