Skip to content

Commit 84fa471

Browse files
nyldnclaude
andcommitted
Release v1.0.1: Plugin marketplace support
- Add .claude-plugin/marketplace.json for marketplace distribution - Add homepage and bugs URLs to plugin.json - Add marketplace installation instructions to README - Users can now install via: /plugin marketplace add nyldn/claude-octopus /plugin install claude-octopus@nyldn-plugins Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e73f8dd commit 84fa471

4 files changed

Lines changed: 60 additions & 1 deletion

File tree

.claude-plugin/marketplace.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "nyldn-plugins",
3+
"owner": {
4+
"name": "nyldn"
5+
},
6+
"metadata": {
7+
"description": "Multi-agent orchestration plugins for Claude Code",
8+
"version": "1.0.0"
9+
},
10+
"plugins": [
11+
{
12+
"name": "claude-octopus",
13+
"source": ".",
14+
"description": "Multi-agent orchestrator using Double Diamond methodology",
15+
"version": "1.0.1",
16+
"author": {
17+
"name": "nyldn"
18+
},
19+
"repository": "https://github.com/nyldn/claude-octopus",
20+
"license": "MIT",
21+
"keywords": [
22+
"multi-agent",
23+
"orchestration",
24+
"double-diamond",
25+
"codex",
26+
"gemini"
27+
],
28+
"category": "orchestration"
29+
}
30+
]
31+
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to Claude Octopus will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.1] - 2026-01-15
9+
10+
### Added
11+
- Plugin marketplace support via `.claude-plugin/marketplace.json`
12+
- Homepage and bugs URLs in plugin metadata
13+
14+
### Changed
15+
- Enhanced plugin.json for marketplace discovery
16+
17+
---
18+
819
## [1.0.0] - 2026-01-15
920

1021
### Added

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,21 @@ Before installing Claude Octopus, ensure you have:
198198

199199
## Installation
200200

201+
### Via Plugin Marketplace (Recommended)
202+
203+
In Claude Code, run:
204+
205+
```
206+
/plugin marketplace add nyldn/claude-octopus
207+
/plugin install claude-octopus@nyldn-plugins
208+
```
209+
210+
To update later:
211+
212+
```
213+
/plugin marketplace update
214+
```
215+
201216
### Automated Installation (via Claude Code)
202217

203218
In a Claude Code session, simply ask:

plugin.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"name": "claude-octopus",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Multi-agent orchestrator for Claude Code - using Double Diamond methodology for comprehensive problem exploration, consensus building, and validated delivery",
55
"author": "nyldn",
66
"license": "MIT",
77
"repository": "https://github.com/nyldn/claude-octopus",
8+
"homepage": "https://github.com/nyldn/claude-octopus#readme",
9+
"bugs": "https://github.com/nyldn/claude-octopus/issues",
810
"keywords": [
911
"claude-code",
1012
"multi-agent",

0 commit comments

Comments
 (0)