Skip to content

Commit 2abf92e

Browse files
committed
refactor: revise plugin metadata format and clean up redundant fields
- Replace plugin.json with marketplace.json to update the plugin metadata structure - Remove redundant fields such as keywords, homepage, repository, license, and author email - Group author and metadata sections for improved clarity and organization Signed-off-by: appleboy <[email protected]>
1 parent a76fdbe commit 2abf92e

File tree

2 files changed

+22
-44
lines changed

2 files changed

+22
-44
lines changed

.claude-plugin/marketplace.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "CodeGPT",
3+
"owner": {
4+
"name": "Bo-Yi Wu",
5+
"url": "https://github.com/appleboy"
6+
},
7+
"metadata": {
8+
"description": "A CLI tool for generating git commit messages and code reviews using AI. Supports multiple providers including OpenAI, Azure, Gemini, Anthropic, Ollama, Groq, and OpenRouter.",
9+
"version": "1.0.0"
10+
},
11+
"plugins": [
12+
{
13+
"name": "generating-commit-messages",
14+
"description": "This skill provides AI-powered git commit message generation using the `codegpt commit` command. It analyzes git diffs and automatically generates conventional commit messages in multiple languages.",
15+
"source": "./",
16+
"strict": false,
17+
"skills": [
18+
"./skills/commit-helper"
19+
]
20+
}
21+
]
22+
}

.claude-plugin/plugin.json

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)