Skip to content

Commit 053ed4a

Browse files
authored
Merge pull request #1 from itk-dev/feature/plugin-marketplace-structure
Add Claude Code plugin marketplace structure
2 parents acc4fdf + ea75850 commit 053ed4a

5 files changed

Lines changed: 37 additions & 7 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "itkdev-marketplace",
3+
"plugins": [
4+
{ "name": "itkdev-tools", "source": "." }
5+
]
6+
}

.claude-plugin/plugin.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "itkdev-tools",
3+
"description": "ITK Dev tools and MCP servers for Claude Code",
4+
"version": "0.1.0"
5+
}

.mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mcpServers": {
3+
"browser-feedback": {
4+
"command": "npx",
5+
"args": ["-y", "github:itk-dev/mcp-claude-code-browser-feedback"]
6+
}
7+
}
8+
}

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Team Claude Plugins
1+
# ITK Dev Claude Plugins
22

3-
A Claude Code plugin marketplace for team tools and MCP servers.
3+
A Claude Code plugin marketplace for ITK Dev team tools and MCP servers.
44

55
## Structure
66

77
```
8-
team-claude-plugins/
8+
itkdev-claude-plugins/
99
├── .claude-plugin/
1010
│ ├── plugin.json # Plugin manifest
1111
│ └── marketplace.json # Marketplace catalog
@@ -21,17 +21,17 @@ Team members can install the marketplace and plugins with:
2121

2222
```bash
2323
# Add the marketplace
24-
/plugin marketplace add yepzdk/team-claude-plugins
24+
/plugin marketplace add itk-dev/itkdev-claude-plugins
2525

26-
# Install the team-tools plugin
27-
/plugin install team-tools@team-marketplace
26+
# Install the itkdev-tools plugin
27+
/plugin install itkdev-tools@itkdev-marketplace
2828
```
2929

3030
## Included MCP Servers
3131

3232
### browser-feedback
3333

34-
Browser feedback collection tool from [mcp-claude-code-browser-feedback](https://github.com/yepzdk/mcp-claude-code-browser-feedback).
34+
Browser feedback collection tool from [mcp-claude-code-browser-feedback](https://github.com/itk-dev/mcp-claude-code-browser-feedback).
3535

3636
## Adding New Tools
3737

commands/example.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Example Command
2+
3+
This is an example slash command for the team-tools plugin.
4+
5+
## Usage
6+
7+
Use `/example` to run this command.
8+
9+
## Description
10+
11+
Replace this with your actual command implementation.

0 commit comments

Comments
 (0)