在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用rp-reminder-cli
星标1
分支0
更新时间2026年4月3日 01:13
Reminder to use rp-cli
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
Reminder to use rp-cli
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.