repoprompt

Solid

Use RepoPrompt CLI for token-efficient codebase exploration

AI & Automation 496 stars 41 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 89/100

Stars 20%
90
Recency 20%
75
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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"' # With context lines rp-cli -e 'search "error" --context-lines 3' # Filter by extension rp-cli -e 'search "TODO" --extensions .ts,.tsx' # Limit results rp-cli -e 'search "function" --max-results 20' ``` ### Read F...

Details

Author
vibeeval
Repository
vibeeval/vibecosystem
Created
2 months ago
Last Updated
1 months ago
Language
C#
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

repoprompt

Use RepoPrompt CLI for token-efficient codebase exploration

3,795 Updated 4 months ago
parcadei
AI & Automation Solid

flow-next-rp-explorer

Token-efficient codebase exploration using RepoPrompt CLI. Use when user says "use rp to..." or "use repoprompt to..." followed by explore, find, understand, search, or similar actions.

621 Updated 4 days ago
gmickel
Data & Documents Listed

repomix

Package code repositories into AI-friendly files. Use this skill when packaging codebases for AI analysis, creating repository snapshots, analyzing third-party libraries, preparing security audits, or generating documentation context. Supports multiple output formats and token counting.

65 Updated 2 weeks ago
avibebuilder
AI & Automation Listed

tokrepo-search

Search and install AI assets from TokRepo — the open registry for skills, prompts, MCP configs, scripts, and workflows. Use when the user asks to find, search, discover, or install AI tools, MCP servers, Claude skills, cursor rules, prompts, or workflows.

0 Updated today
Norrysubtle368
AI & Automation Listed

repo-explorer

Explore and analyze any repository (local path or remote GitHub/GitLab URL) by delegating to Claude Code CLI (`claude -p`) in non-interactive mode with read-only access. Use when the user asks to explore, analyze, investigate, or research a repository or codebase. Triggers on "explore repo", "analyze repo", "investigate repo", "research codebase", "what does this repo do", "how does this codebase work", "ask about repo", "codebase question", "explore repository", "what API does this project have", "analyze this GitHub repo", "explore https://github.com/...", or any request to understand a repository's structure, API, architecture, or implementation details. Works with both local paths and remote URLs (GitHub, GitLab, Bitbucket).

77 Updated 6 days ago
CodeAlive-AI