Documentation
README
Environment Discovery
When dropped into an unfamiliar environment, ALWAYS explore before acting.
Step 1: Understand the workspace
ls -la /app/ # or the working directory
find . -type f | head -50
- What files exist? What are their sizes?
- Are there READMEs, Makefiles, config files?
- What languages/frameworks are involved?
Step 2: Inspect data files
Before writing any code that reads data, understand the format:
file <filename>β detect file type (binary, text, encoding)head -20 <file>β first lines of text filesxxd <file> | head -20β hex dump for binary fileswc -l <file>β line count for text filesstat <file>β exact file size in bytespython3 -c "import struct; ..."β parse binary headers
Step 3: Check available tools
This is the opening of the README. Read the full README on GitHub.