767 B
767 B
Prime the context by analyzing the project structure
Use the command lsd --tree to get an overview of the project's code structure. In addition,
- Read the
README.mdif exist - Read the
flake.nixif exist - Files which you think are important
- For python project, read
pyproject.tomlif exist - For javascript and typescript project, read
package.jsonif exist - For rust project, read
Cargo.tomlif exist - For c++ project read
CMakeLists.txtand use it as the entrypoint to understand the project structure
- For python project, read
Goal
You should be able to tell the following
- The structure of the project
- What problem does this project solve?
- What are the major programming languages used in this project?
- What is the entrypoint of this project?