agentic-stack

(★ 2,231)

One brain, many harnesses. Portable .agent/ folder (memory + skills + protocols) that plugs into Claude Code, Cursor, Windsurf, OpenCode, OpenClaw, Hermes, or DIY Python — and keeps its knowledge when you switch.

파일 탐색기

  • .env.example
  • .gitattributes
  • .gitignore
  • CHANGELOG.md
  • install.ps1
  • install.sh
  • LICENSE
  • onboard.py
  • onboard_features.py
  • onboard_render.py
  • onboard_ui.py
  • onboard_widgets.py
  • onboard_write.py
  • pytest.ini
  • README.md
  • requirements.txt
  • verify_codex_fixes.py

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

brew install

설명 보기 ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

brew tap

설명 보기 ▼

Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.

brew tap

List installed Homebrew taps:

brew tap {{github_username}}/{{github_repository_name}}

Tap a Git repository hosted on GitHub:

brew tap {{username}}/{{repository_name}} {{git_clone_url}}

Tap a Git repository hosted outside of GitHub:

🔍

brew update

설명 보기 ▼

Fetch the newest version of Homebrew and all formulae from GitHub using `git` and perform any necessary migrations.
To upgrade all installed formulae, use `brew upgrade`.

brew {{[up|update]}}

Fetch the newest version of Homebrew and all formulae:

🔍

brew upgrade

설명 보기 ▼

Upgrade outdated formulae and casks.

brew upgrade

Upgrade all outdated casks and formulae:

brew upgrade {{formula|cask}}

Upgrade a specific formula/cask:

brew upgrade {{[-n|--dry-run]}}

Print what would be upgraded, but don't actually upgrade anything:

🔍

crontab

설명 보기 ▼

현재 사용자에 대해 일정한 주기로 실행할 cron 작업을 설정.
더 많은 정보: <https://manned.org/crontab>.

crontab -e

현재 사용자의 crontab 파일 편집:

sudo crontab -e -u {{user}}

특정 사용자의 crontab 파일 편집:

crontab {{path/to/file}}

지정한 파일의 내용으로 현재 crontab을 교체:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

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:

🔍

openclaw

설명 보기 ▼

개인 기기에서 실행되는 개인 AI 어시스턴트.
`onboard`, `agent`, `doctor`와 같은 일부 하위 명령어는 별도의 사용법 문서를 가짐.
관련 항목: `zeroclaw`.
더 많은 정보: <https://docs.openclaw.ai/cli>.

openclaw onboard --install-daemon

게이트웨이 및 채널 설정을 위한 온보딩 실행:

openclaw gateway --allow-unconfigured --port {{18789}} --verbose

게이트웨이 서버 시작:

openclaw message send {{[-t|--target]}} {{+1234567890}} {{[-m|--message]}} "{{Hello}}"

연락처에 메시지 전송:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

🔍

move

설명 보기 ▼

파일 및 디렉토리를 이동 또는 이름을 변경합니다.
PowerShell에서 이 명령어는 `Move-Item`의 별칭입니다. 이 문서는 `move`의 Command Prompt (`cmd`) 버전을 기준으로 작성되었습니다.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/move>.

tldr move-item

동등한 PowerShell 명령어 문서 보기:

move {{path\to\source}} {{path\to\target}}

목표가 기존 디렉토리가 아닐 때 파일 또는 디렉토리 이름 변경:

move {{path\to\source}} {{path\to\existing_directory}}

파일 또는 디렉토리를 기존 디렉토리로 이동:

// repository documentation