Skip to content

Commit d036189

Browse files
author
hashgraph-online[bot]
committed
Add Codex CLI plugin manifest and scanner CI
1 parent 9236834 commit d036189

3 files changed

Lines changed: 44 additions & 4 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "chrome-devtools-mcp",
3+
"version": "0.1.0",
4+
"description": "Chrome DevTools for coding agents",
5+
"author": {
6+
"name": "ChromeDevTools",
7+
"url": "https://github.com/ChromeDevTools"
8+
},
9+
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
10+
"repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
11+
"keywords": [
12+
"mcp",
13+
"codex"
14+
],
15+
"mcpServers": "./.mcp.json"
16+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Codex Plugin Quality Gate
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
concurrency:
10+
group: codex-plugin-scanner-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
scan:
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 10
17+
permissions:
18+
contents: read
19+
steps:
20+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
21+
- name: Codex plugin scanner
22+
uses: hashgraph-online/hol-codex-plugin-scanner-action@b45d6b583afe05819b24edc8e6418c9ad2e1f1d0 # v1

.mcp.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"mcpServers": {
3-
"chrome-devtools": {
4-
"command": "npx",
5-
"args": ["chrome-devtools-mcp@latest"]
3+
"chrome-devtools-mcp": {
4+
"command": "node",
5+
"args": [
6+
"./build/src/bin/chrome-devtools-mcp.js"
7+
]
68
}
79
}
8-
}
10+
}

0 commit comments

Comments
 (0)