-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
docs: Add Repomix Explorer Skill documentation #1105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f68abe2
refactor(skills): Generalize repomix-explorer skill for multi-tool co…
yamadashy 5eb7bbd
docs(readme): Add Repomix Explorer skill documentation
yamadashy 54af85c
docs(website): Add Repomix Explorer Skill documentation page
yamadashy b236757
docs(website): Add Japanese translation for Repomix Explorer Skill page
yamadashy 3986eef
docs(website): Add Repomix Explorer Skill translations for all languages
yamadashy d09e04c
style(website): Use headings instead of bold for subheadings
yamadashy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| # Repomix Explorer Skill (Agent Skills) | ||
|
|
||
| Repomix bietet einen sofort einsatzbereiten **Repomix Explorer** Skill, der KI-Codierungsassistenten ermöglicht, Codebasen mit der Repomix CLI zu analysieren und zu erkunden. | ||
|
|
||
| Dieser Skill ist für verschiedene KI-Tools konzipiert, darunter Claude Code, Cursor, Codex, GitHub Copilot und mehr. | ||
|
|
||
| ## Schnellinstallation | ||
|
|
||
| ```bash | ||
| npx add-skill yamadashy/repomix --skill repomix-explorer | ||
| ``` | ||
|
|
||
| Dieser Befehl installiert den Skill in das Skills-Verzeichnis Ihres KI-Assistenten (z.B. `.claude/skills/`) und macht ihn sofort verfügbar. | ||
|
|
||
| ## Was er kann | ||
|
|
||
| Nach der Installation können Sie Codebasen mit natürlichen Sprachanweisungen analysieren. | ||
|
|
||
| #### Remote-Repositories analysieren | ||
|
|
||
| ```text | ||
| "What's the structure of this repo? | ||
| https://github.com/facebook/react" | ||
| ``` | ||
|
|
||
| #### Lokale Codebasen erkunden | ||
|
|
||
| ```text | ||
| "What's in this project? | ||
| ~/projects/my-app" | ||
| ``` | ||
|
|
||
| Dies ist nicht nur nützlich zum Verstehen von Codebasen, sondern auch wenn Sie Features implementieren möchten, indem Sie Ihre anderen Repositories als Referenz verwenden. | ||
|
|
||
| ## Funktionsweise | ||
|
|
||
| Der Repomix Explorer Skill führt KI-Assistenten durch den kompletten Workflow: | ||
|
|
||
| 1. **Repomix-Befehle ausführen** - Repositories in KI-freundliches Format packen | ||
| 2. **Ausgabedateien analysieren** - Mustersuche (grep) verwenden, um relevanten Code zu finden | ||
| 3. **Erkenntnisse liefern** - Struktur, Metriken und umsetzbare Empfehlungen berichten | ||
|
|
||
| ## Anwendungsbeispiele | ||
|
|
||
| ### Eine neue Codebasis verstehen | ||
|
|
||
| ```text | ||
| "I want to understand the architecture of this project. | ||
| https://github.com/vercel/next.js" | ||
| ``` | ||
|
|
||
| Die KI führt repomix aus, analysiert die Ausgabe und liefert einen strukturierten Überblick über die Codebasis. | ||
|
|
||
| ### Bestimmte Muster finden | ||
|
|
||
| ```text | ||
| "Find all authentication-related code in this repository." | ||
| ``` | ||
|
|
||
| Die KI sucht nach Authentifizierungsmustern, kategorisiert Funde nach Datei und erklärt, wie die Authentifizierung implementiert ist. | ||
|
|
||
| ### Eigene Projekte referenzieren | ||
|
|
||
| ```text | ||
| "I want to implement a similar feature to what I did in my other project. | ||
| ~/projects/my-other-app" | ||
| ``` | ||
|
|
||
| Die KI analysiert Ihr anderes Repository und hilft Ihnen, Ihre eigenen Implementierungen als Referenz zu nutzen. | ||
|
|
||
| ## Skill-Inhalt | ||
|
|
||
| Der Skill enthält: | ||
|
|
||
| - **Benutzerabsichtserkennung** - Versteht verschiedene Arten, wie Benutzer nach Codebasis-Analysen fragen | ||
| - **Repomix-Befehlsanleitung** - Weiß, welche Optionen zu verwenden sind (`--compress`, `--include`, etc.) | ||
| - **Analyse-Workflow** - Strukturierter Ansatz zur Erkundung gepackter Ausgaben | ||
| - **Best Practices** - Effizienztipps wie grep vor dem Lesen ganzer Dateien zu verwenden | ||
|
|
||
| ## Verwandte Ressourcen | ||
|
|
||
| - [Agent Skills Generation](/de/guide/agent-skills-generation) - Eigene Skills aus Codebasen generieren | ||
| - [Claude Code Plugins](/de/guide/claude-code-plugins) - Repomix-Plugins für Claude Code | ||
| - [MCP Server](/de/guide/mcp-server) - Alternative Integrationsmethode | ||
yamadashy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.