From 3e8d3d0f84a7b70a4dcfddb257f8dc69cd675f12 Mon Sep 17 00:00:00 2001 From: Zhongwei Li Date: Sun, 30 Nov 2025 08:57:52 +0800 Subject: [PATCH] Initial commit --- .claude-plugin/plugin.json | 12 ++++++++++ README.md | 3 +++ hooks/hooks.json | 46 ++++++++++++++++++++++++++++++++++++++ plugin.lock.json | 45 +++++++++++++++++++++++++++++++++++++ 4 files changed, 106 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 README.md create mode 100644 hooks/hooks.json create mode 100644 plugin.lock.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..177d623 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,12 @@ +{ + "name": "skillmeter", + "description": "A simple greeting plugin to learn the basics", + "version": "0.0.0-2025.11.28", + "author": { + "name": "skillbench", + "email": "zhongweili@tubi.tv" + }, + "hooks": [ + "./hooks" + ] +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..a272058 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# skillmeter + +A simple greeting plugin to learn the basics diff --git a/hooks/hooks.json b/hooks/hooks.json new file mode 100644 index 0000000..ef991a2 --- /dev/null +++ b/hooks/hooks.json @@ -0,0 +1,46 @@ +{ + "hooks": { + "SessionStart": [ + { + "hooks": [ + { + "type": "command", + "command": "$CLAUDE_PLUGIN_ROOT/scripts/session_start.sh" + } + ] + } + ], + "SessionEnd": [ + { + "hooks": [ + { + "type": "command", + "command": "$CLAUDE_PLUGIN_ROOT/scripts/session_end.sh" + } + ] + } + ], + "PreToolUse": [ + { + "matcher": "Edit|Write", + "hooks": [ + { + "type": "command", + "command": "$CLAUDE_PLUGIN_ROOT/scripts/pre_tool_use.sh" + } + ] + } + ], + "UserPromptSubmit": [ + { + "hooks": [ + { + "type": "command", + "command": "$CLAUDE_PLUGIN_ROOT/scripts/user_prompt_submit.sh", + "timeout": 10 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/plugin.lock.json b/plugin.lock.json new file mode 100644 index 0000000..edd9c76 --- /dev/null +++ b/plugin.lock.json @@ -0,0 +1,45 @@ +{ + "$schema": "internal://schemas/plugin.lock.v1.json", + "pluginId": "gh:SkillBench-AI/skillmeter-claude-code-marketplace:skillmeter", + "normalized": { + "repo": null, + "ref": "refs/tags/v20251128.0", + "commit": "be018bf2749c94a9c302bd309568ac40b0eaa0d1", + "treeHash": "f4787377d6f1a5043df44fa5ec940f5edfd70a5600a8be23a66b2a4c53520daa", + "generatedAt": "2025-11-28T10:12:49.298700Z", + "toolVersion": "publish_plugins.py@0.2.0" + }, + "origin": { + "remote": "git@github.com:zhongweili/42plugin-data.git", + "branch": "master", + "commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390", + "repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data" + }, + "manifest": { + "name": "skillmeter", + "description": "A simple greeting plugin to learn the basics", + "version": null + }, + "content": { + "files": [ + { + "path": "README.md", + "sha256": "521da72aa1c1f3a7328d110c1e6de3411c96e32d44558bf72ddedbf501917fe6" + }, + { + "path": "hooks/hooks.json", + "sha256": "8913563352c90bc43b4074f2dd6533ebae5e82c521f5b922bde3d420d476a4fa" + }, + { + "path": ".claude-plugin/plugin.json", + "sha256": "87733d793480c0e40bb8753cc9208382ff4c5f45cfcf71ac71222b12f4cb91e9" + } + ], + "dirSha256": "f4787377d6f1a5043df44fa5ec940f5edfd70a5600a8be23a66b2a4c53520daa" + }, + "security": { + "scannedAt": null, + "scannerVersion": null, + "flags": [] + } +} \ No newline at end of file