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/rektoooooo/cc-settings/claude-mdgit clone --depth 1 https://github.com/Rektoooooo/CC-SettingsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/rektoooooo/cc-settings/claude-md)<a href="https://agentmods.dev/instructions/rektoooooo/cc-settings/claude-md"><img src="https://agentmods.dev/badge/instructions/rektoooooo/cc-settings/claude-md.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.03868 | $0.03868 |
| Opus 5 | $0.01934 | $0.01934 |
| Sonnet 5 | $0.00774 | $0.00774 |
| Haiku 4.5 | $0.00387 | $0.00387 |
Grade D, and why
CC-Settings CLAUDE.md scanned grade D with 3 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 6d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
~/.claude/settings.json # Main config (ClaudeSettings model) Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /tmp/cc-settings-build Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
2. **Apple intermediate**: a newly-issued G2 cert needs Apple's intermediate to validate. Install once: `curl -fsSL https://www.apple.com/certificateauthority/DeveloperIDG2CA.cer -o /tmp/g2.cer && security import /tmp/g2 How it starts
The opening of the file, as written. The whole thing — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — CC Settings
Project Overview
CC Settings is a native macOS app (SwiftUI) for managing Claude Code configuration files. It reads and writes the same JSON, markdown, and JSONL files that Claude Code uses under ~/.claude/. No external backend — everything is local file I/O.
Build & Run
# Prerequisites: macOS 26.0+, Xcode 16+, XcodeGen
brew install xcodegen # if not installed
xcodegen generate # regenerate after changing project.yml
open "CC Settings.xcodeproj" # Cmd+R to build and run
- project.yml is the source of truth for build config (XcodeGen)
- After modifying
project.yml, always runxcodegen generatebefore building - The Xcode project file is gitignored — never edit it directly
Architecture
CC Settings/
├── App/ # Entry point, AppDelegate, ContentView (NavigationSplitView router)
├── MenuBar/ # Menu bar HUD integration
├── Models/ # Pure data structs (Codable) — no business logic
├── Services/ # Singletons managing state and file I/O
├── Views/ # SwiftUI views organized by feature section
│ ├── Common/ # Shared modifiers and reusable components
│ └── <Section>/ # One folder per sidebar section
└── Resources/ # Info.plist, entitlements, assets
Services (singletons, injected via @EnvironmentObject)
| Service | Responsibility |
|---|---|
| ConfigurationManager | All file I/O — loads/saves settings.json, local settings, CLAUDE.md, projects, sessions, commands, MCP servers |
| ThemeManager | App theme state, maps to NSAppearance, persists via UserDefaults |
| FileWatcher | FSEvents monitoring on ~/.claude/, debounced reload (0.5s), skips self-triggered saves |
| StatsService | Aggregates usage stats from JSONL sessions, caches to ~/.claude/stats-cache.json |
| SessionParser | Parses .jsonl session files — messages, tool calls, thinking blocks, metadata |
| GitService | Git operations on ~/.claude/ — status, staging, commits, log, diff, push/pull |
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.
- 6d ago First seen · 283 lines · 3,868 tokens per session scan D 6387b5ecb962
CC-Settings CLAUDE.md is an instructions file published in the GitHub repository Rektoooooo/CC-Settings (9 stars, last pushed 1mo ago), licensed MIT. It adds 3,868 tokens to every session, about $0.0193 per session on Opus 5. A static security scan graded it D with 3 findings (reads agent configuration directories, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
claude-codex-gemini-opencode-settings AGENTS.md
AGENTS.md instructions for frankxai/claude-codex-gemini-opencode-settings, covering ai agents directory, quick reference, claude code agents, creation engine and opencode agents.
claude-codex-gemini-opencode-settings CLAUDE.md
Claude Code instructions for frankxai/claude-codex-gemini-opencode-settings, covering frankx ai settings - claude instructions, repository purpose, architecture, plugin structure (claude code) and maintenance workflow.
claude-code-profiles CLAUDE.md
Instructions for quinnjr/claude-code-profiles, covering claude.md, project, architecture, command interface and directory-local profiles.
vibetags com-example-config-AsyncTestConfig.instructions.md
Instructions for PIsberg/vibetags, covering copilot instructions for asynctestconfig and immutable type.
pupila CLAUDE.md
Instructions for FranRom/pupila, covering claude.md, where things live, stack, run locally and repo layout.
claude-bridge AGENTS.md
Instructions for kadaba/claude-bridge, covering agents.md — using claude-bridge from any ai coding cli, two independent channels, 1. coordination (the conversation), 2. file transfer (the bytes) — same for every tool and workflows.