diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json
index b7657129c..e25c4202d 100644
--- a/.claude-plugin/marketplace.json
+++ b/.claude-plugin/marketplace.json
@@ -5,7 +5,7 @@
},
"metadata": {
"description": "Official Repomix plugins for Claude Code",
- "version": "1.0.1"
+ "version": "1.0.2"
},
"plugins": [
{
@@ -25,7 +25,7 @@
"name": "repomix-commands",
"source": "./.claude/plugins/repomix-commands",
"description": "Slash commands for quick Repomix operations. Pack local and remote repositories with simple commands like /pack-local and /pack-remote.",
- "version": "1.0.1",
+ "version": "1.0.2",
"author": {
"name": "yamadashy"
},
@@ -33,6 +33,19 @@
"category": "productivity",
"license": "MIT",
"strict": false
+ },
+ {
+ "name": "repository-explorer",
+ "source": "./.claude/plugins/repository-explorer",
+ "description": "AI-powered repository analysis agent using Repomix CLI. Analyzes local and remote repositories intelligently by running repomix commands, then reading and searching the generated output files to answer questions about code structure, patterns, and content.",
+ "version": "1.0.0",
+ "author": {
+ "name": "yamadashy"
+ },
+ "keywords": ["repomix", "agent", "repository-analysis", "code-exploration", "ai"],
+ "category": "productivity",
+ "license": "MIT",
+ "strict": false
}
]
}
diff --git a/.claude/plugins/repomix-commands/.claude-plugin/plugin.json b/.claude/plugins/repomix-commands/.claude-plugin/plugin.json
index 3b830b719..2641dceb2 100644
--- a/.claude/plugins/repomix-commands/.claude-plugin/plugin.json
+++ b/.claude/plugins/repomix-commands/.claude-plugin/plugin.json
@@ -1,7 +1,7 @@
{
"name": "repomix-commands",
"description": "Slash commands for quick Repomix operations. Pack local and remote repositories with simple commands like /pack-local and /pack-remote.",
- "version": "1.0.1",
+ "version": "1.0.2",
"author": {
"name": "yamadashy"
},
diff --git a/.claude/plugins/repomix-commands/commands/pack-local.md b/.claude/plugins/repomix-commands/commands/pack-local.md
index 536a04f09..0f02e6591 100644
--- a/.claude/plugins/repomix-commands/commands/pack-local.md
+++ b/.claude/plugins/repomix-commands/commands/pack-local.md
@@ -62,10 +62,38 @@ npx repomix@latest --copy
npx repomix@latest --include-diffs --include-logs
```
+## Analyzing the Output
+
+**IMPORTANT**: The generated output file can be very large and consume significant context.
+
+If the user wants to analyze or explore the generated output:
+- **DO NOT read the entire output file directly**
+- **USE an appropriate sub-agent** to analyze the output
+- The sub-agent will efficiently search and read specific sections using grep and incremental reading
+
+**Agent Selection Strategy**:
+1. If `repository-explorer` agent is available, use it (optimized for repomix output analysis)
+2. Otherwise, use the `general-purpose` agent or another suitable sub-agent
+3. The sub-agent should use Grep and Read tools to analyze incrementally
+
+Example:
+```text
+User: "Pack this codebase and analyze it"
+
+Your workflow:
+1. Run: npx repomix@latest
+2. Note the output file location (e.g., repomix-output.xml)
+3. Launch an appropriate sub-agent with task:
+ "Analyze the repomix output file at ./repomix-output.xml.
+ Use Grep tool to search for patterns and Read tool to examine specific sections.
+ Provide an overview of the codebase structure and main components.
+ Do NOT read the entire file at once."
+```
+
## Help and Documentation
If you need more information about available options or encounter any issues:
- Run `npx repomix@latest -h` or `npx repomix@latest --help` to see all available options
- Check the official documentation at https://github.com/yamadashy/repomix
-Remember: Parse the user's natural language request and translate it into the appropriate repomix command.
+Remember: Parse the user's natural language request and translate it into the appropriate repomix command. For analysis tasks, delegate to appropriate sub-agents to avoid consuming excessive context.
diff --git a/.claude/plugins/repomix-commands/commands/pack-remote.md b/.claude/plugins/repomix-commands/commands/pack-remote.md
index e6df58492..604940efe 100644
--- a/.claude/plugins/repomix-commands/commands/pack-remote.md
+++ b/.claude/plugins/repomix-commands/commands/pack-remote.md
@@ -69,10 +69,38 @@ npx repomix@latest --remote owner/repo --include "src/**/*.ts"
npx repomix@latest --remote yamadashy/repomix --copy --style markdown
```
+## Analyzing the Output
+
+**IMPORTANT**: The generated output file can be very large and consume significant context.
+
+If the user wants to analyze or explore the generated output:
+- **DO NOT read the entire output file directly**
+- **USE an appropriate sub-agent** to analyze the output
+- The sub-agent will efficiently search and read specific sections using grep and incremental reading
+
+**Agent Selection Strategy**:
+1. If `repository-explorer` agent is available, use it (optimized for repomix output analysis)
+2. Otherwise, use the `general-purpose` agent or another suitable sub-agent
+3. The sub-agent should use Grep and Read tools to analyze incrementally
+
+Example:
+```text
+User: "Pack and analyze the yamadashy/repomix repository"
+
+Your workflow:
+1. Run: npx repomix@latest --remote yamadashy/repomix
+2. Note the output file location (e.g., repomix-output.xml)
+3. Launch an appropriate sub-agent with task:
+ "Analyze the repomix output file at ./repomix-output.xml.
+ Use Grep tool to search for patterns and Read tool to examine specific sections.
+ Provide an overview of the repository structure and main components.
+ Do NOT read the entire file at once."
+```
+
## Help and Documentation
If you need more information about available options or encounter any issues:
- Run `npx repomix@latest -h` or `npx repomix@latest --help` to see all available options
- Check the official documentation at https://github.com/yamadashy/repomix
-Remember: Parse the user's natural language request and translate it into the appropriate repomix command with the --remote option.
+Remember: Parse the user's natural language request and translate it into the appropriate repomix command with the --remote option. For analysis tasks, delegate to appropriate sub-agents to avoid consuming excessive context.
diff --git a/.claude/plugins/repository-explorer/.claude-plugin/plugin.json b/.claude/plugins/repository-explorer/.claude-plugin/plugin.json
new file mode 100644
index 000000000..bbc85aab3
--- /dev/null
+++ b/.claude/plugins/repository-explorer/.claude-plugin/plugin.json
@@ -0,0 +1,10 @@
+{
+ "name": "repository-explorer",
+ "description": "AI-powered repository analysis agent using Repomix CLI. Analyzes local and remote repositories intelligently by running repomix commands, then reading and searching the generated output files to answer questions about code structure, patterns, and content.",
+ "version": "1.0.0",
+ "author": {
+ "name": "yamadashy"
+ },
+ "keywords": ["repomix", "agent", "repository-analysis", "code-exploration", "ai"],
+ "license": "MIT"
+}
diff --git a/.claude/plugins/repository-explorer/agents/repository-explorer.md b/.claude/plugins/repository-explorer/agents/repository-explorer.md
new file mode 100644
index 000000000..d4172c7fb
--- /dev/null
+++ b/.claude/plugins/repository-explorer/agents/repository-explorer.md
@@ -0,0 +1,325 @@
+---
+name: repository-explorer
+description: Use this agent when the user wants to analyze or explore a codebase (remote repository or local repository) using Repomix. This includes scenarios like:\n\n- User asks to analyze a GitHub repository: "Can you analyze this repository: https://github.com/user/repo"\n- User wants to understand a local codebase: "Analyze the codebase in /path/to/project"\n- User requests insights about code structure: "What's the structure of this project?"\n- User wants to find specific patterns: "Find all React components in this repo"\n- User asks about code metrics: "How many lines of code are in this project?"\n- User wants to explore specific files or directories: "Show me the authentication logic"\n\nExamples:\n\n\nuser: "Can you analyze this repository: https://github.com/facebook/react"\nassistant: "I'll use the repository-explorer agent to analyze the React repository and provide insights about its structure and content."\n\nThe user is requesting repository analysis, so use the Task tool to launch the repository-explorer agent to process the remote repository.\n\n\n\n\nuser: "I want to understand the structure of the project in ~/projects/my-app"\nassistant: "Let me use the repository-explorer agent to analyze the local repository and provide you with a comprehensive overview."\n\nThe user wants to analyze a local repository structure, so use the repository-explorer agent to process the local codebase.\n\n\n\n\nuser: "Find all authentication-related files in the yamadashy/repomix repository"\nassistant: "I'll use the repository-explorer agent to search for authentication-related code in the Repomix repository."\n\nThe user wants to find specific patterns in a remote repository, so use the repository-explorer agent.\n\n
+model: inherit
+---
+
+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 `
+ - Local directory: `npx repomix@latest [directory]`
+ - Choose output format (xml is default and recommended)
+ - Decide if compression is needed (for repos >100k lines)
+3. **Execute the repomix command** via Bash tool
+4. **Analyze the generated output** using Grep and Read tools
+5. **Provide clear insights** with actionable recommendations
+
+## Available Tools
+
+### Bash Tool
+Run repomix commands and shell utilities:
+```bash
+npx repomix@latest --remote yamadashy/repomix
+npx repomix@latest ./src
+grep -i "pattern" repomix-output.xml
+```
+
+### Grep Tool
+Search patterns in output files (preferred over bash grep):
+- Use for finding code patterns, functions, imports
+- Supports context lines (-A, -B, -C equivalents)
+- More efficient than bash grep for large files
+
+### Read Tool
+Read specific sections of output files:
+- Use offset/limit for large files
+- Read file tree section first for structure overview
+- Read specific file contents as needed
+
+## Workflow
+
+### Step 1: Pack the Repository
+
+**For Remote Repositories:**
+```bash
+npx repomix@latest --remote [options]
+```
+
+**For Local Directories:**
+```bash
+npx repomix@latest [directory] [options]
+```
+
+**Common Options:**
+- `--style `: Output format (xml, markdown, json, plain) - **xml is default and recommended**
+- `--compress`: Enable Tree-sitter compression (~70% token reduction) - use for large repos
+- `--include `: Include only matching patterns (e.g., "src/**/*.ts,**/*.md")
+- `--ignore `: Additional ignore patterns
+- `--output `: Custom output path (default: repomix-output.xml)
+
+**Command Examples:**
+```bash
+# Basic remote pack
+npx repomix@latest --remote yamadashy/repomix
+
+# Basic local pack
+npx repomix@latest
+
+# Pack specific directory
+npx repomix@latest ./src
+
+# Large repo with compression
+npx repomix@latest --remote facebook/react --compress
+
+# Include only specific file types
+npx repomix@latest --include "**/*.{ts,tsx,js,jsx}"
+
+# Custom output location
+npx repomix@latest --remote user/repo --output analysis.xml
+```
+
+### 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. Use Grep or Read tool to view file tree (usually near the beginning)
+2. Check metrics summary for overall statistics
+
+**Search for patterns:**
+```bash
+# Using Grep tool (preferred)
+grep -iE "export.*function|export.*class" repomix-output.xml
+
+# Using bash grep with context
+grep -iE -A 5 -B 5 "authentication|auth" repomix-output.xml
+```
+
+**Read specific sections:**
+Use Read tool with offset/limit for large files, 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 Grep tool 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:
+```bash
+# 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|Error|exception|try.*catch" file.xml
+```
+
+### File Management
+- Default output: `./repomix-output.xml` or `./repomix-output.txt`
+- 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
+2. Note the metrics from command output (files, tokens)
+3. Grep: grep -i "export" repomix-output.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. Use Read tool 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 Read tool with limit if needed)
+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
+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
+
+2. **Large output file**:
+ - Use `--compress` flag
+ - Use `--include` to narrow scope
+ - Read file in chunks with offset/limit
+
+3. **Pattern not found**:
+ - Try alternative patterns
+ - Check file tree to verify files exist
+ - Suggest broader search
+
+4. **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. **Don't use MCP tools**: This agent uses repomix CLI commands directly via Bash tool
+2. **Output file management**: Track where files are created, clean up if needed
+3. **Token efficiency**: Use `--compress` for large repos to reduce token usage
+4. **Incremental analysis**: Don't read entire files at once; use grep first
+5. **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 Grep tool 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.
diff --git a/.claude/plugins/repository-explorer/commands/explore-local.md b/.claude/plugins/repository-explorer/commands/explore-local.md
new file mode 100644
index 000000000..ffbc97548
--- /dev/null
+++ b/.claude/plugins/repository-explorer/commands/explore-local.md
@@ -0,0 +1,72 @@
+---
+description: Explore and analyze a local codebase
+---
+
+Analyze a local codebase using the repository-explorer agent.
+
+When the user runs this command, they want to explore and understand a local project's code structure, patterns, and content.
+
+**Note**: This command is part of the repository-explorer plugin, so the repository-explorer agent is guaranteed to be available.
+
+## Usage
+
+The user should provide a path to a local directory:
+- Absolute path (e.g., /Users/username/projects/my-app)
+- Relative path (e.g., ./src, ../other-project)
+- Current directory (use "." or omit)
+
+## Your Responsibilities
+
+1. **Extract directory path** from the user's input (default to current directory if not specified)
+2. **Convert relative paths to absolute paths** if needed
+3. **Launch the repository-explorer agent** to analyze the codebase
+4. **Provide the agent with clear instructions** about what to analyze
+
+## Example Usage
+
+```
+/explore-local
+/explore-local ./src
+/explore-local /Users/username/projects/my-app
+/explore-local . - find all authentication-related code
+```
+
+## What to Tell the Agent
+
+Provide the repository-explorer agent with a task that includes:
+- The directory path to analyze (absolute path)
+- Any specific focus areas mentioned by the user
+- Clear instructions about what analysis is needed
+
+Default instruction template:
+```
+"Analyze this local directory: [absolute_path]
+
+Task: Provide an overview of the codebase structure, main components, and key patterns.
+
+Steps:
+1. Run `npx repomix@latest [path]` to pack the codebase
+2. Note the output file location
+3. Use Grep and Read tools to analyze the output incrementally
+4. Report your findings
+
+[Add any specific focus areas if mentioned by user]
+"
+```
+
+## Command Flow
+
+1. Parse the directory path from user input (default to current directory if not specified)
+2. Resolve to absolute path
+3. Identify any specific questions or focus areas from the user's request
+4. Launch the repository-explorer agent with:
+ - The Task tool
+ - A clear task description following the template above
+ - Any specific analysis requirements
+
+The agent will:
+- Run `npx repomix@latest [path]`
+- Analyze the generated output file efficiently using Grep and Read tools
+- Provide comprehensive findings based on the analysis
+
+Remember: The repository-explorer agent is optimized for this workflow. It will handle all the details of running repomix CLI, searching with grep, and reading specific sections. Your job is to launch it with clear context about which directory to analyze and what specific insights are needed.
diff --git a/.claude/plugins/repository-explorer/commands/explore-remote.md b/.claude/plugins/repository-explorer/commands/explore-remote.md
new file mode 100644
index 000000000..75c8a5780
--- /dev/null
+++ b/.claude/plugins/repository-explorer/commands/explore-remote.md
@@ -0,0 +1,69 @@
+---
+description: Explore and analyze a remote GitHub repository
+---
+
+Analyze a remote GitHub repository using the repository-explorer agent.
+
+When the user runs this command, they want to explore and understand a remote repository's code structure, patterns, and content.
+
+**Note**: This command is part of the repository-explorer plugin, so the repository-explorer agent is guaranteed to be available.
+
+## Usage
+
+The user should provide a GitHub repository in one of these formats:
+- `owner/repo` (e.g., yamadashy/repomix)
+- Full GitHub URL (e.g., https://github.com/facebook/react)
+- URL with branch (e.g., https://github.com/user/repo/tree/develop)
+
+## Your Responsibilities
+
+1. **Extract repository information** from the user's input
+2. **Launch the repository-explorer agent** to analyze the repository
+3. **Provide the agent with clear instructions** about what to analyze
+
+## Example Usage
+
+```
+/explore-remote yamadashy/repomix
+/explore-remote https://github.com/facebook/react
+/explore-remote microsoft/vscode - show me the main architecture
+```
+
+## What to Tell the Agent
+
+Provide the repository-explorer agent with a task that includes:
+- The repository to analyze (URL or owner/repo format)
+- Any specific focus areas mentioned by the user
+- Clear instructions about what analysis is needed
+
+Default instruction template:
+```
+"Analyze this remote repository: [repo]
+
+Task: Provide an overview of the repository structure, main components, and key patterns.
+
+Steps:
+1. Run `npx repomix@latest --remote [repo]` to pack the repository
+2. Note the output file location
+3. Use Grep and Read tools to analyze the output incrementally
+4. Report your findings
+
+[Add any specific focus areas if mentioned by user]
+"
+```
+
+## Command Flow
+
+1. Parse the repository information from user input (owner/repo or full URL)
+2. Identify any specific questions or focus areas from the user's request
+3. Launch the repository-explorer agent with:
+ - The Task tool
+ - A clear task description following the template above
+ - Any specific analysis requirements
+
+The agent will:
+- Run `npx repomix@latest --remote `
+- Analyze the generated output file efficiently using Grep and Read tools
+- Provide comprehensive findings based on the analysis
+
+Remember: The repository-explorer agent is optimized for this workflow. It will handle all the details of running repomix CLI, searching with grep, and reading specific sections. Your job is to launch it with clear context about which repository to analyze and what specific insights are needed.
diff --git a/README.md b/README.md
index 2a672df41..018b3662a 100644
--- a/README.md
+++ b/README.md
@@ -1029,6 +1029,34 @@ Pack this project as markdown with compression
Pack only TypeScript files from the yamadashy/repomix repository
```
+**3. repository-explorer** (AI Analysis Agent Plugin)
+
+AI-powered repository analysis agent that intelligently explores codebases using Repomix CLI.
+
+**Features:**
+- Natural language codebase exploration and analysis
+- Intelligent pattern discovery and code structure understanding
+- Incremental analysis using grep and targeted file reading
+- Automatic context management for large repositories
+
+**Available Commands:**
+- `/repository-explorer:explore-local` - Analyze local codebase with AI assistance
+- `/repository-explorer:explore-remote` - Analyze remote GitHub repositories with AI assistance
+
+**Example usage:**
+```text
+/repository-explorer:explore-local ./src
+Find all authentication-related code
+
+/repository-explorer:explore-remote facebook/react
+Show me the main component architecture
+```
+
+The agent automatically:
+1. Runs `npx repomix@latest` to pack the repository
+2. Uses Grep and Read tools to efficiently search the output
+3. Provides comprehensive analysis without consuming excessive context
+
#### Installation
**1. Add the Repomix plugin marketplace:**
@@ -1045,9 +1073,12 @@ Pack only TypeScript files from the yamadashy/repomix repository
# Install commands plugin (extends functionality)
/plugin install repomix-commands@repomix
+
+# Install repository explorer plugin (AI-powered analysis)
+/plugin install repository-explorer@repomix
```
-**Note**: The `repomix-mcp` plugin is recommended as a foundation, and `repomix-commands` extends it with convenient slash commands. While you can install them independently, using both provides the most comprehensive experience.
+**Note**: The `repomix-mcp` plugin is recommended as a foundation. The `repomix-commands` plugin provides convenient slash commands, while `repository-explorer` adds AI-powered analysis capabilities. While you can install them independently, using all three provides the most comprehensive experience.
**Alternatively, use the interactive plugin installer:**
diff --git a/website/client/src/de/guide/claude-code-plugins.md b/website/client/src/de/guide/claude-code-plugins.md
index 06c4b5d6c..618236fec 100644
--- a/website/client/src/de/guide/claude-code-plugins.md
+++ b/website/client/src/de/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Bietet praktische Slash-Befehle mit Unterstützung für natürliche Sprache.
- `/repomix-commands:pack-local` - Lokale Codebase mit verschiedenen Optionen verpacken
- `/repomix-commands:pack-remote` - Entfernte GitHub-Repositories verpacken und analysieren
+### 3. repository-explorer (KI-Analyse-Agent-Plugin)
+
+KI-gesteuerter Repository-Analyse-Agent, der Codebases intelligent mit Repomix CLI erkundet.
+
+**Funktionen:**
+- Natürlichsprachliche Codebase-Erkundung und -Analyse
+- Intelligente Mustererkennung und Verständnis der Codestruktur
+- Inkrementelle Analyse mit grep und gezieltem Dateilesen
+- Automatische Kontextverwaltung für große Repositories
+
+**Verfügbare Befehle:**
+- `/repository-explorer:explore-local` - Lokale Codebase mit KI-Unterstützung analysieren
+- `/repository-explorer:explore-remote` - Entfernte GitHub-Repositories mit KI-Unterstützung analysieren
+
+**Funktionsweise:**
+1. Führt `npx repomix@latest` aus, um das Repository zu verpacken
+2. Nutzt Grep- und Read-Tools zur effizienten Durchsuchung der Ausgabe
+3. Bietet umfassende Analyse ohne übermäßigen Kontextverbrauch
+
## Installation
### 1. Repomix-Plugin-Marktplatz hinzufügen
@@ -42,10 +61,13 @@ Installieren Sie die Plugins mit den folgenden Befehlen:
# Befehls-Plugin installieren (erweitert Funktionalität)
/plugin install repomix-commands@repomix
+
+# Repository-Explorer-Plugin installieren (KI-gestützte Analyse)
+/plugin install repository-explorer@repomix
```
::: tip Plugin-Beziehung
-Das `repomix-mcp`-Plugin wird als Basis empfohlen, und `repomix-commands` erweitert es mit praktischen Slash-Befehlen. Obwohl Sie sie unabhängig installieren können, bietet die Verwendung beider die umfassendste Erfahrung.
+Das `repomix-mcp`-Plugin wird als Basis empfohlen. Das `repomix-commands`-Plugin bietet praktische Slash-Befehle, während `repository-explorer` KI-gestützte Analysefunktionen hinzufügt. Obwohl Sie sie unabhängig installieren können, bietet die Verwendung aller drei die umfassendste Erfahrung.
:::
### Alternative: Interaktive Installation
@@ -88,6 +110,34 @@ Weitere Beispiele:
- "Nur Dokumentationsdateien einschließen"
- "Bestimmte Verzeichnisse verpacken"
+### Lokale Codebase mit KI erkunden
+
+Verwenden Sie den Befehl `/repository-explorer:explore-local` für KI-gestützte Analyse:
+
+```text
+/repository-explorer:explore-local ./src
+Alle authentifizierungsbezogenen Codes finden
+```
+
+Weitere Beispiele:
+- "Die Struktur dieses Projekts analysieren"
+- "Die Hauptkomponenten anzeigen"
+- "Alle API-Endpunkte finden"
+
+### Entferntes Repository mit KI erkunden
+
+Verwenden Sie den Befehl `/repository-explorer:explore-remote`, um GitHub-Repositories zu analysieren:
+
+```text
+/repository-explorer:explore-remote facebook/react
+Die Hauptkomponentenarchitektur anzeigen
+```
+
+Weitere Beispiele:
+- "Alle React-Hooks im Repository finden"
+- "Die Projektstruktur erklären"
+- "Wo sind Error Boundaries definiert?"
+
## Verwandte Ressourcen
- [MCP-Server-Dokumentation](/guide/mcp-server) - Erfahren Sie mehr über den zugrunde liegenden MCP-Server
@@ -102,6 +152,7 @@ Der Plugin-Quellcode ist im Repomix-Repository verfügbar:
- [Plugin-Marktplatz](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP-Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Befehls-Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Repository-Explorer-Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Feedback und Support
diff --git a/website/client/src/en/guide/claude-code-plugins.md b/website/client/src/en/guide/claude-code-plugins.md
index a6cd4f9d9..62d3a5fb8 100644
--- a/website/client/src/en/guide/claude-code-plugins.md
+++ b/website/client/src/en/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Provides convenient slash commands for quick operations with natural language su
- `/repomix-commands:pack-local` - Pack local codebase with various options
- `/repomix-commands:pack-remote` - Pack and analyze remote GitHub repositories
+### 3. repository-explorer (AI Analysis Agent Plugin)
+
+AI-powered repository analysis agent that intelligently explores codebases using Repomix CLI.
+
+**Features:**
+- Natural language codebase exploration and analysis
+- Intelligent pattern discovery and code structure understanding
+- Incremental analysis using grep and targeted file reading
+- Automatic context management for large repositories
+
+**Available Commands:**
+- `/repository-explorer:explore-local` - Analyze local codebase with AI assistance
+- `/repository-explorer:explore-remote` - Analyze remote GitHub repositories with AI assistance
+
+**How it works:**
+1. Runs `npx repomix@latest` to pack the repository
+2. Uses Grep and Read tools to efficiently search the output
+3. Provides comprehensive analysis without consuming excessive context
+
## Installation
### 1. Add the Repomix Plugin Marketplace
@@ -42,10 +61,13 @@ Install the plugins using the following commands:
# Install commands plugin (extends functionality)
/plugin install repomix-commands@repomix
+
+# Install repository explorer plugin (AI-powered analysis)
+/plugin install repository-explorer@repomix
```
::: tip Plugin Relationship
-The `repomix-mcp` plugin is recommended as a foundation, and `repomix-commands` extends it with convenient slash commands. While you can install them independently, using both provides the most comprehensive experience.
+The `repomix-mcp` plugin is recommended as a foundation. The `repomix-commands` plugin provides convenient slash commands, while `repository-explorer` adds AI-powered analysis capabilities. While you can install them independently, using all three provides the most comprehensive experience.
:::
### Alternative: Interactive Installation
@@ -88,6 +110,34 @@ Other examples:
- "Include only documentation files"
- "Pack specific directories"
+### Exploring a Local Codebase with AI
+
+Use the `/repository-explorer:explore-local` command for AI-powered analysis:
+
+```text
+/repository-explorer:explore-local ./src
+Find all authentication-related code
+```
+
+Other examples:
+- "Analyze the structure of this project"
+- "Show me the main components"
+- "Find all API endpoints"
+
+### Exploring a Remote Repository with AI
+
+Use the `/repository-explorer:explore-remote` command to analyze GitHub repositories:
+
+```text
+/repository-explorer:explore-remote facebook/react
+Show me the main component architecture
+```
+
+Other examples:
+- "Find all React hooks in the repository"
+- "Explain the project structure"
+- "Where are error boundaries defined?"
+
## Related Resources
- [MCP Server Documentation](/guide/mcp-server) - Learn about the underlying MCP server
@@ -102,6 +152,7 @@ The plugin source code is available in the Repomix repository:
- [Plugin Marketplace](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Commands Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Repository Explorer Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Feedback and Support
diff --git a/website/client/src/es/guide/claude-code-plugins.md b/website/client/src/es/guide/claude-code-plugins.md
index dcb289414..edb1d013d 100644
--- a/website/client/src/es/guide/claude-code-plugins.md
+++ b/website/client/src/es/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Proporciona comandos slash convenientes con soporte de lenguaje natural.
- `/repomix-commands:pack-local` - Empaquetar base de código local con varias opciones
- `/repomix-commands:pack-remote` - Empaquetar y analizar repositorios remotos de GitHub
+### 3. repository-explorer (Plugin de Agente de Análisis de IA)
+
+Agente de análisis de repositorios impulsado por IA que explora bases de código de manera inteligente utilizando Repomix CLI.
+
+**Características:**
+- Exploración y análisis de bases de código en lenguaje natural
+- Descubrimiento inteligente de patrones y comprensión de la estructura del código
+- Análisis incremental usando grep y lectura de archivos específicos
+- Gestión automática de contexto para repositorios grandes
+
+**Comandos Disponibles:**
+- `/repository-explorer:explore-local` - Analizar base de código local con asistencia de IA
+- `/repository-explorer:explore-remote` - Analizar repositorios remotos de GitHub con asistencia de IA
+
+**Cómo funciona:**
+1. Ejecuta `npx repomix@latest` para empaquetar el repositorio
+2. Usa herramientas Grep y Read para buscar eficientemente la salida
+3. Proporciona análisis integral sin consumir contexto excesivo
+
## Instalación
### 1. Agregar el Marketplace de Plugins de Repomix
@@ -42,10 +61,13 @@ Instale los plugins usando los siguientes comandos:
# Instalar plugin de comandos (extiende la funcionalidad)
/plugin install repomix-commands@repomix
+
+# Instalar plugin explorador de repositorios (análisis impulsado por IA)
+/plugin install repository-explorer@repomix
```
::: tip Relación entre Plugins
-El plugin `repomix-mcp` se recomienda como base, y `repomix-commands` lo extiende con comandos slash convenientes. Aunque puede instalarlos independientemente, usar ambos proporciona la experiencia más completa.
+El plugin `repomix-mcp` se recomienda como base. El plugin `repomix-commands` proporciona comandos slash convenientes, mientras que `repository-explorer` agrega capacidades de análisis impulsadas por IA. Aunque puede instalarlos independientemente, usar los tres proporciona la experiencia más completa.
:::
### Alternativa: Instalación Interactiva
@@ -88,6 +110,34 @@ Otros ejemplos:
- "Incluir solo archivos de documentación"
- "Empaquetar directorios específicos"
+### Explorar Base de Código Local con IA
+
+Use el comando `/repository-explorer:explore-local` para análisis impulsado por IA:
+
+```text
+/repository-explorer:explore-local ./src
+Encontrar todo el código relacionado con autenticación
+```
+
+Otros ejemplos:
+- "Analizar la estructura de este proyecto"
+- "Mostrarme los componentes principales"
+- "Encontrar todos los endpoints de API"
+
+### Explorar Repositorio Remoto con IA
+
+Use el comando `/repository-explorer:explore-remote` para analizar repositorios de GitHub:
+
+```text
+/repository-explorer:explore-remote facebook/react
+Mostrarme la arquitectura de componentes principal
+```
+
+Otros ejemplos:
+- "Encontrar todos los hooks de React en el repositorio"
+- "Explicar la estructura del proyecto"
+- "¿Dónde se definen los límites de error?"
+
## Recursos Relacionados
- [Documentación del Servidor MCP](/guide/mcp-server) - Aprenda sobre el servidor MCP subyacente
@@ -102,6 +152,7 @@ El código fuente de los plugins está disponible en el repositorio de Repomix:
- [Marketplace de Plugins](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [Plugin MCP](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Plugin de Comandos](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Plugin Explorador de Repositorios](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Comentarios y Soporte
diff --git a/website/client/src/fr/guide/claude-code-plugins.md b/website/client/src/fr/guide/claude-code-plugins.md
index fba3318b6..363e5bcee 100644
--- a/website/client/src/fr/guide/claude-code-plugins.md
+++ b/website/client/src/fr/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Fournit des commandes slash pratiques avec support du langage naturel.
- `/repomix-commands:pack-local` - Empaqueter une base de code locale avec diverses options
- `/repomix-commands:pack-remote` - Empaqueter et analyser des dépôts GitHub distants
+### 3. repository-explorer (Plugin Agent d'Analyse IA)
+
+Agent d'analyse de dépôt alimenté par l'IA qui explore intelligemment les bases de code en utilisant Repomix CLI.
+
+**Fonctionnalités :**
+- Exploration et analyse de base de code en langage naturel
+- Découverte intelligente de motifs et compréhension de la structure du code
+- Analyse incrémentale utilisant grep et lecture de fichiers ciblée
+- Gestion automatique du contexte pour les grands dépôts
+
+**Commandes Disponibles :**
+- `/repository-explorer:explore-local` - Analyser une base de code locale avec assistance IA
+- `/repository-explorer:explore-remote` - Analyser des dépôts GitHub distants avec assistance IA
+
+**Fonctionnement :**
+1. Exécute `npx repomix@latest` pour empaqueter le dépôt
+2. Utilise les outils Grep et Read pour rechercher efficacement la sortie
+3. Fournit une analyse complète sans consommer de contexte excessif
+
## Installation
### 1. Ajouter le Marketplace de Plugins Repomix
@@ -42,10 +61,13 @@ Installez les plugins en utilisant les commandes suivantes :
# Installer le plugin de commandes (étend les fonctionnalités)
/plugin install repomix-commands@repomix
+
+# Installer le plugin explorateur de dépôt (analyse alimentée par IA)
+/plugin install repository-explorer@repomix
```
::: tip Relations entre Plugins
-Le plugin `repomix-mcp` est recommandé comme base, et `repomix-commands` l'étend avec des commandes slash pratiques. Bien que vous puissiez les installer indépendamment, utiliser les deux offre l'expérience la plus complète.
+Le plugin `repomix-mcp` est recommandé comme base. Le plugin `repomix-commands` fournit des commandes slash pratiques, tandis que `repository-explorer` ajoute des capacités d'analyse alimentées par l'IA. Bien que vous puissiez les installer indépendamment, utiliser les trois offre l'expérience la plus complète.
:::
### Alternative : Installation Interactive
@@ -88,6 +110,34 @@ Autres exemples :
- "Inclure uniquement les fichiers de documentation"
- "Empaqueter des répertoires spécifiques"
+### Explorer une Base de Code Locale avec l'IA
+
+Utilisez la commande `/repository-explorer:explore-local` pour une analyse alimentée par l'IA :
+
+```text
+/repository-explorer:explore-local ./src
+Trouver tout le code lié à l'authentification
+```
+
+Autres exemples :
+- "Analyser la structure de ce projet"
+- "Me montrer les composants principaux"
+- "Trouver tous les endpoints d'API"
+
+### Explorer un Dépôt Distant avec l'IA
+
+Utilisez la commande `/repository-explorer:explore-remote` pour analyser des dépôts GitHub :
+
+```text
+/repository-explorer:explore-remote facebook/react
+Me montrer l'architecture des composants principaux
+```
+
+Autres exemples :
+- "Trouver tous les hooks React dans le dépôt"
+- "Expliquer la structure du projet"
+- "Où sont définis les limites d'erreur ?"
+
## Ressources Connexes
- [Documentation du Serveur MCP](/guide/mcp-server) - En savoir plus sur le serveur MCP sous-jacent
@@ -102,6 +152,7 @@ Le code source des plugins est disponible dans le dépôt Repomix :
- [Marketplace de Plugins](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [Plugin MCP](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Plugin de Commandes](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Plugin Explorateur de Dépôt](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Retours et Support
diff --git a/website/client/src/hi/guide/claude-code-plugins.md b/website/client/src/hi/guide/claude-code-plugins.md
index 0b4f271ef..876c55d4f 100644
--- a/website/client/src/hi/guide/claude-code-plugins.md
+++ b/website/client/src/hi/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ MCP सर्वर एकीकरण के माध्यम से AI-स
- `/repomix-commands:pack-local` - विभिन्न विकल्पों के साथ स्थानीय कोडबेस पैक करें
- `/repomix-commands:pack-remote` - दूरस्थ GitHub रिपॉजिटरी पैक और विश्लेषण करें
+### 3. repository-explorer (AI विश्लेषण एजेंट प्लगइन)
+
+AI-संचालित रिपॉजिटरी विश्लेषण एजेंट जो Repomix CLI का उपयोग करके कोडबेस को बुद्धिमानी से खोजता है।
+
+**विशेषताएं:**
+- प्राकृतिक भाषा में कोडबेस की खोज और विश्लेषण
+- बुद्धिमान पैटर्न खोज और कोड संरचना की समझ
+- grep और लक्षित फ़ाइल रीडिंग का उपयोग करके चरणबद्ध विश्लेषण
+- बड़े रिपॉजिटरी के लिए स्वचालित संदर्भ प्रबंधन
+
+**उपलब्ध कमांड:**
+- `/repository-explorer:explore-local` - AI सहायता के साथ स्थानीय कोडबेस का विश्लेषण करें
+- `/repository-explorer:explore-remote` - AI सहायता के साथ दूरस्थ GitHub रिपॉजिटरी का विश्लेषण करें
+
+**कैसे काम करता है:**
+1. रिपॉजिटरी को पैक करने के लिए `npx repomix@latest` चलाता है
+2. आउटपुट को कुशलता से खोजने के लिए Grep और Read टूल का उपयोग करता है
+3. अत्यधिक संदर्भ का उपभोग किए बिना व्यापक विश्लेषण प्रदान करता है
+
## इंस्टॉलेशन
### 1. Repomix प्लगइन मार्केटप्लेस जोड़ें
@@ -42,10 +61,13 @@ MCP सर्वर एकीकरण के माध्यम से AI-स
# कमांड प्लगइन इंस्टॉल करें (कार्यक्षमता बढ़ाता है)
/plugin install repomix-commands@repomix
+
+# रिपॉजिटरी एक्सप्लोरर प्लगइन इंस्टॉल करें (AI-संचालित विश्लेषण)
+/plugin install repository-explorer@repomix
```
::: tip प्लगइन संबंध
-`repomix-mcp` प्लगइन को आधार के रूप में अनुशंसित किया जाता है, और `repomix-commands` सुविधाजनक स्लैश कमांड के साथ इसे विस्तारित करता है। हालांकि आप उन्हें स्वतंत्र रूप से इंस्टॉल कर सकते हैं, दोनों का उपयोग सबसे व्यापक अनुभव प्रदान करता है।
+`repomix-mcp` प्लगइन को आधार के रूप में अनुशंसित किया जाता है। `repomix-commands` प्लगइन सुविधाजनक स्लैश कमांड प्रदान करता है, जबकि `repository-explorer` AI-संचालित विश्लेषण क्षमताएं जोड़ता है। हालांकि आप उन्हें स्वतंत्र रूप से इंस्टॉल कर सकते हैं, तीनों का उपयोग सबसे व्यापक अनुभव प्रदान करता है।
:::
### विकल्प: इंटरैक्टिव इंस्टॉलेशन
@@ -88,6 +110,34 @@ yamadashy/repomix रिपॉजिटरी से केवल TypeScript फ
- "केवल दस्तावेज़ीकरण फाइलें शामिल करें"
- "विशिष्ट डायरेक्टरी पैक करें"
+### AI के साथ स्थानीय कोडबेस की खोज करें
+
+AI-संचालित विश्लेषण के लिए `/repository-explorer:explore-local` कमांड का उपयोग करें:
+
+```text
+/repository-explorer:explore-local ./src
+सभी प्रमाणीकरण संबंधी कोड खोजें
+```
+
+अन्य उदाहरण:
+- "इस प्रोजेक्ट की संरचना का विश्लेषण करें"
+- "मुझे मुख्य घटक दिखाएं"
+- "सभी API एंडपॉइंट खोजें"
+
+### AI के साथ दूरस्थ रिपॉजिटरी की खोज करें
+
+GitHub रिपॉजिटरी का विश्लेषण करने के लिए `/repository-explorer:explore-remote` कमांड का उपयोग करें:
+
+```text
+/repository-explorer:explore-remote facebook/react
+मुझे मुख्य घटक आर्किटेक्चर दिखाएं
+```
+
+अन्य उदाहरण:
+- "रिपॉजिटरी में सभी React हुक खोजें"
+- "प्रोजेक्ट संरचना की व्याख्या करें"
+- "त्रुटि सीमाएं कहां परिभाषित हैं?"
+
## संबंधित संसाधन
- [MCP सर्वर दस्तावेज़ीकरण](/guide/mcp-server) - अंतर्निहित MCP सर्वर के बारे में जानें
@@ -102,6 +152,7 @@ yamadashy/repomix रिपॉजिटरी से केवल TypeScript फ
- [प्लगइन मार्केटप्लेस](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP प्लगइन](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [कमांड प्लगइन](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [रिपॉजिटरी एक्सप्लोरर प्लगइन](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## फीडबैक और सहायता
diff --git a/website/client/src/id/guide/claude-code-plugins.md b/website/client/src/id/guide/claude-code-plugins.md
index e5edde053..24cda6be9 100644
--- a/website/client/src/id/guide/claude-code-plugins.md
+++ b/website/client/src/id/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Menyediakan perintah slash yang praktis dengan dukungan bahasa alami.
- `/repomix-commands:pack-local` - Mengemas codebase lokal dengan berbagai opsi
- `/repomix-commands:pack-remote` - Mengemas dan menganalisis repositori GitHub remote
+### 3. repository-explorer (Plugin Agen Analisis AI)
+
+Agen analisis repositori berbasis AI yang mengeksplorasi codebase secara cerdas menggunakan Repomix CLI.
+
+**Fitur:**
+- Eksplorasi dan analisis codebase dengan bahasa alami
+- Penemuan pola cerdas dan pemahaman struktur kode
+- Analisis bertahap menggunakan grep dan pembacaan file tertarget
+- Manajemen konteks otomatis untuk repositori besar
+
+**Perintah yang Tersedia:**
+- `/repository-explorer:explore-local` - Menganalisis codebase lokal dengan bantuan AI
+- `/repository-explorer:explore-remote` - Menganalisis repositori GitHub remote dengan bantuan AI
+
+**Cara kerjanya:**
+1. Menjalankan `npx repomix@latest` untuk mengemas repositori
+2. Menggunakan alat Grep dan Read untuk mencari output secara efisien
+3. Memberikan analisis komprehensif tanpa mengkonsumsi konteks berlebihan
+
## Instalasi
### 1. Tambahkan Marketplace Plugin Repomix
@@ -42,10 +61,13 @@ Instal plugin menggunakan perintah berikut:
# Instal plugin perintah (memperluas fungsionalitas)
/plugin install repomix-commands@repomix
+
+# Instal plugin penjelajah repositori (analisis berbasis AI)
+/plugin install repository-explorer@repomix
```
::: tip Hubungan Plugin
-Plugin `repomix-mcp` direkomendasikan sebagai dasar, dan `repomix-commands` memperluasnya dengan perintah slash yang praktis. Meskipun Anda dapat menginstalnya secara independen, menggunakan keduanya memberikan pengalaman yang paling komprehensif.
+Plugin `repomix-mcp` direkomendasikan sebagai dasar. Plugin `repomix-commands` menyediakan perintah slash yang praktis, sementara `repository-explorer` menambahkan kemampuan analisis berbasis AI. Meskipun Anda dapat menginstalnya secara independen, menggunakan ketiganya memberikan pengalaman yang paling komprehensif.
:::
### Alternatif: Instalasi Interaktif
@@ -88,6 +110,34 @@ Contoh lainnya:
- "Sertakan hanya file dokumentasi"
- "Kemas direktori tertentu"
+### Menjelajahi Codebase Lokal dengan AI
+
+Gunakan perintah `/repository-explorer:explore-local` untuk analisis berbasis AI:
+
+```text
+/repository-explorer:explore-local ./src
+Temukan semua kode terkait autentikasi
+```
+
+Contoh lainnya:
+- "Analisis struktur proyek ini"
+- "Tunjukkan komponen utama"
+- "Temukan semua endpoint API"
+
+### Menjelajahi Repositori Remote dengan AI
+
+Gunakan perintah `/repository-explorer:explore-remote` untuk menganalisis repositori GitHub:
+
+```text
+/repository-explorer:explore-remote facebook/react
+Tunjukkan arsitektur komponen utama
+```
+
+Contoh lainnya:
+- "Temukan semua React hooks di repositori"
+- "Jelaskan struktur proyek"
+- "Di mana error boundaries didefinisikan?"
+
## Sumber Daya Terkait
- [Dokumentasi Server MCP](/guide/mcp-server) - Pelajari tentang server MCP yang mendasari
@@ -102,6 +152,7 @@ Kode sumber plugin tersedia di repositori Repomix:
- [Marketplace Plugin](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [Plugin MCP](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Plugin Perintah](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Plugin Penjelajah Repositori](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Umpan Balik dan Dukungan
diff --git a/website/client/src/ja/guide/claude-code-plugins.md b/website/client/src/ja/guide/claude-code-plugins.md
index d900a09ea..d7f20a56d 100644
--- a/website/client/src/ja/guide/claude-code-plugins.md
+++ b/website/client/src/ja/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ MCP サーバー統合によるAI駆動のコードベース分析を提供す
- `/repomix-commands:pack-local` - 様々なオプションでローカルコードベースをパッキング
- `/repomix-commands:pack-remote` - リモートGitHubリポジトリをパッキング・分析
+### 3. repository-explorer(AI分析エージェントプラグイン)
+
+Repomix CLIを使用してコードベースをインテリジェントに探索するAI駆動のリポジトリ分析エージェントです。
+
+**機能:**
+- 自然言語によるコードベースの探索と分析
+- インテリジェントなパターン発見とコード構造の理解
+- grepとターゲットファイル読み込みによる段階的分析
+- 大規模リポジトリの自動コンテキスト管理
+
+**利用可能なコマンド:**
+- `/repository-explorer:explore-local` - AIアシスタントによるローカルコードベースの分析
+- `/repository-explorer:explore-remote` - AIアシスタントによるリモートGitHubリポジトリの分析
+
+**動作方法:**
+1. `npx repomix@latest`を実行してリポジトリをパッキング
+2. GrepとReadツールを使用して効率的に出力を検索
+3. 過度なコンテキスト消費なしで包括的な分析を提供
+
## インストール
### 1. Repomixプラグインマーケットプレースの追加
@@ -42,10 +61,13 @@ MCP サーバー統合によるAI駆動のコードベース分析を提供す
# コマンドプラグインをインストール(機能拡張)
/plugin install repomix-commands@repomix
+
+# リポジトリエクスプローラープラグインをインストール(AI駆動分析)
+/plugin install repository-explorer@repomix
```
::: tip プラグインの関係
-`repomix-mcp`プラグインは基盤として推奨され、`repomix-commands`は便利なスラッシュコマンドで機能を拡張します。独立してインストールすることもできますが、両方を使用することで最も包括的な体験が得られます。
+`repomix-mcp`プラグインは基盤として推奨されます。`repomix-commands`プラグインは便利なスラッシュコマンドを提供し、`repository-explorer`はAI駆動の分析機能を追加します。独立してインストールすることもできますが、3つすべてを使用することで最も包括的な体験が得られます。
:::
### 代替: インタラクティブインストール
@@ -88,6 +110,34 @@ yamadashy/repomixリポジトリからTypeScriptファイルのみをパッキ
- "ドキュメントファイルのみを含める"
- "特定のディレクトリをパッキング"
+### AIによるローカルコードベースの探索
+
+`/repository-explorer:explore-local`コマンドを使用してAI駆動の分析を実行します:
+
+```text
+/repository-explorer:explore-local ./src
+認証関連のコードをすべて見つけて
+```
+
+その他の例:
+- "このプロジェクトの構造を分析して"
+- "主要なコンポーネントを見せて"
+- "すべてのAPIエンドポイントを見つけて"
+
+### AIによるリモートリポジトリの探索
+
+`/repository-explorer:explore-remote`コマンドを使用してGitHubリポジトリを分析します:
+
+```text
+/repository-explorer:explore-remote facebook/react
+主要なコンポーネントアーキテクチャを見せて
+```
+
+その他の例:
+- "リポジトリ内のすべてのReactフックを見つけて"
+- "プロジェクト構造を説明して"
+- "エラーバウンダリーはどこで定義されている?"
+
## 関連リソース
- [MCPサーバードキュメント](/guide/mcp-server) - 基盤となるMCPサーバーについて学ぶ
@@ -102,6 +152,7 @@ yamadashy/repomixリポジトリからTypeScriptファイルのみをパッキ
- [プラグインマーケットプレース](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCPプラグイン](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [コマンドプラグイン](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [リポジトリエクスプローラープラグイン](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## フィードバックとサポート
diff --git a/website/client/src/ko/guide/claude-code-plugins.md b/website/client/src/ko/guide/claude-code-plugins.md
index 95867c875..9456e6b87 100644
--- a/website/client/src/ko/guide/claude-code-plugins.md
+++ b/website/client/src/ko/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ MCP 서버 통합을 통해 AI 기반 코드베이스 분석을 제공하는 기
- `/repomix-commands:pack-local` - 다양한 옵션으로 로컬 코드베이스 패키징
- `/repomix-commands:pack-remote` - 원격 GitHub 저장소 패키징 및 분석
+### 3. repository-explorer (AI 분석 에이전트 플러그인)
+
+Repomix CLI를 사용하여 코드베이스를 지능적으로 탐색하는 AI 기반 저장소 분석 에이전트입니다.
+
+**기능:**
+- 자연어를 사용한 코드베이스 탐색 및 분석
+- 지능적인 패턴 발견 및 코드 구조 이해
+- grep 및 대상 파일 읽기를 사용한 점진적 분석
+- 대형 저장소를 위한 자동 컨텍스트 관리
+
+**사용 가능한 명령:**
+- `/repository-explorer:explore-local` - AI 지원으로 로컬 코드베이스 분석
+- `/repository-explorer:explore-remote` - AI 지원으로 원격 GitHub 저장소 분석
+
+**작동 방식:**
+1. `npx repomix@latest`를 실행하여 저장소 패키징
+2. Grep 및 Read 도구를 사용하여 출력을 효율적으로 검색
+3. 과도한 컨텍스트 소비 없이 포괄적인 분석 제공
+
## 설치
### 1. Repomix 플러그인 마켓플레이스 추가
@@ -42,10 +61,13 @@ MCP 서버 통합을 통해 AI 기반 코드베이스 분석을 제공하는 기
# 명령 플러그인 설치 (기능 확장)
/plugin install repomix-commands@repomix
+
+# 저장소 탐색기 플러그인 설치 (AI 기반 분석)
+/plugin install repository-explorer@repomix
```
::: tip 플러그인 관계
-`repomix-mcp` 플러그인을 기반으로 권장하며, `repomix-commands`는 편리한 슬래시 명령으로 기능을 확장합니다. 독립적으로 설치할 수 있지만, 둘 다 사용하면 가장 포괄적인 경험을 제공합니다.
+`repomix-mcp` 플러그인을 기반으로 권장합니다. `repomix-commands` 플러그인은 편리한 슬래시 명령을 제공하고, `repository-explorer`는 AI 기반 분석 기능을 추가합니다. 독립적으로 설치할 수 있지만, 세 가지 모두 사용하면 가장 포괄적인 경험을 제공합니다.
:::
### 대안: 대화형 설치
@@ -88,6 +110,34 @@ yamadashy/repomix 저장소에서 TypeScript 파일만 패키징
- "문서 파일만 포함"
- "특정 디렉토리 패키징"
+### AI로 로컬 코드베이스 탐색
+
+AI 기반 분석을 위해 `/repository-explorer:explore-local` 명령을 사용합니다:
+
+```text
+/repository-explorer:explore-local ./src
+인증 관련 코드를 모두 찾아줘
+```
+
+기타 예제:
+- "이 프로젝트의 구조를 분석해줘"
+- "주요 컴포넌트를 보여줘"
+- "모든 API 엔드포인트를 찾아줘"
+
+### AI로 원격 저장소 탐색
+
+GitHub 저장소를 분석하려면 `/repository-explorer:explore-remote` 명령을 사용합니다:
+
+```text
+/repository-explorer:explore-remote facebook/react
+주요 컴포넌트 아키텍처를 보여줘
+```
+
+기타 예제:
+- "저장소의 모든 React 훅을 찾아줘"
+- "프로젝트 구조를 설명해줘"
+- "에러 바운더리는 어디에 정의되어 있어?"
+
## 관련 리소스
- [MCP 서버 문서](/guide/mcp-server) - 기본 MCP 서버에 대해 알아보기
@@ -102,6 +152,7 @@ yamadashy/repomix 저장소에서 TypeScript 파일만 패키징
- [플러그인 마켓플레이스](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP 플러그인](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [명령 플러그인](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [저장소 탐색기 플러그인](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## 피드백 및 지원
diff --git a/website/client/src/pt-br/guide/claude-code-plugins.md b/website/client/src/pt-br/guide/claude-code-plugins.md
index 8a2d975a7..b450d6587 100644
--- a/website/client/src/pt-br/guide/claude-code-plugins.md
+++ b/website/client/src/pt-br/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Fornece comandos slash convenientes com suporte a linguagem natural.
- `/repomix-commands:pack-local` - Empacotar base de código local com várias opções
- `/repomix-commands:pack-remote` - Empacotar e analisar repositórios remotos do GitHub
+### 3. repository-explorer (Plugin de Agente de Análise de IA)
+
+Agente de análise de repositório alimentado por IA que explora bases de código de forma inteligente usando Repomix CLI.
+
+**Recursos:**
+- Exploração e análise de base de código em linguagem natural
+- Descoberta inteligente de padrões e compreensão da estrutura do código
+- Análise incremental usando grep e leitura de arquivos direcionada
+- Gerenciamento automático de contexto para repositórios grandes
+
+**Comandos Disponíveis:**
+- `/repository-explorer:explore-local` - Analisar base de código local com assistência de IA
+- `/repository-explorer:explore-remote` - Analisar repositórios remotos do GitHub com assistência de IA
+
+**Como funciona:**
+1. Executa `npx repomix@latest` para empacotar o repositório
+2. Usa ferramentas Grep e Read para buscar eficientemente a saída
+3. Fornece análise abrangente sem consumir contexto excessivo
+
## Instalação
### 1. Adicionar o Marketplace de Plugins do Repomix
@@ -42,10 +61,13 @@ Instale os plugins usando os seguintes comandos:
# Instalar plugin de comandos (estende a funcionalidade)
/plugin install repomix-commands@repomix
+
+# Instalar plugin explorador de repositório (análise alimentada por IA)
+/plugin install repository-explorer@repomix
```
::: tip Relação entre Plugins
-O plugin `repomix-mcp` é recomendado como base, e o `repomix-commands` o estende com comandos slash convenientes. Embora você possa instalá-los independentemente, usar ambos proporciona a experiência mais abrangente.
+O plugin `repomix-mcp` é recomendado como base. O plugin `repomix-commands` fornece comandos slash convenientes, enquanto o `repository-explorer` adiciona capacidades de análise alimentadas por IA. Embora você possa instalá-los independentemente, usar os três proporciona a experiência mais abrangente.
:::
### Alternativa: Instalação Interativa
@@ -88,6 +110,34 @@ Outros exemplos:
- "Incluir apenas arquivos de documentação"
- "Empacotar diretórios específicos"
+### Explorando Base de Código Local com IA
+
+Use o comando `/repository-explorer:explore-local` para análise alimentada por IA:
+
+```text
+/repository-explorer:explore-local ./src
+Encontrar todo o código relacionado à autenticação
+```
+
+Outros exemplos:
+- "Analisar a estrutura deste projeto"
+- "Mostrar os componentes principais"
+- "Encontrar todos os endpoints de API"
+
+### Explorando Repositório Remoto com IA
+
+Use o comando `/repository-explorer:explore-remote` para analisar repositórios do GitHub:
+
+```text
+/repository-explorer:explore-remote facebook/react
+Mostrar a arquitetura dos componentes principais
+```
+
+Outros exemplos:
+- "Encontrar todos os hooks do React no repositório"
+- "Explicar a estrutura do projeto"
+- "Onde estão definidos os limites de erro?"
+
## Recursos Relacionados
- [Documentação do Servidor MCP](/guide/mcp-server) - Saiba mais sobre o servidor MCP subjacente
@@ -102,6 +152,7 @@ O código-fonte dos plugins está disponível no repositório do Repomix:
- [Marketplace de Plugins](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [Plugin MCP](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Plugin de Comandos](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Plugin Explorador de Repositório](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Feedback e Suporte
diff --git a/website/client/src/vi/guide/claude-code-plugins.md b/website/client/src/vi/guide/claude-code-plugins.md
index 2f1f64630..dee33098f 100644
--- a/website/client/src/vi/guide/claude-code-plugins.md
+++ b/website/client/src/vi/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Cung cấp các lệnh slash tiện lợi với hỗ trợ ngôn ngữ tự nhi
- `/repomix-commands:pack-local` - Đóng gói codebase cục bộ với nhiều tùy chọn
- `/repomix-commands:pack-remote` - Đóng gói và phân tích repository GitHub từ xa
+### 3. repository-explorer (Plugin Agent Phân Tích AI)
+
+Agent phân tích repository được hỗ trợ bởi AI khám phá codebase một cách thông minh sử dụng Repomix CLI.
+
+**Tính năng:**
+- Khám phá và phân tích codebase bằng ngôn ngữ tự nhiên
+- Phát hiện mẫu thông minh và hiểu cấu trúc code
+- Phân tích tăng dần sử dụng grep và đọc file có mục tiêu
+- Quản lý ngữ cảnh tự động cho repository lớn
+
+**Lệnh Có Sẵn:**
+- `/repository-explorer:explore-local` - Phân tích codebase cục bộ với hỗ trợ AI
+- `/repository-explorer:explore-remote` - Phân tích repository GitHub từ xa với hỗ trợ AI
+
+**Cách hoạt động:**
+1. Chạy `npx repomix@latest` để đóng gói repository
+2. Sử dụng công cụ Grep và Read để tìm kiếm đầu ra hiệu quả
+3. Cung cấp phân tích toàn diện mà không tiêu thụ quá nhiều ngữ cảnh
+
## Cài Đặt
### 1. Thêm Repomix Plugin Marketplace
@@ -42,10 +61,13 @@ Cài đặt các plugin bằng các lệnh sau:
# Cài đặt plugin lệnh (mở rộng chức năng)
/plugin install repomix-commands@repomix
+
+# Cài đặt plugin khám phá repository (phân tích hỗ trợ AI)
+/plugin install repository-explorer@repomix
```
::: tip Mối Quan Hệ Plugin
-Plugin `repomix-mcp` được khuyến nghị làm nền tảng, và `repomix-commands` mở rộng nó với các lệnh slash tiện lợi. Mặc dù bạn có thể cài đặt chúng độc lập, việc sử dụng cả hai sẽ mang lại trải nghiệm toàn diện nhất.
+Plugin `repomix-mcp` được khuyến nghị làm nền tảng. Plugin `repomix-commands` cung cấp các lệnh slash tiện lợi, trong khi `repository-explorer` thêm khả năng phân tích hỗ trợ AI. Mặc dù bạn có thể cài đặt chúng độc lập, việc sử dụng cả ba sẽ mang lại trải nghiệm toàn diện nhất.
:::
### Thay Thế: Cài Đặt Tương Tác
@@ -88,6 +110,34 @@ Các ví dụ khác:
- "Chỉ bao gồm file tài liệu"
- "Đóng gói thư mục cụ thể"
+### Khám Phá Codebase Cục Bộ với AI
+
+Sử dụng lệnh `/repository-explorer:explore-local` để phân tích hỗ trợ AI:
+
+```text
+/repository-explorer:explore-local ./src
+Tìm tất cả code liên quan đến xác thực
+```
+
+Các ví dụ khác:
+- "Phân tích cấu trúc của dự án này"
+- "Cho tôi xem các component chính"
+- "Tìm tất cả các endpoint API"
+
+### Khám Phá Repository Từ Xa với AI
+
+Sử dụng lệnh `/repository-explorer:explore-remote` để phân tích repository GitHub:
+
+```text
+/repository-explorer:explore-remote facebook/react
+Cho tôi xem kiến trúc component chính
+```
+
+Các ví dụ khác:
+- "Tìm tất cả React hooks trong repository"
+- "Giải thích cấu trúc dự án"
+- "Các error boundaries được định nghĩa ở đâu?"
+
## Tài Nguyên Liên Quan
- [Tài Liệu MCP Server](/guide/mcp-server) - Tìm hiểu về MCP server cơ bản
@@ -102,6 +152,7 @@ Mã nguồn plugin có sẵn trong repository Repomix:
- [Plugin Marketplace](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [Commands Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [Repository Explorer Plugin](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## Phản Hồi và Hỗ Trợ
diff --git a/website/client/src/zh-cn/guide/claude-code-plugins.md b/website/client/src/zh-cn/guide/claude-code-plugins.md
index 1e93a4424..355dcd023 100644
--- a/website/client/src/zh-cn/guide/claude-code-plugins.md
+++ b/website/client/src/zh-cn/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Repomix 为 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
- `/repomix-commands:pack-local` - 使用各种选项打包本地代码库
- `/repomix-commands:pack-remote` - 打包和分析远程 GitHub 仓库
+### 3. repository-explorer(AI 分析代理插件)
+
+AI 驱动的仓库分析代理,使用 Repomix CLI 智能探索代码库。
+
+**功能:**
+- 自然语言代码库探索和分析
+- 智能模式发现和代码结构理解
+- 使用 grep 和定向文件读取进行增量分析
+- 大型仓库的自动上下文管理
+
+**可用命令:**
+- `/repository-explorer:explore-local` - 使用 AI 辅助分析本地代码库
+- `/repository-explorer:explore-remote` - 使用 AI 辅助分析远程 GitHub 仓库
+
+**工作原理:**
+1. 运行 `npx repomix@latest` 打包仓库
+2. 使用 Grep 和 Read 工具高效搜索输出
+3. 提供全面分析而不消耗过多上下文
+
## 安装
### 1. 添加 Repomix 插件市场
@@ -42,10 +61,13 @@ Repomix 为 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
# 安装命令插件(扩展功能)
/plugin install repomix-commands@repomix
+
+# 安装仓库探索器插件(AI 驱动分析)
+/plugin install repository-explorer@repomix
```
::: tip 插件关系
-推荐将 `repomix-mcp` 插件作为基础,`repomix-commands` 通过便捷的斜杠命令扩展功能。虽然可以独立安装,但同时使用两者可获得最全面的体验。
+推荐将 `repomix-mcp` 插件作为基础。`repomix-commands` 插件提供便捷的斜杠命令,而 `repository-explorer` 添加 AI 驱动的分析功能。虽然可以独立安装,但同时使用三者可获得最全面的体验。
:::
### 替代方案:交互式安装
@@ -88,6 +110,34 @@ Repomix 为 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
- "仅包含文档文件"
- "打包特定目录"
+### 使用 AI 探索本地代码库
+
+使用 `/repository-explorer:explore-local` 命令进行 AI 驱动的分析:
+
+```text
+/repository-explorer:explore-local ./src
+查找所有与认证相关的代码
+```
+
+其他示例:
+- "分析这个项目的结构"
+- "显示主要组件"
+- "查找所有 API 端点"
+
+### 使用 AI 探索远程仓库
+
+使用 `/repository-explorer:explore-remote` 命令分析 GitHub 仓库:
+
+```text
+/repository-explorer:explore-remote facebook/react
+显示主要组件架构
+```
+
+其他示例:
+- "查找仓库中的所有 React hooks"
+- "解释项目结构"
+- "错误边界在哪里定义?"
+
## 相关资源
- [MCP 服务器文档](/guide/mcp-server) - 了解底层 MCP 服务器
@@ -102,6 +152,7 @@ Repomix 为 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
- [插件市场](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP 插件](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [命令插件](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [仓库探索器插件](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## 反馈和支持
diff --git a/website/client/src/zh-tw/guide/claude-code-plugins.md b/website/client/src/zh-tw/guide/claude-code-plugins.md
index 8d61ed1d7..c1bd651cf 100644
--- a/website/client/src/zh-tw/guide/claude-code-plugins.md
+++ b/website/client/src/zh-tw/guide/claude-code-plugins.md
@@ -22,6 +22,25 @@ Repomix 為 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
- `/repomix-commands:pack-local` - 使用各種選項打包本地程式碼庫
- `/repomix-commands:pack-remote` - 打包和分析遠端 GitHub 儲存庫
+### 3. repository-explorer(AI 分析代理外掛)
+
+AI 驅動的儲存庫分析代理,使用 Repomix CLI 智慧探索程式碼庫。
+
+**功能:**
+- 自然語言程式碼庫探索和分析
+- 智慧模式發現和程式碼結構理解
+- 使用 grep 和定向檔案讀取進行增量分析
+- 大型儲存庫的自動上下文管理
+
+**可用指令:**
+- `/repository-explorer:explore-local` - 使用 AI 輔助分析本地程式碼庫
+- `/repository-explorer:explore-remote` - 使用 AI 輔助分析遠端 GitHub 儲存庫
+
+**運作方式:**
+1. 執行 `npx repomix@latest` 打包儲存庫
+2. 使用 Grep 和 Read 工具高效搜尋輸出
+3. 提供全面分析而不消耗過多上下文
+
## 安裝
### 1. 新增 Repomix 外掛市集
@@ -42,10 +61,13 @@ Repomix 為 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
# 安裝指令外掛(擴充功能)
/plugin install repomix-commands@repomix
+
+# 安裝儲存庫探索器外掛(AI 驅動分析)
+/plugin install repository-explorer@repomix
```
::: tip 外掛關係
-建議將 `repomix-mcp` 外掛作為基礎,`repomix-commands` 透過便利的斜線指令擴充功能。雖然可以獨立安裝,但同時使用兩者可獲得最全面的體驗。
+建議將 `repomix-mcp` 外掛作為基礎。`repomix-commands` 外掛提供便利的斜線指令,而 `repository-explorer` 新增 AI 驅動的分析功能。雖然可以獨立安裝,但同時使用三者可獲得最全面的體驗。
:::
### 替代方案:互動式安裝
@@ -88,6 +110,34 @@ Repomix 為 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
- "僅包含文件檔案"
- "打包特定目錄"
+### 使用 AI 探索本地程式碼庫
+
+使用 `/repository-explorer:explore-local` 指令進行 AI 驅動的分析:
+
+```text
+/repository-explorer:explore-local ./src
+尋找所有與認證相關的程式碼
+```
+
+其他範例:
+- "分析這個專案的結構"
+- "顯示主要元件"
+- "尋找所有 API 端點"
+
+### 使用 AI 探索遠端儲存庫
+
+使用 `/repository-explorer:explore-remote` 指令分析 GitHub 儲存庫:
+
+```text
+/repository-explorer:explore-remote facebook/react
+顯示主要元件架構
+```
+
+其他範例:
+- "尋找儲存庫中的所有 React hooks"
+- "解釋專案結構"
+- "錯誤邊界在哪裡定義?"
+
## 相關資源
- [MCP 伺服器文件](/guide/mcp-server) - 瞭解底層 MCP 伺服器
@@ -102,6 +152,7 @@ Repomix 為 [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overvie
- [外掛市集](https://github.com/yamadashy/repomix/tree/main/.claude-plugin)
- [MCP 外掛](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-mcp)
- [指令外掛](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repomix-commands)
+- [儲存庫探索器外掛](https://github.com/yamadashy/repomix/tree/main/.claude/plugins/repository-explorer)
## 意見回饋和支援