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

zvibe-kits

v1.3.4

Published

Zvibe - Ghostty/zellij multi-agent development workspace launcher

Downloads

13

Readme

Zvibe Kits

Zvibe Kits 是一个面向 macOS 的多 Agent 开发工作台启动器。
它把文件浏览、提交查看和 Agent 会话组织到统一终端工作流里,降低上下文切换成本。

插件用途

  • 快速启动标准化开发面板(文件 / commit / agent)
  • 一键切换单 Agent 与双 Agent(Agent Mode)
  • 用统一命令管理后端、配置、诊断和更新

核心能力

  • 多 Agent 启动:codex / claude / opencode
  • Agent Mode:zvibe code 同时启动两个 Agent
  • 终端面板组合:左上文件、左下 commit、右侧 Agent
  • 可选右下 Terminal:-t, --terminal(单 Agent 模式)
  • 后端策略:ghostty / zellij / auto
  • 自动 Git 初始化防呆:在 HOME/根目录自动跳过,避免误初始化
  • 配置管理与运维命令:setup / config / status / update
  • JSON 输出能力:--json(便于脚本集成)

安装说明

方式 1:全局安装

npm i -g zvibe-kits

方式 2:临时执行

npx zvibe-kits setup

初始化建议

zvibe setup
zvibe status --doctor

setup 一条龙行为

  • zvibe setup:自动检测并安装缺失依赖,然后进入 Agent 交互配置;同时覆盖插件配置模板
  • zvibe setup --no-repair:自动检测并安装缺失依赖,然后进入 Agent 交互配置;不覆盖已存在插件配置
  • zvibe setup --repair:强制修复(覆盖)插件配置模板

使用方法

常用启动命令

zvibe
zvibe codex|claude|opencode
zvibe code
zvibe code -t
zvibe <dir> [codex|claude|opencode|code]
zvibe [codex|claude|opencode|code] <dir>

关键参数

  • --backend ghostty:强制使用 Ghostty 后端
  • --backend zellij:强制使用 zellij 后端
  • --backend auto:优先 Ghostty,不可用时降级 zellij
  • -t, --terminal:单 Agent 模式下在右侧增加 Terminal
  • --no-repairsetup 时不覆盖已有插件配置
  • --json:JSON 结构化输出
  • --verbose:输出诊断细节

配置命令

zvibe config wizard
zvibe config get <key>
zvibe config set <key> <value>
zvibe config validate
zvibe config explain

配置文件路径

  • 默认:~/.config/zvibe/config.json
  • 兼容读取旧路径:~/.config/vibe/config.json

示例配置:

{
  "defaultAgent": "codex",
  "agentPair": ["opencode", "codex"],
  "backend": "zellij",
  "fallback": true,
  "rightTerminal": false,
  "autoGitInit": true
}

界面截图

单 Agent 模式(左侧 files/commit + 右侧 agent)

单 Agent 模式

单 Agent + Terminal(右下 terminal)

单 Agent + Terminal

Agent Mode(zvibe code,右侧双 Agent 50/50)

Agent Mode 双 Agent

开发

git clone https://github.com/Zanetach/zvibe-kits.git
cd zvibe-kits
node src/cli.js --help

发布前校验(防止“安装后不能用”):

npm run verify:bin
npm pack

说明:

  • verify:bin 会模拟 npm 全局安装时的 bin 符号链接场景并执行 zvibe --help
  • npm pack 会触发 prepack,若启动器路径解析有问题会直接失败

许可证

MIT