`feat(repositories): model project and workspace identity for multi-c…#50
Open
Adityakk9031 wants to merge 3 commits into
Open
`feat(repositories): model project and workspace identity for multi-c…#50Adityakk9031 wants to merge 3 commits into
Adityakk9031 wants to merge 3 commits into
Conversation
Contributor
Author
|
@divitsheth have a look |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves #47 by introducing a multi-workspace project model. CodeAlmanac now decouples logical Project Identity (shared codebase name & identity) from local Workspace Identity (checkout root path).
Multiple checkouts of the same project (e.g.
/work/a/lmfellowand/work/b/lmfellow) no longer collide or fail with SQLite integrity errors onrepositories.name. Instead, both register as workspaces under the single shared projectlmfellow, and--wiki <name>execution dynamically resolves the workspace matching the active current working directory (cwd).Key Changes
projectsandworkspacestables to SQLite schema.repositories.nameUNIQUEconstraint to allow multiple workspace rows for a single project name.ProjectandWorkspacePydantic models.project_id_for(name)andworkspace_id_for(root_path)generator functions.RepositoryStore.remember()to upsert records intoprojectsandworkspacestables alongsiderepositories.register(), enabling auto-registration of new workspaces under existing projects.select_by_name(),select_for_read(), andselect_for_operation()to resolve workspace checkouts preferred by the caller'scwd.test_read_repository_at_registers_multiple_workspaces_under_same_projectverifying multi-checkout registration and CWD-based workspace resolution.Testing & Verification
pytest tests/test_repository_store.py