NightShift

(★ 14)

Two skills that turn Claude Code from an interactive tool into an autonomous worker. Nightshift runs planned project work overnight. 24x7 runs an endless task queue.

파일 탐색기

  • .gitignore
  • 24x7-guide_de.md
  • 24x7-guide_en.md
  • CHANGELOG.md
  • gemeinsam.py
  • index.html
  • LICENSE
  • nightshift-guide_de.md
  • nightshift-guide_en.md
  • README.md
  • SECURITY.md
  • VERSION

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

claude

설명 보기 ▼

코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.

claude prompt

프롬프트로 실행:

claude update

`claude`를 업데이트:

claude mcp list

지정된 MCP 서버 목록을 표시:

🔍

eval

설명 보기 ▼

현재 쉘에서 인수를 단일 명령으로 실행하고 그 결과를 반환.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-eval>.

eval "{{echo foo}}"

"foo" 인수를 사용하여 `echo`를 호출:

eval "{{foo=bar}}"

현재 쉘에서 변수를 설정:

🔍

git add

설명 보기 ▼

Stage changed files for a commit.

git add {{path/to/file}}

Stage a file for a commit:

git add {{[-A|--all]}}

Add all files (tracked and untracked):

git add .

Add all files recursively starting from the current folder:

🔍

git checkout

설명 보기 ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

git diff

설명 보기 ▼

Show changes to tracked files.

git diff

Show unstaged changes:

git diff HEAD

Show all uncommitted changes (including staged ones):

git diff --staged

Show only staged (added, but not yet committed) changes:

🔍

git log

설명 보기 ▼

Show a history of commits.

git log

Show the sequence of commits starting from the current one, in reverse chronological order of the Git repository in the current working directory:

git log {{[-p|--patch]}} {{path/to/file_or_directory}}

Show the history of a particular file or directory, including differences:

git log --stat

Show an overview of which file(s) changed in each commit:

🔍

git stash

설명 보기 ▼

Stash local Git changes in a temporary area.

git stash

Stash the current uncommitted changes:

git stash {{[-u|--include-untracked]}}

Stash current changes, including new untracked files:

git stash {{[-p|--patch]}}

Interactively select parts of changed files for stashing:

🔍

nohup

설명 보기 ▼

터미널이 종료되어도 프로세스가 계속 실행되도록 허용.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/nohup-invocation.html>.

nohup {{command}} {{argument1 argument2 ...}}

터미널 종료 후에도 계속 실행되는 프로세스 시작:

nohup {{command}} {{argument1 argument2 ...}} &

백그라운드 모드에서 `nohup` 실행:

nohup {{path/to/script.sh}} &

터미널 종료 후에도 계속 실행되는 셸 스크립트 실행:

🔍

unzip

설명 보기 ▼

Zip 아카이브에서 파일/디렉토리를 추출.
관련 항목: `zip`.
더 많은 정보: <https://manned.org/unzip>.

unzip {{path/to/archive1.zip path/to/archive2.zip ...}}

특정 아카이브에서 모든 파일/디렉토리를 현재 디렉토리에 추출:

unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}

아카이브에서 파일/디렉토리를 특정 경로로 추출:

unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}

아카이브에서 파일/디렉토리를 추출하고 추출된 파일 이름과 함께 `stdout`으로 출력:

🔍

useradd

설명 보기 ▼

새 사용자 생성.
관련 항목: `users`, `userdel`, `usermod`.
더 많은 정보: <https://manned.org/useradd>.

sudo useradd {{username}}

새 사용자 생성:

sudo useradd {{[-u|--uid]}} {{id}} {{username}}

특정 사용자 ID로 새 사용자 생성:

sudo useradd {{[-s|--shell]}} {{path/to/shell}} {{username}}

특정 셸로 새 사용자 생성:

🔍

compact

설명 보기 ▼

NTFS 파티션의 파일 및 디렉터리 압축 상태를 확인하거나 변경.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/compact>.

compact

현재 디렉터리의 파일 압축 상태 표시:

compact /c {{path\to\file}}

지정한 파일 압축:

compact /u {{path\to\file}}

지정한 파일 압축 해제:

# 프로젝트 배지

// repository documentation