-
-
Notifications
You must be signed in to change notification settings - Fork 1k
docs(website): Add Community Projects section to documentation #828
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # Community-Projekte | ||
|
|
||
| Entdecken Sie fantastische Projekte, die von der Repomix-Community erstellt wurden! Diese Projekte erweitern die Funktionen von Repomix, bieten Implementierungen in anderen Sprachen oder integrieren Repomix in größere Toolsets. | ||
|
|
||
| ## Editor-Erweiterungen | ||
|
|
||
| ### Repomix Runner (VSCode-Erweiterung) | ||
| VSCode-Erweiterung, die dabei hilft, Dateien in eine einzige Ausgabe für die KI-Verarbeitung zu bündeln. Ausgewählte Dateien packen, wiederverwendbare Bundles erstellen und Inhalte in die Zwischenablage kopieren. | ||
|
|
||
| **Repository**: [massdo/repomix-runner](https://github.com/massdo/repomix-runner) | ||
| **Marketplace**: [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=DorianMassoulier.repomix-runner) | ||
|
|
||
| ## Sprach-Implementierungen | ||
|
|
||
| ### Python Repomix | ||
| Python-Implementierung von Repomix mit AST-basierter Komprimierung für Python-Code. Bietet mehrere Komprimierungsmodi, Sicherheitsprüfungen mit detect-secrets und Multiprocessing-Unterstützung. | ||
|
|
||
| **Repository**: [AndersonBY/python-repomix](https://github.com/AndersonBY/python-repomix) | ||
|
|
||
| ## Integrations-Tools | ||
|
|
||
| ### Rulefy | ||
| Transformiert GitHub-Repositories in benutzerdefinierte Cursor AI-Regeln unter Verwendung von Claude AI. Extrahiert Projektstruktur und Konventionen zur Generierung von .rules.mdc-Dateien. | ||
|
|
||
| **Repository**: [niklub/rulefy](https://github.com/niklub/rulefy) | ||
|
|
||
| ### Codebase MCP | ||
| Model Context Protocol-Server, der Repomix verwendet, um KI-Agenten bei der Analyse von Codebasen zu helfen. Bietet Tools für lokale Arbeitsbereich-Analyse, entfernte GitHub-Repositories und das Speichern von Analyseergebnissen. | ||
|
|
||
| **Repository**: [DeDeveloper23/codebase-mcp](https://github.com/DeDeveloper23/codebase-mcp) | ||
|
|
||
| ### vibe-tools | ||
| CLI-Toolset für KI-Agenten mit mehreren Funktionen, einschließlich Websuche über Perplexity, Repository-Analyse mit Gemini und Repomix und Browser-Automatisierung mit Stagehand. | ||
|
|
||
| **Repository**: [eastlondoner/vibe-tools](https://github.com/eastlondoner/vibe-tools) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # Community Projects | ||
|
|
||
| Discover amazing projects created by the Repomix community! These projects extend Repomix's capabilities, provide implementations in other languages, or integrate Repomix into larger toolsets. | ||
|
|
||
| ## Editor Extensions | ||
|
|
||
| ### Repomix Runner (VSCode Extension) | ||
| VSCode extension that helps bundle files into a single output for AI processing. Pack selected files, create reusable bundles, and copy content to clipboard. | ||
|
|
||
| **Repository**: [massdo/repomix-runner](https://github.com/massdo/repomix-runner) | ||
| **Marketplace**: [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=DorianMassoulier.repomix-runner) | ||
|
|
||
| ## Language Implementations | ||
|
|
||
| ### Python Repomix | ||
| Python implementation of Repomix with AST-based compression for Python code. Features multiple compression modes, security checks using detect-secrets, and multiprocessing support. | ||
|
|
||
| **Repository**: [AndersonBY/python-repomix](https://github.com/AndersonBY/python-repomix) | ||
|
|
||
| ## Integration Tools | ||
|
|
||
| ### Rulefy | ||
| Transforms GitHub repositories into custom Cursor AI rules using Claude AI. Extracts project structure and conventions to generate .rules.mdc files. | ||
|
|
||
| **Repository**: [niklub/rulefy](https://github.com/niklub/rulefy) | ||
|
|
||
| ### Codebase MCP | ||
| Model Context Protocol server that uses Repomix to help AI agents analyze codebases. Provides tools for local workspace analysis, remote GitHub repositories, and saving analysis results. | ||
|
|
||
| **Repository**: [DeDeveloper23/codebase-mcp](https://github.com/DeDeveloper23/codebase-mcp) | ||
|
|
||
| ### vibe-tools | ||
| CLI toolset for AI agents with multiple capabilities including web search via Perplexity, repository analysis with Gemini and Repomix, and browser automation with Stagehand. | ||
|
|
||
| **Repository**: [eastlondoner/vibe-tools](https://github.com/eastlondoner/vibe-tools) | ||
|
|
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -46,9 +46,14 @@ src/core/output/outputGenerate.ts | |||
| </git_logs> | ||||
| ``` | ||||
|
|
||||
| ::: tip Why XML? | ||||
| XML tags help AI models like Claude parse content more accurately. [Claude Documentation](https://docs.anthropic.com/en/docs/build-with-claude/prompt-engineering/use-xml-tags) recommends using XML tags for structured prompts. | ||||
| ::: | ||||
| ### Why XML as Default Format? | ||||
| Repomix uses XML as the default output format based on extensive research and testing. This decision is grounded in both empirical evidence and practical considerations for AI-assisted code analysis. | ||||
|
|
||||
|
||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,35 @@ | ||||||||
| # Proyectos de la Comunidad | ||||||||
|
|
||||||||
| ¡Descubre proyectos increíbles creados por la comunidad de Repomix! Estos proyectos amplían las capacidades de Repomix, proporcionan implementaciones en otros lenguajes, o integran Repomix en conjuntos de herramientas más grandes. | ||||||||
|
|
||||||||
| ## Extensiones de Editor | ||||||||
|
|
||||||||
| ### Repomix Runner (Extensión VSCode) | ||||||||
| Extensión de VSCode que ayuda a agrupar archivos en una sola salida para procesamiento de IA. Empaqueta archivos seleccionados, crea bundles reutilizables, y copia contenido al portapapeles. | ||||||||
|
|
||||||||
| **Repository**: [massdo/repomix-runner](https://github.com/massdo/repomix-runner) | ||||||||
| **Marketplace**: [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=DorianMassoulier.repomix-runner) | ||||||||
|
|
||||||||
| ## Implementaciones de Lenguajes | ||||||||
|
|
||||||||
| ### Python Repomix | ||||||||
| Implementación de Repomix en Python con compresión basada en AST para código Python. Ofrece múltiples modos de compresión, verificaciones de seguridad usando detect-secrets, y soporte para multiprocesamiento. | ||||||||
|
|
||||||||
| **Repository**: [AndersonBY/python-repomix](https://github.com/AndersonBY/python-repomix) | ||||||||
|
|
||||||||
| ## Herramientas de Integración | ||||||||
|
|
||||||||
| ### Rulefy | ||||||||
| Transforma repositorios de GitHub en reglas personalizadas de Cursor AI usando Claude AI. Extrae la estructura del proyecto y convenciones para generar archivos .rules.mdc. | ||||||||
|
|
||||||||
| **Repository**: [niklub/rulefy](https://github.com/niklub/rulefy) | ||||||||
|
|
||||||||
| ### Codebase MCP | ||||||||
| Servidor Model Context Protocol que usa Repomix para ayudar a los agentes de IA a analizar bases de código. Proporciona herramientas para análisis de espacio de trabajo local, repositorios remotos de GitHub, y guardar resultados de análisis. | ||||||||
|
|
||||||||
| **Repository**: [DeDeveloper23/codebase-mcp](https://github.com/DeDeveloper23/codebase-mcp) | ||||||||
|
|
||||||||
| ### vibe-tools | ||||||||
| Conjunto de herramientas CLI para agentes de IA con múltiples capacidades incluyendo búsqueda web vía Perplexity, análisis de repositorio con Gemini y Repomix, y automatización de navegador con Stagehand. | ||||||||
|
|
||||||||
| **Repository**: [eastlondoner/vibe-tools](https://github.com/eastlondoner/vibe-tools) | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a good practice to end files with a newline character. This prevents issues with some tools and is a common convention. Other new markdown files in this PR, like the English version, include a final newline for consistency.
Suggested change
|
||||||||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,35 @@ | ||||||||
| # Projets Communautaires | ||||||||
|
|
||||||||
| Découvrez les projets formidables créés par la communauté Repomix ! Ces projets étendent les capacités de Repomix, fournissent des implémentations dans d'autres langages, ou intègrent Repomix dans des ensembles d'outils plus larges. | ||||||||
|
|
||||||||
| ## Extensions d'Éditeur | ||||||||
|
|
||||||||
| ### Repomix Runner (Extension VSCode) | ||||||||
| Extension VSCode qui aide à regrouper les fichiers en une seule sortie pour le traitement IA. Empaquez les fichiers sélectionnés, créez des bundles réutilisables, et copiez le contenu dans le presse-papiers. | ||||||||
|
|
||||||||
| **Repository** : [massdo/repomix-runner](https://github.com/massdo/repomix-runner) | ||||||||
| **Marketplace** : [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=DorianMassoulier.repomix-runner) | ||||||||
|
|
||||||||
| ## Implémentations de Langages | ||||||||
|
|
||||||||
| ### Python Repomix | ||||||||
| Implémentation Python de Repomix avec compression basée sur l'AST pour le code Python. Propose plusieurs modes de compression, vérifications de sécurité utilisant detect-secrets, et support du multiprocessing. | ||||||||
|
|
||||||||
| **Repository** : [AndersonBY/python-repomix](https://github.com/AndersonBY/python-repomix) | ||||||||
|
|
||||||||
| ## Outils d'Intégration | ||||||||
|
|
||||||||
| ### Rulefy | ||||||||
| Transforme les repositories GitHub en règles Cursor AI personnalisées en utilisant Claude AI. Extrait la structure du projet et les conventions pour générer des fichiers .rules.mdc. | ||||||||
|
|
||||||||
| **Repository** : [niklub/rulefy](https://github.com/niklub/rulefy) | ||||||||
|
|
||||||||
| ### Codebase MCP | ||||||||
| Serveur Model Context Protocol qui utilise Repomix pour aider les agents IA à analyser les bases de code. Fournit des outils pour l'analyse d'espaces de travail locaux, des repositories GitHub distants, et la sauvegarde des résultats d'analyse. | ||||||||
|
|
||||||||
| **Repository** : [DeDeveloper23/codebase-mcp](https://github.com/DeDeveloper23/codebase-mcp) | ||||||||
|
|
||||||||
| ### vibe-tools | ||||||||
| Ensemble d'outils CLI pour agents IA avec plusieurs capacités incluant la recherche web via Perplexity, l'analyse de repository avec Gemini et Repomix, et l'automatisation de navigateur avec Stagehand. | ||||||||
|
|
||||||||
| **Repository** : [eastlondoner/vibe-tools](https://github.com/eastlondoner/vibe-tools) | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a good practice to end files with a newline character. This prevents issues with some tools and is a common convention. Other new markdown files in this PR, like the English version, include a final newline for consistency.
Suggested change
|
||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a good practice to end files with a newline character. This prevents issues with some tools and is a common convention. Other new markdown files in this PR, like the English version, include a final newline for consistency.