Project Discovery
Guide for systematically analyzing codebases to identify technology stack, development tools, dependencies, and recommend relevant integrations like MCPs.
When to Use This Skill
Activate when:
- Analyzing a new codebase to understand its structure
- Identifying technology stack and frameworks
- Discovering development tools and configuration
- Recommending MCPs or integrations based on project needs
- Understanding project dependencies and their purposes
- Planning project onboarding or documentation
Discovery Process
Phase 1: Project Structure Analysis
- Examine root directory files (README, package.json, Cargo.toml, mix.exs, etc.)
- Identify primary language(s) and frameworks
- Map directory structure and conventions
- Detect configuration files and their purposes
Phase 2: Dependency Analysis
- Parse package/dependency files
- Categorize dependencies (runtime, dev, testing, build)
- Identify version constraints and compatibility requirements
- Flag potential security or maintenance concerns
Phase 3: Tool Detection
- Scan for configuration files of common tools
- Examine scripts in package.json, Makefile, etc.
- Identify CI/CD configurations
- Detect database schemas and migration files
Phase 4: MCP Recommendations
Based on discoveries, recommend MCPs such as:
- Database MCPs: postgres, mysql, sqlite, mongodb
- Cloud MCPs: aws, gcp, azure for deployment
- Development MCPs: docker, kubernetes for containerization
- API MCPs: github, gitlab for repository management
Tool Identification Categories
Package Managers
- npm, yarn, pnpm (JavaScript/TypeScript)
- pip, poetry, pipenv (Python)
- cargo (Rust)
- mix/hex (Elixir)
- go mod (Go)
- bundler (Ruby)
Build Systems
- webpack, vite, esbuild (JavaScript)
- gradle, maven (Java)
- make, cmake (C/C++)
- mix (Elixir)
Testing Frameworks
- jest, mocha, vitest (JavaScript)
- pytest, unittest (Python)
- cargo test (Rust)
- ExUnit (Elixir)
Linting and Formatting
- eslint, prettier (JavaScript)
- black, ruff, flake8 (Python)
- clippy, rustfmt (Rust)
- credo, mix format (Elixir)
Elixir-Specific Discovery
AGENTS.md Processing
When discovering Elixir projects:
- Search for
AGENTS.md in project root (community standard)
- Check for
usage-rules.md as alternative
- Scan
deps/*/ for library-specific AGENTS.md files
- Extract AI-specific guidance and conventions
Framework Detection
- Phoenix: config/, lib/, priv/ structure with Phoenix dependencies
- LiveView: Phoenix.LiveView dependencies and live view modules
- OTP: Application modules and supervision trees
- Ecto: Database schemas, migrations, repository patterns
Analysis Report Structure
# Project Discovery Report
## Project Overview
- **Name**: [Project Name]
- **Primary Language(s)**: [Languages]
- **Framework(s)**: [Frameworks]
- **Project Type**: [web app, CLI tool, library, etc.]
## Technology Stack
### Frontend
- [Framework/Library and version]
- [Build tools]
### Backend
- [Runtime/Framework]
- [Database(s)]
### Development Tools
- **Package Manager**: [npm, yarn, pip, etc.]
- **Build System**: [webpack, vite, etc.]
- **Testing**: [jest, pytest, etc.]
- **Linting**: [eslint, prettier, etc.]
## Recommended MCPs
Based on analysis, consider:
1. **[MCP Name]**: For [specific use case]
2. **[MCP Name]**: For [specific use case]
## Setup Instructions
[Quick start commands]
Key Principles
- Systematic Exploration: Start with root files, then explore directories
- Prioritize Important Discoveries: Lead with most significant findings
- Actionable Recommendations: Provide specific MCP recommendations with installation commands
- Flag Issues: Identify potential problems or missing configurations
- Context-Aware: Tailor recommendations to project type and stack
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: project-discovery3description: Activate when analyzing codebases to understand project structure, technology stack, dependencies, and development workflows Use when this capability is needed.4---56# Project Discovery78Guide for systematically analyzing codebases to identify technology stack, development tools, dependencies, and recommend relevant integrations like MCPs.910## When to Use This Skill1112Activate when:13- Analyzing a new codebase to understand its structure14- Identifying technology stack and frameworks15- Discovering development tools and configuration16- Recommending MCPs or integrations based on project needs17- Understanding project dependencies and their purposes18- Planning project onboarding or documentation1920## Discovery Process2122### Phase 1: Project Structure Analysis231. Examine root directory files (README, package.json, Cargo.toml, mix.exs, etc.)242. Identify primary language(s) and frameworks253. Map directory structure and conventions264. Detect configuration files and their purposes2728### Phase 2: Dependency Analysis291. Parse package/dependency files302. Categorize dependencies (runtime, dev, testing, build)313. Identify version constraints and compatibility requirements324. Flag potential security or maintenance concerns3334### Phase 3: Tool Detection351. Scan for configuration files of common tools362. Examine scripts in package.json, Makefile, etc.373. Identify CI/CD configurations384. Detect database schemas and migration files3940### Phase 4: MCP Recommendations41Based on discoveries, recommend MCPs such as:42- **Database MCPs**: postgres, mysql, sqlite, mongodb43- **Cloud MCPs**: aws, gcp, azure for deployment44- **Development MCPs**: docker, kubernetes for containerization45- **API MCPs**: github, gitlab for repository management4647## Tool Identification Categories4849### Package Managers50- npm, yarn, pnpm (JavaScript/TypeScript)51- pip, poetry, pipenv (Python)52- cargo (Rust)53- mix/hex (Elixir)54- go mod (Go)55- bundler (Ruby)5657### Build Systems58- webpack, vite, esbuild (JavaScript)59- gradle, maven (Java)60- make, cmake (C/C++)61- mix (Elixir)6263### Testing Frameworks64- jest, mocha, vitest (JavaScript)65- pytest, unittest (Python)66- cargo test (Rust)67- ExUnit (Elixir)6869### Linting and Formatting70- eslint, prettier (JavaScript)71- black, ruff, flake8 (Python)72- clippy, rustfmt (Rust)73- credo, mix format (Elixir)7475## Elixir-Specific Discovery7677### AGENTS.md Processing78When discovering Elixir projects:791. Search for `AGENTS.md` in project root (community standard)802. Check for `usage-rules.md` as alternative813. Scan `deps/*/` for library-specific AGENTS.md files824. Extract AI-specific guidance and conventions8384### Framework Detection85- **Phoenix**: config/, lib/, priv/ structure with Phoenix dependencies86- **LiveView**: Phoenix.LiveView dependencies and live view modules87- **OTP**: Application modules and supervision trees88- **Ecto**: Database schemas, migrations, repository patterns8990## Analysis Report Structure9192```markdown93# Project Discovery Report9495## Project Overview96- **Name**: [Project Name]97- **Primary Language(s)**: [Languages]98- **Framework(s)**: [Frameworks]99- **Project Type**: [web app, CLI tool, library, etc.]100101## Technology Stack102### Frontend103- [Framework/Library and version]104- [Build tools]105106### Backend107- [Runtime/Framework]108- [Database(s)]109110### Development Tools111- **Package Manager**: [npm, yarn, pip, etc.]112- **Build System**: [webpack, vite, etc.]113- **Testing**: [jest, pytest, etc.]114- **Linting**: [eslint, prettier, etc.]115116## Recommended MCPs117Based on analysis, consider:1181. **[MCP Name]**: For [specific use case]1192. **[MCP Name]**: For [specific use case]120121## Setup Instructions122[Quick start commands]123```124125## Key Principles126127- **Systematic Exploration**: Start with root files, then explore directories128- **Prioritize Important Discoveries**: Lead with most significant findings129- **Actionable Recommendations**: Provide specific MCP recommendations with installation commands130- **Flag Issues**: Identify potential problems or missing configurations131- **Context-Aware**: Tailor recommendations to project type and stack132133---134> Converted and distributed by [TomeVault](https://tomevault.io/claim/vinnie357) — claim your Tome and manage your conversions.135<!-- tomevault:4.0:skill_md:2026-04-11 -->