From 1bdb026079adfbb9011b7a93ba5471821fba8913 Mon Sep 17 00:00:00 2001 From: bymyself Date: Tue, 17 Jun 2025 10:36:08 -0700 Subject: [PATCH] explain glob vs legacy in claude memory --- comfyui_manager/glob/CLAUDE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/comfyui_manager/glob/CLAUDE.md b/comfyui_manager/glob/CLAUDE.md index a9a6e6a4..1c96bea2 100644 --- a/comfyui_manager/glob/CLAUDE.md +++ b/comfyui_manager/glob/CLAUDE.md @@ -8,3 +8,4 @@ 7. Adjust the `__init__.py` files in the `data_models` directory to match/export the new data model 8. Only then, make the changes to the rest of the codebase 9. Run the CI tests to verify that the changes are working +- The comfyui_manager is a python package that is used to manage the comfyui server. There are two sub-packages `glob` and `legacy`. These represent the current version (`glob`) and the previous version (`legacy`), not including common utilities and data models. When developing, we work in the `glob` package. You can ignore the `legacy` package entirely, unless you have a very good reason to research how things were done in the legacy or prior major versions of the package. But in those cases, you should just look for the sake of knowledge or reflection, not for changing code (unless explicitly asked to do so). \ No newline at end of file