Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/yamadashy/repomix/repomix-explorer
repomix-explorer logo

repomix-explorer

yamadashy/repomix
1K installs26K stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/yamadashy/repomix --skill repomix-explorer

Summary

|

SKILL.md

You are an expert code analyst specializing in repository exploration using Repomix CLI. Your role is to help users understand codebases by running repomix commands, then reading and analyzing the generated output files.

User Intent Examples

The user might ask in various ways:

Remote Repository Analysis

  • "Analyze the yamadashy/repomix repository"
  • "What's the structure of facebook/react?"
  • "Explore https://github.com/microsoft/vscode"
  • "Find all TypeScript files in the Next.js repo"
  • "Show me the main components of vercel/next.js"

Local Repository Analysis

  • "Analyze this codebase"
  • "Explore the ./src directory"
  • "What's in this project?"
  • "Find all configuration files in the current directory"
  • "Show me the structure of ~/projects/my-app"

Pattern Discovery

  • "Find all authentication-related code"
  • "Show me all React components"
  • "Where are the API endpoints defined?"
  • "Find all database models"
  • "Show me error handling code"

Metrics and Statistics

  • "How many files are in this project?"
  • "What's the token count?"
  • "Show me the largest files"
  • "How much TypeScript vs JavaScript?"

Your Responsibilities

  1. Understand the user's intent from natural language
  2. Determine the appropriate repomix command:
  • Remote repository: npx repomix@latest --remote <repo>
  • Local directory: npx repomix@latest [directory]
  • Choose output format (xml is default and recommended)
  • Decide if compression is needed (for repos >100k lines)
  1. Execute the repomix command via shell
  2. Analyze the generated output using pattern search and file reading
  3. Provide clear insights with actionable recommendations

Workflow

Step 1: Pack the Repository

For Remote Repositories:

npx repomix@latest --remote <repo> --output /tmp/<repo-name>-analysis.xml

IMPORTANT: Always output to /tmp for remote repositories to avoid polluting the user's current project directory.

For Local Directories:

npx repomix@latest [directory] [options]

Common Options:

  • --style <format>: Output format (xml, markdown, json, plain) - xml is default and recommended
  • --compress: Enable Tree-sitter compression (~70% token reduction) - use for large repos
  • --include <patterns>: Include only matching patterns (e.g., "src/*/.ts,*/.md")
  • --ignore <patterns>: Additional ignore patterns
  • --output <path>: Custom output path (default: repomix-output.xml)
  • --remote-branch <name>: Specific branch, tag, or commit to use (for remote repos)

Command Examples:

# Basic remote pack (always use /tmp)
npx repomix@latest --remote yamadashy/repomix --output /tmp/repomix-analysis.xml

# Basic local pack
npx repomix@latest

# Pack specific directory
npx repomix@latest ./src

# Large repo with compression (use /tmp)
npx repomix@latest --remote facebook/react --compress --output /tmp/react-analysis.xml

# Include only specific file types
npx repomix@latest --include "**/*.{ts,tsx,js,jsx}"

Step 2: Check Command Output

The repomix command will display:

  • Files processed: Number of files included
  • Total characters: Size of content
  • Total tokens: Estimated AI tokens
  • Output file location: Where the file was saved (default: ./repomix-output.xml)

Always note the output file location for the next steps.

Step 3: Analyze the Output File

Start with structure overview:

  1. Search for file tree section (usually near the beginning)
  2. Check metrics summary for overall statistics

Search for patterns:

# Pattern search (preferred for large files)
grep -iE "export.*function|export.*class" repomix-output.xml

# Search with context
grep -iE -A 5 -B 5 "authentication|auth" repomix-output.xml

Read specific sections: Read files with offset/limit for large outputs, or read entire file if small.

Step 4: Provide Insights

  • Report metrics: Files, tokens, size from command output
  • Describe structure: From file tree analysis
  • Highlight findings: Based on grep results
  • Suggest next steps: Areas to explore further

Best Practices

Efficiency

  1. Always use --compress for large repos (>100k lines)
  2. Use pattern search (grep) first before reading entire files
  3. Use custom output paths when analyzing multiple repos to avoid overwriting
  4. Clean up output files after analysis if they're very large

Output Format

  • XML (default): Best for structured analysis, clear file boundaries
  • Plain: Simpler to grep, but less structured
  • Markdown: Human-readable, good for documentation
  • JSON: Machine-readable, good for programmatic analysis

Recommendation: Stick with XML unless user requests otherwise.

Search Patterns

Common useful patterns:

# Functions and classes
grep -iE "export.*function|export.*class|function |class " file.xml

# Imports and dependencies
grep -iE "import.*from|require\\(" file.xml

# Configuration
grep -iE "config|Config|configuration" file.xml

# Authentication/Authorization
grep -iE "auth|login|password|token|jwt" file.xml

# API endpoints
grep -iE "router|route|endpoint|api" file.xml

# Database/Models
grep -iE "model|schema|database|query" file.xml

# Error handling
grep -iE "error|exception|try.*catch" file.xml

File Management

  • Default output: ./repomix-output.xml
  • Use --output flag for custom paths
  • Clean up large files after analysis: rm repomix-output.xml
  • Or keep for future reference if space allows

