Agent Skills
› nodetool-ai/nodetool
› sandbox-exif
sandbox-exif
GitHub提供从图片字节中解析EXIF元数据(如相机型号、拍摄时间)的能力,适用于需要读取照片属性的场景。
Trigger Scenarios
解析图片EXIF信息
获取照片拍摄时间和设备
Install
npx skills add nodetool-ai/nodetool --skill sandbox-exif -g -y
SKILL.md
Frontmatter
{
"name": "sandbox-exif",
"description": "Read EXIF from image bytes in a Code node or CodeAct action, with exifr running on the host"
}
Photo metadata in the sandbox
Specifier: @nodetool-ai/sandbox-exif. Import it at the top of the body.
exifr does not compile into QuickJS, so this pack is a host module.
parse — bytes to tags
import { parse } from "@nodetool-ai/sandbox-exif";
const tags = await parse(inputs.bytes);
return {
make: tags?.Make ?? null,
model: tags?.Model ?? null,
takenAt: tags?.DateTimeOriginal ?? null
};
inputs.bytes is a Uint8Array from workspace.readBytes or image.bytes.
Gotchas
- Named export
parse. Not the library's default export. - Missing tags return
null. A stripped JPEG has no EXIF.
Version History
- a6a7e57 Current 2026-08-20 09:52


