From c0b6f46a02f1e10af6ec3619ca5a57d7ded5385e Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Thu, 2 Apr 2026 23:55:57 +0000 Subject: [PATCH 1/5] feat: add Codex CLI plugin manifest --- .codex-plugin/plugin.json | 23 +++++++++++++++++++++++ .mcp.json | 8 +++++--- skills/chrome-devtools-mcp/SKILL.md | 12 ++++++++++++ 3 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 .codex-plugin/plugin.json create mode 100644 skills/chrome-devtools-mcp/SKILL.md diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 000000000..3e468d692 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,23 @@ +{ + "name": "chrome-devtools-mcp", + "version": "0.1.0", + "description": "Chrome DevTools for coding agents via Codex", + "author": { + "name": "ChromeDevTools", + "url": "https://github.com/ChromeDevTools/chrome-devtools-mcp" + }, + "homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp", + "repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp", + "keywords": [ + "mcp", + "codex" + ], + "mcpServers": "./.mcp.json", + "interface": { + "displayName": "Chrome DevTools MCP", + "shortDescription": "Chrome DevTools for coding agents via Codex", + "longDescription": "Chrome DevTools Protocol integration for AI coding agents. Control Chrome tabs, inspect pages, and debug.", + "category": "Development", + "websiteURL": "https://github.com/ChromeDevTools/chrome-devtools-mcp" + } +} \ No newline at end of file diff --git a/.mcp.json b/.mcp.json index 017b717db..426b6b694 100644 --- a/.mcp.json +++ b/.mcp.json @@ -1,8 +1,10 @@ { "mcpServers": { - "chrome-devtools": { + "chrome-devtools-mcp": { "command": "npx", - "args": ["chrome-devtools-mcp@latest"] + "args": [ + "chrome-devtools-mcp@latest" + ] } } -} +} \ No newline at end of file diff --git a/skills/chrome-devtools-mcp/SKILL.md b/skills/chrome-devtools-mcp/SKILL.md new file mode 100644 index 000000000..f8834a60b --- /dev/null +++ b/skills/chrome-devtools-mcp/SKILL.md @@ -0,0 +1,12 @@ +--- +name: chrome-devtools-mcp +description: Chrome DevTools for coding agents via Codex +--- + +# Chrome DevTools MCP for Codex + +Use Chrome DevTools MCP from Codex via MCP. + +## When to use +- When you need chrome-devtools-mcp capabilities in your Codex workflow +- See https://github.com/ChromeDevTools/chrome-devtools-mcp for full setup instructions \ No newline at end of file From 5f3a558241a6afe80aded774a37235db1aca9328 Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Thu, 2 Apr 2026 17:02:14 -0700 Subject: [PATCH 2/5] Fix: add skills field to plugin manifest --- .codex-plugin/plugin.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 3e468d692..e70149659 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -19,5 +19,6 @@ "longDescription": "Chrome DevTools Protocol integration for AI coding agents. Control Chrome tabs, inspect pages, and debug.", "category": "Development", "websiteURL": "https://github.com/ChromeDevTools/chrome-devtools-mcp" - } + }, + "skills": "./skills/" } \ No newline at end of file From d24d2bb93db35a8dc8998cce828755056a173fec Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Fri, 3 Apr 2026 02:23:50 -0700 Subject: [PATCH 3/5] Fix: address code review feedback --- skills/chrome-devtools-mcp/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/chrome-devtools-mcp/SKILL.md b/skills/chrome-devtools-mcp/SKILL.md index f8834a60b..f167c9c6f 100644 --- a/skills/chrome-devtools-mcp/SKILL.md +++ b/skills/chrome-devtools-mcp/SKILL.md @@ -9,4 +9,4 @@ Use Chrome DevTools MCP from Codex via MCP. ## When to use - When you need chrome-devtools-mcp capabilities in your Codex workflow -- See https://github.com/ChromeDevTools/chrome-devtools-mcp for full setup instructions \ No newline at end of file +- See https://github.com/ChromeDevTools/chrome-devtools-mcp for full setup instructions From 1bc1402b32887a19d24040b179c167c088016847 Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Fri, 3 Apr 2026 08:27:31 -0700 Subject: [PATCH 4/5] Add Codex plugin quality gate CI --- .github/workflows/plugin-quality-gate.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/plugin-quality-gate.yml diff --git a/.github/workflows/plugin-quality-gate.yml b/.github/workflows/plugin-quality-gate.yml new file mode 100644 index 000000000..c60a724af --- /dev/null +++ b/.github/workflows/plugin-quality-gate.yml @@ -0,0 +1,20 @@ +name: Plugin Quality Gate + +on: + pull_request: + paths: + - ".codex-plugin/**" + - "skills/**" + - ".mcp.json" + +jobs: + scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Codex plugin quality gate + uses: hashgraph-online/hol-codex-plugin-scanner-action@v1 + with: + plugin_dir: "." + min_score: 80 + fail_on_severity: high From 895fc78704d035c54448a63c2df339f0e36b6873 Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Fri, 3 Apr 2026 08:41:01 -0700 Subject: [PATCH 5/5] Remove CI workflow from plugin PR