Communication Style

  • Be concise but comprehensive: Summarize findings clearly
  • Use clear technical language: Code, file paths, commands should be precise
  • Cite sources: Reference file paths and line numbers
  • Suggest next steps: Guide further exploration

Example Workflows

Example 1: Basic Remote Repository Analysis

User: "Analyze the yamadashy/repomix repository"

Your workflow:
1. Run: npx repomix@latest --remote yamadashy/repomix --output /tmp/repomix-analysis.xml
2. Note the metrics from command output (files, tokens)
3. Grep: grep -i "export" /tmp/repomix-analysis.xml (find main exports)
4. Read file tree section to understand structure
5. Summarize:
   "This repository contains [number] files.
   Main components include: [list].
   Total tokens: approximately [number]."

Example 2: Finding Specific Patterns

User: "Find authentication code in this repository"

Your workflow:
1. Run: npx repomix@latest (or --remote if specified)
2. Grep: grep -iE -A 5 -B 5 "auth|authentication|login|password" repomix-output.xml
3. Analyze matches and categorize by file
4. Read the file to get more context if needed
5. Report:
   "Authentication-related code found in the following files:
   - [file1]: [description]
   - [file2]: [description]"

Example 3: Structure Analysis

User: "Explain the structure of this project"

Your workflow:
1. Run: npx repomix@latest ./
2. Read file tree from output (use limit if file is large)
3. Grep for main entry points: grep -iE "index|main|app" repomix-output.xml
4. Grep for exports: grep "export" repomix-output.xml | head -20
5. Provide structural overview with ASCII diagram if helpful

Example 4: Large Repository with Compression

User: "Analyze facebook/react - it's a large repository"

Your workflow:
1. Run: npx repomix@latest --remote facebook/react --compress --output /tmp/react-analysis.xml
2. Note compression reduced token count (~70% reduction)
3. Check metrics and file tree
4. Grep for main components
5. Report findings with note about compression used

Example 5: Specific File Types Only

User: "I want to see only TypeScript files"

Your workflow:
1. Run: npx repomix@latest --include "**/*.{ts,tsx}"
2. Analyze TypeScript-specific patterns
3. Report findings focused on TS code

Error Handling

If you encounter issues:

  1. Command fails:
  • Check error message
  • Verify repository URL/path
  • Check permissions
  • Suggest appropriate solutions
  1. Large output file:
  • Use --compress flag
  • Use --include to narrow scope
  • Read file in chunks with offset/limit
  1. Pattern not found:
  • Try alternative patterns
  • Check file tree to verify files exist
  • Suggest broader search
  1. Network issues (for remote):
  • Verify connection
  • Try again
  • Suggest using local clone instead

Help and Documentation

If you need more information:

  • Run npx repomix@latest --help to see all available options
  • Check the official documentation at https://github.com/yamadashy/repomix
  • Repomix automatically excludes sensitive files based on security checks

Important Notes

  1. Output file management: Track where files are created, clean up if needed
  2. Token efficiency: Use --compress for large repos to reduce token usage
  3. Incremental analysis: Don't read entire files at once; use grep first
  4. Security: Repomix automatically excludes sensitive files; trust its security checks

Self-Verification Checklist

Before completing your analysis:

  • Did you run the repomix command successfully?
  • Did you note the metrics from command output?
  • Did you use pattern search (grep) efficiently before reading large sections?
  • Are your insights based on actual data from the output?
  • Have you provided file paths and line numbers for references?
  • Did you suggest logical next steps for deeper exploration?
  • Did you communicate clearly and concisely?
  • Did you note the output file location for user reference?
  • Did you clean up or mention cleanup if output file is very large?

Remember: Your goal is to make repository exploration intelligent and efficient. Run repomix strategically, search before reading, and provide actionable insights based on real code analysis.

Score

0–100
57/ 100

Grade

C

Popularity17/30

1,048 installs — growing adoption. Source repo has 26,277 GitHub stars.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Repomix Explorer skill score badge previewScore badge

Markdown

[![Repomix Explorer skill](https://www.remoteopenclaw.com/skills/yamadashy/repomix/repomix-explorer/badges/score.svg)](https://www.remoteopenclaw.com/skills/yamadashy/repomix/repomix-explorer)

HTML

<a href="https://www.remoteopenclaw.com/skills/yamadashy/repomix/repomix-explorer"><img src="https://www.remoteopenclaw.com/skills/yamadashy/repomix/repomix-explorer/badges/score.svg" alt="Repomix Explorer skill"/></a>

Repomix Explorer FAQ

How do I install the Repomix Explorer skill?

Run “npx skills add https://github.com/yamadashy/repomix --skill repomix-explorer” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Repomix Explorer skill do?

| The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Repomix Explorer skill free?

Yes. Repomix Explorer is a free, open-source skill published from yamadashy/repomix. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Repomix Explorer work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Repomix Explorer works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →

Categories

No Code
View on GitHub

Recommended skills

Browse all →
LO

lark-openapi-explorer

open.feishu.cn

500K installsInstall
lark-openapi-explorer logo

lark-openapi-explorer

larksuite/cli

387K installsInstall
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed