Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

makefile-generator生成文件生成器

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

3,246

周安装

138

GitHub Stars

197

下载量

1,137
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:makefile-generator(生成文件生成器)
来源仓库:https://github.com/akin-ozer/cc-devops-skills
仓库路径:skills/makefile-generator
安装命令:
npx skills add https://github.com/akin-ozer/cc-devops-skills --skill makefile-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akin-ozer/cc-devops-skills --skill makefile-generator

简介

用于辅助云资源、部署、容器、基础设施和运维自动化任务。

  • 适合检查配置、整理部署步骤、分析资源状态或生成排障思路。
  • 使用时需明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作。
  • 涉及删除资源、重启服务或修改网络配置时应先确认影响范围。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写操作。

SKILL.md

Makefile Generator

Overview

Generate production-ready Makefiles with best practices for C/C++, Python, Go, Java, and generic projects. Features GNU Coding Standards compliance, standard targets, security hardening, and automatic validation via devops-skills:makefile-validator skill.

When to Use

  • Creating new Makefiles from scratch
  • Setting up build systems for projects (C/C++, Python, Go, Java)
  • Implementing build automation and CI/CD integration
  • Converting manual build processes to Makefiles
  • The user asks to "create", "generate", or "write" a Makefile

Do NOT use for: Validating existing Makefiles (use devops-skills:makefile-validator), debugging (use make -d), or running builds.

Trigger Phrases

Use this skill when prompts look like:

  • "Generate a Makefile for a Go service"
  • "Create a production Makefile with install/test/help targets"
  • "Write a Makefile for a C project with dependency tracking"
  • "Add standard GNU targets to this existing Makefile"

Generation Workflow

Stage 1: Gather Requirements

Collect information for the following categories. Use AskUserQuestion when information is missing or ambiguous:

CategoryInformation Needed
ProjectLanguage (C/C++/Python/Go/Java), structure (single/multi-directory)
BuildSource files, output artifacts, dependencies, build order
InstallPREFIX location, directories (bin/lib/share), files to install
Targetsall, install, clean, test, dist, help (which are needed?)
ConfigCompiler, flags, pkg-config dependencies, cross-compilation

When to Use AskUserQuestion (MUST ask if any apply):

ConditionExample Question
Language not specified"What programming language is this project? (C/C++/Go/Python/Java)"
Project structure unclear"Is this a single-directory or multi-directory project?"
Docker requested but registry unknown"Which container registry should be used? (docker.io/ghcr.io/custom)"
Multiple binaries possible"Should this build a single binary or multiple executables?"
Install targets needed but paths unclear"Where should binaries be installed? (default: /usr/local/bin)"
Cross-compilation mentioned"What is the target platform/architecture?"

When to Skip AskUserQuestion (proceed with defaults):

  • User explicitly provides all required information
  • Standard project type with obvious defaults (e.g., "Go project with Docker" → use standard Go+Docker patterns)
  • User says "use defaults" or "standard setup"

Default Assumptions (when not asking):

  • Single-directory project structure
  • PREFIX=/usr/local
  • Standard targets: all, build, test, clean, install, help
  • No cross-compilation

Stage 2: Documentation Lookup

When REQUIRED (MUST perform lookup):

  • User requests integration with unfamiliar tools, frameworks, or build systems
  • Complex build patterns not covered in Stage 3 examples (e.g., Bazel, Meson, custom toolchains)
  • Docker/container integration (Dockerfile builds, multi-stage, registry push)
  • CI/CD platform-specific integration (GitHub Actions, GitLab CI, Jenkins)
  • Cross-compilation for unusual targets or embedded systems
  • Package manager integration (Conan, vcpkg, Homebrew formulas)
  • Multi-binary or multi-library projects
  • Version embedding via ldflags or build-time variables

When OPTIONAL (may skip external lookup):

  • Standard language patterns already covered in Stage 3 (C/C++, Go, Python, Java)
  • Simple single-binary projects with no external dependencies
  • User provides complete requirements with no ambiguity
  • Internal docs already cover the required pattern comprehensively

