with one click
rp-reminder
Reminder to use RepoPrompt MCP tools
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Reminder to use RepoPrompt MCP tools
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Test GitHub Actions workflow YAML changes end-to-end with static validation, local shell simulation, and PR CI checks. Use when verifying CI/workflow changes such as secret handling in run blocks.
Test the ctrld-sync Python CLI end-to-end. Use when validating CLI dry-run behavior, folder URL validation, SSRF safety checks, or sync planning changes.
Build with rp-cli context builder plan → implement
Build with RepoPrompt MCP tools context builder plan → implement
Deep investigation with rp-cli commands: tools gather evidence, follow-up reasoning synthesizes selected context
Deep investigation with RepoPrompt MCP tools: tools gather evidence, follow-up reasoning synthesizes selected context
| name | rp-reminder |
| description | Reminder to use RepoPrompt MCP tools |
| repoprompt_managed | true |
| repoprompt_skills_version | 30 |
| repoprompt_variant | mcp |
Continue your current workflow using RepoPrompt MCP tools instead of built-in alternatives.
| Task | Use This | Not This |
|---|---|---|
| Find files/content | file_search | grep, find, Glob |
| Read files | read_file | cat, Read |
| Edit files | apply_edits | sed, Edit |
| Create/delete/move | file_actions | touch, rm, mv, Write |
// Search (path or content)
{"tool":"file_search","args":{"pattern":"keyword","mode":"auto"}}
// Read file (or slice)
{"tool":"read_file","args":{"path":"Root/file.swift"}}
{"tool":"read_file","args":{"path":"Root/file.swift","start_line":50,"limit":30}}
// Edit (search/replace)
{"tool":"apply_edits","args":{"path":"Root/file.swift","search":"old","replace":"new"}}
// File operations
{"tool":"file_actions","args":{"action":"create","path":"Root/new.swift","content":"..."}}
{"tool":"file_actions","args":{"action":"delete","path":"/absolute/path.swift"}}
{"tool":"file_actions","args":{"action":"move","path":"Root/old.swift","new_path":"Root/new.swift"}}
// Check selection
{"tool":"manage_selection","args":{"op":"get","view":"files"}}
// Add files for chat context
{"tool":"manage_selection","args":{"op":"add","paths":["Root/path/file.swift"]}}
Continue with your task using these tools.