A collection of prompts, templates and slash commands for supercharging Claude Code.
git clone https://github.com/benjaminr/claude-code-essentials.gitA collection of prompts, templates and slash commands for supercharging Claude Code.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/benjaminr/claude-code-essentialsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm working on a [PROGRAMMING_LANGUAGE] project for [COMPANY] in the [INDUSTRY] sector. I need help with [SPECIFIC_TASK]. Can you provide me with a concise code snippet using best practices, along with a brief explanation of how it works?
# Code Snippet for Data Analysis in Python
```python
import pandas as pd
# Load the dataset
file_path = 'sales_data.csv'
data = pd.read_csv(file_path)
# Data cleaning
# Remove rows with missing values
data = data.dropna()
# Convert date column to datetime format
data['Date'] = pd.to_datetime(data['Date'])
# Data analysis
# Group by month and calculate total sales
monthly_sales = data.groupby(data['Date'].dt.to_period('M'))['Sales'].sum()
# Print the result
print(monthly_sales)
```
This code snippet demonstrates how to load, clean, and analyze sales data using Python's pandas library. It first loads the data from a CSV file, then removes any rows with missing values. The date column is converted to a datetime format to facilitate time-based analysis. Finally, the data is grouped by month, and the total sales for each month are calculated and printed.AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Service Management That Turns Chaos Into Control
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan