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

configure-makefile配置生成文件

Agent Skill

configure-makefile 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,212

周安装

51

GitHub Stars

28

下载量

424
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-makefile

简介

configure-makefile 用于检查 Makefile 是否符合 GNU 标准与项目惯例。

  • 适用于遗留系统的构建脚本规范化改造。configure-makefile 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 提供常见目标如 install、uninstall 等模板。
  • 包含文件修改操作,需确认与 Justfile 的排他性选择。
  • 建议在文档中明确标注不再维护原有脚本。

SKILL.md

/configure:makefile

Check and configure project Makefile against project standards.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up a new Makefile for a project that requires MakeProject can use Just instead — use /configure:justfile (preferred)
Auditing existing Makefile for missing standard targetsWriting complex build rules with dependencies — consult GNU Make documentation
Ensuring Makefile follows team conventions (help target, PHONY, colors)Project uses a language-native build system (cargo, go build) exclusively
Running CI/CD compliance checks on Makefile structureMigrating from Makefile to Justfile — use /configure:justfile which handles migration
Adding language-specific build/test/lint targets to existing MakefileDebugging a specific Make target — run make -n <target> directly

Context

  • Project root:!pwd
  • Makefile exists:!find. -maxdepth 1 -name 'Makefile'
  • Makefile targets:!grep -E '^[a-zA-Z_-]+:' Makefile
  • Package files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \)
  • Docker files:!find. -maxdepth 1 \(-name 'Dockerfile' -o -name 'docker-compose.yml' -o -name 'compose.yml' \)
  • Server files:!find src -maxdepth 1 \(-name 'server.*' -o -name 'main.*' \)

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report Makefile compliance status without modifications
  • --fix: Apply fixes automatically without prompting

Required Makefile targets: help, test, build, clean, lint

Execution

Execute this Makefile compliance check:

Step 1: Detect project type

Read the context values and determine project type (in order):

  1. Python: pyproject.toml or requirements.txt present
  2. Node: package.json present
  3. Rust: Cargo.toml present
  4. Go: go.mod present
  5. Generic: None of the above

Check for service indicators (start/stop needed):

  • Has docker-compose.yml or compose.yml -> Docker Compose service
  • Has Dockerfile + HTTP server code -> Container service
  • Has src/server.* or src/main.* -> Application service

Step 2: Analyze existing Makefile targets

If Makefile exists, check against required targets:

Required targets for all projects:

TargetPurpose
helpDisplay available targets (default goal)
testRun test suite
buildBuild project artifacts
cleanRemove temporary files and build artifacts
lintRun linters

Additional targets (context-dependent):

TargetWhen Required
startIf project has runnable service
stopIf project has background service
formatIf project uses auto-formatters

Step 3: Run compliance checks

CheckStandardSeverity
File existsMakefile presentFAIL if missing
Default goal.DEFAULT_GOAL:= helpWARN if missing
PHONY declarationsAll targets marked .PHONYWARN if missing
Colored outputColor variables definedINFO
Help targetAuto-generated from commentsWARN if missing
Language-specificCommands match project typeFAIL if mismatched

Step 4: Generate compliance report

Print a report showing:

  • Project type (detected)
  • Each target with PASS/FAIL status and the command used
  • Makefile structural checks (default goal, PHONY, colors, help)
  • Missing targets list
  • Issue count

If --check-only is set, stop here.

Step 5: Create or update Makefile (if --fix or user confirms)

  1. Missing Makefile: Create from standard template using the detected project type
  2. Missing targets: Add targets with appropriate language-specific commands
  3. Missing defaults: Add .DEFAULT_GOAL, .PHONY, color variables
  4. Missing help: Add auto-generated help target using awk comment parsing

Use the language-specific commands below:

Python (uv-based):

  • lint: @uv run ruff check.
  • format: @uv run ruff format.
  • test: @uv run pytest
  • build: @docker build -t {{PROJECT_NAME}}.
  • clean: @find. -type f -name "*.pyc" -delete + remove cache dirs

Node.js:

  • lint: @npm run lint
  • format: @npm run format
  • test: @npm test
  • build: @npm run build
  • clean: @rm -rf node_modules/ dist/.next/.turbo/

Rust:

  • lint: @cargo clippy -- -D warnings
  • format: @cargo fmt
  • test: @cargo nextest run
  • build: @cargo build --release
  • clean: @cargo clean

Go:

  • lint: @golangci-lint run
  • format: @gofmt -s -w.
  • test: @go test./...
  • build: @go build -o bin/{{PROJECT_NAME}}
  • clean: @rm -rf bin/ dist/ + @go clean

Step 6: Update standards tracking

Update .project-standards.yaml:

components:
  makefile: "2025.1"

Step 7: Print final report

Print a summary of changes applied, targets added, and suggest running make help to verify.

For the universal Makefile template structure, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check/configure:makefile --check-only
Auto-fix all issues/configure:makefile --fix
List existing targetsgrep -E '^[a-zA-Z_-]+:' Makefile
Dry-run a targetmake -n <target>
Show default goal`make -p \grep '.DEFAULT_GOAL'`

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply fixes automatically

Examples

# Check current Makefile compliance
/configure:makefile --check-only

# Create/update Makefile for Python project
/configure:makefile --fix

# Check compliance and prompt for fixes
/configure:makefile

See Also

  • /configure:all - Run all compliance checks
  • /configure:workflows - GitHub Actions workflows
  • /configure:dockerfile - Docker configuration

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.47%
按下载量换算159

Claude

28.05%
按下载量换算119

Cursor

16.24%
按下载量换算69

Gemini CLI

8.84%
按下载量换算37

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills