fix: add runnable project files for ai-fluency task

Add a minimal Python CLI implementation with source code and dependency configuration so the repository can be validated by autograder requirements.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
RomanKurlygin
2026-05-28 11:25:03 +03:00
parent cebff9928d
commit 1d76529c51
10 changed files with 127 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
"""CLI entrypoint for AI fluency plan tracker."""
from src.fluency_tracker.cli import main
if __name__ == "__main__":
raise SystemExit(main())