ccsync
Sync Claude-Code agents/skills/commands between ~/.claude and your project (both ways)
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo install
View Details ▼
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
View Details ▼
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
View Details ▼
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:
