Grimoire is a command-line tool that converts the contents of a directory into structured output formats optimized for interpretation by Large Language Models (LLMs) like Claude, ChatGPT, Gemini, DeepSeek, Llama, Grok, and more. It is lightweight, highly configurable, and user-friendly.
The fastest way to get started is with our one-line installation script:
curl -sSL https://raw.githubusercontent.com/foresturquhart/grimoire/main/install.sh | bash
This script automatically detects your OS and architecture, downloads the appropriate binary, and installs it to your PATH.
# Convert current directory to Markdown and copy to clipboard (macOS)
grimoire . | pbcopy
# Convert current directory to Markdown and copy to clipboard (Linux with xclip)
grimoire . | xclip -selection clipboard
# Convert current directory and save to file
grimoire -o output.md .
# Convert current directory to XML format
grimoire --format xml -o output.xml .
# Convert current directory to plain text format
grimoire --format txt -o output.txt .
# Convert directory with secret detection and redaction
grimoire --redact-secrets -o output.md .
- Multiple Output Formats: Generate output in Markdown, XML, or plain text formats to suit your needs.
- Recursive File Scanning: Automatically traverses directories and subdirectories to identify eligible files based on customizable extensions.
- Content Filtering: Skips ignored directories, temporary files, and patterns defined in the configuration.
- Directory Tree Visualization: Includes an optional directory structure representation at the beginning of the output.
- Git Integration: Prioritizes files by commit frequency when working within a Git repository.
- Secret Detection: Scans files for potential secrets or sensitive information to prevent accidental exposure.
- Secret Redaction: Optionally redacts detected secrets in the output while preserving the overall code structure.
- Token Counting: Estimates the token count of generated output to help manage LLM context limits.
- Minified File Detection: Automatically identifies minified JavaScript and CSS files to warn about high token usage.
- Flexible Output: Supports output to stdout or a specified file.
- Git (required for repositories using Git-based sorting).
The easiest way to install Grimoire is with our automatic installation script:
curl -sSL https://raw.githubusercontent.com/foresturquhart/grimoire/main/install.sh | bash
This script automatically:
- Detects your operating system and architecture
- Downloads the appropriate binary for your system
- Installs it to
/usr/local/bin
(or~/.local/bin
if you don't have sudo access) - Makes the binary executable
You can also manually download a pre-compiled binary from the releases page.
- Visit the releases page.
- Download the appropriate archive for your system (e.g.,
grimoire-1.1.8-linux-amd64.tar.gz
orgrimoire-1.1.8-darwin-arm64.tar.gz
). - Extract the archive to retrieve the
grimoire
executable. - Move the
grimoire
executable to a directory in your system'sPATH
(e.g.,/usr/local/bin
or~/.local/bin
). You may need to usesudo
for system-wide locations:tar -xzf grimoire-1.1.8-linux-amd64.tar.gz cd grimoire-1.1.8-linux-amd64 sudo mv grimoire /usr/local/bin/
- Verify the installation:
grimoire --version
For users with Go installed, go install
offers a straightforward installation method:
go install github.com/foresturquhart/grimoire/cmd/grimoire@latest
To build Grimoire from source (useful for development or customization):
- Clone the repository:
git clone https://github.com/foresturquhart/grimoire.git cd grimoire
- Build the binary:
go build -o grimoire ./cmd/grimoire
- Move the binary to your
PATH
:mv grimoire /usr/local/bin/
- Verify the installation:
grimoire --version
grimoire [options] <target directory>
-o, --output <path>
: Specify an output file. Defaults to stdout if omitted.-f, --force
: Overwrite the output file if it already exists.--format <format>
: Specify the output format. Options aremd
(ormarkdown
),xml
, andtxt
(ortext
,plain
,plaintext
). Defaults tomd
.--no-tree
: Disable the directory tree visualization at the beginning of the output.--no-sort
: Disable sorting files by Git commit frequency.--ignore-secrets
: Proceed with output generation even if secrets are detected.--redact-secrets
: Redact detected secrets in output rather than failing.--skip-token-count
: Skip counting output tokens.--token-count-mode <mode>
: Token counting mode:fast
(default) orexact
(slower but more accurate).--version
: Display the current version.
- Convert a directory into Markdown and print the output to stdout:
grimoire ./myproject
- Save the output to a file:
grimoire -o output.md ./myproject
- Overwrite an existing file:
grimoire -o output.md -f ./myproject
- Generate XML output without a directory tree:
grimoire --format xml --no-tree -o output.xml ./myproject
- Generate plain text output without Git-based sorting:
grimoire --format txt --no-sort -o output.txt ./myproject
- Scan for secrets and redact them in the output:
grimoire --redact-secrets -o output.md ./myproject
- Use exact token counting mode:
grimoire --token-count-mode exact -o output.md ./myproject
Grimoire processes files with specific extensions. You can customize these by modifying the DefaultAllowedFileExtensions
constant in the codebase.
Files and directories matching patterns in the DefaultIgnoredPathPatterns
constant are excluded from processing. This includes temporary files, build artifacts, and version control directories.
Grimoire supports two types of ignore files to specify additional exclusion patterns:
.gitignore
: Standard Git ignore files are honored if present in the target directory..grimoireignore
: Grimoire-specific ignore files that follow the same syntax as Git ignore files.
These files allow you to specify additional ignore rules on a per-directory basis, giving you fine-grained control over which files and directories should be omitted during the conversion process.
By default, Grimoire warns when processing files larger than 1MB. These files are still included in the output, but a warning is logged to alert you about potential performance impacts when feeding the output to an LLM.
Grimoire automatically detects minified JavaScript and CSS files using several heuristics:
- Excessive line length
- Low ratio of lines to characters
- Presence of coding patterns typical in minified files
When a minified file is detected, Grimoire logs a warning, as these files can consume a large number of tokens while providing limited value to the LLM.
Grimoire supports three output formats:
- Markdown (md) - Default format that wraps file contents in code blocks with file paths as headings.
- XML (xml) - Structures the content in an XML format with file paths as attributes.
- Plain Text (txt) - Uses separator lines to distinguish between files.
Each format includes metadata, a summary section, an optional directory tree, and the content of all files.
Grimoire includes built-in token counting to help you manage LLM context limits. The token count is estimated using the same tokenizer used by many LLMs.
Two token counting modes are available:
- Fast Mode (default): Counts tokens in chunks as the output is generated. Slightly less accurate but more efficient for large codebases.
- Exact Mode: Counts all tokens in the entire output at once. More accurate but can be slower and more memory-intensive for large outputs.
You can disable token counting entirely using the --skip-token-count
flag.
Grimoire includes built-in secret detection powered by gitleaks to help prevent accidentally sharing sensitive information when using the generated output with LLMs or other tools.
By default, Grimoire scans for a wide variety of potential secrets including:
- API keys and tokens (AWS, GitHub, GitLab, etc.)
- Private keys (RSA, SSH, PGP, etc.)
- Authentication credentials
- Service-specific tokens (Stripe, Slack, Twilio, etc.)
The secret detection behavior can be controlled with the following flags:
--ignore-secrets
: Continues with output generation even if secrets are detected (logs warnings)--redact-secrets
: Automatically redacts any detected secrets with the format[REDACTED SECRET: description]
If a secret is detected and neither of the above flags are specified, Grimoire will abort the operation and display a warning message, helping prevent accidental exposure of sensitive information.
Contributions are welcome! To get started:
- Fork the repository.
- Create a new branch for your feature or fix:
git checkout -b feature/my-new-feature
- Commit your changes:
git commit -m "Add my new feature"
- Push the branch to your fork:
git push origin feature/my-new-feature
- Open a pull request.
Grimoire is licensed under the MIT License.
Grimoire uses the following libraries:
- zerolog for structured logging.
- gitleaks for secret detection and scanning.
- go-gitignore for handling ignore patterns.
- urfave/cli for command-line interface.
- tiktoken-go for token counting.
For issues, suggestions, or feedback, please open an issue on the GitHub repository.