scripts/README.md
Consolidates markdown documentation files for use with ChatGPT or other platforms with file upload limits.
docs/ folder.md files (excluding index.md files)doc_exports/ in the project root# Using Makefile (recommended)
make export-docs
# Or run directly with uv
uv run python scripts/export_docs.py
# Or run with standard Python
python scripts/export_docs.py
The script creates doc_exports/ directory with consolidated files like:
getting-started.md - All getting-started documentationuser-guide.md - All user guide contentfeatures.md - All feature documentationdevelopment.md - All development documentationEach exported file includes:
# Getting Started
This document consolidates all content from the getting-started documentation folder.
---
## Installation
*Source: installation.md*
[Full content of installation.md]
---
## Quick Start
*Source: quick-start.md*
[Full content of quick-start.md]
---
doc_exports/ directory is gitignored and safe to regenerate anytimeindex.md) are automatically excludeddocs/ folder)