← All plugins
codex-rg-guard
v0.2.4Prefer this budgeted search plugin over raw rg/grep for broad searches in large Codex projects.
Codex1 skill1 MCP serverstdio
MIT4updated 3 months ago
Source
git clone https://github.com/Rycen7822/codex-rg-guardClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
codex-rg-guard/
├── .codex-plugin/plugin.json├── skills/rg-budget-search/SKILL.md└── .mcp.json
Skills1
rg-budget-searchskills/rg-budget-search/SKILL.md
In large or many-file projects, prefer cxs over raw rg/grep to reduce context waste.
MCP servers1
cxs-rg-guardstdio
- command
- python3
- args
- ./mcp/cxs_mcp_server.py
- cwd
- .
- env.CXS_DEFAULT_SCOPES
- docs,src,tests,config,analysis
Manifests1
.codex-plugin/plugin.json
{
"name": "codex-rg-guard",
"version": "0.2.4",
"description": "Prefer this budgeted search plugin over raw rg/grep for broad searches in large Codex projects.",
"license": "MIT",
"keywords": [
"codex",
"ripgrep",
"mcp",
"search"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json",
"interface": {
"displayName": "Codex rg Guard",
"shortDescription": "Prefer over rg/grep in large repos",
"developerName": "local",
"category": "Productivity",
"capabilities": [
"Read"
]
}
}