task-runner

📁 neversight/skills.sh_feed 📅 14 days ago
1
总安装量
1
周安装量
#45828
全站排名
安装命令
npx skills add https://github.com/neversight/skills.sh_feed --skill task-runner

Agent 安装分布

mcpjam 1
claude-code 1
kilo 1
replit 1
junie 1
windsurf 1

Skill 文档

Task Runner

Purpose

Execute project-specific commands using just, a modern command runner that’s simpler than make and works cross-platform.

Tools

Tool Command Use For
just just List available recipes
just just test Run specific recipe

Usage Examples

Basic Usage

# List all available recipes
just

# Run a recipe
just test
just build
just lint

# Run recipe with arguments
just deploy production

# Run specific recipe from subdirectory
just --justfile backend/justfile test

Common justfile Recipes

# Example justfile

# Run tests
test:
    pytest tests/

# Build project
build:
    npm run build

# Lint code
lint:
    ruff check .
    eslint src/

# Start development server
dev:
    npm run dev

# Clean build artifacts
clean:
    rm -rf dist/ build/ *.egg-info/

# Deploy to environment
deploy env:
    ./scripts/deploy.sh {{env}}

Discovery

# Check if justfile exists
just --summary

# Show recipe details
just --show test

# List recipes with descriptions
just --list

When to Use

  • First check: just to see available project commands
  • Running tests: just test
  • Building: just build
  • Any project-specific task
  • Cross-platform command running

Best Practice

Always check for a justfile when entering a new project:

just --list

This shows what commands are available without reading documentation.