mit einem Klick
rp-reminder-cli
Reminder to use rp-cli
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Reminder to use rp-cli
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
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
Export a ChatGPT-ready Question / Plan / Review prompt using rp-cli
Export a ChatGPT-ready Question / Plan / Review prompt using RepoPrompt MCP tools
| name | rp-reminder-cli |
| description | Reminder to use rp-cli |
| repoprompt_managed | true |
| repoprompt_skills_version | 30 |
| repoprompt_variant | cli |
Continue your current workflow using rp-cli instead of built-in alternatives.
| Task | Use This | Not This |
|---|---|---|
| Find files/content | search | grep, find, Glob |
| Read files | read | cat, Read |
| Edit files | edit | sed, Edit |
| Create/delete/move | file | touch, rm, mv, Write |
# Search (path or content)
rp-cli -w <window_id> -e 'search "keyword"'
# Read file (or slice)
rp-cli -w <window_id> -e 'read Root/file.swift'
rp-cli -w <window_id> -e 'read Root/file.swift --start-line 50 --limit 30'
# Edit (search/replace) - JSON format required
rp-cli -w <window_id> -e 'call apply_edits {"path":"Root/file.swift","search":"old","replace":"new"}'
rp-cli -w <window_id> -e 'call apply_edits {"path":"Root/file.swift","search":"a\nb","replace":"c\nd"}'
# File operations
rp-cli -w <window_id> -e 'file create Root/new.swift "content..."'
rp-cli -w <window_id> -e 'file delete /absolute/path.swift'
rp-cli -w <window_id> -e 'file move Root/old.swift Root/new.swift'
# Check selection
rp-cli -w <window_id> -e 'select get'
# Add files for chat context
rp-cli -w <window_id> -e 'select add Root/path/file.swift'
Continue with your task using these tools.