Repomix Explorer agent skillをインストールし、Claude CodeやAgent Skills形式対応のAIアシスタントでローカルおよびリモートコードベースを分析します。
Scanned 9/5/2026
Install to Claude Code
npx -y skills add yamadashy/repomix --skill guide --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Guide?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/yamadashy-guide-6a36058d)More formats (shields.io, HTML) on the badges page.
---
title: Repomix Explorer Skill (Agent Skills)
description: Repomix Explorer agent skillをインストールし、Claude CodeやAgent Skills形式対応のAIアシスタントでローカルおよびリモートコードベースを分析します。
---
# Repomix Explorer Skill (Agent Skills)
Repomixは、AIコーディングアシスタントがRepomix CLIを使ってコードベースを分析・探索できる、すぐに使える**Repomix Explorer**スキルを提供しています。
このスキルは、Claude CodeやAgent Skills形式に対応したAIアシスタント向けに設計されています。
## クイックインストール
Claude Codeでは、公式のRepomix Explorerプラグインをインストールしてください。
```text
/plugin marketplace add yamadashy/repomix
/plugin install repomix-explorer@repomix
```
このプラグインでは、`/repomix-explorer:explore-local` や `/repomix-explorer:explore-remote` などの名前空間付きコマンドを使えます。詳しくは[Claude Codeプラグイン](/ja/guide/claude-code-plugins)を参照してください。
Codex、Cursor、OpenClawなど、Agent Skills形式に対応したアシスタントでは、Skills CLIでスタンドアロンスキルをインストールします。
```bash
npx skills add yamadashy/repomix --skill repomix-explorer
```
特定のアシスタントを指定する場合は `--agent` を使います。
```bash
npx skills add yamadashy/repomix --skill repomix-explorer --agent codex
npx skills add yamadashy/repomix --skill repomix-explorer --agent openclaw
```
Hermes Agentでは、Hermes Agentのネイティブなskillsコマンドで単一ファイルのスキルをインストールできます。
```bash
hermes skills install https://raw.githubusercontent.com/yamadashy/repomix/main/skills/repomix-explorer/SKILL.md
```
Hermes Agentでリポジトリ分析を主目的にする場合は、Repomixを直接MCPサーバーとして動かせる[MCPサーバー](/ja/guide/mcp-server)設定も有力です。
## できること
インストール後、自然言語の指示でコードベースを分析できます。
#### リモートリポジトリを分析
```text
"What's the structure of this repo?
https://github.com/facebook/react"
```
#### ローカルコードベースを探索
```text
"What's in this project?
~/projects/my-app"
```
コードベースの理解だけでなく、自身の別のリポジトリを参考に機能を実装したい場合にも役立ちます。
## 仕組み
Repomix Explorer スキルは、AIアシスタントに完全なワークフローをガイドします:
1. **repomixコマンドを実行** - リポジトリをAIフレンドリーな形式にパック
2. **出力ファイルを分析** - パターン検索(grep)を使って関連コードを検索
3. **インサイトを提供** - 構造、メトリクス、実用的な推奨事項を報告
## ユースケース例
### 新しいコードベースの理解
```text
"I want to understand the architecture of this project.
https://github.com/vercel/next.js"
```
AIはrepomixを実行し、出力を分析して、コードベースの構造化された概要を提供します。
### 特定パターンの検索
```text
"Find all authentication-related code in this repository."
```
AIは認証パターンを検索し、ファイルごとに分類して、認証がどのように実装されているかを説明します。
### 自分のプロジェクトを参照
```text
"I want to implement a similar feature to what I did in my other project.
~/projects/my-other-app"
```
AIは別のリポジトリを分析し、自身の実装を参考にするお手伝いをします。
## スキルの内容
このスキルには以下が含まれます:
- **ユーザー意図の認識** - コードベース分析を求めるさまざまな表現を理解
- **repomixコマンドのガイダンス** - 使用すべきオプション(`--compress`、`--include`など)を把握
- **分析ワークフロー** - パックされた出力を探索するための構造化されたアプローチ
- **ベストプラクティス** - ファイル全体を読む前にgrepを使うなどの効率化のヒント
## 関連リソース
- [Agent Skills生成](/ja/guide/agent-skills-generation) - コードベースから独自のスキルを生成
- [Claude Codeプラグイン](/ja/guide/claude-code-plugins) - Claude Code用のRepomixプラグイン
- [MCPサーバー](/ja/guide/mcp-server) - 代替の統合方法
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!