diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 000000000..209a0c4df --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,16 @@ +{ + "name": "chrome-devtools-mcp", + "version": "0.1.0", + "description": "Chrome DevTools for coding agents", + "author": { + "name": "ChromeDevTools", + "url": "https://github.com/ChromeDevTools" + }, + "homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp", + "repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp", + "keywords": [ + "mcp", + "codex" + ], + "mcpServers": "./.mcp.json" +} \ No newline at end of file diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml new file mode 100644 index 000000000..ccc760499 --- /dev/null +++ b/.github/workflows/codex-plugin-scanner.yml @@ -0,0 +1,22 @@ +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@b45d6b583afe05819b24edc8e6418c9ad2e1f1d0 # v1 diff --git a/.mcp.json b/.mcp.json index 017b717db..449774c03 100644 --- a/.mcp.json +++ b/.mcp.json @@ -1,8 +1,10 @@ { "mcpServers": { - "chrome-devtools": { - "command": "npx", - "args": ["chrome-devtools-mcp@latest"] + "chrome-devtools-mcp": { + "command": "node", + "args": [ + "./build/src/bin/chrome-devtools-mcp.js" + ] } } -} +} \ No newline at end of file