长图转小红书图片切割工具
Analysis
This appears to be a straightforward local image-cropping tool, with only expected file-processing and package-installation considerations.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
parser.add_argument('input', help='输入图片路径') ... parser.add_argument('-o', '--output', default='./output' ...)The command-line tool accepts an input image path and an output directory, then writes processed image files. This is expected for the stated purpose, but it gives the tool local file read/write authority over user-specified paths.
### 依赖安装 ```bash pip install Pillow ```
The skill requires a manual Python package installation. Pillow is purpose-aligned for image processing, but package installation is still a supply-chain surface users should notice.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
发送原图或截图给 AI ... AI 切割后返回结果
The mobile workflow explicitly involves sending original images or screenshots to the AI and receiving processed images back. This is part of the stated workflow, but screenshots or design drafts may contain private information.
