ccsync
Sync Claude-Code agents/skills/commands between ~/.claude and your project (both ways)
파일 탐색기
- dev_workflow.instructions.md
- self_improve.instructions.md
- taskmaster.instructions.md
- vscode_rules.instructions.md
- claude-code-review.yml
- claude.yml
- release-binaries.yml
- release-plz.yml
- security-audit.yml
- test.yml
- dependabot.yml
- prd.txt
- task-complexity-report.json
- tasks.json
- example_prd.txt
- example_prd_rpg.txt
- CLAUDE.md
- config.json
- state.json
- common.rs
- config.rs
- diff.rs
- mod.rs
- status.rs
- to_global.rs
- to_local.rs
- cli.rs
- interactive.rs
- main.rs
- cli_tests.rs
- Cargo.toml
- CHANGELOG.md
- diff.rs
- directory.rs
- hash.rs
- integration_tests.rs
- timestamp.rs
- discovery.rs
- integration_tests.rs
- merge.rs
- patterns.rs
- types.rs
- validation.rs
- agents.rs
- commands.rs
- filters.rs
- integration_tests.rs
- skills.rs
- symlinks.rs
- actions.rs
- executor.rs
- orchestrator.rs
- reporting.rs
- comparison.rs
- config.rs
- lib.rs
- scanner.rs
- sync.rs
- Cargo.toml
- CHANGELOG.md
- 2025-11-22-whole-directory-skill-sync-design.md
- .env.example
- .envrc
- .gitignore
- Cargo.toml
- CLAUDE.md
- CLAUDE.rust.md
- devenv.lock
- devenv.nix
- devenv.yaml
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo install
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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:
