Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问clear审计通过

justjust 搜索

Agent Skill

just 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/seckatie/katies-ai-skills --skill just

简介

用于处理 GitHub 仓库、Issue 和 Pull Request。

  • 适合围绕代码变更或协作事项进行信息整理。
  • 可结合来源仓库和安装命令继续核验具体用法。
  • 安装前建议确认权限范围和维护状态。just 属于待分类类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

just - Command Runner

just is a command runner that lets you save and run project-specific commands (called recipes) in a justfile. It's similar to make but focused purely on running commands, not building software.

Documentation Files

This skill includes the complete official documentation from the just repository:

  • README.md - Comprehensive documentation including installation, syntax reference, features, and examples (this is the primary reference)
  • GRAMMAR.md - Formal grammar specification for justfile syntax
  • CHANGELOG.md - Version history and release notes
  • CONTRIBUTING.md - Contribution guidelines
  • LICENSE - CC0 1.0 Universal license
  • examples/ - Example justfiles for various use cases

Quick Reference

Basic Justfile Structure

# This is a comment
variable := "value"

# Recipe with no dependencies
recipe-name:
    echo "Running recipe"

# Recipe with dependencies
build: clean compile
    echo "Build complete"

# Recipe with parameters
greet name:
    echo "Hello, {{name}}!"

# Recipe with default parameter
serve port="8080":
    python -m http.server {{port}}

Running Recipes

just                    # Run default recipe (first in file)
just recipe-name        # Run specific recipe
just recipe arg1 arg2   # Run recipe with arguments
just --list             # List available recipes
just --show recipe      # Show recipe source
just --dry-run recipe   # Show what would run without executing
just --choose           # Interactive recipe selection (requires fzf)

Key Features

  • Recipe Parameters - Pass arguments to recipes
  • Variables - Define and use variables with :=
  • String Interpolation - Use {{variable}} in recipes
  • Dotenv Support - Automatically loads .env files
  • Shebang Recipes - Write recipes in Python, Node, Ruby, etc.
  • Conditional Logic - Use if expressions and functions
  • Dependencies - Recipes can depend on other recipes
  • Private Recipes - Prefix with _ to hide from listing
  • Documentation - Add doc comments with # comment above recipes
  • Cross-Platform - Works on Linux, macOS, Windows, BSD

Common Settings

# Load .env file
set dotenv-load

# Use different shell
set shell := ["bash", "-c"]

# Export all variables as environment variables
set export

# Allow recipes with same name as built-in functions
set allow-duplicate-recipes

# Fail immediately on error
set shell := ["bash", "-uc"]

Built-in Functions

# Path functions
home_dir := home_directory()
current := justfile_directory()
parent := parent_directory(current)

# String functions
upper := uppercase("hello")
lower := lowercase("HELLO")
replaced := replace("hello", "l", "x")
trimmed := trim("  spaces  ")

# Environment
value := env_var("HOME")
value_or_default := env_var_or_default("VAR", "default")

# OS detection
os := os()
arch := arch()

# Conditionals
result := if os() == "linux" { "Linux" } else { "Other" }

Shebang Recipes (Other Languages)

# Python recipe
python-example:
    #!/usr/bin/env python3
    import sys
    print(f"Python version: {sys.version}")

# Node.js recipe
node-example:
    #!/usr/bin/env node
    console.log("Hello from Node!");

# Bash with strict mode
bash-example:
    #!/usr/bin/env bash
    set -euxo pipefail
    echo "Strict bash mode"

Common Use Cases

When the user asks to:

  • Create a justfile - Reference README.md for syntax and examples
  • Add a recipe - Check README.md for recipe syntax patterns
  • Use variables/interpolation - See README.md variable section
  • Set up for different OS - Check cross-platform and shell settings
  • Write recipes in Python/Node/etc - See shebang recipes section
  • Understand grammar - Reference GRAMMAR.md for formal specification
  • Check version changes - Reference CHANGELOG.md

Tips

  • Start recipe names with _ to make them private (hidden from just --list)
  • Use @ at start of line to suppress command echoing
  • Use - at start of line to continue on error
  • Recipes are run from the justfile's directory by default
  • Use just --fmt to format your justfile
  • Shell completion scripts are available for bash, zsh, fish, powershell, and more

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.02%
按下载量换算21

windsurf

21.82%
按下载量换算15

trae

16.44%
按下载量换算12

OpenCode

13.76%
按下载量换算10

Codex

7.9%
按下载量换算6

Antigravity

3.75%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills