├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── files_to_claude_xml.py ├── justfile ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/README.md -------------------------------------------------------------------------------- /files_to_claude_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/files_to_claude_xml.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftriplett/files-to-claude-xml/HEAD/uv.lock --------------------------------------------------------------------------------