project-initlisted
Install: claude install-skill claude-world/director-mode-lite
# Project Initialization
Execute a comprehensive project setup using Expert Agents.
---
## Phases
### Phase 1: Project Analysis
1. Check existing setup: `ls -la .claude/ CLAUDE.md`
2. Detect language and project type:
| File Found | Language | Framework Detection |
|---|---|---|
| `package.json` | Node.js/TypeScript | Check `dependencies` for react, express, next, etc. |
| `requirements.txt` / `pyproject.toml` / `setup.py` | Python | Check for django, flask, fastapi, etc. |
| `Cargo.toml` | Rust | Check `[dependencies]` section |
| `go.mod` | Go | Check module imports |
| `pom.xml` / `build.gradle` | Java/Kotlin | Check for spring, android, etc. |
| None of the above | Unknown | Ask user for tech stack |
3. Detect test framework: jest, pytest, cargo test, go test, etc.
4. Map project structure: `find . -type f \( -name "*.ts" -o -name "*.py" -o -name "*.rs" -o -name "*.go" \) | head -20`
**If no project files detected:**
```
This appears to be an empty or new project.
What tech stack would you like to use?
1. Node.js + TypeScript
2. Python
3. Go
4. Rust
5. Other (specify)
```
### Phase 2: CLAUDE.md Setup
Use the claude-md-expert agent to create project-specific CLAUDE.md:
```markdown
# [Project Name] - Project Instructions
## Overview
[Auto-detected from package.json description, README.md, or pyproject.toml]
## Tech Stack
- Language: [detected]
- Framework: [detected]
- Testing: [detected]
## Commands
- dev: [detected from scripts or Makefile]
- test: [detected