Skip to content

Commit 080348a

Browse files
committed
Remove CI workflow from plugin PR
Re-signed branch history. Previous subjects: - Add Codex CLI plugin manifest - Fix: remove unsupported capabilities field from plugin manifest - Fix: add skills field to plugin manifest - Fix: address code review feedback - Add Codex plugin quality gate CI - Remove CI workflow from plugin PR
1 parent ed56be4 commit 080348a

4 files changed

Lines changed: 82 additions & 0 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "git-mcp",
3+
"version": "0.1.0",
4+
"description": "GitMCP plugin for Codex - eliminate code hallucinations with up-to-date GitHub project docs",
5+
"author": {
6+
"name": "idosal",
7+
"url": "https://github.com/idosal"
8+
},
9+
"homepage": "https://gitmcp.io",
10+
"repository": "https://github.com/idosal/git-mcp",
11+
"license": "Apache-2.0",
12+
"keywords": [
13+
"mcp",
14+
"git",
15+
"github",
16+
"documentation",
17+
"reverse-engineering"
18+
],
19+
"mcpServers": "./.mcp.json",
20+
"interface": {
21+
"displayName": "GitMCP",
22+
"shortDescription": "Access up-to-date GitHub project docs and code via MCP",
23+
"longDescription": "GitMCP is a free, open-source remote MCP server that transforms any GitHub project into a documentation hub. Enables Codex to access current docs and source code, eliminating code hallucinations.",
24+
"developerName": "idosal",
25+
"category": "Productivity",
26+
"websiteURL": "https://gitmcp.io"
27+
},
28+
"skills": "./skills/"
29+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Plugin Quality Gate
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- ".codex-plugin/**"
7+
- "skills/**"
8+
- ".mcp.json"
9+
10+
jobs:
11+
scan:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Codex plugin quality gate
16+
uses: hashgraph-online/hol-codex-plugin-scanner-action@v1
17+
with:
18+
plugin_dir: "."
19+
min_score: 80
20+
fail_on_severity: high

.mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mcpServers": {
3+
"gitmcp": {
4+
"type": "url",
5+
"url": "https://gitmcp.io/docs"
6+
}
7+
}
8+
}

skills/git-mcp/SKILL.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: git-mcp
3+
description: Use GitMCP to access up-to-date GitHub project documentation and source code, eliminating code hallucinations.
4+
---
5+
6+
# GitMCP for Codex
7+
8+
Access up-to-date documentation and source code from any GitHub project through the GitMCP remote MCP server.
9+
10+
## When to use
11+
12+
- You need current API docs, code examples, or usage patterns from a GitHub repo
13+
- The user references a library or framework you want accurate information about
14+
- You need to verify your knowledge against the actual source code
15+
16+
## Available servers
17+
18+
- **gitmcp (generic):** `https://gitmcp.io/docs` - AI picks the repo from context
19+
- **Per-repo:** `https://gitmcp.io/{owner}/{repo}` - Scoped to a specific repository
20+
21+
## Tips
22+
23+
- For common libraries, the generic server works well
24+
- For lesser-known or private repos, use the per-repo URL
25+
- Combine with file reading for hybrid local + remote research

0 commit comments

Comments
 (0)