Skip to content

Releases: TemplarKnight0622/ai-text-check

Release list

v0.1.2

Choose a tag to compare

@TemplarKnight0622 TemplarKnight0622 released this 05 Aug 11:52

Docs and packaging release. Lens math is unchanged from 0.1.1.

Fixed

  • The limitations section claimed markdown links can trip the lens-2 bracket balance. Investigated for #2 and it does not reproduce: [label](url) keeps both bracket types balanced. Corrected to the triggers that actually fire (unmatched brackets inside code spans/blocks, emoticons, pseudo-math, and table column padding, which trips double space rather than bracket balance).

Added

  • Explicit exit code contract in the README (#3): 0 on a successful run including a "high" heuristic band, 1 only on parse/IO failure or an unexpected exception. A report-save failure warns on stderr and still exits 0. Documented as-is, no behaviour change.
  • samples/synthetic_markdown_fp_en.md and tests/test_lens2_false_positives.py (15 tests) pinning lens-2 behaviour as a documented contract rather than a bug to fix.

Packaging

  • [project.urls] and expanded classifiers (Python 3.10-3.13, Korean/English, Linguistic)
  • MANIFEST.in so the sdist carries samples/ and tests/; without it the shipped tests failed on a missing fixture directory
  • Distribution metadata is in place and twine check passes on both artifacts, but this is not on PyPI yet. Install from source, see the README.

Full Changelog: v0.1.1...v0.1.2

v0.1.1

Choose a tag to compare

@TemplarKnight0622 TemplarKnight0622 released this 03 Aug 17:10

ai-text-check v0.1.1

First public release of the independent package tree.

Highlights

  • Four independent heuristic lenses (surface / mechanical / stock phrases / optional GPTZero)
  • Auto-save *_ai-check.md next to input (disable with --no-save)
  • One-line summary + experimental signal % (not a calibrated AI-writing ratio)
  • pip install -e . for txt/md; optional [doc] extras for pdf/docx/…

Install

git clone https://github.com/TemplarKnight0622/ai-text-check.git
cd ai-text-check
python3 -m venv .venv && source .venv/bin/activate
pip install -e .
ai-text-check samples/synthetic_ai_ish_ko.md

Notes

  • Not a Turnitin/GPTZero replacement.
  • Lens math unchanged from 0.1.0; 0.1.1 adds report UX and clearer lens-4 skip copy.
  • See CHANGELOG.md and README disclaimers.