← 返回 Skills 市场
wangqianqianjun

Eps

作者 D · GitHub ↗ · v2.1.0 · MIT-0
cross-platform ⚠ suspicious
146
总下载
1
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install eps
功能描述
Inspect EPS/PS/EPSF metadata and convert to PNG/JPG/SVG/PDF via API / 解析 EPS 元数据并通过 API 转换为 PNG/JPG/SVG/PDF
使用说明 (SKILL.md)

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=@\x3Cfile.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=@\x3Cfile.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 "[email protected]" -F "format=png" -o logo.png

Convert EPS to PDF:

curl -X POST https://eps.futrixdev.com/api/convert -F "[email protected]" -F "format=pdf" -o logo.pdf

Get metadata:

curl -X POST https://eps.futrixdev.com/api/info -F "[email protected]"

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 / 支持的输入格式
安全使用建议
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.
功能分析
Type: OpenClaw Skill Name: eps Version: 2.1.0 The skill 'eps' (defined in SKILL.md) is designed to upload user-provided EPS/PS files to a remote third-party API (eps.futrixdev.com) for conversion and metadata extraction. While this functionality is consistent with the stated purpose, the transmission of local document data to an external endpoint constitutes a high-risk behavior regarding data privacy and potential exfiltration. No evidence of intentional malice, such as credential theft, backdoors, or prompt injection, was found in SKILL.md or _meta.json, but the reliance on an external service for file processing warrants a suspicious classification under the provided guidelines.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install eps
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /eps 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.1.0
- Added SVG as a supported output format for conversion (API and web viewer). - Updated API documentation and usage examples to include SVG export. - Simplified web viewer description; clarified export options.
v2.0.0
Version 2.0.0 - Added server-side API endpoint /api/convert for direct EPS/PS/EPSF to PNG/JPG/PDF conversion. - Updated documentation to include API-based format conversion with options for format and DPI. - Clarified usage guidance between API (server-side) and web viewer (client-side, including SVG). - Improved bilingual documentation for all major features.
v1.2.0
Remove non-functional /api/convert (Ghostscript WASM too large for CF Workers). Skill now provides /api/info for metadata and directs users to web viewer for format conversion.
v1.1.0
Replace local CLI commands with remote API calls (curl). Users no longer need local cli/eps-cli.mjs or Ghostscript WASM dependencies.
v1.0.0
Initial bilingual release with EPS/PS/EPSF workflow, online SVG export guidance, and public service links.
元数据
Slug eps
版本 2.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 5
常见问题

Eps 是什么?

Inspect EPS/PS/EPSF metadata and convert to PNG/JPG/SVG/PDF via API / 解析 EPS 元数据并通过 API 转换为 PNG/JPG/SVG/PDF. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 146 次。

如何安装 Eps?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install eps」即可一键安装,无需额外配置。

Eps 是免费的吗?

是的,Eps 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Eps 支持哪些平台?

Eps 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Eps?

由 D(@wangqianqianjun)开发并维护,当前版本 v2.1.0。

💬 留言讨论