File paths
pathlib.Path MUST be used, not os.path. All path manipulation MUST go through pathlib.
from pathlib import Path
roadmap_dir = Path.home() / ".roadmaps" / project_name
pathlib.Path MUST be used, not os.path. All path manipulation MUST go through pathlib.
from pathlib import Path
roadmap_dir = Path.home() / ".roadmaps" / project_name
| Version | Date | Author | Summary |
|---|---|---|---|
| 1.0.0 | 2026-03-27 | Mike Fullerton | Initial creation |