npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

combicode

v3.0.0

Published

A CLI tool to combine a project's codebase into a single file for LLM context.

Readme

Combicode

NPM Version PyPI Version License: MIT

Combine a project's UTF-8 source files into one readable context file, with a directory tree and code outline. Restore those files with either the JavaScript or Python CLI.

Quick start

Requires Node.js 22.12+ or Python 3.11+.

npx combicode
# or
pipx run combicode

Run from the project root. The default output is combicode.txt.

# Preview without writing
combicode --dry-run

# Include selected file types (case-insensitive)
combicode -i '.ts, .tsx, .css' -o output/context.txt

# Add exclusions
combicode -e '**/*.generated.*,fixtures/'

# Keep files in the tree but omit their contents
combicode --skip-content '**/*.test.ts,**/*.spec.ts'

# Disable code outline parsing
combicode --no-parse

# Use a documentation-oriented prompt
combicode --llms-txt -i .md -o documentation.txt

# Restore an archive into a directory
combicode --recreate --input documentation.txt -o restored
combicode --recreate --input documentation.txt -o restored --dry-run
combicode --recreate --input documentation.txt -o restored --overwrite

-i always means --include-ext; use --input for restoration. --llms-txt changes the introductory prompt only: it does not read links or fetch documentation.

Options

| Option | Alias | Purpose | Default | | --- | --- | --- | --- | | --output | -o | Output file, or restore directory | combicode.txt; current directory in restore mode | | --dry-run | -d | Preview without writing | Off | | --include-ext | -i | Comma-separated extensions | All | | --exclude | -e | Additional comma-separated gitignore patterns | None | | --skip-content | | Show matching files in the tree but omit content | None | | --no-parse | | Disable code outline parsing | Parsing enabled | | --no-gitignore | | Ignore project .gitignore files | Respect .gitignore | | --no-header | | Omit the prompt and code index | Header enabled | | --llms-txt | -l | Use a documentation prompt | Off | | --recreate | -r | Restore files from an archive | Off | | --input | | Archive to restore | combicode.txt | | --overwrite | | Replace existing files during restoration | Off | | --version | -v | Print version | | | --help | -h | Print help | |

Output parent directories are created automatically. Unknown options fail with a nonzero exit status.

File selection

Both packages use the shared rules in configs/ignore.json. These exclude dependency folders, build outputs, common binary formats, .git, .env, and other generated files. Defaults and explicit --exclude patterns take precedence over project .gitignore files; --no-gitignore does not disable these defaults.

Nested .gitignore files can override patterns from parent files. An ignored directory is not traversed, so a child rule cannot re-include a file inside it. Submodule paths from .gitmodules are excluded. Symlinks and non-regular files are not collected. The output file excludes itself.

Files with NUL bytes in the initial sample are treated as binary. Other selected files must decode as UTF-8; read or decoding failures stop generation without replacing an existing output. Ignore rules are file-selection defaults, not secret detection; inspect the preview before sharing project content.

Code outline and line references

The output consists of an optional prompt and <code_index>, followed by <merged_code> records. Entries show:

  • OL: original source line numbers.
  • ML: line numbers within the combined output.
  • Size: UTF-8 byte size.

Empty files and omitted content use OL: 0-0; their ML range points to the blank or placeholder line in the output.

For example, ML: 53-57 refers to lines 53 through 57 in the output:

sed -n '53,57p' combicode.txt

The Python package uses Python's built-in AST for valid Python sources. Other outlines, including Python outlines produced by the JavaScript package, use heuristics. They cover these language families:

| Languages | Typical outline elements | | --- | --- | | Python | Classes, functions, async functions, loops | | JavaScript, TypeScript | Classes, functions, methods, interfaces, test suites | | Go, Rust | Types, functions, implementation blocks | | Java, C/C++, C# | Types and methods | | PHP, Ruby | Classes, modules, functions | | Swift, Kotlin, Scala | Types and functions | | Lua, Perl, shell scripts | Functions and some control-flow blocks |

Configuration, markup, and other text files are included without a code outline. Heuristic outlines are approximate: unusual syntax, multiline declarations, regular-expression literals, and language-specific constructs can be missed or assigned imperfect ranges. File content remains intact. Use --no-parse when only the file tree is needed.

Archive format and restoration

Each record includes a percent-encoded relative path, OL/ML information, exact UTF-8 byte length, and an explicit omission flag. Four-backtick fences keep the output readable; the byte length, rather than the fences, delimits the original content.

This preserves empty files, final newlines, CRLF, Unicode, and source text containing archive-like headers or Markdown fences. JavaScript and Python archives are interchangeable. Omitted records are never restored, and existing files are skipped unless --overwrite is supplied. Summaries count files actually written or eligible for writing in a dry run.

Restoration validates records and paths before writing. Absolute paths, traversal components, duplicate names, control characters, backslashes, colon-containing paths, trailing dots/spaces, and Windows device names are rejected. Symlinks at or below the destination are rejected. Each file is staged and atomically installed; overwriting a hardlink does not change its other links. This is not a whole-project transaction: an I/O failure can leave earlier files restored. Use a destination that is not being modified concurrently by another process.

Old archive formats are unsupported. Regenerate existing context files before restoring them. Archives preserve file content, not permissions, timestamps, symlinks, or binary files. Editing a record's content requires updating its byte length.

Development

bash scripts/sync-assets.sh
npm ci --prefix combicode-js
npm test --prefix combicode-js
python3 -m venv .venv
.venv/bin/python -m pip install -e './combicode-py[test]' build
.venv/bin/python -m pytest -q combicode-py
.venv/bin/python -m ruff check --config combicode-py/pyproject.toml combicode-py scripts
.venv/bin/python -m build combicode-py

On Windows, use the corresponding executables under .venv/Scripts. The Python cross-runtime tests also require Node.js and installed JavaScript dependencies; they skip when Node.js is unavailable. CI installs both runtimes and tests minimum supported versions plus current runtimes on Linux, macOS, and Windows.

Structure:

  • combicode-js/index.js and combicode-py/combicode/main.py: CLI, file selection, and index generation.
  • lib/parsers.js and combicode/parsers.py: language outlines.
  • lib/archive.js and combicode/archive.py: framing, validation, and restoration.
  • tests/fixtures: shared round-trip cases.
  • configs/ignore.json: canonical defaults, synchronized into both packages.

Run python3 scripts/prepare-release.py MAJOR.MINOR.PATCH to update both package versions and the npm lockfile. Update changelogs and review changes before tagging and publishing a release. Release workflows synchronize shared assets, run package tests, build distributions, and publish.

License

MIT.