Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/44886/exeify/exeify-web2exenpx skills add 44886/Exeify --skill exeify-web2exegit clone --depth 1 https://github.com/44886/ExeifyWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00298 | $0.02392 |
| Opus 5 | $0.00149 | $0.01196 |
| Sonnet 5 | $0.00060 | $0.00478 |
| Haiku 4.5 | $0.00030 | $0.00239 |
Grade A, and why
exeify-web2exe scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Exeify 网页打包器(把网页/网址打包成 Windows exe)
用 Exeify 把「一个本地网页目录」或「一个在线网址」打包成一个双击即运行的 Windows .exe。
产物用系统自带的 WebView2 渲染,终端用户无需安装任何东西。
前置检查
- 仅 Windows 可用。若当前不是 Windows,直接告诉用户此 skill 只能在 Windows 上运行,停止。
- 定位 exeify.exe:它打包在本 skill 的目录里(与本
SKILL.md同一个文件夹,文件名exeify.exe)。- 解析路径的可靠方式:取本 SKILL.md 所在目录,拼上
exeify.exe。在 Claude Code 里可用变量${CLAUDE_SKILL_DIR}\exeify.exe;其它环境用本文件所在目录的绝对路径。 - 若该文件不存在(未随 skill 一起分发):从
https://github.com/44886/Exeify/releases/latest 下载最新的
exeify-*-windows-x64.exe, 重命名为exeify.exe放到本 skill 目录后再用。
- 解析路径的可靠方式:取本 SKILL.md 所在目录,拼上
检查 Exeify 是否有新版(可选、非阻塞;exe 已随 skill 内置,离线照常用)
exeify.exe 始终随本 skill 一起分发,离线即可打包,此检查纯属锦上添花。
- 取已安装版本:运行
exeify.exe version(打印形如0.4.1后立即退出)。 - 取最新版本:
GET https://api.github.com/repos/44886/Exeify/releases/latest(带 headerUser-Agent: exeify-skill),读tag_name(形如v0.4.2)。 - 若最新版更高:
- 先一句话告知:「Exeify 有新版
<tag>(当前<installed>)」。 - 征得用户同意后,从该 release 下载
exeify-*-windows-x64.exe,覆盖本 skill 目录里的exeify.exe(即${CLAUDE_SKILL_DIR}\exeify.exe);之后的打包即用新版。用户不同意就继续用内置版。
- 先一句话告知:「Exeify 有新版
- 访问不畅时(不少中国大陆用户无法顺畅访问 GitHub):检查或下载失败就静默跳过,
直接用已内置的
exeify.exe正常打包——不依赖网络、不影响出包。 - 别为此反复联网或刷屏,每次会话最多做一次。
向用户问清这些(缺就问,别乱猜)
- 源(二选一):要打包的本地网页目录(含 index.html 的文件夹)或一个在线网址(http/https)。
- 输出路径:产物
.exe存哪、叫什么(默认可放在源目录旁,如app.exe)。 - 可选:窗口标题、窗口尺寸、是否全屏/最大化、程序图标、启动图、是否关闭源码保护(默认开)。
- 不用主动追问名字:不给
--title时会自动读入口页的<title>当窗口标题 / 安卓应用名;用户明确说了名字再传--title。
调用方式
命名参数 CLI(推荐,能力全)。可输出 Windows exe 和/或 安卓 APK:
exeify.exe pack --local <目录> [--entry index.html] --out <app.exe> [--apk <app.apk>] [选项...]
exeify.exe pack --url <网址> --out <app.exe> [--apk <app.apk>] [选项...]
参数表:
| 参数 | 说明 | 默认 |
|---|---|---|
--local <目录> / --url <网址> |
源,二选一必填 | — |
--out <路径.exe> |
输出 Windows exe(.exe 结尾) | 见下 |
--apk <路径.apk> |
输出安卓 APK(.apk 结尾);应用名=--title、图标=--icon、启动图=--splash、全屏=--window fullscreen 自动复用,包名自动生成 | 见下 |
--entry <文件> |
本地入口文件(仅 --local);exe 与 APK 都按它当首页 | index.html |
--title <文字> |
窗口标题 / 安卓应用名 | 自动取入口页的 <title>,取不到才用 App |
--width <数字> / --height <数字> |
窗口宽 / 高 | 1024 / 720 |
--window <模式> |
启动状态 normal|maximized|fullscreen | normal |
--no-resizable |
禁止缩放窗口 | 允许 |
--icon <路径> |
窗口与 exe 图标(.ico/.png) | 默认图标 |
--splash <图片> |
启动图(.png/.jpg),消除白屏 | 无 |
--splash-bg <#rrggbb> |
启动图背景色 | #0f172a |
--splash-sec <秒> |
启动图最少显示秒数 | 1.5 |
--no-protect |
关闭源码保护(默认加密内嵌资源+禁用查看源码) | 开启 |
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 94 lines · 298 tokens per session scan A b55783a258e3
exeify-web2exe is a skill published in the GitHub repository 44886/Exeify (148 stars, last pushed 10d ago), licensed Apache-2.0. It adds 298 tokens to every session and 2,392 once invoked, about $0.0015 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
phone-ui-demos
把产品/知识点/文案做成"手机系统 UI 风格"的电影化网页演示动画——观众像在看一台真手机的精心编排录屏:锁屏通知、聊天、设置页、控制中心、App 界面逐镜头呈现,HyperOS/MIUI 级手感动效 + 虚拟时钟播放器,可全屏录屏当成片。只要用户提到:手机 UI 演示、手机录屏风格动画、App 演示网页、把产品做成手机里的演示、锁屏通知动画、系统 UI 风格演示页、或要求改造升级一批手机风格演示页——就用本 Skill。内容完全开放不设限:任何产品功能、课程知识、科普叙事都能转译成"手机里发生的事"。.
asc-ppp-pricing
Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.
asc-revenuecat-catalog-sync
Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat.
asc-localize-metadata
Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect.
asc-shots-pipeline
Orchestrate iOS screenshot automation with xcodebuild/simctl for build-run, AXe for UI actions, JSON settings and plan files, Koubou-based framing (asc screenshots frame), and screenshot upload (asc screenshots upload). Use when users ask for automated screenshot capture, AXe-driven simulator flows, frame composition…
asc-metadata-sync
Sync, validate, and apply App Store metadata with the current asc canonical metadata workflow. Use when updating metadata, localizations, keywords, or migrating legacy fastlane metadata.