-
Notifications
You must be signed in to change notification settings - Fork 2.1k
ci: add Codex CLI plugin manifest #27109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "name": "OpenMetadata", | ||
| "version": "0.1.0", | ||
| "description": "OpenMetadata is a unified metadata platform for data discovery, data observability, and data governance powered by a central metadata repository, in-depth column level lineage, and seamless team colla", | ||
| "author": { | ||
| "name": "open-metadata", | ||
| "url": "https://github.com/open-metadata" | ||
| }, | ||
| "homepage": "https://github.com/open-metadata/OpenMetadata", | ||
| "repository": "https://github.com/open-metadata/OpenMetadata", | ||
| "keywords": [ | ||
| "mcp", | ||
| "codex" | ||
| ], | ||
| "mcpServers": "./.mcp.json" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Quality: plugin.json missing trailing newlineThe file ends without a newline character (the diff shows Was this helpful? React with 👍 / 👎 | Reply |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| name: Codex Plugin Quality Gate | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| concurrency: | ||
| group: codex-plugin-scanner-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| scan: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | ||
| - name: Codex plugin scanner | ||
| uses: hashgraph-online/hol-codex-plugin-scanner-action@e83708a91ae4812872aa2905b99ad559a55c74ab | ||
| with: | ||
| plugin_dir: "." | ||
| mode: scan | ||
| fail_on_severity: critical |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Quality: plugin.json description is truncated mid-word
The
descriptionfield (line 4) ends with"...seamless team colla"— it appears to be cut off mid-word (should be "collaboration"). This truncated text will appear in any plugin registry or listing that consumes this manifest.Suggested fix:
Was this helpful? React with 👍 / 👎 | Reply
gitar fixto apply this suggestion