Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
akin-ozer avatar

Makefile Validator

  • 392 installs
  • 286 repo stars
  • Updated July 26, 2026
  • akin-ozer/cc-devops-skills

makefile-validator is a Claude Code skill that validates Makefile syntax, targets, conventions, and security anti-patterns for developers who need deterministic build-config checks before merge or in CI.

About

makefile-validator is a Claude Code skill from akin-ozer/cc-devops-skills that audits Makefile, makefile, and *.mk files with a local-first, deterministic validation pipeline. The skill runs GNU make dry-run syntax checks, mbake validate and format --check stages inside a temporary Python venv, and custom security and best-practice pattern scans with optional checkmake and unmake coverage when installed. It reports line numbers, fix suggestions, and color-coded exit codes where 0 means clean, 1 signals warnings, and 2 blocks on errors. Developers reach for makefile-validator before merging Makefile changes, during code review of build configs, or when wiring the bundled GitHub Action wrapper into CI/CD. The validator enforces .PHONY declarations, tab indentation, circular dependency detection, parallelism safety, and credential-leak grep checks so broken or unsafe recipes fail early.

  • Makefile syntax and target validation
  • Catches broken recipes before CI
  • Enforces naming and dependency conventions
  • Reduces local vs CI build drift
  • Fast feedback on DevOps scripts

Makefile Validator by the numbers

  • 392 all-time installs (skills.sh)
  • Ranked #304 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akin-ozer/cc-devops-skills --skill makefile-validator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs392
repo stars286
Last updatedJuly 26, 2026
Repositoryakin-ozer/cc-devops-skills

How do you validate Makefile syntax before CI merge?

Validate Makefile syntax, targets, and conventions before merge to prevent broken builds and inconsistent developer workflows.

Who is it for?

DevOps engineers and maintainers who own repo Makefiles and need mbake-backed linting plus GNU make syntax checks in local runs or GitHub Actions.

Skip if: Projects using only npm scripts or Bazel with no Makefiles, or teams wanting a one-line syntax check without layered mbake and security auditing.

When should I use this skill?

A developer edits a Makefile, sees mysterious build failures, or wants CI to block merge on Makefile syntax and best-practice violations.

What you get

Validation report with line numbers, mbake format findings, exit code 0/1/2 summary, and fix suggestions for Makefile targets.

  • Color-coded validation report
  • CI-ready exit code
  • Line-number fix suggestions

By the numbers

  • Uses exit codes 0, 1, and 2 for clean, warning, and error CI gating
  • Runs a 6-stage pipeline: preflight, GNU make dry-run, mbake validate, mbake format, custom checks, optional checkmake/un

Files

SKILL.mdMarkdownGitHub ↗

Makefile Validator

Overview

Use this skill to validate Makefiles with a local-first, deterministic flow.

Default validator entrypoint:

bash scripts/validate_makefile.sh <makefile-path>

Validation layers:

1. Dependency preflight (python3, pip3, make) 2. GNU make syntax check (make -n --dry-run) when make is available 3. mbake validate 4. mbake format --check 5. Custom security, best-practice, and optimization checks 6. Optional checkmake and unmake checks when installed

Trigger Guidance

Use this skill when the request includes Makefile quality, linting, validation, hardening, or troubleshooting.

Trigger Phrases

  • "Validate this Makefile"
  • "Lint my .mk file"
  • "Find issues in this build Makefile"
  • "Check Makefile security problems"
  • "Review this Makefile before CI"

Non-Trigger Examples

  • Creating a brand new Makefile from scratch (use makefile-generator)
  • Running build targets as part of delivery
  • General shell scripting work unrelated to Makefiles

Deterministic Execution Model

Run from this skill directory for shortest commands:

cd devops-skills-plugin/skills/makefile-validator

Step 1: Preflight

1. Confirm target file exists and is readable. 2. Confirm whether file edits are allowed (writable) or only suggestions can be returned (read-only). 3. Prefer the default validator path first; use fallbacks only when blocked by environment constraints.

Step 2: Baseline Validation (Default Path)

# From skill directory
bash scripts/validate_makefile.sh <makefile-path>

# From repository root
bash devops-skills-plugin/skills/makefile-validator/scripts/validate_makefile.sh <makefile-path>

Always record:

  • command executed
  • exit code
  • summary counts (Errors, Warnings, Info)
  • issue locations reported by tools

Step 3: Interpret Output and Exit Code

Exit codeMeaningExpected summary lineAction
0no blocking findingsValidation PASSEDoptional improvements only
1warning-only resultValidation PASSED with warningsfix recommended; merge policy dependent
2error resultValidation FAILED - errors must be fixedfix required, then rerun

Step 4: Progressive Reference Loading

Open only the docs required by the current findings.

Finding typeReference doc
.PHONY, .DELETE_ON_ERROR, .ONESHELL, variable usage, performance structuredocs/best-practices.md
tabs vs spaces, dependency mistakes, credential patterns, anti-patternsdocs/common-mistakes.md
mbake behavior, formatter flags, known mbake caveatsdocs/bake-tool.md

