
Rp Mini
- 2 repo stars
- Updated June 12, 2026
- apollostreetcompany/rp-mini
Minimal context-engineering MCP server for coding agents: fast search, codemaps, curated selections, packaged exports, verified edits, and a context-developer subagent with rp-* skills.
About
rp-mini is a Claude Code skill in the AI & Agent Building category. Minimal context-engineering MCP server for coding agents: fast search, codemaps, curated selections, packaged exports, verified edits, and a context-developer subagent with rp-* skills.
- rp-mini
- AI & Agent Building
- AI-coding skill
Rp Mini by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add apollostreetcompany/rp-mini/plugin install rp-mini@rp-miniAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | June 12, 2026 |
| Repository | apollostreetcompany/rp-mini ↗ |
What it does
Minimal context-engineering MCP server for coding agents: fast search, codemaps, curated selections, packaged exports, verified edits, and a context-developer subagent with rp-* skills.
README.md
rp-mini Claude Code Plugin
Claude Code package for rp-mini: MCP server config, context-builder subagent, workflow skills, and an optional warm hook.
Install
From a checkout:
pnpm install
pnpm build
pnpm build:prompts
claude plugin install ./packages/cc-plugin
Marketplace publishing is deferred.
MCP Server
The plugin configures one MCP server:
{
"mcpServers": {
"rp-mini": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/../server/dist/cli.js", "serve"]
}
}
}
If ${CLAUDE_PLUGIN_ROOT} relative resolution is unavailable in a host, use a user-level fallback after publishing:
{
"mcpServers": {
"rp-mini": {
"command": "npx",
"args": ["rp-mini", "serve"]
}
}
}
Config Precedence
rp-mini config precedence is:
- Per-call tool arguments.
RP_MINI_*environment variables.- Workspace
rp-mini.config.json. - User
~/.config/rp-mini/config.json. - Built-in defaults.
Tools
file_searchread_fileget_file_treeget_code_structuremanage_selectionworkspace_contextpromptapply_editsfile_actionsgit
Context Builder
agents/context-builder.md is generated from ../../shared-prompts/discovery/contract.md by:
pnpm build:prompts
Do not edit the generated agent body by hand. Update the shared contract and rebuild.
SessionStart Warm Hook
hooks/hooks.json runs rp-mini index . in the background. It is optional: warming improves first-call latency, but correctness never depends on it and no tool call waits for it.