Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Eps

v2.1.0

Inspect EPS/PS/EPSF metadata and convert to PNG/JPG/SVG/PDF via API / 解析 EPS 元数据并通过 API 转换为 PNG/JPG/SVG/PDF

1· 142·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wangqianqianjun/eps.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Eps" (wangqianqianjun/eps) from ClawHub.
Skill page: https://clawhub.ai/wangqianqianjun/eps
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install eps

ClawHub CLI

Package manager switcher

npx clawhub@latest install eps
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description (inspect EPS metadata and convert to PNG/JPG/SVG/PDF) match the SKILL.md content: all runtime instructions are curl calls to the described API endpoints for conversion and metadata. No extraneous dependencies, credentials, or binaries are requested.
Instruction Scope
Instructions are narrowly scoped to POSTing files to https://eps.futrixdev.com/api/convert and /api/info and performing a health check; they do not instruct reading unrelated files or environment variables. Note: the skill necessarily uploads user files to a third-party server — this is expected for the stated purpose but is a privacy/data-exfiltration risk if you upload sensitive content.
Install Mechanism
No install spec and no code files are included (instruction-only). This minimizes install-time risk — nothing is written to disk by the skill itself.
Credentials
The skill declares no required environment variables, credentials, or config paths, which is proportionate for a simple API-based conversion service. However, it transmits user files to an external host (eps.futrixdev.com), so the primary risk is data exposure to that service rather than excessive credential access.
Persistence & Privilege
always is false and the skill does not request persistent system presence or modify other skills. Normal agent invocation is allowed (disable-model-invocation is false), which is expected for user-invocable skills.
Assessment
This skill appears to be what it claims: it uploads EPS/PS/EPSF files to https://eps.futrixdev.com to inspect metadata or convert formats. Before installing or using it, consider: (1) Do not upload sensitive or confidential files — the conversion happens on a third-party server with no homepage or published privacy policy in the metadata provided. (2) Verify the service URL and TLS certificate and, if possible, review the service's privacy/data-retention policy. (3) Test with non-sensitive sample files first. (4) If you need offline or private processing, prefer a local tool (e.g., Ghostscript or other well-known converters) or a self-hosted service. (5) If you require stronger assurances, ask the publisher for source code, a privacy policy, or a reputable homepage/owner identity before proceeding.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fhhszv2syhvdxszfe91j6ss849gny
142downloads
1stars
5versions
Updated 3w ago
v2.1.0
MIT-0

EPS Tool

Inspect EPS / PS / EPSF file metadata and convert to PNG/JPG/SVG/PDF via API. 通过 API 解析 EPS / PS / EPSF 文件元数据,并转换为 PNG/JPG/SVG/PDF。

Server: https://eps.futrixdev.com

API Reference

Convert EPS to PNG/JPG/SVG/PDF / 格式转换

curl -X POST https://eps.futrixdev.com/api/convert \
  -F "file=@<file.eps>" \
  -F "format=png" \
  -F "dpi=300" \
  -o output.png
  • file (required): EPS/PS/EPSF file (max 20MB) / 要转换的文件(最大 20MB)
  • format (optional): png (default), jpg, svg, pdf / 输出格式
  • dpi (optional): 36–1200, default 300 (for png/jpg) / 分辨率
  • Response: converted file binary / 返回转换后的文件

Inspect EPS metadata / 查看元数据

curl -X POST https://eps.futrixdev.com/api/info \
  -F "file=@<file.eps>"
  • file (required): EPS/PS/EPSF file (max 20MB) / 要解析的文件(最大 20MB)
  • Response: JSON with title, creator, BoundingBox, dimensions (pt/mm), PS version, fonts
  • 返回 JSON,包含标题、创建者、BoundingBox、尺寸、PS 版本、字体等

Health check / 健康检查

curl https://eps.futrixdev.com/api/health

Web Viewer / 在线工具

https://eps.futrixdev.com — upload, preview, and export to PNG/JPG/SVG/PDF 打开网页工具上传文件,可预览并导出

Examples

Convert EPS to PNG:

curl -X POST https://eps.futrixdev.com/api/convert -F "file=@logo.eps" -F "format=png" -o logo.png

Convert EPS to PDF:

curl -X POST https://eps.futrixdev.com/api/convert -F "file=@logo.eps" -F "format=pdf" -o logo.pdf

Get metadata:

curl -X POST https://eps.futrixdev.com/api/info -F "file=@logo.eps"

Example response:

{
  "signature": "%!PS-Adobe-3.0 EPSF-3.0",
  "psVersion": "3.0",
  "epsfVersion": "EPSF-3.0",
  "title": "Logo Design",
  "creator": "Adobe Illustrator",
  "boundingBox": { "llx": 0, "lly": 0, "urx": 400, "ury": 300 },
  "widthPt": 400, "heightPt": 300,
  "widthMm": 141.12, "heightMm": 105.84
}

Usage Guidelines / 使用建议

  • Use /api/convert for format conversion (PNG/JPG/SVG/PDF) / 使用 API 进行格式转换
  • Use /api/info to inspect file metadata / 使用 /api/info 查看文件元数据
  • Supported input: .eps, .ps, .epsf files / 支持的输入格式

Comments

Loading comments...