From 390181d97f311ff268615abcea898a8a626d8f4c Mon Sep 17 00:00:00 2001 From: hashgraph-online Date: Mon, 6 Apr 2026 03:47:32 +0000 Subject: [PATCH] Add Codex CLI plugin manifest and scanner CI --- .codex-plugin/plugin.json | 1 + .github/workflows/codex-plugin-scanner.yml | 22 ++++++++++++++++++++++ skills/lang/SKILL.md | 12 ++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 .codex-plugin/plugin.json create mode 100644 .github/workflows/codex-plugin-scanner.yml create mode 100644 skills/lang/SKILL.md diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 00000000..73b66b86 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1 @@ +{"name": "mcp-language-server", "version": "0.1.0", "description": "mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnostics.", "author": {"name": "Isaac Phillips", "url": "https://github.com/isaacphi"}, "homepage": "https://github.com/isaacphi/mcp-language-server", "repository": "https://github.com/isaacphi/mcp-language-server", "keywords": ["mcp", "codex", "language-server", "ide", "developer-tools"], "mcpServers": "./.mcp.json", "skills": "./skills/", "interface": {"displayName": "Language Server", "shortDescription": "Semantic tools for code analysis", "longDescription": "mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnostics.", "category": "Developer Tools", "websiteURL": "https://github.com/isaacphi/mcp-language-server"}} diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml new file mode 100644 index 00000000..ccc76049 --- /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/skills/lang/SKILL.md b/skills/lang/SKILL.md new file mode 100644 index 00000000..acbae719 --- /dev/null +++ b/skills/lang/SKILL.md @@ -0,0 +1,12 @@ +--- +name: lang +description: Semantic tools for code analysis +--- + +# Language Server + +mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnostics. + +## When to use +- When you need language server capabilities in your Codex workflow +- See https://github.com/isaacphi/mcp-language-server for full setup instructions