From 128de2a75da6f558bffd766f50ce4929d956b926 Mon Sep 17 00:00:00 2001 From: Boris Cherny Date: Sat, 1 Nov 2025 16:15:21 -0700 Subject: [PATCH] feat: Add explanatory-output-style and learning-output-style plugins to marketplace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added two missing plugins to the marketplace.json: - explanatory-output-style: Adds educational insights about implementation choices - learning-output-style: Interactive learning mode that requests code contributions Both plugins are categorized under "learning" to help users discover educational tools. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude-plugin/marketplace.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 25f3153e..0ea78bd7 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -68,6 +68,28 @@ }, "source": "./plugins/code-review", "category": "productivity" + }, + { + "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" + }, + "source": "./plugins/explanatory-output-style", + "category": "learning" + }, + { + "name": "learning-output-style", + "description": "Interactive learning mode that requests meaningful code contributions at decision points (mimics the unshipped Learning output style)", + "version": "1.0.0", + "author": { + "name": "Boris Cherny", + "email": "boris@anthropic.com" + }, + "source": "./plugins/learning-output-style", + "category": "learning" } ] }