Step 5: Fix + Rerun Loop

After applying fixes, rerun:

bash scripts/validate_makefile.sh <makefile-path>

Loop rules:

1. Stop only when no new errors are introduced. 2. If warnings remain intentionally, document why they are accepted. 3. Always report the latest rerun exit code.

How to Open Docs

Use explicit file-open commands so paths are unambiguous.

From repository root:

sed -n '1,220p' devops-skills-plugin/skills/makefile-validator/docs/best-practices.md
sed -n '1,220p' devops-skills-plugin/skills/makefile-validator/docs/common-mistakes.md
sed -n '1,220p' devops-skills-plugin/skills/makefile-validator/docs/bake-tool.md
rg -n "PHONY|DELETE_ON_ERROR|ONESHELL|tab|credential|mbake" devops-skills-plugin/skills/makefile-validator/docs/*.md

From devops-skills-plugin/skills/makefile-validator:

sed -n '1,220p' docs/best-practices.md
sed -n '1,220p' docs/common-mistakes.md
sed -n '1,220p' docs/bake-tool.md
rg -n "PHONY|DELETE_ON_ERROR|ONESHELL|tab|credential|mbake" docs/*.md

If shell commands are unavailable, use the environment's file-open/read actions on the same paths.

Fallback Behavior

Use these only when the default validator path cannot run fully.

ConstraintFallback actionReporting requirement
python3 or pip3 unavailableRun limited checks (make -f <file> -n --dry-run if make exists, plus focused grep checks)State that mbake stages were skipped and coverage is reduced
pip3 install mbake fails (offline/proxy/index issue)Keep syntax/custom checks that still work; defer formatter/linter stagesReport install failure and request rerun in a network-enabled environment
make unavailableContinue with non-syntax stages; script already downgrades syntax stageExplicitly note syntax coverage was skipped
checkmake or unmake unavailableContinue; these are optional stagesNote optional lint/portability coverage not executed
target file is read-onlyProvide patch suggestions onlyMark response as advisory only
command execution unavailableProvide static review from file contents and docsMark result as non-executed analysis

Minimal fallback commands:

# Syntax only (when make exists)
make -f <makefile-path> -n --dry-run

# Focused quick checks
grep -n "^\\.DELETE_ON_ERROR:" <makefile-path>
grep -n "^\\.PHONY:" <makefile-path>
grep -nE "^(  |    |        )[a-zA-Z@\\$\\(]" <makefile-path>

Example Outcomes Mapped to Exit Codes

Clean Result (exit 0)

Errors:   0
Warnings: 0
Info:     2
✓ Validation PASSED

Warning-Only Result (exit 1)

Errors:   0
Warnings: 3
Info:     1
⚠ Validation PASSED with warnings

Error Result (exit 2)

Errors:   2
Warnings: 1
Info:     0
⚠ Validation FAILED - errors must be fixed

Troubleshooting Quick Start

1. Verify required tools:

command -v python3 pip3 make

2. Isolate GNU make syntax failures:

make -f <makefile-path> -n --dry-run

3. Check likely tab-indentation violations:

grep -nE "^(  |    |        )[a-zA-Z@\\$\\(]" <makefile-path>

4. Rerun validator with plain output and capture log:

NO_COLOR=1 bash scripts/validate_makefile.sh <makefile-path> > /tmp/makefile-validator.log 2>&1
echo "exit=$? log=/tmp/makefile-validator.log"

5. If mbake install keeps failing, validate in a network-enabled shell or with an internal PyPI mirror, then rerun the full validator.

Skill Paths

makefile-validator/
├── SKILL.md
├── scripts/
│   └── validate_makefile.sh
├── docs/
│   ├── best-practices.md
│   ├── common-mistakes.md
│   └── bake-tool.md
└── examples/
    ├── good-makefile.mk
    └── bad-makefile.mk

Done Criteria

This skill update is complete when all are true:

1. Trigger guidance is explicit and easy to identify. 2. Execution flow is deterministic (preflight -> run -> interpret -> docs -> rerun). 3. "How to open docs" instructions include exact commands and paths. 4. Example outcomes are explicitly tied to exit codes (0, 1, 2). 5. Fallback behavior is documented for missing tools and constrained environments. 6. Troubleshooting quick-start is concise and runnable. 7. Frontmatter name and description remain unchanged.

Related skills

How it compares

Pick makefile-validator over generic shell linters when you need mbake-backed Makefile formatting plus GNU make syntax and security pattern checks in one deterministic script.

FAQ

What does makefile-validator check?

makefile-validator checks GNU make syntax via dry-run, mbake formatting and lint rules, .PHONY and tab indentation, circular dependencies, parallelism safety, and custom security patterns. Optional checkmake and unmake stages add portability coverage when installed.

What exit codes does makefile-validator return?

makefile-validator returns exit code 0 when clean, 1 for warnings, and 2 for blocking errors. CI pipelines can gate merges on code 2 and optionally warn on code 1 using the bundled GitHub Action wrapper.

DevOps & CI/CDdevopstesting

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.