Agent skill

Project Overview

Get overview of the Babylon.js first-person game project structure, statistics, and health metrics. Use when the user asks about project structure, codebase stats, file counts, or wants a project summary.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill project-overview --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/analysis/project-overview/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Project Overview Quick overview and statistics for the babylon_fp project. ## Quick Stats ### Line count by file type ```bash cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp echo "TypeScript files:" find src -name "*.ts" -exec wc -l {} + | tail -1 echo -e "\nHTML files:" find tools -name "*.html" -exec wc -l {} + | tail -1 echo -e "\nJSON data files:" find public/data -name "*.json" -exec wc -l {} + | tail -1 echo -e "\nTest files:" find tests -name "*.test.ts" -exec wc -l {} + | tail -1 ``` ### File counts ```bash cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp echo "Source files: $(find src -name '*.ts' | wc -l)" echo "Test files: $(find tests -name '*.test.ts' | wc -l)" echo "Config files: $(find . -maxdepth 1 -name '*.json' -o -name '*.config.*' | wc -l)" echo "Tools: $(find tools -name '*.html' | wc -l)" echo "Data files: $(find public/data -name '*.json' | wc -l)" ``` ## Project Structure ### Main directories ```bash cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp tree -L 2 -d src/ ``` ### List key systems ```bash cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp echo "=== Core Systems ===" ls -1 src/systems/*.ts | sed 's/.*\///' | sed 's/.ts$//' echo -e "\n==

What's inside
Steps it walks through
  1. Quick Stats
  2. Line count by file type
  3. File counts
  4. Project Structure
  5. Main directories
  6. List key systems
  7. Code Health
  8. TypeScript compilation check
  9. Find TODO/FIXME comments
  10. List TODO items
  11. Dependencies
  12. Show installed packages
  13. Check for outdated packages
  14. Check Babylon.js version
Ships with 1 file
  • metadata.json
Commands it runs
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
echo "TypeScript files:"
find src -name "*.ts" -exec wc -l {} + | tail -1
echo -e "\nHTML files:"
find tools -name "*.html" -exec wc -l {} + | tail -1
echo -e "\nJSON data files:"
find public/data -name "*.json" -exec wc -l {} + | tail -1
echo -e "\nTest files:"
find tests -name "*.test.ts" -exec wc -l {} + | tail -1
echo "Source files: $(find src -name '*.ts' | wc -l)"
More from claude-skill-registry
All skills →
About this skill
What does the Project Overview skill do?

Get overview of the Babylon.js first-person game project structure, statistics, and health metrics. Use when the user asks about project structure, codebase stats, file counts, or wants a project summary.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill project-overview --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going