generating-smart-commits: This skill generates conventional commit messages using AI analysis of staged Git changes. It automatically determines the commit type (feat, fix, docs, etc.), identifies breaking changes, and formats the message according to conventional commit standards. Use this when asked to create a commit message, write a Git commit, or when the user uses the `/commit-smart` or `/gc` command. It is especially useful after changes have been staged with `git add`.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
npx agent-skills-cli listSkill Instructions
name: generating-smart-commits
description: |
This skill generates conventional commit messages using AI analysis of staged Git changes. It automatically determines the commit type (feat, fix, docs, etc.), identifies breaking changes, and formats the message according to conventional commit standards. Use this when asked to create a commit message, write a Git commit, or when the user uses the /commit-smart or /gc command. It is especially useful after changes have been staged with git add.
allowed-tools: Read, Write, Edit, Grep, Glob, Bash
version: 1.0.0
Overview
This skill empowers Claude to create well-formatted, informative commit messages automatically. By analyzing staged changes, it generates messages that adhere to conventional commit standards, saving developers time and ensuring consistency.
How It Works
- Analyzing Staged Changes: The skill examines the changes currently staged in the Git repository.
- Generating Commit Message: Based on the analysis, it constructs a conventional commit message, including type, scope, and description.
- Presenting for Confirmation: The generated message is displayed to the user for review and approval.
When to Use This Skill
This skill activates when you need to:
- Create a commit message from staged changes.
- Generate a conventional commit message.
- Use the
/commit-smartor/gccommand. - Automate the commit message writing process.
Examples
Example 1: Adding a New Feature
User request: "Generate a commit message for adding user authentication"
The skill will:
- Analyze the staged changes related to user authentication.
- Generate a commit message like:
feat(auth): Implement user authentication module. - Present the message to the user for confirmation.
Example 2: Fixing a Bug
User request: "/gc fix for login issue"
The skill will:
- Analyze the staged changes related to the login issue.
- Generate a commit message like:
fix(login): Resolve issue with incorrect password validation. - Present the message to the user for confirmation.
Best Practices
- Stage Related Changes: Ensure that only related changes are staged before generating the commit message.
- Review Carefully: Always review the generated commit message before committing to ensure accuracy and clarity.
- Provide Context: If necessary, provide additional context in the request to guide the AI analysis (e.g.,
/gc - emphasize that this fixes a security vulnerability).
Integration
This skill integrates directly with the Git repository through Claude Code. It complements other Git-related skills by providing a streamlined way to create informative and standardized commit messages.
More by jeremylongshore
View allgenerating-docker-compose-files: This skill enables Claude to generate Docker Compose configurations for multi-container applications. It leverages best practices for production-ready deployments, including defining services, networks, volumes, health checks, and resource limits. Claude should use this skill when the user requests a Docker Compose file, specifies application architecture involving multiple containers, or mentions needs for container orchestration, environment variables, or persistent data management in a Docker environment. Trigger terms include "docker-compose", "docker compose file", "multi-container", "container orchestration", "docker environment", "service definition", "volume management", "network configuration", "health checks", "resource limits", and ".env files".
Automatically manages PostgreSQL backups with pgBackRest and Wasabi S3 storage when working with FairDB databases Activates when you request "fairdb backup manager" functionality.
managing-environment-configurations: This skill enables Claude to manage environment configurations and secrets across different deployments using the environment-config-manager plugin. It is invoked when the user needs to generate, update, or retrieve configuration settings for various environments (e.g., development, staging, production). Use this skill when the user explicitly mentions "environment configuration," "secrets management," "deployment configuration," or asks to "generate config files". It helps streamline DevOps workflows by providing production-ready configurations based on best practices.
setting-up-log-aggregation: This skill sets up log aggregation solutions using ELK (Elasticsearch, Logstash, Kibana), Loki, or Splunk. It generates production-ready configurations and setup code based on specific requirements and infrastructure. Use this skill when the user requests to set up logging infrastructure, configure log aggregation, deploy ELK stack, deploy Loki, deploy Splunk, or needs help with observability. It is triggered by terms like "log aggregation," "ELK setup," "Loki configuration," "Splunk deployment," or similar requests for centralized logging solutions.
