可信 — 风险评分 0/100
上次扫描:17 小时前 重新扫描
0 /100
sqlite-reader
Read and query SQLite database files. Use when user wants to inspect or extract data from .sqlite files, especially OpenClaw's main.sqlite memory database.
A straightforward SQLite database reader utility with no security concerns. All functionality is properly documented and the implementation uses only Python standard library with no network, credential, or shell access.
技能名称sqlite-reader
分析耗时25.3s
引擎pi
可以安装
This skill is safe to use. No action required.
资源类型声明权限推断权限状态证据
文件系统 WRITE WRITE ✓ 一致 scripts/read_sqlite.py:100 - export_to_csv function writes CSV when --export-csv…
文件系统 READ READ ✓ 一致 scripts/read_sqlite.py:135 - sqlite3.connect() reads user-provided SQLite file
网络访问 NONE NONE No network calls found in codebase
命令执行 NONE NONE No subprocess or shell execution in codebase
环境变量 NONE NONE No os.environ access in codebase
凭据 NONE NONE No credential access in codebase

目录结构

3 文件 · 7.6 KB · 243 行
Python 1f · 160L Markdown 2f · 83L
├─ 📁 references
│ └─ 📝 schema.md Markdown 41L · 997 B
├─ 📁 scripts
│ └─ 🐍 read_sqlite.py Python 160L · 5.4 KB
└─ 📝 SKILL.md Markdown 42L · 1.2 KB

安全亮点

✓ Uses only Python standard library (sqlite3, sys, argparse, json, csv, os) - no external dependencies
✓ All functionality explicitly documented in SKILL.md
✓ No network requests or external communications
✓ No credential harvesting or environment variable access
✓ No obfuscation or encoded payloads
✓ File write is user-controlled (--export-csv requires explicit filename argument)
✓ SQL query execution is limited to SELECT operations via sqlite3 library
✓ File existence validated before access
✓ Clean, readable code with proper error handling