Skip to main content

CLI tool to scan and convert source files to UTF-8 with BOM.

Project description

CUTF

cutf is a CLI tool that scans source files, detects legacy encodings, and converts them to UTF-8 with BOM.

It can also report replacement characters () introduced by decoding issues. It can optionally fix those replacement characters interactively through Ollama while preserving the original file encoding.

Features

  • Scan one file or an entire directory tree.
  • Filter files by extension.
  • Detect source encoding with chardet.
  • Convert files to UTF-8 with BOM through iconv.
  • Interactively repair replacement characters through Ollama without changing file encoding.
  • Optional backup copy of original files.
  • Detailed Rich table report for converted, skipped, and problematic files.

Missing-char classification

When cutf finds a replacement character (), it now classifies the exact character position instead of treating the whole line as code or comment.

Robust comment-aware classification is currently supported for these extensions:

  • .c
  • .cs
  • .cpp
  • .h
  • .hpp
  • .py

For other extensions, cutf still reports the occurrence, but the final results explicitly mark that comment analysis was not supported for that file type.

Requirements

  • Python 3.10+
  • uv (only for local development)
  • iconv available in your system PATH when you use conversion mode
  • Ollama available when you use --fix-wrong-with-ai

Install iconv

  • macOS: usually preinstalled (iconv --version)
  • Linux: install from system package manager (for example libc-bin / glibc tools)
  • Windows: download and install GNU iconv for Windows (GnuWin32) and make sure iconv.exe is in PATH

Installation

Option A – Install from PyPI (recommended)

No need to clone the repository. Just run:

pip install cutf

or with uv:

uv tool install cutf

Then use it directly:

cutf --path ./src --all --extensions .py .txt

Option B – Clone and run locally

1) Clone the repository

git clone https://github.com/<your-org>/cutf.git
cd cutf

2) Create environment and install dependencies with uv

uv sync --all-groups

3) Run cutf

uv run cutf --path ./src --all --extensions .py .txt

Usage

usage: cutf --path PATH [--checks] [--convert] [--copyOld]
            [--fix-wrong-with-ai] [--ai-ollama-url AI_OLLAMA_URL]
            [--printMissingCharString] [--printAllSkippedFile]
            [--all] [--verbose] [--only-relevant]
            [--skip-dir DIR [DIR ...]]
            [--list-extension]
            [--extensions EXT [EXT ...]]

Main options

  • --path: file or directory to process.
  • --checks: run missing-character checks.
  • --convert: convert non-UTF files to UTF-8 with BOM.
  • --list-extension: dedicated mode that recursively scans --path and prints a Rich table with every extension found and its file count.
  • --fix-wrong-with-ai: interactively replace through Ollama while preserving the file encoding.
  • --ai-ollama-url: override the Ollama base URL used by AI fix mode.
  • --all: enable both --checks and --convert.
  • --extensions: list of extensions to scan (required for checks, convert, and AI fix modes), for example .cpp .h .cs .ini.
  • --skip-dir: directory names to skip during recursive scans. You can pass multiple values in one flag or repeat the flag, for example --skip-dir .git node_modules or --skip-dir .git --skip-dir node_modules.
  • --copyOld: copy original file before conversion into temp folder.
  • --printMissingCharString: print the line content for each missing-character finding.
  • --printAllSkippedFile: print every skipped file instead of only the count.
  • --only-relevant: hide less relevant missing-character entries.
  • --verbose: print extra execution logs.

At the end of processing, cutf renders the final report as Rich tables for encodings, conversions, skipped files, errors, and missing-character findings.

When a matching directory is found, cutf reports the skipped path and does not descend into it.

List Extension Mode

--list-extension is a dedicated mode. It can only be combined with --path and optional --skip-dir.

When enabled, cutf:

  • scans every file under the selected path recursively
  • groups extensions case-insensitively and prints a Rich table with extension and file count
  • treats files without suffix as (no extension)
  • respects every skipped directory passed through --skip-dir
  • does not require --extensions
  • does not require iconv
  • does not ask for confirmation before printing the table

