Skip to content

Commit e6e5440

Browse files
wbavonyunbowang328claude
authored
fix: update Claude Code and Cursor plugin manifests (#44)
* fix: update Claude Code and Cursor plugin manifests Claude Code (.claude-plugin/): - Add plugin.json with proper plugin manifest schema - Rewrite marketplace.json from plugin manifest format to proper marketplace catalog format (owner, plugins array, source) Cursor (.cursor-plugin/): - Bump plugin.json version 1.0.0 -> 1.1.0 to match marketplace.json Also update README Repository Structure to reflect new plugin.json. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: add kernel generation to plugin descriptions and keywords Add kernelgen mentions to all plugin description fields and add kernel-generation/triton keywords for better discoverability. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: address review — rename author to FlagOS Contributors, add pytorch keyword Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: wbtiger <28288271@qq.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a4897c0 commit e6e5440

5 files changed

Lines changed: 51 additions & 7 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
{"name": "flagos-skills", "skills": "skills", "description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes model migration, environment verification, vendor onboarding, and more.", "version": "1.1.0", "author": {"name": "FlagOS AI"}, "homepage": "https://github.com/flagos-ai/skills", "repository": "https://github.com/flagos-ai/skills", "license": "Apache-2.0", "keywords": ["flagos", "multi-chip", "vllm", "model-migration", "inference", "gpu", "npu", "deployment"]}
1+
{
2+
"name": "flagos-skills",
3+
"owner": {
4+
"name": "FlagOS Contributors"
5+
},
6+
"metadata": {
7+
"description": "Agent skills for the FlagOS multi-chip AI inference platform.",
8+
"version": "1.1.0"
9+
},
10+
"plugins": [
11+
{
12+
"name": "flagos-skills",
13+
"source": "./",
14+
"description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes kernel generation and optimization, model migration, environment verification, vendor onboarding, and more."
15+
}
16+
]
17+
}

.claude-plugin/plugin.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "flagos-skills",
3+
"description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes kernel generation and optimization, model migration, environment verification, vendor onboarding, and more.",
4+
"version": "1.1.0",
5+
"author": {
6+
"name": "FlagOS Contributors"
7+
},
8+
"homepage": "https://github.com/flagos-ai/skills",
9+
"repository": "https://github.com/flagos-ai/skills",
10+
"license": "Apache-2.0",
11+
"keywords": [
12+
"flagos",
13+
"multi-chip",
14+
"vllm",
15+
"model-migration",
16+
"kernel-generation",
17+
"triton",
18+
"pytorch",
19+
"inference",
20+
"gpu",
21+
"npu",
22+
"deployment"
23+
]
24+
}

.cursor-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name": "flagos-skills", "owner": {"name": "FlagOS AI"}, "metadata": {"description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes model migration, environment verification, vendor onboarding, and more.", "version": "1.1.0"}, "plugins": [{"name": "flagos-skills", "description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes model migration, environment verification, vendor onboarding, and more.", "source": "./", "skills": ["./skills/flagrelease-entrance-flagos", "./skills/gpu-container-setup-flagos", "./skills/install-stack-flagos", "./skills/kernelgen-flagos", "./skills/model-migrate-flagos", "./skills/model-verify-flagos", "./skills/perf-test-flagos", "./skills/skill-creator-flagos", "./skills/tle-developer-flagos", "./skills/vllm-plugin-fl-setup-flagos"]}]}
1+
{"name": "flagos-skills", "owner": {"name": "FlagOS Contributors"}, "metadata": {"description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes kernel generation and optimization, model migration, environment verification, vendor onboarding, and more.", "version": "1.1.0"}, "plugins": [{"name": "flagos-skills", "description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes kernel generation and optimization, model migration, environment verification, vendor onboarding, and more.", "source": "./", "skills": ["./skills/flagrelease-entrance-flagos", "./skills/gpu-container-setup-flagos", "./skills/install-stack-flagos", "./skills/kernelgen-flagos", "./skills/model-migrate-flagos", "./skills/model-verify-flagos", "./skills/perf-test-flagos", "./skills/skill-creator-flagos", "./skills/tle-developer-flagos", "./skills/vllm-plugin-fl-setup-flagos"]}]}

.cursor-plugin/plugin.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "flagos-skills",
33
"skills": "skills",
4-
"description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes model migration, environment verification, vendor onboarding, and more.",
5-
"version": "1.0.0",
4+
"description": "Agent skills for the FlagOS multi-chip AI inference platform. Includes kernel generation and optimization, model migration, environment verification, vendor onboarding, and more.",
5+
"version": "1.1.0",
66
"author": {
7-
"name": "FlagOS AI"
7+
"name": "FlagOS Contributors"
88
},
99
"homepage": "https://github.com/flagos-ai/skills",
1010
"repository": "https://github.com/flagos-ai/skills",
@@ -14,6 +14,9 @@
1414
"multi-chip",
1515
"vllm",
1616
"model-migration",
17+
"kernel-generation",
18+
"triton",
19+
"pytorch",
1720
"inference",
1821
"gpu",
1922
"npu",

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,9 @@ Your agent automatically loads the corresponding `SKILL.md` instructions and hel
178178
## Repository Structure
179179

180180
```none
181-
├── .claude-plugin/ # Claude Code plugin manifest
182-
│ └── marketplace.json
181+
├── .claude-plugin/ # Claude Code plugin manifest & marketplace
182+
│ ├── marketplace.json
183+
│ └── plugin.json
183184
├── .cursor-plugin/ # Cursor plugin manifest
184185
│ ├── marketplace.json
185186
│ └── plugin.json

0 commit comments

Comments
 (0)