Skip to content

Commit 04f0be3

Browse files
committed
feat(claude): Add plugin marketplace configuration
Add marketplace.json to enable plugin distribution via Claude Code. Users can now install plugins using: /plugin marketplace add emiller/dotfiles Includes: - jj-workflow-plugin: Jujutsu commit stacking workflow - git-helpers-plugin: Advanced Git workflow helpers
1 parent c15347f commit 04f0be3

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "dotfiles-plugins",
3+
"owner": {
4+
"name": "emiller",
5+
"email": "claude@edmundmiller.dev"
6+
},
7+
"metadata": {
8+
"description": "Version control workflow plugins for Jujutsu and Git",
9+
"version": "0.1.0",
10+
"pluginRoot": "./config/claude/plugins"
11+
},
12+
"plugins": [
13+
{
14+
"name": "jj-workflow-plugin",
15+
"source": "./config/claude/plugins/jj-workflow-plugin",
16+
"description": "Autonomous commit stacking and curation workflow for Jujutsu (jj) version control",
17+
"version": "0.1.0",
18+
"author": {
19+
"name": "emiller"
20+
},
21+
"keywords": ["jujutsu", "jj", "version-control", "workflow", "commit-stacking"],
22+
"license": "MIT",
23+
"category": "version-control",
24+
"tags": ["jujutsu", "workflow", "git-compatible"]
25+
},
26+
{
27+
"name": "git-helpers-plugin",
28+
"source": "./config/claude/plugins/git-helpers-plugin",
29+
"description": "Advanced Git workflow helpers for worktrees, rebasing, bisecting, and commits",
30+
"version": "0.1.0",
31+
"author": {
32+
"name": "emiller"
33+
},
34+
"keywords": ["git", "workflow", "worktree", "rebase", "bisect", "version-control"],
35+
"license": "MIT",
36+
"category": "version-control",
37+
"tags": ["git", "workflow", "productivity"]
38+
}
39+
]
40+
}

0 commit comments

Comments
 (0)