feat: project management module — create, log, read, list, server persistence

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mortdecai
2026-03-30 07:30:24 -04:00
parent 918261c3a5
commit 16815ed6bb
3 changed files with 245 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import pytest
@pytest.fixture
def tmp_workbench(tmp_path):
"""Provide a temporary workbench directory."""
wb = tmp_path / "workbench"
wb.mkdir()
return wb