merf
v1.1.0
Published
CLI tool to aggregate codebase into markdown
Maintainers
Readme
Merf
A CLI tool to aggregate your codebase into a single markdown file for use with AI models.
Installation
npm install -g merfUsage
merf [directory] -o output.md -i node_modules .gitOptions:
-o, --output <file>: Output file (default: codebase.md)-i, --ignore <patterns...>: Ignore patterns (default: node_modules, .git)
Development
# Watch mode
npm run dev
# Run tests
npm testExamples
Aggregate current directory:
merfSpecify directory and output:
merf ./my-project -o project.mdAdd custom ignore patterns:
merf -i node_modules .git dist build