task-runner by 0xdarkmatter/claude-mods
npx skills add https://github.com/0xdarkmatter/claude-mods --skill task-runner使用 just 执行项目特定的命令,just 是一个比 make 更简单且跨平台工作的现代命令运行器。
| 工具 | 命令 | 用途 |
|---|---|---|
| just | just | 列出可用的配方 |
| just | just test | 运行特定配方 |
# 列出所有可用配方
just
# 运行一个配方
just test
just build
just lint
# 使用参数运行配方
just deploy production
# 从子目录运行特定配方
just --justfile backend/justfile test
# 示例 justfile
# 运行测试
test:
pytest tests/
# 构建项目
build:
npm run build
# 代码检查
lint:
ruff check .
eslint src/
# 启动开发服务器
dev:
npm run dev
# 清理构建产物
clean:
rm -rf dist/ build/ *.egg-info/
# 部署到环境
deploy env:
./scripts/deploy.sh {{env}}
Execute project-specific commands using just, a modern command runner that's simpler than make and works cross-platform.
| Tool | Command | Use For |
|---|---|---|
| just | just | List available recipes |
| just | just test | 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}}
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
# 检查 justfile 是否存在
just --summary
# 显示配方详情
just --show test
# 列出带描述的配方
just --list
just 查看可用的项目命令just testjust build进入新项目时始终检查是否存在 justfile:
just --list
这可以在不阅读文档的情况下显示可用的命令。
每周安装次数
23
代码仓库
GitHub 星标数
8
首次出现时间
Jan 24, 2026
安全审计
安装于
claude-code20
opencode20
gemini-cli19
codex19
cursor17
github-copilot15
# Check if justfile exists
just --summary
# Show recipe details
just --show test
# List recipes with descriptions
just --list
just to see available project commandsjust testjust buildAlways check for a justfile when entering a new project:
just --list
This shows what commands are available without reading documentation.
Weekly Installs
23
Repository
GitHub Stars
8
First Seen
Jan 24, 2026
Security Audits
Installed on
claude-code20
opencode20
gemini-cli19
codex19
cursor17
github-copilot15
SEO与AEO最佳实践指南:优化内容适配传统搜索与AI答案引擎
1,400 周安装