用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/enuno/claude-command-and-control --skill just命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
GitBook documentation platform. Use when creating, publishing, or managing docs sites — content structure, blocks, Git Sync, customization, AI search, collaboration, and the GitBook API.
MemPalace local-first AI memory system. Use when setting up persistent memory for Claude Code sessions, mining project files or conversation transcripts, querying past context, configuring MCP tools, managing the knowledge graph, or troubleshooting palace operations.
LangChain AWS integration — ChatBedrockConverse (Claude/Nova/Llama/Mistral on Bedrock), BedrockEmbeddings, AmazonKnowledgeBasesRetriever, BedrockAgentsRunnable, BedrockRerank, BedrockPromptCachingMiddleware, CodeInterpreterToolkit, BrowserToolkit (computer use), Neptune graph chains, and SageMaker endpoint.
基于 SOC 职业分类
正在显示 SKILL.md
| name | just |
| description | Just command runner for saving and running project-specific commands |
Comprehensive assistance with Just, a handy command runner for saving and running project-specific commands. Just uses a justfile with make-inspired syntax but designed as a general-purpose task executor rather than a build system.
This skill should be triggered when:
justfile recipesBasic Recipe:
recipe-name:
echo 'This is a recipe!'
# Silent recipe (@ suppresses echo)
silent-recipe:
@echo 'This runs quietly'
Recipe with Parameters:
build target='all':
@echo 'Building {{target}}…'
# Variadic parameters
test *files:
pytest {{files}}
Recipe with Dependencies:
build:
cc main.c -o main
test: build
./test --all
Shebang Recipes (multi-language support):
python:
#!/usr/bin/env python3
print('Hello from Python!')
node:
#!/usr/bin/env node
console.log('Hello from Node!');
Variables and Expressions:
compiler := 'gcc'
flags := '-Wall -O2'
build:
{{compiler}} {{flags}} main.c -o main
just — Run default recipejust RECIPE — Run specific recipejust --list — List all recipesjust --show RECIPE — Display recipe definitionjust --choose — Interactive recipe selector (requires fzf)just --fmt — Format justfilejust --dump — Output formatted justfileExample 1 (basic justfile):
# Default recipe runs when you type 'just'
[default]
build:
cargo build --release
# Recipe with confirmation prompt
[confirm]
deploy:
kubectl apply -f deployment.yaml
# Platform-specific recipes
[linux]
install:
apt-get install my-package
[macos]
install:
brew install my-package
Example 2 (with variables and .env):
# Load .env file
set dotenv-load
# Variables
app_name := env('APP_NAME', 'myapp')
version := `git describe --tags`
# Recipe using variables
build:
docker build -t {{app_name}}:{{version}} .
# Conditional logic
deploy environment='staging':
#!/usr/bin/env bash
if [ "{{environment}}" = "production" ]; then
echo "Deploying to production..."
else
echo "Deploying to staging..."
fi
Example 3 (modules and imports):
# Import external justfile
import 'tasks/docker.just'
# Use module system
mod database 'tasks/db.just'
# Call module recipe
migrate: database::migrate
This skill includes comprehensive documentation in references/:
Use view to read specific reference files when detailed information is needed.
Start with the basic recipe patterns above. A simple justfile with a few recipes is all you need to get started. Just provides helpful error messages that point to specific issues in your justfile.
[linux], [macos], [windows]recipe: dep1 dep2.env files with set dotenv-loadThe quick reference section contains common patterns. For complete syntax and advanced features, consult the reference files.
.PHONY declarations needed.env files--choose (uses fzf)[default], [private], [confirm], platform-specificCargo (Rust):
cargo install just
Homebrew (macOS/Linux):
brew install just
Pre-built binaries:
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin
Package managers: Available via apt, pacman, dnf, chocolatey, scoop, and 15+ others
Shell Settings:
# Set default shell (Unix-like)
set shell := ["bash", "-uc"]
# Windows PowerShell
set windows-shell := ["powershell.exe", "-Command"]
Common Settings:
set dotenv-load # Auto-load .env files
set export # Export all variables as environment vars
set positional-arguments # Pass args as positional ($1, $2, etc.)
Organized documentation extracted from official Just documentation and README:
Add helper scripts here for common Just automation tasks.
Add example justfiles or templates here.
Syntax highlighting available for:
just-mode)--unstable flag or set unstableTo refresh this skill with updated documentation: