Borrowing it
Nothing to install: this file belongs to mrspot-dev/claude-settings-editor. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/mrspot-dev/claude-settings-editor/main/CLAUDE.mdgit clone --depth 1 https://github.com/mrspot-dev/claude-settings-editorWrote 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/mrspot-dev/claude-settings-editor/claude-md)<a href="https://agentmods.dev/instructions/mrspot-dev/claude-settings-editor/claude-md"><img src="https://agentmods.dev/badge/instructions/mrspot-dev/claude-settings-editor/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/mrspot-dev/claude-settings-editor/claude-md"><img src="https://agentmods.dev/badge/instructions/mrspot-dev/claude-settings-editor/claude-md.svg" alt="Reviewed on agentmods" width="80" 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.01099 | $0.01099 |
| Opus 5 | $0.00549 | $0.00549 |
| Sonnet 5 | $0.00220 | $0.00220 |
| Haiku 4.5 | $0.00110 | $0.00110 |
Grade A, and why
claude-settings-editor CLAUDE.md scanned grade A with 0 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 34 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Settings Editor
GUI-Editor für Claude Code settings.json-Dateien. Erklärt jede Einstellung auf Deutsch (UI ist mehrsprachig), erlaubt visuelles Bearbeiten statt Roh-JSON und schreibt die Datei direkt über die File System Access API zurück.
Stack & Struktur
- Single-File-App:
claude-settings-editor.html— kein Build, kein Server, keinpackage.json. Tailwind CSS via CDN, Alpine.js 3.14 (Reaktivität), JetBrains Mono + DM Sans. open-editor.py/open-editor.bat— Companion-Script, findet User-/Project-/Local-settings.jsonautomatisch und öffnet den Editor pre-loaded (Priorität: Local > Project > User > Defaults).docs/plans/— Design-/Feature-Abgleich-Dokumente (kein Code).logo.svg,README.md.
Kommandos
- Öffnen (manuell):
claude-settings-editor.htmlin einem Chromium-Browser öffnen (File System Access API braucht Chromium — Firefox/Safari nicht voll unterstützt). - Öffnen (Auto-Detect):
python open-editor.py - Kein Build-Schritt für Nutzer; Werkzeugkette nur für Pflegende (Tests, Selbst-Check, Generator, siehe unten). UI-Änderungen zusätzlich im Browser verifizieren (Neuladen der HTML-Datei).
- Tests:
node --test tools/*.test.js(Node 26, node:test) - Selbst-Check:
node tools/self-check.js(Exit 1 bei harten Befunden — vor jedem Commit) - Schema-Extrakt erneuern:
node tools/build-schema-map.js --fetch(schreibt SCHEMA_MAP in die HTML;tools/sources/settings-reference.mdbleibt gitignored)
Constraints & Gotchas
- 16 Tabs, 6 Sprachen (de, en, es, fr, ja, pt): jedes neue User-facing Text-Element braucht einen Key im
T-Objekt in allen 6 Sprachen — nicht nur Deutsch. - Jedes neue Setting braucht 4 Stellen:
defaultSettings(),cleanJson(),loadJson(),knownKeys— sonst wird es beim Export/Import silent gedroppt (bereits mehrfach passiert, z. B.env-Vars,cleanupPeriodDays). - Boolean-Export-Falle: Settings mit Default
false(z. B.spinnerTipsEnabled,showTurnDuration) müssen beitrueexportiert werden, nicht invertiert — war ein wiederkehrender Bug. - Alpine.js-Reaktivität: kein
delete-Operator auf reaktiven Objekten verwenden — Object-Reassign-Pattern nutzen, sonst bricht die Reaktivität. - Roundtrip-Sicherheit: unbekannte/fremde Properties aus importierten
settings.json-Dateien werden über_extraPropserhalten, nicht verworfen — beim Ändern der Import/Export-Logik darauf achten. - Permission-Mode-Werte sind Breaking-Change-anfällig: Claude Code hat
allowPrompt→default,acceptAll→bypassPermissionsumbenannt — bei neuen Claude-Code-Releases aktiv auf weitere Wert-Änderungen prüfen (nicht raten, gegen offizielles JSON-Schemajson.schemastore.org/claude-code-settings.jsonverifizieren). - Model-Liste/-Beschreibungen veralten schnell (Claude-Releases sind schneller als der Editor) — vor jedem Feature-Update aktiv nach aktuellen Modell-IDs/Aliasen recherchieren, nicht aus altem Wissen übernehmen.
- Bei größeren Feature-Batches hat sich das Muster HIVE-Schwarm (Recherche/Bau parallel) + abschließende SENTINEL/Code-Review-Runde bewährt.
- Schema hinkt dem Changelog hinterher (09/2026: Schema 2.1.219, Changelog 2.1.267): neue Keys wie
maxEffortLevel/modelSettingsstehen nur im Changelog (raw.githubusercontent.com/anthropics/claude-code/main/CHANGELOG.md) — beide Quellen diffen, nicht nur das Schema. - Erfundene Keys nicht stillschweigend behalten:
legacyKeysinloadJson()listet Schlüssel, die der Editor früher schrieb, Claude Code aber nie las (releaseChannel,fileSuggestions,autoDreamEnabled,teamateMode). Sie werden beim Import mit Hinweis verworfen statt über_extraPropszurückgeschrieben; Wert-Migrationen (Typo, Groß-/Kleinschreibung) direkt daneben. - Datei ist durchgehend CRLF — Patch-Skripte erst normalisieren (LF), am Ende zurück;
grep -czählt Zeilen, nicht Vorkommen (grep -o | wc -l). - Neue Keys: zusätzlich zu den 4 Stellen muss der Key in SCHEMA_MAP existieren (sonst schlägt self-check an) — erfundene Keys fallen damit auf.
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 · 34 lines · 1,099 tokens per session scan A cd26361fa65a
claude-settings-editor CLAUDE.md is an instructions file published in the GitHub repository mrspot-dev/claude-settings-editor (5 stars, last pushed 7d ago), licensed MIT. It adds 1,099 tokens to every session, about $0.0055 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-11.
Other instructions, from other repositories
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).