From 20a88655155e455fe22bbc0ba9d85befbf3fcb56 Mon Sep 17 00:00:00 2001 From: internet-dot <207546839+internet-dot@users.noreply.github.com> Date: Mon, 6 Apr 2026 19:00:15 +0000 Subject: [PATCH] Add Codex CLI plugin manifest and scanner CI --- .codex-plugin/plugin.json | 16 +++++++++++++ .github/workflows/codex-plugin-scanner.yml | 26 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .codex-plugin/plugin.json create mode 100644 .github/workflows/codex-plugin-scanner.yml diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 00000000000..395cc7efeb5 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -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" +} \ 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 00000000000..c1df010c474 --- /dev/null +++ b/.github/workflows/codex-plugin-scanner.yml @@ -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