Skip to content

Commit b993949

Browse files
authored
Add plugin sync check to CI (#193)
* Add cross-platform plugin support Add neutral .plugin/plugin.json as source of truth with generated platform-specific files for Claude Code and Cursor. * Fix ruff lint: rename unused loop variable * Add plugin sync check to CI Validates that .claude-plugin/ and .cursor-plugin/ are in sync with .plugin/plugin.json by running generate_plugin.py --check.
1 parent b9871d9 commit b993949

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13+
validate-plugin:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v6
17+
18+
- name: Valideer plugin.json
19+
run: python3 -c "import json; json.load(open('.plugin/plugin.json'))"
20+
21+
- name: Controleer plugin sync
22+
run: python3 scripts/generate_plugin.py --check
23+
1324
check-links:
1425
runs-on: ubuntu-latest
1526
steps:

0 commit comments

Comments
 (0)