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/quinnjr/claude-code-profiles/claude-mdgit clone --depth 1 https://github.com/quinnjr/claude-code-profilesWrote 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/quinnjr/claude-code-profiles/claude-md)<a href="https://agentmods.dev/instructions/quinnjr/claude-code-profiles/claude-md"><img src="https://agentmods.dev/badge/instructions/quinnjr/claude-code-profiles/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 | $0.01863 | $0.01863 |
| Opus 5 | $0.00932 | $0.00932 |
| Sonnet 5 | $0.00373 | $0.00373 |
| Haiku 4.5 | $0.00186 | $0.00186 |
Grade A, and why
claude-code-profiles 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 5d 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 — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project
Cross-platform shell functions for managing multiple Claude Code configuration profiles via CLAUDE_CONFIG_DIR. Each profile is a complete, isolated config directory. A transparent claude() wrapper auto-resolves the active profile so users just run claude normally.
Three equivalent implementations: POSIX sh (sourced), PowerShell (dot-sourced), and Windows cmd batch.
Architecture
The POSIX and PowerShell implementations are sourceable function files (not standalone scripts). They each define two functions: claude() (transparent wrapper) and claude-profile() (management). The cmd batch script is standalone since cmd lacks a function-sourcing mechanism.
claude-profile.sh(POSIX sh) — reference implementation. Sourced in.bashrc/.zshrc. Providesclaude()wrapper that auto-resolves the default profile before calling the real binary viacommand claude. Providesclaude-profile()for management commands. Strict POSIX only: nolocal, no[[ ]], no arrays, no bashisms. Usesprintfoverecho,_cp_-prefixed variables,return(notexit— runs in user's shell). On Git Bash / MSYS2 (detected via$MSYSTEM), profiles are stored at%LOCALAPPDATA%\claude-profiles\and paths are converted viacygpath -wbefore invokingclaude.exeso they are shared with the cmd/PowerShell implementations.claude-profile-init.ps1(PowerShell 5.1+/pwsh 6+) — cross-platform. Dot-sourced in$PROFILE. Same two-function model. Uses$argsmanual parsing (notparam()) to avoid conflicts with PowerShell parameter binding.Get-Command -CommandType Applicationto find the realclaudebinary past the function.claude-profile.cmd(Windows batch) — standalone script. Usesgoto :labeldispatch,setlocal enabledelayedexpansion,endlocal & setidiom to leakCLAUDE_CONFIG_DIRto the caller. No transparentclaudewrapper (cmd limitation). Users runcall claude-profile.cmd use <name>thenclaudeseparately.
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.
- 5d ago First seen · 106 lines · 1,863 tokens per session scan A ef2b78622ca2
claude-code-profiles CLAUDE.md is an instructions file published in the GitHub repository quinnjr/claude-code-profiles (92 stars, last pushed 16d ago), licensed MIT. It adds 1,863 tokens to every session, about $0.0093 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-08-30.
Other instructions, from other repositories
openscreen AGENTS.md
AGENTS.md instructions for getopenscreen/openscreen, covering agents.md, setup commands, development principles, project layout and code style.
tabularis AGENTS.md
AGENTS.md instructions for TabularisDB/tabularis, covering agents.md, directives, gitnexus — code intelligence, always do and never do.
moonproxy-desktop AGENTS.md
AGENTS.md instructions for MoonProxyHQ/moonproxy-desktop, covering moonproxy, 功能, 技术栈, 目录结构 and 配置与数据存储.
lazy-starter-kit CLAUDE.md
Instructions for Heoooooon/lazy-starter-kit: Follow the safety rules in AGENTS.md. In particular, never execute recursive rm directly; use lazy-safe-rm for a strict descendant of the current Git workspace.
memory-bridge AGENTS.md
AGENTS.md instructions for jiabaobei/memory-bridge, covering agents.md — 记忆桥项目规约(ai 协作会话必读), 版本与发布(硬性规则,所有者 2026-08-29 定), 架构铁律 and 工程习惯.
code-abyss CLAUDE.md
Instructions for telagod/code-abyss, covering claude.md, project overview, commands, persona behavioral battery (opt-in eval) and ci / cd.