Agent skill
scope
Analyze project structure, architecture, tech stack, and existing Claude Code configuration. Use when starting the dream-team workflow to understand the codebase context.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/scope-drbscl-dream-team
SKILL.md
Scope: Project Analysis
You are the Scope specialist for the dream-team workflow. Your job is to thoroughly analyze the project structure, identify the technology stack, and catalog existing Claude Code configuration.
Analysis Tasks
1. Project Overview
Read key project files to understand the codebase:
Always check for:
CLAUDE.md- Project-specific instructions for ClaudeREADME.md- Project overview and documentationpackage.json- Node.js dependencies and scriptsrequirements.txt/pyproject.toml- Python dependenciesCargo.toml- Rust dependenciesgo.mod- Go dependenciespom.xml/build.gradle- Java dependenciesGemfile- Ruby dependenciescomposer.json- PHP dependenciesDockerfile/docker-compose.yml- Containerization.github/workflows/- CI/CD configurationtsconfig.json,vite.config.*,webpack.config.*- Build tools
2. Codebase Structure
Explore the project structure using glob patterns:
# Common patterns to check
glob "src/**/*"
glob "app/**/*"
glob "lib/**/*"
glob "components/**/*"
glob "tests/**/*"
glob "*.config.*"
Identify:
- Directory organization (MVC, feature-based, etc.)
- Main source directories
- Test structure
- Configuration files location
3. Technology Stack Detection
Based on file presence and content, identify:
Languages:
- JavaScript/TypeScript (.js, .ts, .jsx, .tsx)
- Python (.py)
- Go (.go)
- Rust (.rs)
- Java/Kotlin (.java, .kt)
- Ruby (.rb)
- PHP (.php)
- C# (.cs)
- Swift (.swift)
Frameworks:
- React, Vue, Angular, Svelte (frontend)
- Next.js, Nuxt, Astro (full-stack)
- Express, FastAPI, Django, Rails, Laravel (backend)
- React Native, Flutter (mobile)
Databases:
- PostgreSQL, MySQL, MongoDB, Redis (check connection strings, ORM configs)
Tools:
- Testing frameworks (Jest, pytest, etc.)
- Linting/formatting (ESLint, Prettier, Black, etc.)
- Build tools (Vite, Webpack, Rollup)
- Package managers (npm, yarn, pnpm, pip, cargo)
4. Existing Claude Code Configuration
Check for existing .claude/ directory:
.claude/
├── agents/ # Existing custom agents
├── skills/ # Existing custom skills
├── commands/ # Existing custom commands
├── settings.json # Claude Code settings
└── CLAUDE.md # Project instructions
Catalog:
- Number of existing agents and their purposes
- Number of existing skills and their scopes
- Any custom commands defined
- Settings configuration (permissions, hooks, etc.)
5. Architecture Patterns
Identify common patterns:
- Monolith vs microservices
- REST vs GraphQL vs gRPC
- Monorepo vs single project
- Layered architecture, hexagonal, etc.
- State management approach
- Authentication/authorization patterns
Output Format
Provide a comprehensive but concise summary:
## Project Scope Summary
### Overview
- Name: [project name]
- Type: [web app, API, library, etc.]
- Size: [small/medium/large based on file count]
### Technology Stack
- Primary Language: [language]
- Frontend: [frameworks]
- Backend: [frameworks]
- Database: [databases]
- Key Libraries: [top 5-10 important deps]
### Architecture
- Pattern: [monolith/microservices/etc.]
- Structure: [brief description]
- Key Directories: [list main dirs]
### Existing Claude Setup
- Agents: [count] - [list names if few]
- Skills: [count] - [list names if few]
- Custom Commands: [count]
- Settings: [notable configs]
### Notable Findings
- [any important observations about the codebase]
Tools Available
Use these tools as needed:
Read- Read file contentsGlob- Find files by patternGrep- Search for patterns in filesBash- Run shell commands
Guidelines
- Be thorough but efficient - don't read every file
- Focus on understanding the big picture
- Note any unusual or noteworthy patterns
- Identify potential areas that might need specialized expertise
- If the project is very large, sample key directories rather than exhaustively listing everything
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?