Skip to content

Configuration

Repomix can be configured using a configuration file (repomix.config.json) or command-line options. The configuration file allows you to customize various aspects of how Repomix processes and outputs your codebase.

Quick Start

Create a configuration file in your project directory:

bash
repomix --init

This will create a repomix.config.json file with default settings. You can also create a global configuration file that will be used as a fallback when no local configuration is found:

bash
repomix --init --global

Configuration Options

OptionDescriptionDefault
input.maxFileSizeMaximum file size in bytes to process. Files larger than this will be skipped. Useful for excluding large binary files or data files50000000
output.filePathThe name of the output file. Supports XML, Markdown, and plain text formats"repomix-output.xml"
output.styleThe style of the output (xml, markdown, plain). Each format has its own advantages for different AI tools"xml"
output.parsableStyleWhether to escape the output based on the chosen style schema. Enables better parsing but may increase token countfalse
output.compressWhether to perform intelligent code extraction using Tree-sitter to reduce token count while preserving structurefalse
output.headerTextCustom text to include in the file header. Useful for providing context or instructions for AI toolsnull
output.instructionFilePathPath to a file containing detailed custom instructions for AI processingnull
output.fileSummaryWhether to include a summary section at the beginning showing file counts, sizes, and other metricstrue
output.directoryStructureWhether to include the directory structure in the output. Helps AI understand the project organizationtrue
output.filesWhether to include file contents in the output. Set to false to only include structure and metadatatrue
output.removeCommentsWhether to remove comments from supported file types. Can reduce noise and token countfalse
output.removeEmptyLinesWhether to remove empty lines from the output to reduce token countfalse
output.showLineNumbersWhether to add line numbers to each line. Helpful for referencing specific parts of codefalse
output.copyToClipboardWhether to copy the output to system clipboard in addition to saving the filefalse
output.topFilesLengthNumber of top files to display in the summary. If set to 0, no summary will be displayed5
output.includeEmptyDirectoriesWhether to include empty directories in the repository structurefalse
output.git.sortByChangesWhether to sort files by git change count. Files with more changes appear at the bottomtrue
output.git.sortByChangesMaxCommitsMaximum number of commits to analyze for git changes. Limits the history depth for performance100
output.git.includeDiffsWhether to include git diffs in the output. Shows both work tree and staged changes separatelyfalse
includePatterns of files to include using glob patterns[]
ignore.useGitignoreWhether to use patterns from the project's .gitignore filetrue
ignore.useDefaultPatternsWhether to use default ignore patterns (node_modules, .git, etc.)true
ignore.customPatternsAdditional patterns to ignore using glob patterns[]
security.enableSecurityCheckWhether to perform security checks using Secretlint to detect sensitive informationtrue
tokenCount.encodingToken count encoding used by OpenAI's tiktoken tokenizer. Use o200k_base for GPT-4o, cl100k_base for GPT-4/3.5. See tiktoken model.py for details."o200k_base"

The configuration file supports JSON5 syntax, which allows:

  • Comments (both single-line and multi-line)
  • Trailing commas in objects and arrays
  • Unquoted property names
  • More relaxed string syntax

Schema Validation

You can enable schema validation for your configuration file by adding the $schema property:

json
{
  "$schema": "https://repomix.com/schemas/latest/schema.json",
  "output": {
    "filePath": "repomix-output.md",
    "style": "markdown"
  }
}

This provides auto-completion and validation in editors that support JSON schema.

Example Configuration File

Here's an example of a complete configuration file (repomix.config.json):

json
{
  "$schema": "https://repomix.com/schemas/latest/schema.json",
  "input": {
    "maxFileSize": 50000000
  },
  "output": {
    "filePath": "repomix-output.xml",
    "style": "xml",
    "parsableStyle": false,
    "compress": false,
    "headerText": "Custom header information for the packed file.",
    "fileSummary": true,
    "directoryStructure": true,
    "files": true,
    "removeComments": false,
    "removeEmptyLines": false,
    "topFilesLength": 5,
    "showLineNumbers": false,
    "copyToClipboard": false,
    "includeEmptyDirectories": false,
    "git": {
      "sortByChanges": true,
      "sortByChangesMaxCommits": 100,
      "includeDiffs": false
    }
  },
  "include": ["**/*"],
  "ignore": {
    "useGitignore": true,
    "useDefaultPatterns": true,
    // Patterns can also be specified in .repomixignore
    "customPatterns": [
      "additional-folder",
      "**/*.log"
    ],
  },
  "security": {
    "enableSecurityCheck": true
  },
  "tokenCount": {
    "encoding": "o200k_base"
  }
}

Configuration File Locations

Repomix looks for configuration files in the following order:

  1. Local configuration file (repomix.config.json) in the current directory
  2. Global configuration file:
    • Windows: %LOCALAPPDATA%\Repomix\repomix.config.json
    • macOS/Linux: ~/.config/repomix/repomix.config.json

Command-line options take precedence over configuration file settings.

Ignore Patterns

Repomix provides multiple ways to specify which files should be ignored. The patterns are processed in the following priority order:

  1. CLI options (--ignore)
  2. .repomixignore file in the project directory
  3. .gitignore and .git/info/exclude (if ignore.useGitignore is true)
  4. Default patterns (if ignore.useDefaultPatterns is true)

Example of .repomixignore:

text
# Cache directories
.cache/
tmp/

# Build outputs
dist/
build/

# Logs
*.log

Default Ignore Patterns

When ignore.useDefaultPatterns is true, Repomix automatically ignores common patterns:

text
node_modules/**
.git/**
coverage/**
dist/**

For the complete list, see defaultIgnore.ts

Advanced Features

Code Compression

The code compression feature, enabled with output.compress: true, uses Tree-sitter to intelligently extract essential code structures while removing implementation details. This helps reduce token count while maintaining important structural information.

Key benefits:

  • Reduces token count significantly
  • Preserves class and function signatures
  • Maintains imports and exports
  • Keeps type definitions and interfaces
  • Removes function bodies and implementation details

For more details and examples, see the Code Compression Guide.

Git Integration

The output.git configuration provides powerful Git-aware features:

  • sortByChanges: When true, files are sorted by the number of Git changes (commits that modified the file). Files with more changes appear at the bottom of the output. This helps prioritize more actively developed files. Default: true
  • sortByChangesMaxCommits: The maximum number of commits to analyze when counting file changes. Default: 100
  • includeDiffs: When true, includes Git differences in the output (includes both work tree and staged changes separately). This allows the reader to see pending changes in the repository. Default: false

Example configuration:

json
{
  "output": {
    "git": {
      "sortByChanges": true,
      "sortByChangesMaxCommits": 100,
      "includeDiffs": true
    }
  }
}

Security Checks

When security.enableSecurityCheck is enabled, Repomix uses Secretlint to detect sensitive information in your codebase before including it in the output. This helps prevent accidental exposure of:

  • API keys
  • Access tokens
  • Private keys
  • Passwords
  • Other sensitive credentials

Comment Removal

When output.removeComments is set to true, comments are removed from supported file types to reduce output size and focus on essential code content. This can be particularly useful when:

  • Working with heavily documented code
  • Trying to reduce token count
  • Focusing on code structure and logic

For supported languages and detailed examples, see the Comment Removal Guide.

Released under the MIT License.