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

configure-justfile配置只是文件

Agent Skill

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

总安装

1,259

周安装

53

GitHub Stars

28

下载量

441
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

configure-justfile 用于创建符合项目标准的 Justfile 替代 Makefile。

  • 适用于需要更简洁语法和现代特性的构建系统升级。
  • 提供常用任务模板如 build、test、clean 等。
  • 包含文件写入操作,需确认团队接受度与技术债处理方案。
  • 建议保留原有 Makefile 作为过渡备用。

SKILL.md

/configure:justfile

Check and configure project Justfile against project standards.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up a new Justfile for a projectProject already uses Make exclusively and migration is not desired — use /configure:makefile
Auditing existing Justfile for missing standard recipesWriting complex custom recipes — use justfile-expert skill
Migrating from Makefile to JustfileProject has no task runner needs (single-file scripts)
Ensuring Justfile follows team conventions (groups, comments, settings)Debugging a specific recipe failure — use direct just commands
Running CI/CD compliance checks on project task runnersOnly need to list available recipes — run just --list directly

Context

  • Project root:!pwd
  • Justfile:!find. -maxdepth 1 \(-name 'justfile' -o -name 'Justfile' \)
  • Makefile:!find. -maxdepth 1 -name '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' \)
  • Env file:!find. -maxdepth 1 -name '.env'
  • Project standards:!find. -maxdepth 1 -name '.project-standards.yaml'

Parameters

Parse from command arguments:

  • --check-only: Report compliance status without modifications (CI/CD mode)
  • --fix: Apply fixes automatically without prompting

Execution

Execute this Justfile compliance check:

Step 1: Detect Justfile and project type

  1. Check for justfile or Justfile in project root
  2. If exists, read and analyze current recipes and settings
  3. Detect project type from file indicators:
IndicatorProject Type
pyproject.toml or requirements.txtPython
package.jsonNode.js
Cargo.tomlRust
go.modGo
None of the aboveGeneric

Step 2: Analyze required and optional recipes

Check for required recipes:

RecipePurposeSeverity
defaultAlias to help (first recipe)FAIL if missing
helpDisplay available recipesFAIL if missing
testRun test suiteFAIL if missing
lintRun lintersFAIL if missing
buildBuild project artifactsWARN if missing
cleanRemove temporary filesWARN if missing

Check for context-dependent recipes:

RecipeWhen RequiredSeverity
formatIf project uses auto-formattersWARN
startIf project has runnable serviceINFO
stopIf project has background serviceINFO
devIf project supports watch modeINFO

Step 3: Check compliance settings

Validate Justfile settings:

CheckStandardSeverity
File existsjustfile presentFAIL if missing
Default recipeFirst recipe is defaultWARN if missing
Dotenv loadingset dotenv-load presentINFO
Help recipeLists all recipesFAIL if missing
Language-specificCommands match project typeFAIL if mismatched
Recipe commentsRecipes have descriptionsINFO

Step 4: Generate compliance report

Print a formatted compliance report:

Justfile Compliance Report
==============================
Project Type: python (detected)
Justfile: Found

Recipe Status:
  default ✅ PASS
  help    ✅ PASS (just --list)
  test    ✅ PASS (uv run pytest)
  lint    ✅ PASS (uv run ruff check)
  build   ✅ PASS (docker build)
  clean   ✅ PASS
  format  ✅ PASS (uv run ruff format)
  start   ⚠️  INFO (not applicable)
  stop    ⚠️  INFO (not applicable)
  dev     ✅ PASS (uv run uvicorn --reload)

Settings Status:
  dotenv-load         ✅ PASS
  positional-arguments ℹ️  INFO (not set)

Missing Recipes: none
Issues: 0 found

If --check-only, stop here.

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

If --fix flag or user confirms:

  1. Missing Justfile: Create from standard template based on project type
  2. Missing recipes: Add recipes with appropriate commands
  3. Missing settings: Add set dotenv-load if .env exists
  4. Missing help: Add help recipe with just --list

Use language-specific commands from the template section below.

Step 6: Update standards tracking

Update .project-standards.yaml:

components:
  justfile: "2025.1"

Justfile Template

Universal Structure

# Justfile for {{PROJECT_NAME}}
# Run `just` or `just help` to see available recipes

set dotenv-load
set positional-arguments

# Default recipe - show help
default:
    @just --list

# Show available recipes with descriptions
help:
    @just --list --unsorted

####################
# Development
####################

# Run linters
lint:
    {{LINT_COMMAND}}

# Format code
format:
    {{FORMAT_COMMAND}}

# Run tests
test *args:
    {{TEST_COMMAND}} {{args}}

# Development mode with watch
dev:
    {{DEV_COMMAND}}

####################
# Build & Deploy
####################

# Build project
build:
    {{BUILD_COMMAND}}

# Clean build artifacts
clean:
    {{CLEAN_COMMAND}}

# Start service
start:
    {{START_COMMAND}}

# Stop service
stop:
    {{STOP_COMMAND}}

Language-Specific Commands

Python (uv-based):

lint:
    uv run ruff check .

format:
    uv run ruff format .
    uv run ruff check --fix .

test *args:
    uv run pytest {{args}}

dev:
    uv run uvicorn app:app --reload

build:
    docker build -t {{PROJECT_NAME}} .

clean:
    find . -type f -name "*.pyc" -delete
    find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true
    rm -rf .pytest_cache .ruff_cache .coverage htmlcov dist build *.egg-info

Node.js (Bun-based):

lint:
    bun run lint

format:
    bun run format

test *args:
    bun test {{args}}

dev:
    bun run dev

build:
    bun run build

clean:
    rm -rf node_modules dist .next .turbo .cache

Rust:

lint:
    cargo clippy -- -D warnings

format:
    cargo fmt

test *args:
    cargo nextest run {{args}}

dev:
    cargo watch -x run

build:
    cargo build --release

clean:
    cargo clean

Go:

lint:
    golangci-lint run

format:
    gofmt -s -w .
    goimports -w .

test *args:
    go test ./... {{args}}

dev:
    air

build:
    go build -o bin/{{PROJECT_NAME}} ./cmd/{{PROJECT_NAME}}

clean:
    rm -rf bin dist
    go clean -cache

Detection Logic

Service detection (start/stop needed):

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

Dev mode detection:

  • Python: Has FastAPI/Flask/Django -> uvicorn/flask/manage.py with reload
  • Node: Has dev script in package.json
  • Rust: Has cargo-watch in dependencies
  • Go: Has air.toml or main.go

Migration from Makefile

If a Makefile exists but no Justfile:

  1. Detect project type from Makefile commands
  2. Suggest creating Justfile with equivalent recipes
  3. Optionally keep Makefile for backwards compatibility

Agentic Optimizations

ContextCommand
Quick compliance check/configure:justfile --check-only
Auto-fix all issues/configure:justfile --fix
List existing recipesjust --list
Verify specific recipe existsjust --summary
Check Justfile syntaxjust --evaluate 2>&1

Flags

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

Examples

# Check current Justfile compliance
/configure:justfile --check-only

# Create/update Justfile for Python project
/configure:justfile --fix

# Check compliance and prompt for fixes
/configure:justfile

See Also

  • /configure:makefile - Makefile configuration (legacy)
  • /configure:all - Run all compliance checks
  • /configure:workflows - GitHub Actions workflows
  • /configure:dockerfile - Docker configuration
  • justfile-expert skill - Comprehensive Just expertise

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.07%
按下载量换算150

Claude

28.79%
按下载量换算127

Cursor

19.89%
按下载量换算88

Gemini CLI

10.15%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills