Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

kw-vite-checker-setupkw vite 检查器设置

Agent Skill

kw-vite-checker-setup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

192

周安装

8

GitHub Stars

1

下载量

64
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kw-vite-checker-setup(kw vite 检查器设置)
来源仓库:https://github.com/kwazema/claude-skills
仓库路径:skills/kw-vite-checker-setup
安装命令:
npx skills add https://github.com/kwazema/claude-skills --skill kw-vite-checker-setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kwazema/claude-skills --skill kw-vite-checker-setup

简介

kw-vite-checker-setup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于需要围绕仓库状态、代码变更或协作事项进行整理的场景。
  • GitHub 仓库、Issue、Pull Request 和代码协作信息处理。

SKILL.md

Vite Checker Setup

Install and configure two complementary systems so all errors appear in the terminal during development:

  • vite-plugin-checker — TypeScript compile-time errors (types, syntax).
  • server.forwardConsole — Browser runtime errors (console.*, unhandled errors) via Vite 8 native support.

When to use

  • Setting up a new Vite + TypeScript project
  • User wants TS errors in terminal during dev
  • User complains about not seeing type errors until build
  • User wants browser console output (runtime errors, logs) in the terminal
  • Adding dev-time error reporting to an existing Vite project

Pre-flight checks

Before making any changes, verify current state:

  1. Check Vite version in package.json devDependencies to determine which approach to use:

- Vite >= 8: use native server.forwardConsole - Vite < 8: use vite-plugin-terminal (legacy fallback)

  1. Check package.json for vite-plugin-checker in devDependencies.
  2. Check vite.config.ts for import checker and its entry in the plugins array, plus forwardConsole in server config (Vite 8+) or import terminal (Vite < 8).

If everything is already installed and configured, inform the user and skip all steps. Only install/configure what is missing.

If vite-plugin-terminal is installed but the project uses Vite 8+, suggest migrating:

npm uninstall vite-plugin-terminal

And remove its import and plugin entry from vite.config.ts.

Steps

1. Install dependencies (skip already installed)

npm i -D vite-plugin-checker

If Vite < 8, also install:

npm i -D vite-plugin-terminal

2. Configure vite.config.ts

Vite 8+ (recommended)

Add checker to plugins and forwardConsole to server config. No need to wrap defineConfig in a callback — checker only runs in dev by design, and forwardConsole only activates during dev server.

import checker from "vite-plugin-checker";

export default defineConfig({
  plugins: [
    // ...existing plugins
    checker({ typescript: true }),
  ],
  server: {
    // ...existing server config
    forwardConsole: {
      unhandledErrors: true,
      logLevels: ["log", "warn", "error", "info"],
    },
  },
});

Vite < 8 (legacy fallback)

Convert defineConfig to callback form if needed, and use vite-plugin-terminal:

import checker from "vite-plugin-checker";
import terminal from "vite-plugin-terminal";

export default defineConfig(({ mode }) => ({
  plugins: [
    // ...existing plugins
    mode === "development" && checker({ typescript: true }),
    mode === "development" && terminal({ console: "terminal", output: ["terminal", "console"] }),
  ].filter(Boolean),
}));

3. Commit changes

Commit the modified files:

git add vite.config.ts package.json package-lock.json
git commit -m "chore(dev): add vite-plugin-checker and forwardConsole"

Only include files that were actually changed.

4. Verify

Run npm run dev. You should now see:

  • TypeScript errors in the terminal (inline, real-time) and as a browser overlay
  • Runtime errors and console output mirrored in the terminal

Key details

  • checker runs tsc in a worker thread — it does not block HMR or slow down the dev server.
  • forwardConsole (Vite 8+) is a native Vite feature that forwards browser console.* calls and unhandled errors to the dev server terminal via WebSocket. No plugin needed.
  • forwardConsole only activates during dev server — production builds are unaffected.
  • forwardConsole default is auto-detected: true when an AI coding agent is detected, otherwise false. Explicit config overrides the detection.
  • If the project also uses ESLint, checker supports eslint: true as an additional option.

forwardConsole options reference (Vite 8+)

OptionTypeDefaultDescription
unhandledErrorsbooleantrue (when enabled)Forward uncaught exceptions and unhandled promise rejections
logLevels`('error' \'warn' \'info' \'log' \'debug')[]`['error', 'warn'] (when enabled)Which console.* calls are forwarded

Shorthand: forwardConsole: true enables defaults (unhandled errors + error/warn logs).

Vite version compatibility

Vite versionRuntime errors approachTypeScript errors
>= 8server.forwardConsole (native)vite-plugin-checker
< 8vite-plugin-terminal (plugin)vite-plugin-checker

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.85%
按下载量换算25

Claude

28.58%
按下载量换算18

Cursor

20.75%
按下载量换算13

Gemini CLI

8.74%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills