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/dotcommander/cclint/claude-mdgit clone --depth 1 https://github.com/dotcommander/cclintWhat 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.08121 | $0.08121 |
| Opus 5 | $0.04061 | $0.04061 |
| Sonnet 5 | $0.01624 | $0.01624 |
| Haiku 4.5 | $0.00812 | $0.00812 |
Grade B, and why
cclint CLAUDE.md scanned grade B with 1 finding 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.
Reads MCP configurationmediumAgent snooping
mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.
**Settings** (`internal/cue/schemas/settings.cue`): hooks, language, respectGitignore, plansDirectory, spinnerTipsOverride, enabledPlugins, extraKnownMarketplaces, strictKnownMarketplaces, blockedMarketplaces, additional How it starts
The opening of the file, as written. The whole thing — 279 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 when working with code in this repository.
Build & Run
#-Build and symlink to ~/go/bin
go build -o cclint . && ln -sf $(pwd)/cclint ~/go/bin/cclint
#-Build with version override
go build -ldflags "-X github.com/dotcommander/cclint/cmd.Version=1.0.0" -o cclint .
#-Version
cclint --version # show version (defaults to "dev")
cclint -V # short form
#-Run linter (defaults to ~/.claude)
cclint # lint all component types
cclint agents # lint only agents
cclint commands # lint only commands
cclint agents commands # lint multiple types
cclint skills # lint only skills
cclint settings # lint only settings.json files
cclint rules # lint only rule files
cclint context # lint only CLAUDE.md files
cclint plugins # lint only plugin manifests
cclint output-styles # lint only output style files
cclint summary # show quality summary
cclint fmt # format component files
cclint fmt --write # format and write in place
#-File and directory mode
cclint ./agents/my-agent.md # lint one file (auto-detect type)
cclint path/to/file.md # lint by path
cclint a.md b.md c.md # lint multiple files
cclint ./commands/ # lint all files in a directory
cclint ./command/ # singular dir names auto-detected
cclint --type agent ./custom/file.md # override type detection
#-Git integration (pre-commit hooks)
cclint --staged # lint only staged files
cclint --diff # lint all uncommitted changes
#-Baseline mode (gradual adoption)
cclint --baseline-create # create baseline from current issues
cclint --baseline # lint with baseline filtering (only new issues fail)
cclint --baseline-path custom.json # use custom baseline file path
#-Common flags
cclint --root /path/to/project agents # specify project root
cclint --scores agents # show quality scores (0-100)
cclint --improvements agents # show improvement recommendations
cclint --format json --output report.json # JSON output for CI
cclint --quiet # errors only, no suggestions
cclint --verbose # detailed processing info
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 · 279 lines · 8,121 tokens per session scan B b3c462cf3bd4
cclint CLAUDE.md is an instructions file published in the GitHub repository dotcommander/cclint (16 stars, last pushed 4d ago), licensed MIT. It adds 8,121 tokens to every session, about $0.0406 per session on Opus 5. A static security scan graded it B with 1 finding (reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
guff AGENTS.md
AGENTS.md instructions for dakimura/guff: When working in the guff codebase, follow docs/DEVELOPMENT.md and the compat isolate gate in .cursor/rules.
ollama CLAUDE.md
Claude Code instructions for ollama/ollama: See AGENTS.md for the shared agent instructions for this repository.
azure-sdk-for-go go-code.instructions.md
Instructions for Azure/azure-sdk-for-go: All code should follow the guidelines from the Azure Go SDK Guidelines. This document is a summary of the most important guidelines to follow when contributing to the Azure Go SDK.
gorest AGENTS.md
Instructions for pilinux/gorest, covering agents.md, project overview, build and run commands, build and tidy dependencies.
chatgpt-cli CLAUDE.md
Instructions for kardolus/chatgpt-cli, covering chatgpt-cli — release runbook, prerequisites, 1. cut the release, 2. publish the github release + binaries and 3. update the homebrew tap.
Sighthound AGENTS.md
Instructions for Corgea/Sighthound, covering claude, commands, python / django test naming and agent skill.