بنقرة واحدة
rp-reminder-cli
Reminder to use rp-cli
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Reminder to use rp-cli
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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-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.