Agent Skills
› NeverSight/learn-skills.dev
› task-runner
task-runner
GitHub用于通过 just 命令运行项目特定任务。支持列出可用任务、执行测试构建 lint 等常见操作,适用于跨平台项目命令执行及新项目中快速发现可用脚本的场景。
Trigger Scenarios
运行测试
构建项目
列出任务
检查可用命令
运行脚本
项目命令
Install
npx skills add NeverSight/learn-skills.dev --skill task-runner -g -y
SKILL.md
Frontmatter
{
"name": "task-runner",
"description": "Run project commands with just. Check for justfile in project root, list available tasks, execute common operations like test, build, lint. Triggers on: run tests, build project, list tasks, check available commands, run script, project commands.",
"allowed-tools": "Bash Glob",
"compatibility": "Requires just CLI tool. Install: brew install just (macOS) or cargo install just (cross-platform)."
}
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:
justto 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.
Version History
- e0220ca Current 2026-07-05 20:34


