CC-Settings CLAUDE.md

CC-Settings CLAUDE.md is an instructions file for Claude Code from Rektoooooo/CC-Settings. It costs 3,868 tokens per session, scanned D, original, MIT.

A guide for CC Settings, a local macOS SwiftUI app that manages the JSON, Markdown, and JSONL configuration files used by Claude Code.

In plain words
What is it for?
Use it when building or modifying the app, its views and services, or its local Claude Code configuration file handling.
Why use it?
It explains the required Apple development tools, the project’s structure, and how to regenerate the Xcode project before building.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; positional $N argument.

Install

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.

agentmods
npx agentmods add instructions/rektoooooo/cc-settings/claude-md
Clone the repo
git clone --depth 1 https://github.com/Rektoooooo/CC-Settings

Made for: Claude Code.

Wrote 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.

agentmods badge for CC-Settings CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/rektoooooo/cc-settings/claude-md.svg)](https://agentmods.dev/instructions/rektoooooo/cc-settings/claude-md)
Your own site
<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>
Per session 3,868 This file is loaded in full into every session.
When invoked 3,868 The same file — it is already loaded in full.
Security scan D 3 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 6387b5ecb962, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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
CLAUDE.md · 283 lines

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 run xcodegen generate before 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

Read the full file on GitHub · 283 lines

Changes

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.

  1. 6d ago First seen · 283 lines · 3,868 tokens per session scan D 6387b5ecb962

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories