원클릭으로
just
Reference for `just`, the command runner. Use when working in a project with a `justfile` or when the user mentions `just` or `justfile`.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Reference for `just`, the command runner. Use when working in a project with a `justfile` or when the user mentions `just` or `justfile`.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
WorkShield MCP로 IT·SW 계약서를 표준계약서와 결정론적으로 비교하고 표준조항·법령 원문을 조회한다. WorkShield MCP 서버 연결, 계약 유형 확인, 전체·선택 조항 검토, 카테고리별 법령 원문 조회, 결과 상태 해석 또는 streamable HTTP 연동이 필요한 경우에 사용한다.
Reference for `modelcontextprotocol/python-sdk` version 1.28.1 (v1.x specification). Use when building or interacting with Model Context Protocol (MCP) servers and clients using FastMCP in Python.
대한민국 관공서 및 기업에서 사용하는 다양한 문서 포맷(HWP, HWPX, HWPML, PDF, XLSX, DOCX)을 파싱, 생성, 비교, 수정하기 위해 [kordoc](https://github.com/chrisryugj/kordoc) CLI를 사용하는 에이전트의 행동 지침
대한민국 법령 및 판례 리서치/분석을 위한 [korean-law-mcp](https://github.com/chrisryugj/korean-law-mcp) CLI 및 도구를 사용하는 에이전트의 행동 지침
SOC 직업 분류 기준
| name | just |
| description | Reference for `just`, the command runner. Use when working in a project with a `justfile` or when the user mentions `just` or `justfile`. |
just --dump Print justfilejust --evaluate Print variable valuesjust --help Print detailed command-line syntax helpjust --list Print recipes with descriptionsjust --show <RECIPE> Print recipe sourcejust --summary Print recipes without descriptiosnjust Run default recipejust <RECIPE> Run specific recipejust <RECIPE> <ARG1> <ARG2 Run recipe with argumentsexecutable := 'main'
# compile main.c
compile:
cc main.c -o {{ executable }}
# run main
run: compile
./{{ executable }}
# run test
test name: compile
./bin/test {{ name }}
# start webserver
serve port='8080':
python -m http.server {{port}}
# publish current tag
publish:
#!/usr/bin/env bash
set -euxo pipefail
tag=`git describe --tags --exact-match`
./bin/check-tag $tag
git push origin $tag
The comment proceeding a recipe is used as its doc-comment, and included in
just --list.
By default, each line of a recipe runs in a fresh shell. Recipes whose bodies
start with #! are written to a file and executed as a script.
Commonly used commands and scripts should be turned into just recipes.
상세한 문법은 문서를 참고하세요.