npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vision-mcp/cli

v0.6.0

Published

Vision-MCP CLI:视觉为主的桌面 GUI 操作 MCP server + 工具集(init / serve / capsule / snapshot / patch / install-helper 等)

Readme

@vision-mcp/cli

Vision-MCP 的命令行入口:本地开发、调试、validate / build / run / repair / serve。

安装

npm install -g @vision-mcp/cli
# 或在仓库内
npm install
node packages/cli/dist/index.js --help

常用命令

# 初始化 map
vision-mcp init demo-erp --name "Demo ERP" --platform windows

# 校验 map(含已应用 patches)
vision-mcp validate demo-erp

# 打印 app 摘要
vision-mcp describe demo-erp

# 在 mock 平台上跑端到端(无 native helper 时)
vision-mcp build demo-erp --platform mock --mock-window

vision-mcp run demo-erp --action login.username --params '{"text":"alice"}'

vision-mcp workflow demo-erp --id login_and_create_invoice \
  --inputs '{"username":"alice","password":"x","customer_name":"ACME","amount":"99"}' \
  --approve-all

# 触发 repair ladder
vision-mcp repair demo-erp --max-level 3

# 打印 trace
vision-mcp trace demo-erp --limit 50

# 启动 MCP server(stdio)
vision-mcp serve --apps-root ./apps --fallback-mock

# 导出 JSON Schema
vision-mcp schema export --out ./schema

环境变量

  • VISION_MCP_APPS_ROOT:默认 ./apps
  • VISION_MCP_TRACE_DIR:默认 <apps_root>/.traces
  • VISION_MCP_NATIVE_HELPER:native helper 路径。
  • VISION_MCP_PLATFORMauto / windows / macos / mock
  • VISION_MCP_FALLBACK_MOCK=1:helper 不可用时降级 mock。