Agent skill

repoprompt

Use RepoPrompt CLI for token-efficient codebase exploration

parcadei3,879★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill repoprompt --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/repoprompt/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,885
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# RepoPrompt Skill ## When to Use - **Explore codebase structure** (tree, codemaps) - **Search code** with context lines - **Get code signatures** without full file content (token-efficient) - **Read file slices** (specific line ranges) - **Build context** for tasks ## Token Optimization RepoPrompt is **more token-efficient** than raw file reads: - `structure` → signatures only (not full content) - `read --start-line --limit` → slices instead of full files - `search --context-lines` → relevant matches with context ## CLI Usage ```bash # If installed to PATH (Settings → MCP Server → Install CLI to PATH) rp-cli -e 'command' # Or use the alias (configure in your shell) repoprompt_cli -e 'command' ``` ## Commands Reference ### File Tree ```bash # Full tree rp-cli -e 'tree' # Folders only rp-cli -e 'tree --mode folders' # Selected files only rp-cli -e 'tree --mode selected' ``` ### Code Structure (Codemaps) - TOKEN EFFICIENT ```bash # Structure of specific paths rp-cli -e 'structure src/auth/' # Structure of selected files rp-cli -e 'structure --scope selected' # Limit results rp-cli -e 'structure src/ --max-results 10' ``` ### Search ```bash # Basic search rp-cli -e 'search "pattern"'

What's inside
Steps it walks through
  1. When to Use
  2. Token Optimization
  3. CLI Usage
  4. Commands Reference
  5. File Tree
  6. Code Structure (Codemaps) - TOKEN EFFICIENT
  7. Search
  8. Read Files - TOKEN EFFICIENT
  9. Selection Management
  10. Workspace Context
  11. Chain Commands
  12. Workspaces
  13. AI Chat (uses RepoPrompt's models)
  14. Context Builder (AI-powered file selection)
Commands it runs
If installed to PATH (Settings → MCP Server → Install CLI to PATH)
rp-cli -e 'command'
Or use the alias (configure in your shell)
repoprompt_cli -e 'command'
Full tree
rp-cli -e 'tree'
Folders only
rp-cli -e 'tree --mode folders'
Selected files only
rp-cli -e 'tree --mode selected'
More from Continuous-Claude-v3
All skills →
About this skill
What does the repoprompt skill do?

Use RepoPrompt CLI for token-efficient codebase exploration

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill repoprompt --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,885 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going