← ClaudeAtlas

repomixlisted

Package code repositories into AI-friendly files. Use this skill when packaging codebases for AI analysis, creating repository snapshots, analyzing third-party libraries, preparing security audits, or generating documentation context. Supports multiple output formats and token counting.
avibebuilder/claude-prime · ★ 64 · Data & Documents · score 82
Install: claude install-skill avibebuilder/claude-prime
# Repomix Skill Repomix packs entire repositories into single, AI-friendly files. Perfect for feeding codebases to LLMs like Claude, ChatGPT, and Gemini. ## Quick Start ### Check Installation ```bash repomix --version ``` ### Install ```bash # npm npm install -g repomix # Homebrew (macOS/Linux) brew install repomix ``` ### Basic Usage ```bash # Package current directory (generates repomix-output.xml) repomix # Specify output format repomix --style markdown repomix --style json # Package remote repository npx repomix --remote owner/repo # Custom output with filters repomix --include "src/**/*.ts" --remove-comments -o output.md ``` ## Core Capabilities ### Repository Packaging - AI-optimized formatting with clear separators - Multiple output formats: XML, Markdown, JSON, Plain text - Git-aware processing (respects .gitignore) - Token counting for LLM context management - Security checks for sensitive information ### Remote Repository Support Process remote repositories without cloning: ```bash # Shorthand npx repomix --remote yamadashy/repomix # Full URL npx repomix --remote https://github.com/owner/repo # Specific commit npx repomix --remote https://github.com/owner/repo/commit/hash ``` ### Comment Removal Strip comments from supported languages (HTML, CSS, JavaScript, TypeScript, Vue, Svelte, Python, PHP, Ruby, C, C#, Java, Go, Rust, Swift, Kotlin, Dart, Shell, YAML): ```bash repomix --remove-comments ``` ## Common Use Cases ### Code Review Preparation ```bas