diff --git a/.claude/plugins/repomix-commands/commands/pack-local.md b/.claude/plugins/repomix-commands/commands/pack-local.md index 0f02e6591..4cfe2a362 100644 --- a/.claude/plugins/repomix-commands/commands/pack-local.md +++ b/.claude/plugins/repomix-commands/commands/pack-local.md @@ -72,7 +72,7 @@ If the user wants to analyze or explore the generated 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) +1. If `repository-explorer: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 diff --git a/.claude/plugins/repomix-commands/commands/pack-remote.md b/.claude/plugins/repomix-commands/commands/pack-remote.md index 604940efe..c527f2b60 100644 --- a/.claude/plugins/repomix-commands/commands/pack-remote.md +++ b/.claude/plugins/repomix-commands/commands/pack-remote.md @@ -79,7 +79,7 @@ If the user wants to analyze or explore the generated 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) +1. If `repository-explorer: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 diff --git a/.claude/plugins/repository-explorer/agents/repository-explorer.md b/.claude/plugins/repository-explorer/agents/repository-explorer.md index d4172c7fb..8915514b3 100644 --- a/.claude/plugins/repository-explorer/agents/repository-explorer.md +++ b/.claude/plugins/repository-explorer/agents/repository-explorer.md @@ -1,6 +1,6 @@ --- 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 +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: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: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: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: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: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:repository-explorer agent.\n\n model: inherit --- diff --git a/.claude/plugins/repository-explorer/commands/explore-local.md b/.claude/plugins/repository-explorer/commands/explore-local.md index ffbc97548..a793f2db6 100644 --- a/.claude/plugins/repository-explorer/commands/explore-local.md +++ b/.claude/plugins/repository-explorer/commands/explore-local.md @@ -2,11 +2,11 @@ description: Explore and analyze a local codebase --- -Analyze a local codebase using the repository-explorer agent. +Analyze a local codebase using the repository-explorer: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. +**Note**: This command is part of the repository-explorer plugin, so the repository-explorer:repository-explorer agent is guaranteed to be available. ## Usage @@ -19,7 +19,7 @@ The user should provide a path to a local directory: 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 +3. **Launch the repository-explorer:repository-explorer agent** to analyze the codebase 4. **Provide the agent with clear instructions** about what to analyze ## Example Usage @@ -33,7 +33,7 @@ The user should provide a path to a local directory: ## What to Tell the Agent -Provide the repository-explorer agent with a task that includes: +Provide the repository-explorer: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 @@ -59,7 +59,7 @@ Steps: 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: +4. Launch the repository-explorer:repository-explorer agent with: - The Task tool - A clear task description following the template above - Any specific analysis requirements @@ -69,4 +69,4 @@ The agent will: - 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. +Remember: The repository-explorer: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 index 75c8a5780..189d06ac3 100644 --- a/.claude/plugins/repository-explorer/commands/explore-remote.md +++ b/.claude/plugins/repository-explorer/commands/explore-remote.md @@ -2,11 +2,11 @@ description: Explore and analyze a remote GitHub repository --- -Analyze a remote GitHub repository using the repository-explorer agent. +Analyze a remote GitHub repository using the repository-explorer: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. +**Note**: This command is part of the repository-explorer plugin, so the repository-explorer:repository-explorer agent is guaranteed to be available. ## Usage @@ -18,7 +18,7 @@ The user should provide a GitHub repository in one of these formats: ## Your Responsibilities 1. **Extract repository information** from the user's input -2. **Launch the repository-explorer agent** to analyze the repository +2. **Launch the repository-explorer:repository-explorer agent** to analyze the repository 3. **Provide the agent with clear instructions** about what to analyze ## Example Usage @@ -31,7 +31,7 @@ The user should provide a GitHub repository in one of these formats: ## What to Tell the Agent -Provide the repository-explorer agent with a task that includes: +Provide the repository-explorer: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 @@ -56,7 +56,7 @@ Steps: 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: +3. Launch the repository-explorer:repository-explorer agent with: - The Task tool - A clear task description following the template above - Any specific analysis requirements @@ -66,4 +66,4 @@ The agent will: - 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. +Remember: The repository-explorer: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 018b3662a..552e102c4 100644 --- a/README.md +++ b/README.md @@ -1029,7 +1029,7 @@ Pack this project as markdown with compression Pack only TypeScript files from the yamadashy/repomix repository ``` -**3. repository-explorer** (AI Analysis Agent Plugin) +**3. repository-explorer:repository-explorer** (AI Analysis Agent Plugin) AI-powered repository analysis agent that intelligently explores codebases using Repomix CLI. diff --git a/website/client/src/de/guide/claude-code-plugins.md b/website/client/src/de/guide/claude-code-plugins.md index 618236fec..a8c2a8980 100644 --- a/website/client/src/de/guide/claude-code-plugins.md +++ b/website/client/src/de/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer:repository-explorer (KI-Analyse-Agent-Plugin) KI-gesteuerter Repository-Analyse-Agent, der Codebases intelligent mit Repomix CLI erkundet. diff --git a/website/client/src/en/guide/claude-code-plugins.md b/website/client/src/en/guide/claude-code-plugins.md index 62d3a5fb8..73bf07019 100644 --- a/website/client/src/en/guide/claude-code-plugins.md +++ b/website/client/src/en/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer:repository-explorer (AI Analysis Agent Plugin) AI-powered repository analysis agent that intelligently explores codebases using Repomix CLI. diff --git a/website/client/src/es/guide/claude-code-plugins.md b/website/client/src/es/guide/claude-code-plugins.md index edb1d013d..c3903fb65 100644 --- a/website/client/src/es/guide/claude-code-plugins.md +++ b/website/client/src/es/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer: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. diff --git a/website/client/src/fr/guide/claude-code-plugins.md b/website/client/src/fr/guide/claude-code-plugins.md index 363e5bcee..d47f05b63 100644 --- a/website/client/src/fr/guide/claude-code-plugins.md +++ b/website/client/src/fr/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer: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. diff --git a/website/client/src/hi/guide/claude-code-plugins.md b/website/client/src/hi/guide/claude-code-plugins.md index 876c55d4f..e4a66205f 100644 --- a/website/client/src/hi/guide/claude-code-plugins.md +++ b/website/client/src/hi/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ MCP सर्वर एकीकरण के माध्यम से AI-स - `/repomix-commands:pack-local` - विभिन्न विकल्पों के साथ स्थानीय कोडबेस पैक करें - `/repomix-commands:pack-remote` - दूरस्थ GitHub रिपॉजिटरी पैक और विश्लेषण करें -### 3. repository-explorer (AI विश्लेषण एजेंट प्लगइन) +### 3. repository-explorer:repository-explorer (AI विश्लेषण एजेंट प्लगइन) AI-संचालित रिपॉजिटरी विश्लेषण एजेंट जो Repomix CLI का उपयोग करके कोडबेस को बुद्धिमानी से खोजता है। diff --git a/website/client/src/id/guide/claude-code-plugins.md b/website/client/src/id/guide/claude-code-plugins.md index 24cda6be9..99dce07cb 100644 --- a/website/client/src/id/guide/claude-code-plugins.md +++ b/website/client/src/id/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer:repository-explorer (Plugin Agen Analisis AI) Agen analisis repositori berbasis AI yang mengeksplorasi codebase secara cerdas menggunakan Repomix CLI. diff --git a/website/client/src/ja/guide/claude-code-plugins.md b/website/client/src/ja/guide/claude-code-plugins.md index d7f20a56d..b46444bfa 100644 --- a/website/client/src/ja/guide/claude-code-plugins.md +++ b/website/client/src/ja/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ MCP サーバー統合によるAI駆動のコードベース分析を提供す - `/repomix-commands:pack-local` - 様々なオプションでローカルコードベースをパッキング - `/repomix-commands:pack-remote` - リモートGitHubリポジトリをパッキング・分析 -### 3. repository-explorer(AI分析エージェントプラグイン) +### 3. repository-explorer:repository-explorer(AI分析エージェントプラグイン) Repomix CLIを使用してコードベースをインテリジェントに探索するAI駆動のリポジトリ分析エージェントです。 diff --git a/website/client/src/ko/guide/claude-code-plugins.md b/website/client/src/ko/guide/claude-code-plugins.md index 9456e6b87..e02e9452d 100644 --- a/website/client/src/ko/guide/claude-code-plugins.md +++ b/website/client/src/ko/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ MCP 서버 통합을 통해 AI 기반 코드베이스 분석을 제공하는 기 - `/repomix-commands:pack-local` - 다양한 옵션으로 로컬 코드베이스 패키징 - `/repomix-commands:pack-remote` - 원격 GitHub 저장소 패키징 및 분석 -### 3. repository-explorer (AI 분석 에이전트 플러그인) +### 3. repository-explorer:repository-explorer (AI 분석 에이전트 플러그인) Repomix CLI를 사용하여 코드베이스를 지능적으로 탐색하는 AI 기반 저장소 분석 에이전트입니다. 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 b450d6587..e3d759911 100644 --- a/website/client/src/pt-br/guide/claude-code-plugins.md +++ b/website/client/src/pt-br/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer: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. diff --git a/website/client/src/vi/guide/claude-code-plugins.md b/website/client/src/vi/guide/claude-code-plugins.md index dee33098f..36e89fa1b 100644 --- a/website/client/src/vi/guide/claude-code-plugins.md +++ b/website/client/src/vi/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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) +### 3. repository-explorer: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. 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 355dcd023..78c6ddada 100644 --- a/website/client/src/zh-cn/guide/claude-code-plugins.md +++ b/website/client/src/zh-cn/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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 分析代理插件) +### 3. repository-explorer:repository-explorer(AI 分析代理插件) AI 驱动的仓库分析代理,使用 Repomix CLI 智能探索代码库。 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 c1bd651cf..e015ccb4e 100644 --- a/website/client/src/zh-tw/guide/claude-code-plugins.md +++ b/website/client/src/zh-tw/guide/claude-code-plugins.md @@ -22,7 +22,7 @@ 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 分析代理外掛) +### 3. repository-explorer:repository-explorer(AI 分析代理外掛) AI 驅動的儲存庫分析代理,使用 Repomix CLI 智慧探索程式碼庫。