AI Fix Mode

--fix-wrong-with-ai is a dedicated mode. It cannot be combined with --checks, --convert, --all, or --list-extension.

When enabled, cutf:

  • scans every matching file for
  • asks Ollama for a single-character replacement proposal
  • shows the wrong line and the proposed corrected line
  • lets you choose whether to apply, retry, or skip
  • writes the accepted fix back without changing the original encoding or BOM

Ollama URL resolution order:

  • --ai-ollama-url
  • .env file next to the executable, using OLLAMA_URL=...
  • OLLAMA_URL from the process environment
  • current-user environment on Windows when available

Default model: qwen2.5:1.5b-instruct

Typical Commands

Run checks only:

uv run cutf --path ./project --checks --extensions .py .js .ts

Run conversion + checks:

uv run cutf --path ./project --all --extensions .cpp .h --copyOld

Skip repository metadata directories during recursive scans:

uv run cutf --path ./project --all --extensions .py .cpp --skip-dir .git

List every extension found under a directory:

uv run cutf --path ./project --list-extension --skip-dir .git node_modules

Process one file:

uv run cutf --path ./src/main.cpp --all --extensions .cpp

Run interactive AI fixing:

OLLAMA_URL=http://localhost:11434 uv run cutf --path ./src --fix-wrong-with-ai --extensions .cpp .py

Override the Ollama URL explicitly:

uv run cutf --path ./src --fix-wrong-with-ai --ai-ollama-url http://localhost:11434 --extensions .cpp

Development

Run tests:

uv run pytest

Run linter:

uv run ruff check .

Format code:

uv run ruff format .

FAQ

Why does CUTF require --extensions?

It prevents accidental processing of unrelated files and keeps checks, conversion, and AI-fix scans predictable. The dedicated --list-extension mode is the exception because it must inspect every file to discover the extensions that exist.

Why UTF-8 with BOM?

Some tools and Windows-oriented workflows require BOM for UTF-8 detection.

What happens if iconv is missing?

CUTF stops before processing and prints an error only for checks/conversion flows that need the regular file-processing pipeline. AI fix mode and list-extension mode do not require iconv.

Where are original files copied when --copyOld is enabled?

They are copied to <system-temp>/SrcChE.

Does CUTF modify UTF-8 files?

Only when conversion is requested and the file is detected as non-UTF. Otherwise files are skipped.

Does AI fix mode change the file encoding?

No. Accepted changes are written back using the original encoding and BOM.

License

This project is distributed under the license in LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cutf-0.0.15.tar.gz (86.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cutf-0.0.15-py3-none-any.whl (28.5 kB view details)

Uploaded Python 3

File details

Details for the file cutf-0.0.15.tar.gz.

File metadata

  • Download URL: cutf-0.0.15.tar.gz
  • Upload date:
  • Size: 86.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.15 {"installer":{"name":"uv","version":"0.11.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cutf-0.0.15.tar.gz
Algorithm Hash digest
SHA256 6963284537912f48a2fa83639cb46915e0ce1ba17f1253c7a717f743f9232330
MD5 6459d8ed7384813b9e56b436f86fcb4b
BLAKE2b-256 088c21b7158ac0ca6d98bda87cb93052fefc9704a487aa4401018f4bde343555

See more details on using hashes here.

File details

Details for the file cutf-0.0.15-py3-none-any.whl.

File metadata

  • Download URL: cutf-0.0.15-py3-none-any.whl
  • Upload date:
  • Size: 28.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.15 {"installer":{"name":"uv","version":"0.11.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cutf-0.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 1e062e8136baa08657129f99dffa9c83bacb96a88a3bec79efbcdb5812d02907
MD5 871f5920aba575de9dd36a13d4fa9332
BLAKE2b-256 d1827552f8f94bbe4ccbb0e60ec03c999482334f6d1995d6c896a4ea38a58626

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page