-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add Codex CLI plugin manifest #3330
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": "trigger.dev", | ||
| "version": "0.1.0", | ||
| "description": "Trigger.dev \u2013 build and deploy fully\u2011managed AI agents and workflows", | ||
| "author": { | ||
| "name": "triggerdotdev", | ||
| "url": "https://github.com/triggerdotdev" | ||
| }, | ||
| "homepage": "https://github.com/triggerdotdev/trigger.dev", | ||
| "repository": "https://github.com/triggerdotdev/trigger.dev", | ||
| "keywords": [ | ||
| "mcp", | ||
| "codex" | ||
| ], | ||
| "mcpServers": "./.mcp.json" | ||
| } | ||
| 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 | ||
|
Contributor
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. 🚩 Third-party GitHub Action from lesser-known organization The workflow at Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| 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.
🔴 plugin.json references non-existent
.mcp.jsonfileThe
mcpServersfield in.codex-plugin/plugin.json:15points to./.mcp.json, but this file does not exist anywhere in the repository root. The only MCP-related JSON file is.cursor/mcp.json(which lives in a different directory and has a different structure with an emptymcpServersobject). This means the Codex plugin will fail to resolve its MCP server configuration, making the plugin non-functional.Was this helpful? React with 👍 or 👎 to provide feedback.