### Setup Project Dependencies Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Guitar/CLAUDE.md Installs necessary build tools and libraries for the Guitar project on Debian-based systems. ```bash sudo apt install build-essential ruby qmake6 libqt6core6 libqt6gui6 libqt6svg6-dev libqt6core5compat6-dev zlib1g-dev libgl1-mesa-dev libssl-dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Basic-Memory/CLAUDE.md Use 'make install' for a full installation or 'pip install -e "[dev]"' for editable installation with development dependencies. ```bash make install ``` ```bash pip install -e ".[dev]" ``` -------------------------------- ### Install Dev Dependencies Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/docs/TESTING.md Run this command to install all necessary development dependencies for the project. ```bash make install ``` -------------------------------- ### Clean Install Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Comm/CLAUDE.md Perform a clean installation of project dependencies. ```bash yarn cleaninstall ``` -------------------------------- ### Install Dependencies with pip Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Alternative method to install project dependencies using pip. Recommended for simpler setups. ```bash pip install -e . ``` -------------------------------- ### Run Development Server Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/JSBeeb/CLAUDE.md Starts the development server. This command should not be run directly; ask the user to start it as needed. ```bash npm start ``` -------------------------------- ### Install GitHub CLI Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/slash-commands/create-pull-request/create-pull-request.md Install the GitHub CLI on macOS, Windows, or Linux. Follow the provided link for Linux installation instructions. ```bash # macOS brew install gh ``` ```bash # Windows winget install --id GitHub.cli ``` ```bash # Linux # Follow instructions at https://github.com/cli/cli/blob/trunk/docs/install_linux.md ``` -------------------------------- ### Install Dependencies with uv Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Use this command to install project dependencies with uv. Ensure you are in the project root. ```bash uv pip install --system -e . ``` -------------------------------- ### Install Dependencies Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/slash-commands/husky/husky.md Installs project dependencies. If this command fails, it indicates a critical issue, and you should abort unless the error is a simple syntax mistake. ```bash pnpm i ``` -------------------------------- ### Run Development Server Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Comm/CLAUDE.md Start the development server for a specific workspace. Replace `[workspace]` with the target workspace name. ```bash yarn workspace [workspace] dev ``` -------------------------------- ### Install Dependencies for Customer Support Agent Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/official-documentation/Anthropic-Quickstarts/CLAUDE.md Install the necessary Node.js dependencies for the customer support agent project. ```bash npm install ``` -------------------------------- ### Setup Computer-Use Demo Environment Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/official-documentation/Anthropic-Quickstarts/CLAUDE.md Execute these commands to set up the environment, build the Docker image, and run the computer-use demo container. Ensure your ANTHROPIC_API_KEY is set. ```bash ./setup.sh ``` ```bash docker build . -t computer-use-demo:local ``` ```bash docker run -e ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY -v $(pwd)/computer_use_demo:/home/computeruse/computer_use_demo/ -v $HOME/.anthropic:/home/computeruse/.anthropic -p 5900:5900 -p 8501:8501 -p 6080:6080 -p 8080:8080 -it computer-use-demo:local ``` -------------------------------- ### Install Dev Dependencies with pip Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Installs development dependencies using pip. Use this if uv is not preferred. ```bash pip install -e .[dev] ``` -------------------------------- ### Build Project with Gradle Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AI-IntelliJ-Plugin/CLAUDE.md Use Gradle wrapper to build the entire project. Ensure you have a compatible Java version installed. ```bash ./gradlew build ``` -------------------------------- ### Run Financial Data Analyst Dev Server Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/official-documentation/Anthropic-Quickstarts/CLAUDE.md Start the development server for the financial data analyst project. ```bash npm run dev ``` -------------------------------- ### Install Dependencies with Poetry Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Lamoom-Python/CLAUDE.md Use this command to install project dependencies using Poetry. ```bash poetry install ``` -------------------------------- ### Install Dev Dependencies with uv Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Installs development-specific dependencies using uv. This includes tools for testing and linting. ```bash uv pip install --system -e .[dev] ``` -------------------------------- ### Install Dependencies from Lock File with uv Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Synchronizes project dependencies with the uv lock file for consistent environments. ```bash uv pip sync --system uv.lock ``` -------------------------------- ### Run the AWS MCP Server Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Starts the AWS MCP server using the default transport. ```bash python -m aws_mcp_server ``` -------------------------------- ### Run Development MCP Inspector Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Basic-Memory/CLAUDE.md Start the development MCP Inspector tool by running 'make run-inspector'. ```bash make run-inspector ``` -------------------------------- ### MCP Prompt: AI Assistant Guide Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Basic-Memory/CLAUDE.md Provides guidance on effectively using Basic Memory tools for AI assistants. ```python ai_assistant_guide() ``` -------------------------------- ### Run Customer Support Agent Dev Server Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/official-documentation/Anthropic-Quickstarts/CLAUDE.md Start the development server for the customer support agent. Variants are available for different UI layouts. ```bash npm run dev ``` ```bash npm run dev:left ``` ```bash npm run dev:right ``` ```bash npm run dev:chat ``` -------------------------------- ### Build Project (Release) Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Guitar/CLAUDE.md Configures and builds the project in release mode using qmake. ```bash qmake "CONFIG+=release" ../Guitar.pro && make ``` -------------------------------- ### Build Project (Debug) Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Guitar/CLAUDE.md Configures and builds the project in debug mode using qmake. ```bash qmake "CONFIG+=debug" ../Guitar.pro && make ``` -------------------------------- ### Build Project (Debug) Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Guitar/CLAUDE.md Configures and builds the project in debug mode using qmake and make. ```bash mkdir build && cd build && qmake6 ../Guitar.pro && make -j8 ``` -------------------------------- ### Serve Test Server for Browser Commands Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Cursor-Tools/CLAUDE.md Starts a local test server for browser command testing. Place HTML files in `tests/commands/browser/` and access them via `http://localhost:3000/filename.html`. This is a long-running process. ```bash pnpm serve-test ``` -------------------------------- ### Conventional Commit Examples Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Course-Builder/CLAUDE.md Examples of conventional commit messages, showing the format `(): ` for various types and scopes. ```git fix(egh): convert SanityReference to SanityArrayElementReference ``` ```git style(mdx-mermaid): make flowcharts nicer ``` ```git refactor(utils): implement SEO utility package with re-export pattern ``` ```git feat(utils-email): create email utilities package with sendAnEmail ``` -------------------------------- ### Configure Perplexity MCP Server with NPM Global Installation Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Perplexity-MCP/CLAUDE.md After a global NPM installation, configure Claude Desktop to use 'npx' to run the perplexity-mcp command. This simplifies execution. ```json { "mcpServers": { "perplexity": { "command": "npx", "args": [ "perplexity-mcp" ], "env": { "PERPLEXITY_API_KEY": "your_perplexity_api_key" } } } } ``` -------------------------------- ### Run Service Discovery Wrapper Script Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Network-Chronicles/CLAUDE.md Execute the wrapper script for service discovery. ```bash ./nc-discover-services.sh ``` -------------------------------- ### Build Production Version Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/JSBeeb/CLAUDE.md Builds the production-ready version of the project. ```bash npm run build ``` -------------------------------- ### MCP Tool: Get Current Project Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Basic-Memory/CLAUDE.md Retrieve information and statistics about the currently active Basic Memory project. ```python get_current_project() ``` -------------------------------- ### Prepare Project Environment Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Guitar/CLAUDE.md Executes a Ruby script to prepare the development environment. ```bash ruby prepare.rb ``` -------------------------------- ### Run Server with SSE Transport Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/AWS-MCP-Server/CLAUDE.md Starts the AWS MCP server specifically using the Server-Sent Events (SSE) transport. ```bash AWS_MCP_TRANSPORT=sse python -m aws_mcp_server ``` -------------------------------- ### Helper Function Example Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/JSBeeb/CLAUDE.md Demonstrates the preference for helper functions to handle repetitive operations, promoting cleaner and more maintainable code. ```javascript function appendParam(url, param) { const separator = url.includes('?') ? '&' : '?'; return `${url}${separator}${param}`; } ``` -------------------------------- ### Sync Knowledge with Basic Memory CLI Source: https://github.com/hesreallyhim/awesome-claude-code/blob/main/resources/claude.md-files/Basic-Memory/CLAUDE.md Use `basic-memory sync` to synchronize knowledge. Add `--watch` to continuously monitor for changes. ```bash basic-memory sync ``` ```bash basic-memory sync --watch ```