Files
Will Schroeder 549f1e92bf Claude modifications (#100)
* Claude module development skill (drafting, test case generation, end-to-end testing)
   * enrichment-module-builder skill triggered by /new-enrichment-module command for rapid file enrichment module development
* Added CLAUDE.md project file
* Added prefetch and ccache enrichment modules (developed by Claude skill)
* Added Proper GitHub issue templates
2026-01-26 17:54:08 -08:00
..
2026-01-14 15:20:31 -08:00
2026-01-14 15:20:31 -08:00
2025-06-13 11:33:07 +02:00

Naming Conventions

Projects and libraries should follow Python's PEP8 naming conventions:

Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.

When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. _socket).