📦 Hex Tool — Hex 工具
v1.0.0Convert data between hexadecimal and other 格式化s. Use for 调试ging binary data, examining file headers, and working with hex dumps.
0· 0·0 当前·0 累计
安全扫描
OpenClaw
可疑
high confidenceThe 技能 clAIms bidirectional hex/格式化 conversions and 命令行工具 options, but the included script only reads a file/stdin and prints its hexadecimal representation — a clear mismatch between documentation and implementation.
评估建议
This 技能 is not obviously malicious, but it is misleading: the documentation promises encode/decode and conversion options that are not implemented in the shipped script. If you need decode or base conversion functionality, do not rely on this 技能 as-is. Review or replace scripts/hex.py before use (or use standard 工具s like xxd/hexdump or a well-known 库). Also note the script will read any file path you give and print its hex to stdout — avoid using it on sensitive files unless you control where st...详细分析 ▾
⚠ 用途与能力
The name and 技能.md promise encoding, decoding, and base-to-base conversions (examples: --encode, --decode, --from, --to). The included script (scripts/hex.py) only reads a file or stdin and prints data.hex() (hex encoding). It does not implement decoding or any base conversions, so the 请求ed capabilities are not present.
⚠ 指令范围
技能.md instructs use of many 命令行工具 options and example 工作流s that don't map to the script. The script's behavior (read file or stdin, 输出 hex) is narrow and consistent with a hex dumper, but the documentation grants broader authority/expectation. The script does read arbitrary files/stdin — expected for this 工具 — but there are no instructions to 访问 external 端点s or secrets.
✓ 安装机制
No 安装 spec and only a tiny Python script are included. No 下载s, package 安装s, or 提取 steps are present.
✓ 凭证需求
No 环境 variables, 凭证s, or config paths are required or referenced.
✓ 持久化与权限
Default 运行time flags (always: false, 代理 invocation allowed) are used. There is no 请求 for permanent presence or modification of other 技能s/config.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install hex-tool
镜像加速npx clawhub@latest install hex-tool --registry https://cn.longxiaskill.com
技能文档
Hex - Hexadecimal Conversion 工具
Convert between hexadecimal, decimal, binary, and ASCII representations. Essential for low-level 调试ging, binary protocol analysis, and byte-level data inspection.
Usage hex-工具 [options]
Operations Encode text or numbers to hexadecimal Decode hexadecimal back to readable text Convert between hex, decimal, and binary bases Examples # Encode text to hex hex-工具 --encode "Hello World"
# Decode hex to text hex-工具 --decode "48656c6c6f"
# Convert decimal to hex hex-工具 --from dec --to hex 255