From 123cb1f91823efe103e984405ad2f9498e5d2766 Mon Sep 17 00:00:00 2001 From: Noah Horton Date: Wed, 18 Feb 2026 11:26:28 -0700 Subject: [PATCH] Add plugin marketplace and plugins README Add .claude-plugin/marketplace.json listing the learning-agents plugin, and CLAUDE_PLUGINS_README.md with installation instructions. Co-Authored-By: Claude Opus 4.6 --- .claude-plugin/marketplace.json | 25 +++++++++++++++++++++++++ CLAUDE_PLUGINS_README.md | 27 +++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 .claude-plugin/marketplace.json create mode 100644 CLAUDE_PLUGINS_README.md diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json new file mode 100644 index 00000000..f9f5a5a8 --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://anthropic.com/claude-code/marketplace.schema.json", + "name": "deepwork-plugins", + "version": "1.0.0", + "description": "Plugins for the DeepWork framework", + "owner": { + "name": "DeepWork", + "email": "noah@unsupervised.com" + }, + "plugins": [ + { + "name": "learning-agents", + "description": "Auto-improving AI sub-agents that learn from their mistakes across sessions", + "version": "0.1.0", + "source": "./learning_agents", + "author": { + "name": "DeepWork" + }, + "category": "learning", + "keywords": ["agents", "learning", "self-improving", "sub-agents"], + "repository": "https://github.com/Unsupervisedcom/deepwork", + "license": "MIT" + } + ] +} diff --git a/CLAUDE_PLUGINS_README.md b/CLAUDE_PLUGINS_README.md new file mode 100644 index 00000000..fde68e08 --- /dev/null +++ b/CLAUDE_PLUGINS_README.md @@ -0,0 +1,27 @@ +# DeepWork Claude Code Plugins + +This repository includes a Claude Code plugin marketplace with reusable plugins for AI-powered workflows. + +## Available Plugins + +| Plugin | Description | +|--------|-------------| +| **learning-agents** | Auto-improving AI sub-agents that learn from their mistakes across sessions | + +## Installation + +``` +# Add the marketplace +/plugin marketplace add https://github.com/Unsupervisedcom/deepwork + +# Install the learning-agents plugin +/plugin install learning-agents@deepwork-plugins + +# Verify installation +/plugin list +``` + +## Learn More + +- [Learning Agents architecture](doc/learning_agents_architecture.md) +- [Claude Code plugin docs](https://docs.anthropic.com/en/docs/claude-code/plugins)