Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kit",
"description": "Community plugin & skills marketplace for Claude Code",
"version": "1.3.0",
"version": "1.3.1",
"owner": {
"name": "hamsurang",
"email": "zlemzlem5656@naver.com"
Expand Down
2 changes: 1 addition & 1 deletion plugins/skill-review/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skill-review",
"version": "1.0.1",
"version": "1.0.2",
"description": "Slash-command skill that reviews any SKILL.md against best practices and outputs a structured pass/fail report",
"author": {
"name": "minsoo.web",
Expand Down
8 changes: 8 additions & 0 deletions plugins/skill-review/skills/skill-review/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ description: >

Reviews a `SKILL.md` against established best practices and outputs a structured pass/fail report with prioritized recommendations.

## Contents

- [Locating the Target Skill](#locating-the-target-skill)
- [Review Workflow](#review-workflow)
- [Output Format](#output-format)
- [Severity Definitions](#severity-definitions)
- [Full Rubric](#full-rubric)

## Locating the Target Skill

**With explicit path:** Use the provided path directly (supports both `SKILL.md` files and plugin directories).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ Only applies if the skill is part of a plugin (includes `plugin.json`).
| `plugin.json` has `version` field (semver) | ❌ Error | Required for update management |
| `plugin.json` has `description` field | ❌ Error | Required for marketplace display |
Comment thread
minsoo-web marked this conversation as resolved.
| `plugin.json` has `author` field | ⚠️ Warning | Strongly recommended for attribution and support |
| `plugin.json` has `category` field | ⚠️ Warning | Required for marketplace categorization |

---

Expand Down
2 changes: 1 addition & 1 deletion plugins/vitest/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vitest",
"version": "1.0.1",
"version": "1.0.2",
"description": "Auto-invoked skill for writing, debugging, and configuring Vitest tests in Vite-based projects",
"author": {
"name": "minsoo.web",
Expand Down
11 changes: 7 additions & 4 deletions plugins/vitest/skills/vitest/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
---
name: vitest
description: >
This skill should be used when the user asks to write, run, or debug tests using Vitest,
Use when the user asks to write, run, or debug tests using Vitest,
asks about vitest.config.ts or vite.config.ts test configuration, asks how to mock modules,
functions, timers, or globals with the `vi` utility, asks about test coverage setup or thresholds,
references Vitest API (describe, it, test, expect, beforeEach, afterAll, etc.),
or encounters failing Vitest tests and needs help diagnosing them.
version: 1.0.0
license: MIT
---

# Vitest Skill

Vitest is a blazing-fast unit test framework built on top of Vite. It shares the same config, transforms, and module resolution as your Vite project, giving you zero-config testing for most setups.
## Contents

- [Quick Start](#quick-start)
- [When This Skill Activates](#when-this-skill-activates)
- [Behavior Guidelines](#behavior-guidelines)
- [References Loading Guide](#references-loading-guide)

## Quick Start

Expand Down