Claude-skill-registry codebase-orientation
Guide quick orientation of an unfamiliar codebase with module mapping, entry points, and local run steps. Use when a junior developer needs to get situated fast.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/codebase-orientation" ~/.claude/skills/majiayu000-claude-skill-registry-codebase-orientation && rm -rf "$T"
manifest:
skills/data/codebase-orientation/SKILL.mdsource content
Codebase Orientation
Purpose
Guide quick orientation of an unfamiliar codebase with module mapping, entry points, and local run steps.
Inputs to request
- Repo URL or local path and target area of interest.
- Runtime versions, package manager, and OS.
- Current task or reason for onboarding.
Workflow
- Locate entry points, build scripts, and main runtime paths.
- Map key folders, ownership, and common naming conventions.
- Identify how to run, test, and debug locally with minimal setup.
- Call out one or two safe starter tasks for learning.
Output
- High-level module map with file paths.
- Local run/test commands with prerequisites.
- Suggested first change with low risk.
Quality bar
- Reference concrete file paths and commands.
- Keep scope limited to the requested area.