Help us improve
Share bugs, ideas, or general feedback.
From makesmith
Use when adding Makefile linting to pre-commit configuration, or when Makefiles have inconsistent formatting
npx claudepluginhub jugrajsingh/skillgarden --plugin makesmithHow this skill is triggered — by the user, by Claude, or both
Slash command
/makesmith:generating-precommitThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add Makefile linting to pre-commit configuration using mbake.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
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