Files
tracker-cli/tracker/cli/main.py
Daniel Arroyo b0c65a00a2 Implement core services for MVP-1 Personal Tracker CLI
Services implemented:
- session_service: Active session management (get/set/clear, validation)
- project_service: Project CRUD and directory structure
- note_service: Note handling and consolidation
- heuristics_service: Rule-based suggestions
- summary_service: Heuristic summary generation
2026-03-23 08:54:09 -03:00

8 lines
124 B
Python

"""Main CLI entry point."""
import typer
app = typer.Typer(
name="tracker",
help="Personal project tracker CLI",
)