ccsync

(★ 12)

Sync Claude-Code agents/skills/commands between ~/.claude and your project (both ways)

파일 탐색기

  • .env.example
  • .envrc
  • .gitignore
  • Cargo.toml
  • CLAUDE.md
  • CLAUDE.rust.md
  • devenv.lock
  • devenv.nix
  • devenv.yaml
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

cargo install

설명 보기 ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

nix profile

설명 보기 ▼

Install, update, and remove packages from Nix profiles.

nix profile add {{nixpkgs#pkg1 nixpkgs#pkg2 ...}}

Install packages from nixpkgs into the default profile:

nix profile add {{github:owner/repo/pkg}} --profile {{path/to/directory}}

Install a package from a flake on GitHub into a custom profile:

nix profile list

List packages currently installed in the default profile:

🔍

nix shell

설명 보기 ▼

Start a shell in which the specified packages are available.
See also: `nix-shell`, `nix flake`.

nix shell {{nixpkgs#pkg1 nixpkgs#packageSet.pkg2 ...}}

Start an interactive shell with some packages from `nixpkgs`:

nix shell {{nixpkgs/nixos-21.05#pkg}}

Start a shell providing a package from an older version of `nixpkgs` (21.05):

nix shell -L

Start a shell with the "default package" from a flake in the current directory, printing build logs if any builds happen:

// repository documentation