Rename package installer helper to package

This commit is contained in:
jxxghp
2026-06-23 13:45:55 +08:00
parent 0c53fb86fd
commit c1cefa3f40
9 changed files with 25 additions and 17 deletions

View File

@@ -105,6 +105,8 @@ except:
- One primary class per file is the norm for chains, modules, and helpers.
- Private helper functions in the same file are preferable to extracting a new helper for single-use logic.
- Under `app/api/endpoints/`, `app/chain/`, `app/helper/`, and `app/utils/`, add code to an existing domain file whenever the domain already exists.
- New files under those directories must use a single noun filename such as `package.py`; avoid role-suffix names such as `package_installer.py` unless an established framework convention requires it.
- Keep files focused on one domain concern.
---
@@ -118,4 +120,4 @@ except:
- Do not add noisy markers like `# change starts here`, `# important`, or `# this is a fix`.
- Do not write comments that restate what the code already clearly says.
*Last Updated: 2026-05-25*
*Last Updated: 2026-06-23*