Security
prowler-commit - Claude MCP Skill
Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.
SEO Guide: Enhance your AI agent with the prowler-commit tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to creates professional git commits following conventional-commits format. trigger: when creating commi... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md## Critical Rules - ALWAYS use conventional-commits format: `type(scope): description` - ALWAYS keep the first line under 72 characters - ALWAYS ask for user confirmation before committing - NEVER be overly specific (avoid counts like "6 subsections", "3 files") - NEVER include implementation details in the title - NEVER use `-n` flag unless user explicitly requests it - NEVER use `git push --force` or `git push -f` (destructive, rewrites history) - NEVER proactively offer to commit - wait for user to explicitly request it --- ## Commit Format ``` type(scope): concise description - Key change 1 - Key change 2 - Key change 3 ``` ### Types | Type | Use When | |------|----------| | `feat` | New feature or functionality | | `fix` | Bug fix | | `docs` | Documentation only | | `chore` | Maintenance, dependencies, configs | | `refactor` | Code change without feature/fix | | `test` | Adding or updating tests | | `perf` | Performance improvement | | `style` | Formatting, no code change | ### Scopes | Scope | When | |-------|------| | `api` | Changes in `api/` | | `ui` | Changes in `ui/` | | `sdk` | Changes in `prowler/` | | `mcp` | Changes in `mcp_server/` | | `skills` | Changes in `skills/` | | `ci` | Changes in `.github/` | | `docs` | Changes in `docs/` | | *omit* | Multiple scopes or root-level | --- ## Good vs Bad Examples ### Title Line ``` # GOOD - Concise and clear feat(api): add provider connection retry logic fix(ui): resolve dashboard loading state chore(skills): add Celery documentation docs: update installation guide # BAD - Too specific or verbose feat(api): add provider connection retry logic with exponential backoff and jitter (3 retries max) chore(skills): add comprehensive Celery documentation covering 8 topics fix(ui): fix the bug in dashboard component on line 45 ``` ### Body (Bullet Points) ``` # GOOD - High-level changes - Add retry mechanism for failed connections - Document task composition patterns - Expand configuration reference # BAD - Too detailed - Add retry with max_retries=3, backoff=True, jitter=True - Add 6 subsections covering chain, group, chord - Update lines 45-67 in dashboard.tsx ``` --- ## Workflow 1. **Analyze changes** ```bash git status git diff --stat HEAD git log -3 --oneline # Check recent commit style ``` 2. **Draft commit message** - Choose appropriate type and scope - Write concise title (< 72 chars) - Add 2-5 bullet points for significant changes 3. **Present to user for confirmation** - Show files to be committed - Show proposed message - Wait for explicit confirmation 4. **Execute commit** ```bash git add <files> git commit -m "$(cat <<'EOF' type(scope): description - Change 1 - Change 2 EOF )" ``` --- ## Decision Tree ``` Single file changed? āā Yes ā May omit body, title only āā No ā Include body with key changes Multiple scopes affected? āā Yes ā Omit scope: `feat: description` āā No ā Include scope: `feat(api): description` Fixing a bug? āā User-facing ā fix(scope): description āā Internal/dev ā chore(scope): fix description Adding documentation? āā Code docs (docstrings) ā Part of feat/fix āā Standalone docs ā docs: or docs(scope): ``` --- ## Commands ```bash # Check current state git status git diff --stat HEAD # Standard commit git add <files> git commit -m "type(scope): description" # Multi-line commit git commit -m "$(cat <<'EOF' type(scope): description - Change 1 - Change 2 EOF )" # Amend last commit (same message) git commit --amend --no-edit # Amend with new message git commit --amend -m "new message" ```
Signals
Information
- Repository
- prowler-cloud/prowler
- Author
- prowler-cloud
- Last Sync
- 3/12/2026
- Repo Updated
- 3/12/2026
- Created
- 1/23/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
CLAUDE
CLAUDE.md
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.