LLM Skills
~/catalog/software architecture//project-setup

Assistant de configuration de projet

/project-setup

Set up new projects using an appropriate structure and best practices.

davila7davila7
30.6k
May 22, 2026
MIT License
// skill content

Project Setup Helper Set up new projects with proper structure and best practices. ## Purpose This command helps you set up new projects with proper directory structure, configuration files, and development environment. ## Usage `` /project-setup ` ## What this command does 1. **Creates project structure** with standard directories 2. **Sets up configuration files** (.gitignore, README, etc.) 3. **Initializes version control** and development tools 4. **Configures environment files** and dependencies 5. **Follows language-specific** conventions and best practices ## Project Structure Templates ### Generic Project Structure ` project-name/ ├── README.md # Project documentation ├── .gitignore # Git ignore rules ├── .env.example # Environment variables template ├── LICENSE # Project license ├── CHANGELOG.md # Version history ├── docs/ # Documentation │ ├── API.md │ ├── CONTRIBUTING.md │ └── DEPLOYMENT.md ├── src/ # Source code │ ├── main/ │ ├── utils/ │ └── config/ ├── tests/ # Test files │ ├── unit/ │ ├── integration/ │ └── fixtures/ ├── scripts/ # Build and deployment scripts │ ├── build.sh │ ├── deploy.sh │ └── setup.sh └── config/ # Configuration files ├── development.yml ├── production.yml └── testing.yml ` ### Web Application Structure ` web-app/ ├── public/ # Static assets │ ├── index.html │ ├── favicon.ico │ └── assets/ │ ├── css/ │ ├── js/ │ └── images/ ├── src/ # Source code │ ├── components/ # Reusable components │ ├── pages/ # Page components │ ├── services/ # API services │ ├── utils/ # Utility functions │ ├── styles/ # Stylesheets │ └── config/ # Configuration ├── tests/ # Test files └── build/ # Build output ` ### API Project Structure ` api-project/ ├── src/ │ ├── controllers/ # Request handlers │ ├── models/ # Data models │ ├── services/ # Business logic │ ├── middleware/ # Custom middleware │ ├── routes/ # API routes │ ├── utils/ # Utility functions │ └── config/ # Configuration ├── tests/ │ ├── unit/ │ ├── integration/ │ └── e2e/ ├── docs/ │ ├── api-spec.yml # OpenAPI specification │ └── README.md └── scripts/ ├── seed-db.js # Database seeding └── migrate.js # Database migrations ` ## Essential Configuration Files ### .gitignore Template `gitignore # Dependencies node_modules/ *.log npm-debug.log* # Environment files .env .env.local .env.production # Build outputs dist/ build/ *.tgz # IDE files .vscode/ .idea/ *.swp *.swo # OS files .DS_Store Thumbs.db # Temporary files *.tmp *.temp ` ### README.md Template `markdown # Project Name Brief description of what this project does. ## Features - Feature 1 - Feature 2 - Feature 3 ## Installation \\\bash # Clone the repository git clone https://github.com/username/project-name.git # Install dependencies npm install # Copy environment file cp .env.example .env \\\ ## Usage \\\bash # Start development server npm run dev # Run tests npm test # Build for production npm run build \\\ ## API Documentation [API documentation](docs/API.md) ## Contributing Please read [CONTRIBUTING.md](docs/CONTRIBUTING.md) for details. ## License This project is licensed under the MIT License - see [LICENSE](LICENSE) file. ` ### .env.example Template `env # Application NODE_ENV=development PORT=3000 HOST=localhost # Database DB_HOST=localhost DB_PORT=5432 DB_NAME=myapp DB_USER=username DB_PASSWORD=password # API Keys API_KEY=your-api-key-here SECRET_KEY=your-secret-key-here # External Services REDIS_URL=redis://localhost:6379 EMAIL_SERVICE_API_KEY=your-email-key ` ## Development Environment Setup ### Package.json Scripts `json { "scripts": { "start": "node src/index.js", "dev": "nodemon src/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/", "lint:fix": "eslint src/ --fix", "format": "prettier --write src/", "build": "webpack --mode production", "build:dev": "webpack --mode development", "clean": "rm -rf dist/" } } ` ### Git Initialization `bash # Initialize Git repository git init # Add initial files git add . # Create initial commit git commit -m "feat: initial project setup - Add project structure - Configure development environment - Add documentation templates - Set up testing framework" # Add remote origin git remote add origin https://github.com/username/project-name.git # Push to remote git push -u origin main `` ## Language-Specific Setup ### Node.js/JavaScript

// original public source
davila7/claude-code-templates
/cli-tool/templates/common/.claude/commands/project-setup.md
License: MIT License
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/project-setup.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/main/cli-tool/templates/common/.claude/commands/project-setup.md"
Then in Claude Code, type /project-setup to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
Creatordavila7
Stars 30.6k
LicenseMIT License
UpdatedMay 22, 2026
Format.md
AccessFree
// similar

Skills Software architecture

View allarrow_forward