Reminder to use rp-cli
Scanned 9/20/2026
Install to Claude Code
npx -y skills add lev-os/agents --skill rp-reminder-cli --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Rp Reminder Cli?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lev-os-rp-reminder-cli)More formats (shields.io, HTML) on the badges page.
---
name: "rp-reminder-cli"
description: "Reminder to use rp-cli"
repoprompt_managed: true
repoprompt_skills_version: 29
repoprompt_variant: cli
---
# RepoPrompt Tools Reminder (CLI)
Continue your current workflow using rp-cli instead of built-in alternatives.
## Primary Tools
| 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 |
## Quick Reference
```bash
# 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'
```
## Context Management
```bash
# 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.Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!