Lookup Process (follow in order):

  1. ALWAYS consult internal docs first using explicit file-open commands (primary source of truth): Full doc path map (prefer full paths for deterministic access): Doc Full Path Structure guide devops-skills-plugin/skills/makefile-generator/docs/makefile-structure.md Variables guide devops-skills-plugin/skills/makefile-generator/docs/variables-guide.md Targets guide devops-skills-plugin/skills/makefile-generator/docs/targets-guide.md Patterns guide devops-skills-plugin/skills/makefile-generator/docs/patterns-guide.md Optimization guide devops-skills-plugin/skills/makefile-generator/docs/optimization-guide.md Security guide devops-skills-plugin/skills/makefile-generator/docs/security-guide.md Requirement Read This Doc Docker/container targets .../docs/patterns-guide.md (Pattern 8: Docker Integration) Multi-binary projects .../docs/patterns-guide.md (Pattern 7: Multi-Binary Project) Go projects with version embedding .../docs/patterns-guide.md (Pattern 5: Go Project) Parallel builds, caching, ccache .../docs/optimization-guide.md Credentials, secrets, API keys .../docs/security-guide.md Complex dependencies, pattern rules .../docs/patterns-guide.md Order-only prerequisites .../docs/optimization-guide.md or .../docs/targets-guide.md Variables, assignment operators .../docs/variables-guide.md Deterministic open/read commands: # From repository root: sed -n '1,220p' devops-skills-plugin/skills/makefile-generator/docs/patterns-guide.md rg -n "Pattern 5|Pattern 8" devops-skills-plugin/skills/makefile-generator/docs/patterns-guide.md # From skill directory: sed -n '1,220p' docs/security-guide.md If shell commands are unavailable, use the environment's file-open/read capability on the same paths. Required Workflow Example (Docker + Go with version embedding): # Step 1: Read Go pattern rg -n "Pattern 5" devops-skills-plugin/skills/makefile-generator/docs/patterns-guide.md # Step 2: Read Docker pattern rg -n "Pattern 8" devops-skills-plugin/skills/makefile-generator/docs/patterns-guide.md # Step 3: Read security guidance sed -n '1,220p' devops-skills-plugin/skills/makefile-generator/docs/security-guide.md Then generate Makefile and list consulted docs in a header comment.
  2. Try context7 for external tool documentation (when internal docs don't cover a specific tool): # Only needed for tools/frameworks NOT covered in internal docs mcp__context7__resolve-library-id: "<tool-name>" mcp__context7__query-docs: query="<integration-topic>" # Example queries: # - For Docker: query="dockerfile best practices" # - For Go: query="go build ldflags" # - For specific tools: query="<tool> makefile integration" Fallback: If context7 is unavailable or returns nothing useful, record that and continue to Step 3.
  3. Fallback to WebSearch (only if pattern not found in internal docs OR context7): "<specific-feature>" makefile best practices 2025 Example: "docker makefile best practices 2025" Example: "go ldflags version makefile 2025" Trigger WebSearch when: Internal docs don't cover the specific integration AND context7 returns no relevant results.

Note: Document which internal docs you consulted in your response (add comment in generated Makefile header).

Stage 3: Generate Makefile

Optional helper-script fast path (for standard layouts):

# Generate template: TYPE NAME OUTPUT
bash scripts/generate_makefile_template.sh go myservice Makefile

# Add only selected standard targets
bash scripts/add_standard_targets.sh Makefile install clean help

Use manual authoring when requirements are complex (Docker release flow, multi-binary matrices, custom toolchains).

Header (choose one style)

Traditional (POSIX-compatible):

.DELETE_ON_ERROR:
.SUFFIXES:

Modern (GNU Make 4.0+, recommended):

SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
.SUFFIXES:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules

Standard Variables

# User-overridable (use ?=)
CC ?= gcc
CFLAGS ?= -Wall -Wextra -O2
PREFIX ?= /usr/local
DESTDIR ?=

# GNU installation directories
BINDIR ?= $(PREFIX)/bin
LIBDIR ?= $(PREFIX)/lib
INCLUDEDIR ?= $(PREFIX)/include

# Project-specific (use :=)
PROJECT := myproject
VERSION := 1.0.0
SRCDIR := src
BUILDDIR := build
SOURCES := $(wildcard $(SRCDIR)/*.c)
OBJECTS := $(SOURCES:$(SRCDIR)/%.c=$(BUILDDIR)/%.o)

Language-Specific Build Rules

C/C++:

$(TARGET): $(OBJECTS)
	$(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@

$(BUILDDIR)/%.o: $(SRCDIR)/%.c
	@mkdir -p $(@D)
	$(CC) $(CPPFLAGS) $(CFLAGS) -MMD -MP -c $< -o $@

-include $(OBJECTS:.o=.d)

Go:

$(TARGET): $(shell find . -name '*.go') go.mod
	go build -o $@ ./cmd/$(PROJECT)

Python:

.PHONY: build
build:
	python -m build

.PHONY: develop
develop:
	pip install -e .[dev]

Java:

$(BUILDDIR)/%.class: $(SRCDIR)/%.java
	@mkdir -p $(@D)
	javac -d $(BUILDDIR) -sourcepath $(SRCDIR) $<

Standard Targets

.PHONY: all clean install uninstall test help

## Build all targets
all: $(TARGET)

## Install to PREFIX
install: all
	install -d $(DESTDIR)$(BINDIR)
	install -m 755 $(TARGET) $(DESTDIR)$(BINDIR)/

## Remove built files
clean:
	$(RM) -r $(BUILDDIR) $(TARGET)

## Run tests
test:
	# Add test commands

## Show help
help:
	@echo "$(PROJECT) v$(VERSION)"
	@echo "Targets: all, install, clean, test, help"
	@echo "Override: make CC=clang PREFIX=/opt"

Stage 4: Validate and Format

Validation is required for every generated Makefile.

Validation Tool Preflight (default + fallback)

  1. Preferred path: run devops-skills:makefile-validator.
  2. If validator skill is unavailable: run local fallback checks: # Required fallback check (if make exists) make -f <Makefile> -n --dry-run # Structural fallback checks rg -n '^ {1,}\S' <Makefile> # suspicious space-indented recipe lines rg -n '^\.PHONY:' <Makefile>
  3. If make is unavailable: run structural checks only, report "partial validation due to missing make binary", and request user confirmation before claiming production readiness.

Required Validation Loop

1. Generate Makefile following stages above
2. Run validator skill (or fallback checks if unavailable)
3. Fix all errors (MUST have 0 errors before completion)
4. Apply formatting fixes (see "Formatting Step" below)
5. Fix warnings when feasible (SHOULD fix; explain if skipped)
6. Address info items for large/production projects
7. Re-run validation until checks pass
8. Output structured validation report (REQUIRED - see format below)

Formatting Step (REQUIRED)

When mbake reports formatting issues, you MUST either:

  1. Auto-apply formatting (preferred for minor issues): mbake format <Makefile>
  2. Explain why not applied (if formatting would break functionality): Formatting not applied because: - [specific reason, e.g., "heredoc syntax would be corrupted"] - Manual review recommended for: [specific lines]

If mbake is not installed or not executable, skip formatter execution and record: Formatting skipped: mbake unavailable in current environment.

Formatting Decision Guide:

mbake ReportAction
"Would reformat" with no specific issuesAuto-apply with mbake format
Specific whitespace/indentation issuesAuto-apply with mbake format
Issues in complex heredocs or multi-line stringsSkip formatting, explain in output
Issues in # bake-format off sectionsSkip (intentionally disabled)
mbake command unavailableSkip formatting, record tool-unavailable reason

Validation Pass Criteria:

LevelRequirementAction
Errors (0 required)Syntax errors, missing tabs, invalid targetsMUST fix before completion
Warnings (fix if feasible)Formatting issues, missing optimizationsSHOULD fix; explain if skipped
Info (address for production)Enhancement suggestions, style preferencesSHOULD address for production Makefiles

Known mbake False Positives (can be safely ignored):

The mbake validator may report warnings for valid GNU Make special targets. These are false positives and can be ignored:

mbake WarningActual StatusExplanation
"Unknown special target '.DELETE_ON_ERROR'"✅ ValidCritical GNU Make target that deletes failed build artifacts
"Unknown special target '.SUFFIXES'"✅ ValidStandard GNU Make target for disabling/setting suffix rules
"Unknown special target '.ONESHELL'"✅ ValidGNU Make 3.82+ feature for single-shell recipe execution
"Unknown special target '.POSIX'"✅ ValidPOSIX compliance declaration

Validation Report Output (REQUIRED)

After validation completes, you MUST output a structured report in the following format. This is not optional.

Required Report Format:

## Validation Report

**Result:** [PASSED / PASSED with warnings / FAILED]
**Errors:** [count]
**Warnings:** [count]
**Info:** [count]

### Errors Fixed
- [List each error and how it was fixed, or "None" if 0 errors]

### Warnings Addressed
- [List each warning that was fixed]

### Warnings Skipped (with reasons)
- [List each warning that was NOT fixed and explain why]
- Example: "mbake reports '.DELETE_ON_ERROR' as unknown - this is a valid GNU Make
  special target (false positive)"

### Formatting Applied
- [Yes/No] - [If No, explain why formatting was skipped]

### Info Items Addressed
- [List info items that were addressed for production Makefiles]
- [Or "N/A - simple project" if not applicable]

### Remaining Issues (if any)
- [List any issues requiring user attention]
- [Or "None - Makefile is production-ready"]

Example Complete Report:

## Validation Report

**Result:** PASSED with warnings
**Errors:** 0
**Warnings:** 2
**Info:** 1

### Errors Fixed
- None

### Warnings Addressed
- Fixed: Added error handling to install target (|| exit 1)

### Warnings Skipped (with reasons)
- mbake reports ".DELETE_ON_ERROR" as unknown - this is a valid and critical
  GNU Make special target that ensures failed builds don't leave corrupt files.
  See: https://www.gnu.org/software/make/manual/html_node/Special-Targets.html

### Formatting Applied
- Yes - Applied `mbake format` to fix whitespace issues

### Info Items Addressed
- Added .NOTPARALLEL for Docker targets (parallel safety)
- Added error handling for docker-push target

### Remaining Issues
- None - Makefile is production-ready

Common Info Items to Address:

Info ItemWhen to FixHow to Fix
"mkdir without order-only prerequisites"Large projects (>10 targets)Use `target: prereqs \$(BUILDDIR)` pattern
"recipe commands lack error handling"Critical operations (install, deploy)Add set -e in.SHELLFLAGS or use && chaining
"consider using ccache"Long compile timesAdd CC:= ccache $(CC) pattern
"parallel-sensitive commands detected"Docker/npm/pip targetsAdd .NOTPARALLEL: for affected targets or proper dependencies

Production-Quality Requirements (MUST address for Docker/deploy targets):

When generating Makefiles with Docker or deployment targets, you MUST apply these production patterns:

  1. Error Handling for docker-push: ## Push Docker image to registry (with error handling) docker-push: docker-build @echo "Pushing $(IMAGE)..." docker push $(IMAGE) || {echo "Failed to push $(IMAGE)"; exit 1;} docker push $(IMAGE_LATEST) || {echo "Failed to push $(IMAGE_LATEST)"; exit 1;}
  2. Parallel Safety for Docker targets: # Prevent parallel execution of Docker targets (race conditions).NOTPARALLEL: docker-build docker-push docker-run Or use proper dependencies to serialize: docker-push: docker-build # Ensures build completes before push docker-run: docker-build # Ensures build completes before run
  3. Install target error handling: install: $(TARGET) install -d $(DESTDIR)$(PREFIX)/bin || exit 1 install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/ || exit 1

Note: When validation shows info items about error handling or parallel safety, you MUST address them for any Makefile containing Docker, deploy, or install targets. Explain in your response which patterns were applied.

Validation Checklist:

  • Syntax correct (make -n passes)
  • All non-file targets have.PHONY
  • Tab indentation (not spaces)
  • No hardcoded credentials
  • User-overridable variables use ?=
  • .DELETE_ON_ERROR present
  • MAKEFLAGS optimizations included (Modern header)
  • Order-only prerequisites for build directories (large projects)
  • Error handling in critical recipes (install, deploy, docker-push)

Best Practices

Variables

  • ?= for user-overridable (CC, CFLAGS, PREFIX)
  • := for project-specific (SOURCES, OBJECTS)
  • Use pkg-config: CFLAGS += $(shell pkg-config --cflags lib)

Targets

  • Always declare .PHONY for non-file targets
  • Default target should be all
  • Use .DELETE_ON_ERROR for safety
  • Document with ## comments for help target

Directory Creation

Two approaches for creating build directories:

Simple (inline mkdir):

$(BUILDDIR)/%.o: $(SRCDIR)/%.c
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) -c $< -o $@

Optimized (order-only prerequisites): Prevents unnecessary rebuilds when directory timestamps change.

$(BUILDDIR):
	@mkdir -p $@

$(BUILDDIR)/%.o: $(SRCDIR)/%.c | $(BUILDDIR)
	$(CC) $(CFLAGS) -c $< -o $@

Use order-only prerequisites (|) for large projects with many targets.

Recipes

  • Use tabs, never spaces
  • Quote variables in shell: $(RM) "$(TARGET)"
  • Use @ prefix for quiet commands
  • Test with make -n first

Helper Scripts (Optional)

These scripts are optional convenience tools for quick template generation.

When to Use Scripts vs Manual Generation

ScenarioRecommendation
Simple, standard project (single binary, no special features)✅ Use generate_makefile_template.sh for speed
Complex project (Docker, multi-binary, custom patterns)❌ Use manual generation for full control
Adding targets to existing Makefile✅ Use add_standard_targets.sh
User has specific formatting/style requirements❌ Use manual generation
Rapid prototyping / proof-of-concept✅ Use scripts, customize later
Production-ready Makefile⚠️ Start with script, then customize manually

generate_makefile_template.sh

Generates a complete Makefile template for a specific project type. Script path: scripts/generate_makefile_template.sh

bash scripts/generate_makefile_template.sh [TYPE] [NAME] [OUTPUT_FILE]

Types: c, c-lib, cpp, go, python, java, generic

Example:

bash scripts/generate_makefile_template.sh go myservice
# Creates Makefile with Go patterns, version embedding, standard targets

bash scripts/generate_makefile_template.sh go myservice build/Makefile
# Writes template to build/Makefile (TYPE NAME OUTPUT)

add_standard_targets.sh

Adds missing standard GNU targets to an existing Makefile. Script path: scripts/add_standard_targets.sh

bash scripts/add_standard_targets.sh [MAKEFILE] [TARGETS...]
bash scripts/add_standard_targets.sh [TARGETS...]  # uses ./Makefile

Targets: all, install, uninstall, clean, distclean, test, check, help, dist

Example:

bash scripts/add_standard_targets.sh Makefile install uninstall help
# Adds install, uninstall, help targets if they don't exist

bash scripts/add_standard_targets.sh clean test
# Explicit-target mode: modifies ./Makefile

bash scripts/add_standard_targets.sh -n Makefile dist
# Dry-run mode: shows planned changes without editing files

Note: Manual generation following the Stage 3 patterns produces equivalent results but allows for more customization.

Helper Script Regression Smoke Tests

Run after modifying helper scripts or templates:

bash test/test_helper_scripts.sh

Done Criteria

Consider the task complete only when all checks below are satisfied:

  • Trigger matched and missing requirements were clarified (or documented defaults were applied).
  • Relevant internal docs were opened via explicit file paths before generation.
  • Generated Makefile has complete .PHONY coverage for non-file targets.
  • Go templates include optional go.sum handling and configurable GO_MAIN entrypoint.
  • Validation ran with makefile-validator (preferred) or documented fallback checks.
  • Formatting was applied with mbake, or skipped with an explicit tool-unavailable/compatibility reason.
  • Final response includes the required structured validation report.

Documentation

Detailed guides in docs/:

  • makefile-structure.md - Organization, layout, includes
  • variables-guide.md - Assignment operators, automatic variables
  • targets-guide.md - Standard targets,.PHONY, prerequisites
  • patterns-guide.md - Pattern rules, dependencies
  • optimization-guide.md - Parallel builds, caching
  • security-guide.md - Safe expansion, credential handling

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.67%
按下载量换算394

Claude

27.68%
按下载量换算315

Cursor

19.28%
按下载量换算219

Gemini CLI

9.01%
按下载量换算102

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/akin-ozer/cc-devops-skills --skill makefile-generator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills