From makesmith
Use when adding Makefile linting to pre-commit configuration, or when Makefiles have inconsistent formatting
npx claudepluginhub jugrajsingh/skillgarden --plugin makesmithThis skill is limited to using the following tools:
Add Makefile linting to pre-commit configuration using mbake.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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