GitHub Stars
40
User Rating
Not Rated
Favorites
0
Views
96
Forks
2
Issues
4
Installation
Difficulty
AdvancedEstimated Time
20-45 minutes
Installation
Move to your project directory and run the setup:
Configuration files will be generated under
bash
$ cd /path/to/your-project
$ npx claude-crew@latest setup
.claude-crew through an interactive setup process.
> Note: Claude Crew can be used with multiple projects simultaneously. Each project generates its own unique configuration, and tool settings are created with project-specific naming to prevent conflicts. For example:
```json
// Project A: /path/to/project-a/.claude-crew/mcp.json
{
"tools": {
"project_a_run_test": { ... },
"project_a_check_types": { ... }
}
}
// Project B: /path/to/project-b/.claude-crew/mcp.json
{
"tools": {
"project_b_run_test": { ... },
"project_b_check_types": { ... }