Awesome-omni-skill project-analysis
Analyzes any project to understand its structure, tech stack, patterns, and conventions. Use when starting work on a new codebase, onboarding, or when asked "how does this project work?" or "what's the architecture?"
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/project-analysis-meeezus" ~/.claude/skills/diegosouzapw-awesome-omni-skill-project-analysis-5d3966 && rm -rf "$T"
manifest:
skills/development/project-analysis-meeezus/SKILL.mdsource content
Project Analysis Skill
When analyzing a project, systematically gather and present information in this order:
1. Quick Overview (30 seconds)
# Check for common project markers ls -la cat README.md 2>/dev/null | head -50
2. Tech Stack Detection
Package Managers & Dependencies
→ Node.js/JavaScript/TypeScriptpackage.json
/requirements.txt
/pyproject.toml
→ Pythonsetup.py
→ Gogo.mod
→ RustCargo.toml
/pom.xml
→ Javabuild.gradle
→ RubyGemfile
Frameworks (from dependencies)
- React, Vue, Angular, Next.js, Nuxt
- Express, FastAPI, Django, Flask, Rails
- Spring Boot, Gin, Echo
Infrastructure
,Dockerfile
→ Containerizeddocker-compose.yml
,kubernetes/
→ Kubernetesk8s/
,terraform/
files → IaC.tf
→ Serverless Frameworkserverless.yml
→ GitHub Actions.github/workflows/
3. Project Structure Analysis
Present as a tree with annotations:
project/ ├── src/ # Source code │ ├── components/ # UI components (React/Vue) │ ├── services/ # Business logic │ ├── models/ # Data models │ └── utils/ # Shared utilities ├── tests/ # Test files ├── docs/ # Documentation └── config/ # Configuration
4. Key Patterns Identification
Look for and report:
- Architecture: Monolith, Microservices, Serverless, Monorepo
- API Style: REST, GraphQL, gRPC, tRPC
- State Management: Redux, Zustand, MobX, Context
- Database: SQL, NoSQL, ORM used
- Authentication: JWT, OAuth, Sessions
- Testing: Jest, Pytest, Go test, etc.
5. Development Workflow
Check for:
,.eslintrc
→ Linting/Formatting.prettierrc
→ Git hooks.husky/
→ Build commandsMakefile
in package.json → NPM scriptsscripts/
6. Output Format
# Project: [Name] ## Overview [1-2 sentence description] ## Tech Stack | Category | Technology | |----------|------------| | Language | TypeScript | | Framework | Next.js 14 | | Database | PostgreSQL | | ... | ... | ## Architecture [Description with simple ASCII diagram if helpful] ## Key Directories - `src/` - [purpose] - `lib/` - [purpose] ## Entry Points - Main: `src/index.ts` - API: `src/api/` - Tests: `npm test` ## Conventions - [Naming conventions] - [File organization patterns] - [Code style preferences] ## Quick Commands | Action | Command | |--------|---------| | Install | `npm install` | | Dev | `npm run dev` | | Test | `npm test` | | Build | `npm run build` |