Generate pre-commit hooks for Makefile linting with mbake
Generates and configures pre-commit hooks to automatically lint Makefiles using mbake.
npx claudepluginhub jugrajsingh/skillgardenThis skill is limited to using the following tools:
Add Makefile linting to pre-commit configuration using mbake.
mbake is a Makefile formatter and linter.
pip install mbake
mbake format --check Makefile
Glob: Makefile, */Makefile, **/Makefile
If no Makefiles found, report and exit.
Glob: .pre-commit-config.yaml
If exists, merge mbake hook. If not, create minimal config.
Use a local hook since mbake doesn't have an official pre-commit repo:
# Makefile linting
- repo: local
hooks:
- id: mbake
name: mbake format
entry: mbake format --check
language: python
additional_dependencies:
- mbake
files: (^|/)Makefile$
types:
- file
Added Makefile linting to pre-commit:
Hook: mbake (local)
Files: Makefile, */Makefile
Install mbake: pip install mbake
Commands:
mbake format Makefile # Format in place
mbake format --check Makefile # Check only (CI mode)
--check flag (fails if formatting needed)If hook fails:
mbake format Makefile
git add Makefile
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.