dangaiden-project-overview
Original:🇺🇸 English
Translated
Generate a concise overview of the current project — structure, purpose, recent activity, and open questions. Use when the user asks "what is this repo?", "give me an overview", or "what's going on in this project?".
27installs
Added on
NPX Install
npx skill4agent add dangaiden/something-skill dangaiden-project-overviewTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Project Overview
Produce a concise, human-readable summary of this project for someone new to the codebase.
Steps
-
Identity: Read(if present) for the stated purpose. If absent, infer from directory names and key files.
README.md -
Structure: List top-level directories and files. Note the dominant language(s) and any obvious architecture layers (frontend, backend, infra, tests, docs).
-
Recent activity: Runto show the last 10 commits. Summarize what areas have been changing.
git log --oneline -10 -
Open work: Look for,
TODO, orFIXMEcomments withHACKand note how many exist.grep -r "TODO\|FIXME\|HACK" --include="*.md" . -
Key entry points: Identify the main entrypoint files (e.g.,
main.*,index.*,app.*,Makefile,package.json).Cargo.toml
If is provided, focus the overview on that area or topic instead of the whole project.
$ARGUMENTSOutput format
- Purpose: one sentence
- Stack: languages, frameworks, key dependencies
- Structure: bullet list of top-level dirs with one-line descriptions
- Recent activity: what's been changing (based on git log)
- Entry points: files to start reading
- Open items: count of TODOs/FIXMEs, any that look urgent
Keep the output under 30 lines. Prioritize clarity over completeness.