Skip to content

Commit a1dea15

Browse files
fix(.ai): handoff references .ai instead of .cursor
1 parent 1ef2129 commit a1dea15

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.ai/skills/session-handoff/evals/setup_test_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def init_git_repo(path: Path):
156156

157157
def 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)

.ai/skills/session-handoff/scripts/create_handoff.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def get_git_info(project_path: str) -> dict:
9292

9393
def 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

0 commit comments

Comments
 (0)