File tree Expand file tree Collapse file tree
.ai/skills/session-handoff Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ def init_git_repo(path: Path):
156156
157157def create_sample_handoffs (path : Path ):
158158 """Create sample handoff documents for testing."""
159- handoffs_dir = path / ".cursor" / "handoffs"
159+ handoffs_dir = path / ".ai / " handoffs "
160160 handoffs_dir .mkdir (parents = True )
161161
162162 # Fresh handoff (today)
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def get_git_info(project_path: str) -> dict:
9292
9393def find_previous_handoffs (project_path : str ) -> list [dict ]:
9494 """Find existing handoffs in the project."""
95- handoffs_dir = Path (project_path ) / ".cursor " / "handoffs"
95+ handoffs_dir = Path (project_path ) / ".ai " / "handoffs"
9696 if not handoffs_dir .exists ():
9797 return []
9898
@@ -181,7 +181,7 @@ def generate_handoff(
181181 filename = f"{ file_timestamp } -{ slug } .md"
182182
183183 # Create handoffs directory
184- handoffs_dir = Path (project_path ) / ".cursor " / "handoffs"
184+ handoffs_dir = Path (project_path ) / ".ai " / "handoffs"
185185 handoffs_dir .mkdir (parents = True , exist_ok = True )
186186
187187 filepath = handoffs_dir / filename
You can’t perform that action at this time.
0 commit comments