Loading...
Loading...
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.
npx skill4agent add 0xdarkmatter/claude-mods task-runner| Tool | Command | Use For |
|---|---|---|
| just | | List available recipes |
| just | | Run specific recipe |
# 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# 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}}# Check if justfile exists
just --summary
# Show recipe details
just --show test
# List recipes with descriptions
just --listjustjust testjust buildjust --list