From cb570fd441ec529c7f54a7e30a94e41985c284a5 Mon Sep 17 00:00:00 2001 From: Zhongwei Li Date: Sat, 29 Nov 2025 17:55:47 +0800 Subject: [PATCH] Initial commit --- .claude-plugin/plugin.json | 12 ++++++++++ README.md | 3 +++ hooks/hooks.json | 15 +++++++++++++ plugin.lock.json | 45 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 75 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..99d487e --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,12 @@ +{ + "name": "explanatory-output-style", + "description": "Adds educational insights about implementation choices and codebase patterns (mimics the deprecated Explanatory output style)", + "version": "1.0.0", + "author": { + "name": "Dickson Tsai", + "email": "dickson@anthropic.com" + }, + "hooks": [ + "./hooks" + ] +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..efebdca --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# explanatory-output-style + +Adds educational insights about implementation choices and codebase patterns (mimics the deprecated Explanatory output style) diff --git a/hooks/hooks.json b/hooks/hooks.json new file mode 100644 index 0000000..d1fb8a5 --- /dev/null +++ b/hooks/hooks.json @@ -0,0 +1,15 @@ +{ + "description": "Explanatory mode hook that adds educational insights instructions", + "hooks": { + "SessionStart": [ + { + "hooks": [ + { + "type": "command", + "command": "${CLAUDE_PLUGIN_ROOT}/hooks-handlers/session-start.sh" + } + ] + } + ] + } +} diff --git a/plugin.lock.json b/plugin.lock.json new file mode 100644 index 0000000..337ba49 --- /dev/null +++ b/plugin.lock.json @@ -0,0 +1,45 @@ +{ + "$schema": "internal://schemas/plugin.lock.v1.json", + "pluginId": "gh:anthropics/claude-code:plugins/explanatory-output-style", + "normalized": { + "repo": null, + "ref": "refs/tags/v20251128.0", + "commit": "1a0d2cd1f64cd30fea8fd87025765e0ac765b861", + "treeHash": "128308756a42734304a85f4aa6934fe697d4730a56fe2c64c56bb2269664ef56", + "generatedAt": "2025-11-28T10:13:46.652047Z", + "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": "explanatory-output-style", + "description": "Adds educational insights about implementation choices and codebase patterns (mimics the deprecated Explanatory output style)", + "version": "1.0.0" + }, + "content": { + "files": [ + { + "path": "README.md", + "sha256": "4446b7f46ebf1e3c7eedabdf30f89d452402f5800ed227d9b87d29b026e375fd" + }, + { + "path": "hooks/hooks.json", + "sha256": "2aa8994322de34b3f940d5fd9f37135da11a218fe8b86db19f52de3fbd76a286" + }, + { + "path": ".claude-plugin/plugin.json", + "sha256": "40639d9ce08b6889f35f78bc6a4fc5859ba8c2a16e49f3d0c19df4e91c29a6c1" + } + ], + "dirSha256": "128308756a42734304a85f4aa6934fe697d4730a56fe2c64c56bb2269664ef56" + }, + "security": { + "scannedAt": null, + "scannerVersion": null, + "flags": [] + } +} \ No newline at end of file