Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/btafoya/claude-code-sync/claude-mdgit clone --depth 1 https://github.com/btafoya/claude-code-syncWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03381 | $0.03381 |
| Opus 5 | $0.01690 | $0.01690 |
| Sonnet 5 | $0.00676 | $0.00676 |
| Haiku 4.5 | $0.00338 | $0.00338 |
Grade D, and why
claude-code-sync CLAUDE.md scanned grade D with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
chmod 700 ~/.claude-code-sync # Owner only Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- ✅ Use trap for cleanup: `trap 'rm -rf "$TMP_DIR"' EXIT` How it starts
The opening of the file, as written. The whole thing — 553 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project-specific guidance for Claude Code when working on the claude-code-sync repository.
Project Overview
claude-code-sync is a CLI utility for backing up, restoring, and synchronizing Claude Code configurations across multiple Ubuntu machines. The tool provides encrypted backups, multiple sync strategies (git, manual, SSH direct), and intelligent conflict resolution.
Key Technologies
- Language: Bash (v4.0+)
- Platform: Ubuntu (all flavors)
- Encryption: GPG (AES-256-GCM)
- Sync Backends: Git, SSH/rsync, local filesystem
- Dependencies:
gpg,tar,gzip,sha256sum,jq,rsync,git
Project Structure
claude-code-sync/
├── bin/
│ └── claude-code-sync # Main CLI executable
├── lib/
│ ├── utils.sh # Logging, utilities, helpers
│ ├── encryption.sh # Encryption/decryption engine
│ ├── backup.sh # Backup operations
│ ├── restore.sh # Restore operations
│ ├── conflict.sh # Conflict detection/resolution
│ ├── snapshot.sh # Snapshot management
│ ├── sync.sh # Synchronization logic
│ └── storage.sh # Storage backend abstraction
├── config/
│ └── default.conf # Default configuration template
├── docs/
│ └── [user documentation]
├── tests/
│ └── [test suite]
└── claudedocs/
├── PROJECT_SPECIFICATION.md # Complete requirements
├── ARCHITECTURE.md # System design
├── IMPLEMENTATION_ROADMAP.md # Implementation guide
└── QUICK_START.md # Getting started
Development Guidelines
Code Style
Bash Best Practices:
- Use
set -euo pipefailat the start of all scripts - Always quote variables:
"$variable" - Use
readonlyfor constants - Prefer functions over inline code
- Use descriptive function and variable names
Naming Conventions:
- Functions:
snake_case(e.g.,backup_full,encrypt_file) - Variables:
snake_case(e.g.,backup_dir,encrypted_file) - Constants:
UPPER_SNAKE_CASE(e.g.,CIPHER_ALGO,SYNC_DIR) - Private functions: prefix with
_(e.g.,_internal_helper)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 553 lines · 3,381 tokens per session scan D 90224846614b
claude-code-sync CLAUDE.md is an instructions file published in the GitHub repository btafoya/claude-code-sync (2 stars, last pushed 10mo ago), licensed MIT. It adds 3,381 tokens to every session, about $0.0169 per session on Opus 5. A static security scan graded it D with 2 findings (asks for root, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
dotfiles CLAUDE.md
Instructions for fredrikaverpil/dotfiles, covering claude.md, core commands, verifying a darwin rebuild actually landed, repository architecture and nix architecture patterns.
dotfiles AGENTS.md
Instructions for helderberto/dotfiles, covering agents.md, before coding, surgical changes, verification and code principles.
dotfiles AGENTS.md
Instructions for sfc-gh-eraigosa/dotfiles, covering dotfiles repository, repository structure, usage guidelines, asking the user (blocking questions must be colorized) and portability & best practices.
dotfiles CLAUDE.md
Claude Code instructions for denolfe/dotfiles, covering claude.md, repository overview, git flow, build & development commands and installation.
dotfiles AGENTS.md
AGENTS.md instructions for GrimLink/dotfiles, covering project instructions, readme maintenance, homebrew, shell configuration and safety.
dotfiles CLAUDE.md
Claude Code instructions for GrimLink/dotfiles, a project described as: 🔧 My DEV env setup.