home / skills / robzolkos / zolkos-agent-skills / prime
This skill inventories a codebase by listing tracked files and summarizing README contents to quickly understand project scope.
npx playbooks add skill robzolkos/zolkos-agent-skills --skill primeReview the files below or copy the command above to add this skill to your agents.
---
name: prime
description: Prime yourself on a codebase by listing files and reading the README.
disable-model-invocation: true
allowed-tools: Bash(git *), Read
---
# Prime
Execute the following sections to understand the codebase then summarize your understanding.
## Run
git ls-files
## Read
README.md
This skill helps you quickly prime yourself on a codebase by listing tracked files and reading the repository README. It gives a fast, focused snapshot so you can form an initial mental model and plan next exploration steps. Use it when you need context before making changes or answering questions about the project.
The skill runs a file listing (git ls-files) to capture all files tracked in the repo, providing a complete view of the codebase surface. It then reads the README to extract the project's purpose, setup instructions, high-level architecture, and usage guidance. The outputs are summarized to highlight important files, entry points, and immediate follow-ups.
What does git ls-files show me?
It lists all files tracked by Git in the repository, giving an accurate view of the codebase contents under version control.
What if the README is outdated or missing?
Treat README clues cautiously. Use the file list to find build configs, manifests, or example scripts to infer current behavior and follow up by opening those files directly.