Audits Makefiles for best practices, dependency graphs, recipe deduplication, portability, and optimization. Use for build system reviews, CI/CD updates, not new Makefile creation.
From pensivenpx claudepluginhub athola/claude-night-market --plugin pensiveThis skill uses the workspace's default tool permissions.
modules/best-practices.mdmodules/deduplication-patterns.mdmodules/dependency-graph.mdmodules/plugin-dogfood-checks.mdmodules/portability-checks.mdDesigns and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
makefile-review:context-mapped)makefile-review:dependency-graph)makefile-review:dedup-candidates)makefile-review:tooling-alignment)makefile-review:evidence-logged)Run pytest plugins/pensive/tests/skills/test_makefile_review.py to verify review logic.
Audit Makefiles for best practices, deduplication, and portability.
/makefile-review
makefile-review:context-mappedmakefile-review:dependency-graphmakefile-review:dedup-candidatesmakefile-review:tooling-alignmentmakefile-review:evidence-loggedmakefile-review:context-mapped)Confirm baseline:
pwd && git status -sb && git diff --stat
Verification: Run git status to confirm working tree state.
Find Make-related files:
rg -n "^include" -g'Makefile*'
rg --files -g '*.mk'
Document changed targets, project goals, and tooling requirements.
makefile-review:dependency-graph)@include modules/dependency-graph.md
makefile-review:dedup-candidates)@include modules/deduplication-patterns.md
makefile-review:tooling-alignment)@include modules/portability-checks.md
makefile-review:evidence-logged)Use imbue:proof-of-work to record command outputs with file:line references.
Summarize findings:
Load additional context as needed:
Best Practices & Examples: @include modules/best-practices.md
Plugin Dogfood Checks: @include modules/plugin-dogfood-checks.md - Makefile completeness analysis, target generation, and dogfooding validation.
## Summary
Makefile review findings
## Context
- Files reviewed: [list]
- Targets changed: [list]
## Dependency Analysis
[graph and issues]
## Duplication Candidates
### [D1] Repeated command
- Locations: [list]
- Recommendation: [pattern rule]
## Portability Issues
[cross-platform concerns]
## Missing Targets
- [ ] help
- [ ] format
- [ ] lint
## Recommendation
Approve / Approve with actions / Block
No Makefile found
Ensure Makefile or *.mk files exist in the project root or specify paths explicitly.
Include directives not resolved
Run rg -n "^include" -g'Makefile*' to trace include chains manually.