Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
25 changes: 25 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
27 changes: 27 additions & 0 deletions CLAUDE_PLUGINS_README.md
Original file line number Diff line number Diff line change
@@ -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)