Skip to content

Commit d95760c

Browse files
fix: correct marketplace.json schema for Claude Code plugin install
Add required owner and plugins fields to marketplace.json. Add plugin.json to fallow-analysis subdirectory.
1 parent e3f9454 commit d95760c

2 files changed

Lines changed: 34 additions & 21 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
{
2-
"name": "fallow",
3-
"version": "1.0.0",
4-
"description": "Agent skills for finding and removing dead code, unused dependencies, and code duplication in JavaScript/TypeScript projects using fallow",
5-
"author": {
2+
"name": "fallow-skills",
3+
"owner": {
64
"name": "Bart Waardenburg",
7-
"url": "https://github.com/bartwaardenburg"
5+
"email": "bart@fallow.tools"
86
},
9-
"homepage": "https://github.com/fallow-rs/fallow-skills",
10-
"repository": {
11-
"type": "git",
12-
"url": "https://github.com/fallow-rs/fallow-skills.git"
7+
"metadata": {
8+
"description": "Agent skills for finding and removing dead code, unused dependencies, and code duplication in JavaScript/TypeScript projects using fallow",
9+
"version": "1.0.0"
1310
},
14-
"license": "MIT",
15-
"keywords": [
16-
"fallow",
17-
"dead-code",
18-
"unused-exports",
19-
"unused-dependencies",
20-
"code-duplication",
21-
"javascript",
22-
"typescript",
23-
"codebase-hygiene",
24-
"static-analysis",
25-
"lint"
11+
"plugins": [
12+
{
13+
"name": "fallow",
14+
"source": "./fallow-analysis",
15+
"description": "Dead code analysis, duplication detection, and auto-fix for JavaScript/TypeScript using fallow",
16+
"version": "1.0.0",
17+
"author": {
18+
"name": "Bart Waardenburg"
19+
},
20+
"homepage": "https://docs.fallow.tools",
21+
"repository": "https://github.com/fallow-rs/fallow-skills",
22+
"license": "MIT",
23+
"keywords": ["fallow", "dead-code", "duplication", "static-analysis", "javascript", "typescript"]
24+
}
2625
]
2726
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "fallow",
3+
"version": "1.0.0",
4+
"description": "Dead code analysis, duplication detection, and auto-fix for JavaScript/TypeScript using fallow",
5+
"author": {
6+
"name": "Bart Waardenburg"
7+
},
8+
"homepage": "https://docs.fallow.tools",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/fallow-rs/fallow-skills.git"
12+
},
13+
"license": "MIT"
14+
}

0 commit comments

Comments
 (0)