Understand the codebase and project structure. When starting a new task, use this skill to get up to speed on the project context, rules, and conventions.
git status --shortgit log --oneline -10{ git ls-files; git ls-files --others --exclude-standard; } 2>/dev/null | cut -d/ -f1-2 | sort -u | head -60find . -maxdepth 1 \( -name "package.json" -o -name "pyproject.toml" -o -name "Cargo.toml" -o -name "go.mod" -o -name "pom.xml" -o -name "composer.json" \) -exec echo "=== {} ===" \; -exec head -20 {} \; 2>/dev/null!cat AGENTS.md 2>/dev/null || cat CLAUDE.md 2>/dev/null || cat COPILOT.md 2>/dev/null || echo "No rules file found"
!head -80 README.md 2>/dev/null || echo "No README found"
Report a brief structured summary:
Keep the report under ~200 words. Do not read additional files unless asked.